@charset "UTF-8";
body {
  font-family: "Yu Gothic", YuGothic, Helvetica, Arial,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ,
    sans-serif;
  background-color: #f4eedd;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}
.section-inner {
  width: 80%;
  margin: 0 auto;
}
/* PCの時は（横幅767px以上の時は）表示する */
.pc-only {
  display: block;
}
/* SPの時は（横幅1024px以下の時は）表示しない */
.sp-only {
  display: none;
}


/** -------- タブレット -------- **/
@media screen and (max-width: 1024px) {
  .section-inner {
    padding: 0 24px;
    width: 90%;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/** -------- スマホ -------- **/
@media screen and (max-width: 767px) {
  .section-inner {
    padding: 0 40px;
    max-width: 90%;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/** -----------------------------------
    テキスト
-------------------------------------**/

h2.large {
  font-family: "Cabin", sans-serif;
  color: #4d4a4a;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
}

p.large {
  color: #4d4a4a;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-weight: bold;
  text-align: center;
}

p.medium {
  color: #4d4a4a;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.14em;
  font-weight: bold;
  text-align: center;
}

p.small {
  /* color: #4d4a4a; */
  color: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.14em;
  font-weight: bold;
  text-align: center;
}

p.poli-large {
  color: #4d4a4a;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-weight: bold;
}

p.poli-small {
  color: #4d4a4a;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 1024px) {
  h2.large {
    font-family: "Cabin", sans-serif;
    color: #4d4a4a;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.6;
    letter-spacing: 0.2em;
    padding-top: 70px;
    padding-bottom: 40px;
    text-align: center;
  }
  p.large {
    color: #4d4a4a;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.14em;
    font-weight: bold;
    text-align: center;
  }

  p.medium {
    color: #4d4a4a;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.14em;
    font-weight: bold;
    text-align: center;
  }

  p.small {
    color: #4d4a4a;
    font-size: 11px;
    line-height: 2;
    letter-spacing: 0.14em;
    font-weight: bold;
    text-align: center;
  }

  p.poli-large {
    color: #4d4a4a;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.14em;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  h2.large {
    font-family: "Cabin", sans-serif;
    color: #4d4a4a;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 0.2em;
    padding-top: 70px;
    padding-bottom: 40px;
    text-align: center;
  }

  p.poli-large {
    color: #4d4a4a;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.14em;
    font-weight: bold;
  }

  p.poli-small {
    color: #4d4a4a;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.14em;
  }
}

/** -----------------------------------
    ヘッダー
-------------------------------------**/

.poli{
  margin-top: 100px;
}

#header {
  background-color: #f4eedd;
  width: 100%;
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

  .header-logo {
    width: 170px;
  }


@media screen and (max-width: 1024px) {
  .header-logo {
    display: flex;
    align-items: center;
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  #header{
    padding: 25px 40px;
  }
  .header-logo {
    width: 80px;
  }
}

/** -----------------------------------
    ハンバーガーメニュー
-------------------------------------**/
#toggle-box {
  position: relative;
  width: 36px;
  height: 32px;
  cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #4d4a4a;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  width: 40%;
  height: 100%;
  padding-top: 80px;
  background: #fff691;
  color: #4d4a4a;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
  list-style: none;
}

#nav-content a {
  display: block;
  color: #4d4a4a;
  text-decoration: none;
  padding: 15px 0;
  transition: opacity 0.6s ease;
}

#nav-content a:hover {
  opacity: 0.6;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #4d4a4a;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}


#footer {
  background-color: #4b4b4b;
  text-align: center;
  padding: 60px 0;
  margin-top: 100px;
  width: 100vw;
  margin: 0 calc((100% - 100vw) / 2);
}

#footer a {
  color: #f4eedd;
}

.footer-link,
.copyright {
  font-size: 15px;
}

.copyright {
  color: #f4eedd;
}

.footer-link {
  margin-bottom: 20px;
}

.footer-link li {
  display: inline;
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  #footer {
    background-color: #4b4b4b;
    text-align: center;
    padding: 20px 0;
    width: 100vw;
    margin: 0 calc((100% - 100vw) / 2);
  }
  .footer-link {
    display: none;
  }
  .copyright,
  .policy {
    font-size: 11px;
  }
}
