@charset "UTF-8";

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background-color: #fffde8; /* 背景色 / 後でデザインに合わせて変更 */
  color: #333; /* 文字色 / 後でデザインに合わせて変更 */
  font-family: "Kaisei Opti", serif; /* ベースのフォント / 後でデザインに合わせて変更 */
  font-weight: 500; /* ベースの文字の太さ / 後でデザインに合わせて変更 */
  font-size: 1.6rem; /* ベースのフォントサイズ / 後でデザインに合わせて変更 */
  line-height: calc(50 / 20); /* ベースの行間 / 後でデザインに合わせて変更 */
  background-image: url(../images/common/bg-tile.webp);
  background-repeat: repeat;
  background-size: 640px 540px;
}

.wrapper {
  display: flex;
  /* background-color: rgba(255, 255, 255, 0.5); */
}

/* content width */
/* コンテンツ幅 / 後でデザインに合わせて変更 */
.inner__1220 {
  width: 100%;
  max-width: calc(1160px + 24px + 24px);
  margin-inline: auto;
  padding: 0 24px;
}

/* @media (max-width: 900px) {
  .inner__1220 {
    max-width: calc(500px);
  } */

/* img */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media (max-width: 900px) {
  .sp-none {
    display: none;
  }
  .pc-none {
    display: block;
  }
}

/* form */
input,
textarea {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #707070;
}

/* margin */
/* 後でデザインに合わせて変更 */
.margin-l {
  margin-top: 200px;
}
@media (max-width: 600px) {
  .margin-l {
    margin-top: 100px;
  }
}
.margin-m {
  margin-top: 150px;
}
@media (max-width: 600px) {
  .margin-m {
    margin-top: 75px;
  }
}
.margin-s {
  margin-top: 100px;
}
@media (max-width: 600px) {
  .margin-s {
    margin-top: 50px;
  }
}
.margin-mini {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .margin-mini {
    margin-top: 25px;
  }
}

/* text */
/* 後でデザインに合わせて変更 */
.text-color {
  /* color: #ff6347; */
  color: #707070;
}

.humberger {
  display: none;
}

/* drawermenu */
@media (max-width: 900px) {
  a {
    font-family: sans-serif;
    text-decoration: none;
  }
  .humberger {
    display: block;
    height: 60px;
    position: relative;
    z-index: 10;
    width: 60px;
    border: none;
    background-color: transparent;
    margin-left: 20px;
  }
  .humberger.-active .humberger__line {
    background-color: transparent;
  }
  .humberger.-active .humberger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .humberger.-active .humberger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /* .humberger.-active .humberger__text::before {
    content: "閉じる";
  } */
  .humberger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    background-color: #172e59;
    transition: 0.4s;
  }
  .humberger__line:before,
  .humberger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #172e59;
    transition: inherit;
  }
  .humberger__line:before {
    top: -6px;
  }
  .humberger__line:after {
    top: 6px;
  }
  .humberger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .humberger__text::before {
    /* content: "メニュー"; */
    text-align: center;
    color: #172e59;
    font-size: 10px;
    font-weight: 900;
  }

  .header {
    width: 300px;
  }
  .header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    height: 100vh;
    width: 300px;
    visibility: hidden;
    padding-top: 60px;
    background-color: #fff;
    transition: 0.4s;
  }
  .header__nav-area.-active {
    left: 0;
    visibility: visible;
  }
  .global-navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
  }
  .global-navigation__list > li {
    padding-bottom: 20px;
    border-bottom: 2px solid #e7e9ee;
  }
  .global-navigation__list > li + li {
    margin-top: 20px;
  }
  .global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #ad6c43;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 0.875rem;
  }
  .global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
  }
  .global-navigation__link.-accordion::after {
    content: "";
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #ed3242;
    transform: translateY(-50%);
    transition: transform 0.4s;
  }
  .global-navigation__link.-accordion::before {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #ed3242;
    transform: translateY(-50%);
  }
  .global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
  }
  .accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
  }
  .accordion__list li {
    font-size: 0.75rem;
  }
  .accordion__list li + li {
    margin-top: 21px;
  }
  .accordion__link {
    color: #172e59;
  }
}

/* header */
.header__logo {
  width: 100%;
  margin: auto;
}
@media (max-width: 900px) {
  .header__logo {
    width: 48px;
    margin: auto;
  }
}
.header {
  /* border: 1px solid red; */
  height: 100vh;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  position: sticky;
  top: 0;
  left: 0;
  width: 210px;
  flex-shrink: 0;
  background-color: rgb(255, 255, 255, 0.5);
  color: #ad6c43;
  font-size: 1.8rem;
  line-height: 75px;
}
@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
  }

  .header {
    padding: 5px 25px;
    width: 100%;
    position: relative;
    display: flex;
    height: auto;
    top: 0;
    left: 0;
    flex-shrink: 0;
    font-size: 1.8rem;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  /* .header-sns__blc {
    width: 100px;
  } */
  .header__sns {
    gap: 20px;
    display: flex;
    width: 50px;
    margin-bottom: 10px;
  }
  .header__navigation {
    display: none;
  }
}
.global-navigation__sns {
  display: flex;
  gap: 20px;
}
/* .header__nav-area,
.js-nav-area {
  display: none;
} */

/* .header__navigation {
  text-align: right;
}
.header__navigation ul {
  display: flex;
  gap: 40px;
  font-size: 2rem;
}
@media (max-width: 900px) {
  .header__navigation {
    display: none;
  }
} */

/* header end */

/* contents */
.contents {
  /* background-color: aqua; */
  padding: 0 30px;
  flex-grow: 1;
}
/* contents end */

/* footer */
.footer {
  /* border: 1px solid red; */
  background-color: #e6ddd8;
  padding: 50px;
  margin-top: 165px;
  position: relative;
  min-width: 100%;
}
.footer-logo {
  width: 110px;
  margin: auto;
}
.footer-small {
  text-align: center;
}
/* footer end */

/* kv */
.kv {
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 1160/655;
}

/* footer */
.footer-img {
  width: 317px;
  position: absolute;
  top: 0;
  left: calc(50% - 317px / 2);
  transform: translateY(-100%) translateX(70%);
}
@media (max-width: 900px) {
  .footer {
    margin-top: 80px;
  }
  .footer-img {
    width: 120px;
    position: absolute;
    left: 35%;
    transform: translate(-5%, -98%);
  }
}
