@charset "UTF-8";

html, body {
  font-family: 游ゴシック, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", sans-serif;
  font-weight: 500;
  color: var(--black);
  line-height: 1.8;
  font-size: 3.7333333333333334vw;
  position: relative;
}
a:hover{
  cursor: pointer;
  opacity: 0.5;
  transition: 0.8s;
}
.inner{
  width: 100%;
  padding: 0 4.666666666666667vw;
}
.youngserif {
  font-family: 'Young Serif', serif;
  letter-spacing: 0.03em;
  font-feature-settings: "case";
}
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }

  /* header */
  .header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
  }
  .header a:hover{
    opacity: 1;
  }
  .header img{
    width: 41.333333333333336vw;
    height: 50.666666666666664vw;
  }
/* hamburger */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
}
.drawer-open {
  width: 18.666666666666668vw;
  height: 20.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上に */
  cursor: pointer;
  background-color: var(--orange);
  border-bottom-left-radius: 8vw;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span {
  content: '';
  display: block;
  height: 3px;
  width: 8.533333333333333vw;
  background: var(--white);
  transition: 0.5s;
  position: absolute;
}

.drawer-open span:before {
  content: '';
  display: block;
  height: 3px;
  width: 8.533333333333333vw;
  background: var(--white);
  transition: 0.5s;
  position: absolute;
}
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 8.533333333333333vw;
  background: var(--white);
  transition: 0.5s;
  position: absolute;
}
/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 2.6vw;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 2.6vw;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: var(--white);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--white);
}
#drawer-check:checked ~ .drawer-open {
  background-color: var(--orange);
}

/* メニューのデザイン*/
.drawer-content {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background-color: rgba(34, 32, 30, 0.7);
  width: 100%;
  height: 100vh;
  background-size: contain;
  transition: 0.5s;
}
.drawer-img {
  padding: 2.133333vw 0;
  padding-left: 5.333333333333333vw;
}
.drawer-img img {
  width: 29.866666666666667vw;
  height: auto;
}
.drawer-bg{
  background-color: var(--orange);
  height: 92.72vh;
  width: 61.06666666666666vw;
  position: absolute;
  right: 0;
  border-bottom-left-radius: 8.533333333333333vw;
}
.drawer-title{
  font-size: 4.266666666666667vw;
  color: var(--white);
  text-align: center;
  padding: 11.733333333333333vw 0 10.666666666666666vw;
}
.drawer-content .drawer-list {
  padding: 25.866666666666667vw 0 11.733333vw 7.466666666666667vw;
}
.drawer-content .drawer-item {
  padding-bottom: 11.733333333333333vw;
}
.drawer-content .drawer-item:last-child{
  padding-bottom: 0;
}
.drawer-content .drawer-item .item{
  padding-top: 4.2vw;
}
.drawer-content .drawer-item .item li{
  padding-bottom: 1.2em;
  display: flex;
  align-items: center;
  column-gap: 1em;
}
.drawer-content .drawer-item .item li::before{
  content: "";
  border-top: 2px solid var(--white);
  width: 2.1333333333333333vw;
}
.drawer-content .drawer-item02 {
  width: 100%;
  padding-bottom: 12.733333vw;
  padding-inline: 5.333333333333333vw;
  color: var(--white);
  font-size: 4.266666666666667vw;
}
.drawer-content .drawer-item02  li{
  padding-bottom: 1.2em;
}
.drawer-content .drawer-item a {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: 3.7333333333333334vw;
}
.drawer-content .drawer-item a .ja{
  display: flex;
  align-items: center;
  gap: 1.0666666666666667vw;
  font-size: 3.2vw;
  font-weight: bold;
}
.drawer-content .drawer-item a .ja::before{
  content: "";
  width: 2.1333333333333333vw;
  border: 0.4vw solid var(--white);
}
.drawer-btn{
  color: var(--white);
  text-align: center;
}
.drawer-btn a{
  display: inline-block;
  font-size: 3.7333333333333334vw;
}
.drawer-btn span{
  display: flex;
  align-items: center;
  gap: 2.1333333333333333vw;
  border: 2px solid var(--white);
  border-radius: calc(infinity * 1px);
  padding: 3vw 8.533333333333333vw;
}
.drawer-btn span::before{
  content: "";
  background-image: url(../img/common/ham_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.466666666666667vw;
  height: 2.4vw;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;
  height: 100vh;
  height: 100vh;
}
  /* contents */
  h2{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: bold;
    letter-spacing: 0.0em;
    line-height: 1.3;
  }
  h2 span{
    font-size: 8.533333333333333vw;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .btn {
    display: inline-block;
    color: #4F443B;
  }
  .btn a{
    padding: 2.733333vw 5.333333vw 2.466667vw 6.4vw;
    display: flex;
    gap: 8.533333333333333vw;
    align-items: center;
    border: 1px solid #4F443B;
    border-radius: calc(infinity * 1px);
    white-space: nowrap;
  }
  .btn a::after{
    content: "";
    background-image: url(../img/common/arrow_sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 6vw;
    height: 1.3333333333333333vw;
  }

  /* footer */
.footer .contact{
  padding: 12.8vw 0 0;
  background-color: var(--blue);
  color: var(--white);
}
.footer .contact .inner .loop{
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.footer .contact .inner .loop-item {
  flex: 0 0 auto;
  font-size: 18.133333333333333vw;
  white-space: nowrap;
  padding-right: 4.666666666666667vw;
  padding-left: 4.666666666666667vw;
  color: var(--white);
  opacity: 0.03;
  line-height: 1.2;
}
.footer .contact .inner .content{
  width: 100%;
  padding-top: 7.466666666666667vw;
  padding-inline: auto;
  text-align: center;
}
.footer .contact .inner .content h2{
  padding-bottom: 8.533333333333333vw;
}
.footer .contact .inner .content .f-form{
  margin-top: 10.666666666666666vw;
  padding-block: 13.866666666666667vw;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 71.46666666666667vw;
  background-image : linear-gradient(to right, var(--white) 3px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.footer .contact .inner .content .f-form .f-text{
  display: flex;
  align-items: center;
  gap: 2.4vw;
  font-size: 4.266666666666667vw;
  font-weight: bold;
  padding-bottom: 5.333333333333333vw;

}
.footer .contact .inner .content .f-form .f-text::before{
  content: "";
  background-image: url(../img/common/mail_icon_w_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.933333333333334vw;
  height: 3.3333333333333335vw;
}
.footer .contact .inner .content .f-form .f-form-btn{
  border: 1px solid var(--white);
  border-radius: calc(infinity * 1px);
  padding: 5.866667vw 14.4vw;
  font-weight: bold;
}
.footer .contact .inner .content .f-tel{
  padding-block: 13.866666666666667vw;
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-image : linear-gradient(to right, var(--white) 3px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  width: 71.46666666666667vw;
}
.footer .contact .inner .content .f-tel .f-text{
  display: flex;
  align-items: center;
  gap: 2.4vw;
  font-size: 4.266666666666667vw;
  font-weight: bold;
  line-height: 1.8;
}
.footer .contact .inner .content .f-tel .f-text::before{
  content: "";
  background-image: url(../img/common/tel_icon_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.466666666666667vw;
  height: 3.466666666666667vw;
}
.footer .contact .inner .content .f-tel .number{
  font-size: 7.466666666666667vw;
}
.footer .contact .inner .content .f-tel .time{
  font-size: 3.2vw;
  font-weight: bold;
}
.footer .bottom{
  background: var(--blue);
}
.footer .bottom .inner{
  position: relative;
  padding: 12.8vw 7.466666666666667vw 0;
  background: var(--white);
  border-top-left-radius: 12.8vw;
  border-top-right-radius: 12.8vw;
}
.footer .bottom .inner .content{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
.footer .bottom .inner .content .f-logo{
  padding-top: 10.666666666666666vw;
  padding-bottom: 5.333333333333333vw;
}
.footer .bottom .inner .content .left{
  text-align: center;
}
.footer .bottom .inner .content .left .adress{
  font-size: 2.933333333333333vw;
}
.footer .bottom .inner .content .right .f-navi{
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer .bottom .inner .content .right .f-navi .sp .f-navi-flex{
  display: flex;
  gap: 6rem;
  justify-content: space-around;
  width: 100%;
}
.footer .bottom .inner .content .right .f-navi .item01 ul li{
  padding-bottom: 10.666666666666666vw;
  display: flex;
  flex-direction: column;
  align-items: self-start;
}
.footer .bottom .inner .content .right .f-navi .item01 ul li .ja{
  display: flex;
  gap: 1.0666666666666667vw;
  font-size: 3.2vw;
  font-weight: bold;
  color: var(--blue);
  align-items: center;
}
.footer .bottom .inner .content .right .f-navi .item01 ul li .ja::before{
  content: "";
  border-top: 2px solid var(--blue);
  width: 0.8rem;
}
.footer .bottom .inner .content .right .f-navi .item01 ul li .youngserif{
  font-size: 3.7333333333333334vw;
  font-weight: 300;
  color: var(--black);
}
.footer .bottom .inner .content .right .f-navi .item02{
  width: 100%;
  margin-bottom: 13.866666666666667vw;
}
.footer .bottom .inner .content .right .f-navi .item02 ul{
  display: flex;
  flex-wrap: wrap;
  color: var(--textgray);
  font-size: 3.2vw;
  width: inherit;
  row-gap: 4.533333vw;
}
.footer .bottom .inner .content .right .f-navi .item02 ul li{
  width: 50%;
}
.footer .bottom .inner .content .right .f-navi .item02 ul li:nth-child(2){
  padding-left: 2vw;
}
.footer .bottom .inner .content .right .f-banner{
  text-align: center;
}
.footer .bottom .inner .content .right .f-lp-banner{
  padding-bottom: 4.266666666666667vw;
}
.footer .bottom .inner .copy{
  text-align: center;
  font-size: 2.6666666666666665vw;
  color: var(--textgray);
  padding-block: 9.6vw;
}
.footer .bottom .inner button{
  position: absolute;
  bottom: 9.466666666666667vw;
  right: 5.333333333333333vw;
  display: flex;
  flex-direction: column;
  gap: 1.133333vw;
  align-items: center;
  padding: 4vw 4.866666666666667vw;
  font-size: 2.6666666666666665vw;
  color: var(--white);
  background: rgba(32, 33, 37, 0.8);
  border-radius: 2.6333333333333333vw;
}
.footer .bottom .inner button::before{
  content: "";
  background-image: url(../img/common/top_button_vector_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.6vw;
  height: 1.7333333333333334vw;
}

/* loop */

.loop {
  overflow: hidden;
}
.loop-box {
  display: flex;
  width: 100vw;
}
.loop-item {
  flex: 0 0 auto;
  font-size: 18.133333333333333vw;
  white-space: nowrap;
  padding-right: 3.2vw;
  padding-left: 3.2vw;
  color: var(--black);
  opacity: 0.06;
  line-height: 1.8;
}

.loop-item:nth-child(odd) {
  animation: loop 60s -30s linear infinite;
}
.loop-item:nth-child(even) {
  animation: loop2 60s linear infinite;
}

@keyframes loop {
  0% {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
      transform: translateX(0);
  }
  to {
      transform: translateX(-200%);
  }
}

.anchor{
  display: block;
  padding-top: 12.666666666666666vw;
  margin-top: 12.666666666666666vw;
}