@charset 'utf-8';

:root {
  --color1: #3A2F27;
  --color2: #8D6E55;
  --color3: #4A3B2A;
  --color4: #A69385;
  --bgColor: #F0F0EC;
  --bgColor2: #E7DED8;
}

@font-face {
  font-family: 'yosugara';
  src: url("../fonts/yosugaraver1_2.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bgColor);
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: var(--color1);
  box-sizing: border-box;
  overflow-x: hidden;
}

main.page {
  margin-top: 12rem;
}

.top__section {
  padding-top: 10rem;
}

.page__section {
  margin-top: 6.5rem;
}

.l-container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

.section__title {
  position: relative;
  width: fit-content;
}

.section__title h2 {
  font-size: 8rem;
  font-weight: 900;
}

.section__title span {
  display: block;
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.page__section__title {
  padding-bottom: 0.5rem;
  width: 600px;
  border-bottom: 3px solid var(--color1);
  font-size: 1.5rem;
  font-weight: 800;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

@media screen and (max-width: 1000px) {
  .top__section {
    padding-top: 9rem;
  }

   .section__title h2 {
    font-size: 6rem;
  }

  .section__title span {
    bottom: -1.5rem;
    font-size: 1.25rem;
  }

  .pc {
    display: none;
  }

  .tab {
    display: block;
  }
}

@media screen and (max-width: 580px) {
  main.page {
    margin-top: 7rem;
  }

  .top__section {
    padding-top: 6rem;
  }

  .page__section {
    margin-top: 3rem;
  }

  /* .page__section:nth-of-type(1) {
    margin-top: 7.5rem;
  } */

  .section__title h2 {
    font-size: 4rem;
  }

  .section__title span {
    bottom: -1.5rem;
    font-size: 1.25rem;
  }

  .page__section__title {
    width: 90%;
    border-bottom: 2px solid var(--color1);
    /* font-size: 1.5rem; */
    font-size: 4cqw;
    font-weight: 800;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .tab {
    display: none;
  }
}

/*--------------------------------------------------------
header
--------------------------------------------------------*/
header {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
}

.header__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 100%;
}

.header__logo img {
  height: 100%;
}

.lang-switch {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.lang-switch a {
  color: #bbb;
}

.lang-switch a.is-current {
  color: var(--color3);
}

.header__right {
  position: absolute;
  top: 10px;
  right: 20px;
}

@media screen and (max-width: 580px) {
  header {
    height: 60px;
  }

  .header__logo {
    top: 10px;
    left: 10px;
    height: 70%;
  }

  .header__right {
    right: 10px;
  }

  .lang-switch {
    margin-top: 0.5rem;
  }

  .lang-switch a {
    font-size: 0.7rem;
  }

}

/*------------------------------------------------------------
header__menu
------------------------------------------------------------*/
.header__menu {
  position:fixed;
  top: 0;
  right: -120%;
  width: 650px;
  height: 100vh;
  background: var(--color1);
  opacity: 0;
  z-index: 999;
  transition: all .6s;
}

.header__menu.panelactive {
  right: 0;
  opacity: 1;
}


.header__nav {
  width: 75%;
  margin: 3rem auto 0;
}

.header__nav__logo {
  width: 120px;
  margin: 0 auto;
}

.header__nav__logo img {
  width: 100%;
}

.header__nav__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.header__nav__list li {
  width: 50%;
  margin-top: 2rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all .3s;
}

.header__nav__list li:hover {
  opacity: 0.8;
}

.header__nav__list li span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
}

.header__contact {
  margin-top: 3rem;
  color: #fff;
  text-align: center;
}

.header__web {
  padding: 1rem 0;
  border: 2px solid #fff;
  font-weight: 400;
  transition: all .3s;
}

.header__web:hover {
  border: 2px solid var(--color1);
  background: #fff;
  color: var(--color1);
}

.header__tel a,
.header__web a {
  display: block;
}

.header__web {
  margin-top: 1.5rem;
}

.header__contact__text span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 580px) {
  .header__menu {
    width: 100%;
    height: 100vh;
    padding: 3rem 0;
  }

  .header__nav {
    width: 90%;
    margin: 2rem auto 0;
  }

  .header__nav__list {
    width: 80%;
    margin: 1rem auto 0;
  }

  .header__nav__list li {
    margin-top: 2.5rem;
    font-weight: 300;
  }

  .header__contact {
    margin-top: 2.5rem;
  }

  .header__web:hover {
    border: none;
    background: #fff;
    color: var(--color1);
  }
}

.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: relative;
	cursor: pointer;
  width: 70px;
  height:70px;
  z-index: 1000;
}

/*ボタン内側*/
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  top: 20px;
  right: 20px;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--color3);
}


.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:40px;
}

/* .openbtn span:nth-of-type(3) {
	top:31px;
  width: 20%;
} */

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active {
  background: transparent;
}

.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: -12px;
  transform: translateY(6px) rotate(-135deg);
  width: 80%;
  background: #fff;
}

.openbtn.active span:nth-of-type(2){
  top: 32px;
  left: -12px;
  transform: translateY(-6px) rotate(135deg);
  width: 80%;
  background: #fff;
}

.openbtn.is-dark span {
  background: var(--color3);
}

@media screen and (max-width: 900px) {
  .openbtn{
    width: 50px;
    height:50px;
  }

  .openbtn span:nth-of-type(2) {
    top:35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: -12px;
    width: 80%;
  }

  .openbtn.active span:nth-of-type(2){
    top: 30px;
    left: -12px;
    width: 80%;
  }
}

@media screen and (max-width: 580px) {
  .openbtn{
    width: 40px;
    height:40px;
  }

  .openbtn span:nth-of-type(2) {
    top:30px;
  }
}

/*--------------------------------------------------------
page__header
--------------------------------------------------------*/
.page__header {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.page__title {
  margin-top: 3rem;
}

.page__title h1 {
  font-size: 11rem;
  font-weight: 800;
}

.page__title span {
  position: relative;
  display: block;
  margin-left: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.page__title.faq span {
  margin-top: 1rem;
}

@media screen and (max-width: 900px) {
  .page__title {
    padding: 2rem 0;
    container-type: inline-size;
  }

  .page__title h1 {
    font-size: 20cqw;
    font-weight: 800;
  }
}

@media screen and (max-width: 580px) {
  .page__header {
    height: fit-content;
    padding-top: 0;
    box-sizing: border-box;
  }

  .page__title {
    width: 90%;
    margin: 1rem auto 0;
    padding: 0;
  }

  .page__title h1 {
    font-size: min(13cqw, 4rem);
  }

  .page__title span {
    margin: 0.5rem 0 0 2rem;
    font-size: min(4cqw, 1rem);
  }
}

/*---------------------------------------------------
パンくずリスト
---------------------------------------------------*/
.breadcrumb-area {
  margin-top: 2rem;
  list-style: none;
  overflow: hidden;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: 700;
}

.breadcrumb li:first-child {
  color: var(--color2);
}

.breadcrumb li:nth-of-type(n + 2):before {
  content: '/';
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li a {
  transition: color .3s ease-out;
}

.breadcrumb li a:hover {
  color: var(--color3);
}

@media screen and (max-width: 1000px) {
  .breadcrumb {
    top: 150px;
    right: 5%;
    padding: 0;
    list-style: none;
    overflow: hidden;
  }

  .breadcrumb li:nth-of-type(n + 2):before {
    content: '/';
    padding: 0 0.5rem;
  }

  .breadcrumb li span {
    /* font-size: 2.5cqw; */
    font-size: min(2.75cqw, 0.9rem);
  }
}

@media screen and (max-width: 580px) {
  .breadcrumb {
    margin-top: 0;
    list-style: none;
    overflow: hidden;
  }

  .breadcrumb li:nth-of-type(n + 2):before {
    content: '/';
    padding: 0;
  }
}


/*--------------------------------------------------------
btn viewmore
--------------------------------------------------------*/
.c-btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  /* padding: 1rem 3rem; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  /* z-index: 100; */
  border-radius: 100vh;
  padding: calc(1.5rem - 12px) 3rem 1.5rem;
  background: #fff;
}

.c-btn--rounded {
  border-radius: 100vh;
}

.c-btn:before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 3px solid #000;
  border-radius: 0.5rem;
}

.c-btn--rounded:before {
  border-radius: 100vh;
}

.c-btn:hover {
  padding: calc(1.5rem - 6px) 3rem;
}

.c-btn:hover:before {
  top: 0;
  left: 0;
}

@media screen and (max-width: 580px) {
  .c-btn {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: calc(1.2rem - 8px) 2rem 1.2rem;
  }

  .c-btn:before {
    top: -4px;
    left: -4px;
    border-width: 2px;
  }

  .c-btn:hover {
    padding: calc(1.2rem - 4px) 2rem;
  }

  .c-btn:hover:before {
    top: 0;
    left: 0;
  }
}

/*-----------------------------------------------------
cta
-----------------------------------------------------*/
aside.cta {
  margin-top: 10rem;
  height: 400px;
}

.cta__inner {
  display: flex;
  height: inherit;
}

.cta__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  background: url('../img/cta_bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken
}

.cta__lead,
.cta__title {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.cta__lead {
  font-size: 4rem;
}

.cta__title {
  margin-top: 1rem;
  font-size: 2rem;
}

.cta__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  background: var(--color2);
  text-align: center;
}

.cta__actions-img {
  position: absolute;
  bottom: -78px;
  right: 10px;
  width: 120px;
}

.cta__actions__title h2 {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
}

.cta__actions__title span {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.cta__actions .c-btn {
  display: block;
  margin: 3rem auto 0;
  width: 11rem;
}

@media screen and (max-width: 900px) {
  aside.cta {
    height: auto;
  }

  .cta__inner {
    display: block;
    height: auto;
  }

  .cta__content {
    position: relative;
    display: block;
    width: 100%;
    height: 400px;
  }

  .cta__content__box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    container-type: inline-size;
  }

  .cta__lead {
    font-size: max(7cqw, 1.5rem);
  }

  .cta__title {
    margin-top: 1rem;
    font-size: max(6cqw, 1.5rem);
  }

  .cta__actions {
    width: 100%;
    height: 400px;
  }

  .cta__actions-img {
    position: absolute;
    bottom: -95px;
    right: 10px;
    width: 150px;
  }

  .cta__actions__title h2 {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
  }

  .cta__actions__title span {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
  }

  .cta__actions .c-btn:nth-of-type(2) {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 580px) {
  aside.cta {
    margin-top: 5rem;
  }
  
  .cta__content {
    height: 250px;
  }
  .cta__actions {
    width: 100%;
    height: 350px;
  }

  .cta__actions-img {
    bottom: -65px;
    width: 100px;
  }

  .cta__actions__title h2 {
    font-size: 4rem;
  }
}



/*--------------------------------------------------------
footer
--------------------------------------------------------*/
.l-footer {
  width: 100%;
  height: 350px;
  background: var(--color3);
}

.l-footer__inner {
  width: 95%;
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.l-footer__left {
  width: 20%;
}

.l-footer__center {
  width: 50%;
}

.l-footer__right {
  width: 30%;
}

.l-footer__left img {
  width: 60%;
}

.c-company__brand {
  font-size: 1.75rem;
}

.c-company__address {
  margin-top: 1.5rem;
  line-height: 1.25;
}

.c-company__tel {
  display: block;
  margin-top: 0.5rem;
}

.c-company__mail {
  display: block;
  margin-top: 0.5rem;
}

.c-footer-nav__list {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.c-footer-nav__item {
  width: 40%;
}

.c-footer-nav__item:nth-of-type(n + 3) {
  margin-top: 1rem;
}

.c-footer-sns {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
}

.c-footer-sns a {
  display: block;
  width: 30px;
}

.c-footer-sns a img {
  width: 100%;
}

.c-footer-policy {
  margin-top: 1rem;
}

.c-footer-policy a {
  color: #fff;
  font-size: 0.8rem;
}

@media screen and (max-width: 900px) {
  .l-footer__inner {
    font-size: 1rem;
    font-weight: 600;
  }

  .c-company__brand {
    font-size: 1.5rem;
  }

  .c-company__address {
    line-height: 1.5;
  }

  .c-footer-sns {
    gap: 20px;
  }

  .c-footer-sns a {
    width: 25px;
  }

}

@media screen and (max-width: 580px) {
  .l-footer {
    padding: 2rem 0;
    height: auto;
  }
  .l-footer__inner {
    display: block;
    width: 90%;
  }

  .l-footer__left {
    width: 100%;
    text-align: center;
  }

  .l-footer__center {
    margin-top: 1rem;
    width: 100%;
  }

  .c-company__brand {
    margin-top: 2.5rem;
  }

  .l-footer__right {
    margin-top: 2rem;
    width: 100%;
  }

  .l-footer__left img {
    margin-top: 1rem;
    width: 100px;
  }
}

/*--------------------------------------------------------
tel
--------------------------------------------------------*/
@media (min-width: 751px) {
  a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
}

/*--------------------------------------------------------
preparation
--------------------------------------------------------*/
.preparation {
  margin: 15rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}