@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.2rem;
  text-align: center;
}
html, body {
  scroll-padding-top: 70px;
}
p {
  text-align: justify;
  line-height: 3.2rem;
  letter-spacing: 0.1rem;
}
.bold {
  font-weight: bold;
}
/*-- pc --*/
@media screen and (min-width: 768px),print {
  body {
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
  html, body {
    scroll-padding-top: 90px;
  }
}

/*------
header
------*/

/*-- 共通・sp --*/
.header {
  width: 100%;
  height: 60px;
  background-color: #fafafa;
  position: fixed;
  z-index: 999;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}
.logo-link {
  position: absolute;
  z-index: 201;
  left: 20px;
}
.header h1 {
  font-size: 1.3rem;
  color: #333;
  position: absolute;
  left: 24px;
  top: 10px;
}

.header-logo {
  max-width: 120px;
  height: auto;
}
.header__navigation {
  display: none;
}

/*-- pc --*/
@media screen and (min-width: 768px),print {
  .header {
    height: 80px;
  }
  .header-container {
    padding: 25px 40px 0 0;
  }
  .header h1 {
    top: 16px;
    left: 20px;
  }
  .header-logo {
    max-width: 152px;
    height: auto;
    position: absolute;
    top: -23px;
  }
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 40px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-family: "Kaisei Opti", serif;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }
  #phone {
    display: none;
  }
}

/*-- sp ハンバーガーアイコン --*/
@media (max-width: 767px) {
  #phone {
    width: 40px;
    height: auto;
    position: absolute;
    top: 18px;
    right: 68px;
    z-index: 201;
  }
  #phone img {
    width: 40px;
    height: auto;
  }
  #nav-drawer {
    display: block;
    position: relative;
    text-align: right;
    padding: 18px 24px 0 0;
    z-index: 200;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span::before, #nav-open span::after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #333;
    display: block;
    content: "";
    transition: all 0.25s;/*ゆっくり動かす*/
  }
  #nav-open span::before {
    bottom: -8px;
  }
  #nav-open span::after {
    bottom: -16px;
  }
  /*-- 3本線をXに変える --*/
  #nav-input:checked ~ #nav-open span::before {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
  }
  #nav-input:checked ~ #nav-open span {
    position: relative;
    top: 10px;
    transform: rotate(45deg);/*45度下げる*/
    transition: all 0.25s;/*ゆっくり動かす*/
  }
  #nav-input:checked ~ #nav-open span:after {
    position: relative;
    bottom: 0;
    transform: rotate(-90deg);/*45度上げる*/
    transition: all 0.25s;/*ゆっくり動かす*/
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 60%;
    height: 100%;
    background-color: #f4e5dc;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title {
    display: block;
    font-size: 2.0rem;
    font-weight: 600;
    color: #d6929f;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
  }
  nav ul {
    margin-top: 80px;
    margin-left: 20px;
  }
}


/*---------------
main
---------------*/

/*-- 共通・sp --*/
.main {
  background-color: #f6f6f6;
  padding-bottom: 60px;
  position: relative;
  z-index: 100;
}
.section-content-wrapper {
  padding-left: 24px;
  padding-right: 24px;
}
.section-flex {
  display: flex;
  flex-direction: column-reverse;
}
.section-title {
  font-size: 2.8rem;
  font-family: "Kaisei Opti", serif;
  margin-top: 80px;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: #FFAA8D;
}
.h3__title {
  color: #006A87;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 2.0rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

/*-- pc --*/
@media screen and (min-width: 768px),print {
  .section-content-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
  }
  .section-flex {
    display: flex;
    flex-direction: row;
  }
  .section-title {
    font-size: 3.6rem;
    font-family: "Kaisei Opti", serif;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-align: left;
    padding-left: 50px;
    margin-top: 100px;
    margin-bottom: 50px;
    position: relative;
  }
  .section-title::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 12px;
    width: 40px;
    height: 3px;
    background: #FFAA8D;
  }
}

.about__img {
  width: 100%;
  height: auto;
}

.section-wrapper {
  width: 100%;
}

a:hover {
  opacity: 0.5;
}
/*クラスを当てたところを消す*/
.none {
  display: none;
}

/*---------------
footer
---------------*/

/*-- 共通・sp --*/
.footer {
  height: 350px;
  background-color: #F4E5DC;
  color: #333;
  font-size: 1.8rem;
  position: relative;
}
.footer a {
  color: #333;
  text-decoration: none;
}
.footer__content-wrapper {
  position: absolute;
  top: 40px;
}
.footer__box-cross {
  position: relative;
  margin: 0 20px;
  padding: 1em 2em;
  border-top: solid 2px #333333;
  border-bottom: solid 2px #333333;
  color: #333;
  font-weight: bold;
}
.footer__box-cross:before, .footer__box-cross:after {
  position: absolute;
  top: -20px;
  width: 2px;
  height: calc(100% + 40px);
  background-color: #333;
  content: "";
}
.footer__box-cross:before {
  position: absolute;
  left: 20px;
}
.footer__box-cross:after {
  position: absolute;
  right: 20px;
}
.footer__nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__nav {
  text-align: left;
  font-family: "Kaisei Opti", serif;
  letter-spacing: 0.1rem;
  font-weight: bold;
  margin-top: 10px;
  padding-left: 20px;
}
.footer__nav li {
  padding-bottom: 12px;
}
.footer__nav li a {
  font-size: 16px;
}
.footer__sns-icon {
  font-size: 24px;
  color: #333;
  padding-right: 20px;
  margin-top: 35px;
  align-items: center;
}
.footer__sns-icon li {
  padding-left: 40px;
  padding-top: 14px;
}
.footer__copyright {
  padding-top: 20px;
  font-size: 12px;
}
/*-- pc --*/
@media screen  and (min-width: 768px),print {
  .footer {
    height: 340px;
    background-color: #F4E5DC;
    color: #333;
    font-size: 1.8rem;
    position: relative;
  }
  .footer__nav {
  font-size: 1.6rem;
  }
  .footer__sns-icon {
    font-size: 32px;
    color: #333;
    align-items: center;
    display: flex;
    justify-content: end;
  }
  .footer__sns-icon li {
    padding-left: 40px;
    padding-top: 10px;
    cursor: pointer;
  }
}