@charset "UTF-8";
/* Color */
/* maxWidth */
/* ナビゲーション */
/******************************************************************

StyleSheet: ベーススタイル

******************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", "メイリオ", sans-serif;
  letter-spacing: 0.02em;
}

.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

picture {
  display: block;
}

a {
  color: #000;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

#global-container {
  min-width: 330px;
}

#main-container {
  overflow: hidden;
}

.wrap {
  margin: 0 20px auto;
}

.wrap-90 {
  margin: 0 auto;
  width: 90%;
}

/********************************
 共通クラス
*********************************/
.flex-row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

/* font-weight */
.fw-bold {
  font-weight: 700;
}

.fw-semiBold {
  font-weight: 600;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-light {
  font-weight: 300;
}

/********************************
 タイトル
*********************************/
.main-ttl {
  color: #FA8D74;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
}
.main-ttl::before {
  background-image: url(./images/icon/07.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -50px;
  content: "";
  height: 30px;
  left: 50%;
  max-width: 141px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.sec-ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(./images/icon/13.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 21px;
  font-weight: 900;
  height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 275px;
  padding-bottom: 10px;
  width: 80%;
}

/********************************
 共通
*********************************/
.com-btn {
  background-color: #FA8D74;
  border-radius: 30px;
  height: 60px;
  position: relative;
}
.com-btn a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.com-btn img {
  height: 15px;
  left: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.com-img__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  padding: 50px 0 0;
}
@media screen and (min-width: 768px) {
  .com-img__box {
    max-width: 200px;
    width: 30%;
  }
}

.border-line {
  border-top: 1px solid #C9C9C9;
  margin: 0 auto;
  max-width: 1000px;
}

/********************************
 カラー
*********************************/
.c-main {
  color: #FA8D74;
  font-weight: 400;
}

/********************************
 ディスプレイ用
*********************************/
.hidden {
  visibility: hidden;
}

.d-none {
  display: none;
}

.lg-flex {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.lg-block {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg-block {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .lg-none {
    display: none;
  }
}

.md-flex {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 768px) {
  .md-none {
    display: none !important;
  }
}

.md-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .md-block {
    display: block;
  }
}

.sm-block {
  display: none;
}
@media screen and (min-width: 600px) {
  .sm-block {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .sm-none {
    display: none;
  }
}

/********************************
 微調整
*********************************/
.aj1 {
  letter-spacing: -1px;
}
@media screen and (min-width: 600px) {
  .aj1 {
    letter-spacing: 0.02em;
  }
}

.aj08 {
  letter-spacing: -0.8px;
}
@media screen and (min-width: 600px) {
  .aj08 {
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 600px) {
  .sm-aj1 {
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 768px) {
  .sm-aj1 {
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) {
  .md-aj07 {
    letter-spacing: -0.7px;
  }
}
@media screen and (min-width: 1024px) {
  .md-aj07 {
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 768px) {
  .md-aj08 {
    letter-spacing: -0.8px;
  }
}
@media screen and (min-width: 1024px) {
  .md-aj08 {
    letter-spacing: 0.02em;
  }
}

@media screen and (min-width: 1024px) {
  .lg-aj02 {
    letter-spacing: -0.2px;
  }
}

/********************************


 mobile-menu


*********************************/
.mobile-menu {
  background-color: #DCF3F3;
  left: 0;
  margin-top: 80px;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.mobile-menu p {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.563rem, 0.181rem + 1.85vw, 0.875rem);
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 600px) {
  .mobile-menu p {
    font-size: 15px;
  }
}
.mobile-menu a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-left: 20px;
}
.mobile-menu__inner {
  height: calc(100vh - 80px);
  padding: 10px 0 0;
}
.mobile-menu__nav ul {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  height: 100%;
}
.mobile-menu__nav li {
  border-bottom: 1px double #CCCCCC;
  height: 20%;
  position: relative;
}
.mobile-menu__nav li a {
  padding: 1.5em 1em;
}
.mobile-menu__nav li::before {
  background-image: url(./images/icon/21.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
}
.mobile-menu__txt {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10% 0;
  row-gap: 10px;
}
.mobile-menu__logo {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 20%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
  max-width: 330px;
  width: 80%;
}
.mobile-menu__address {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 10px;
}
.mobile-menu__address ul {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: clamp(0.563rem, 0.181rem + 1.85vw, 0.875rem);
  line-height: 1.9;
}
@media screen and (min-width: 600px) {
  .mobile-menu__address ul {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    font-size: 14px;
  }
}
.mobile-menu__address ul li:nth-child(1) {
  font-weight: 700;
}
.mobile-menu__box {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FA8D74;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  width: 80px;
}
.mobile-menu__box p {
  color: #FFFFFF;
  font-size: 15px;
  letter-spacing: -1px;
}
.mobile-menu__btn {
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu__btn span {
  background-color: #FFFFFF;
  display: block;
  height: 1px;
  margin-bottom: 12px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 43px;
}
.mobile-menu__btn span:last-child {
  margin-bottom: 5px;
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.menu-open .mobile-menu__btn span {
  background-color: #FFFFFF;
}
.menu-open .mobile-menu__btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(135deg);
          transform: translateY(10px) rotate(135deg);
  -webkit-transition-delay: 70ms;
          transition-delay: 70ms;
}
.menu-open .mobile-menu__btn span:nth-child(2) {
  -webkit-transform: translateX(-18px) scaleX(0);
          transform: translateX(-18px) scaleX(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.menu-open .mobile-menu__btn span:nth-child(3) {
  -webkit-transform: translateY(-15px) rotate(-135deg);
          transform: translateY(-15px) rotate(-135deg);
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms;
}

/********************************


 header


*********************************/
.header {
  background-color: #64C9C7;
}
.header__inner {
  margin-left: 20px;
}
.header__box {
  height: 80px;
}
@media screen and (min-width: 768px) {
  .header__box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__logo {
  max-width: 306px;
  width: 72%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 20%;
  }
}
@media (min-width: 800px) {
  .header__logo {
    width: 25%;
  }
}
.header__nav {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 11px;
  font-weight: 900;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 78%;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    font-size: 19px;
  }
}
.header__nav a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 30px;
  width: 100%;
}
.header__nav ul {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.header__nav ul:nth-of-type(1) img {
  height: 11px;
  left: 5%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(1) img {
    height: 18px;
    width: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(1) a {
    width: 180px;
  }
}
.header__nav ul:nth-of-type(1) li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(1) li {
    height: 60px;
  }
}
.header__nav ul:nth-of-type(1) li:nth-child(2) a {
  padding-left: 40px;
}
.header__nav ul:nth-of-type(1) li:nth-child(3) {
  line-height: 1.5;
  text-align: center;
}
.header__nav ul:nth-of-type(1) li:nth-child(3) a {
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(1) li:nth-child(3) a {
    font-size: 15px;
    padding-left: 40px;
    padding-right: 20px;
    width: 195px;
  }
}
.header__nav ul:nth-of-type(2) {
  background-color: #FA8D74;
}
.header__nav ul:nth-of-type(2) img {
  height: 11px;
  width: 15px;
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(2) img {
    height: 13px;
    width: 17px;
  }
}
.header__nav ul:nth-of-type(2) a {
  color: #FFFFFF;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (min-width: 1024px) {
  .header__nav ul:nth-of-type(2) a {
    font-size: 16px;
  }
}
.header__nav ul:nth-of-type(2) li {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.header.nav-trigger {
  background-color: rgba(100, 201, 199, 0.9);
  -webkit-box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header.nav-trigger .header__contact {
  background-color: rgba(250, 141, 116, 0.9);
}

/********************************


 footer


*********************************/
.footer:nth-of-type(1) .footer__inner:nth-of-type(1) {
  background-color: #DCF3F3;
  padding: 50px 0 30px;
}
@media screen and (min-width: 768px) {
  .footer:nth-of-type(1) .footer__inner:nth-of-type(1) {
    padding: 50px 0 60px;
  }
}
.footer:nth-of-type(1) .footer__inner:nth-of-type(2) {
  background-color: #64C9C7;
}
.footer p {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.563rem, 0.181rem + 1.85vw, 0.875rem);
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .footer p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .footer p {
    font-size: 15px;
  }
}
.footer span {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.563rem, 0.181rem + 1.85vw, 0.875rem);
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__wrap {
  max-width: 750px;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .footer__wrap {
    max-width: 1100px;
  }
}
.footer__box {
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.footer__logo {
  max-width: 330px;
  width: 80%;
  margin-bottom: 5px;
}
.footer__address ul {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: clamp(0.563rem, 0.181rem + 1.85vw, 0.875rem);
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .footer__address ul {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__address ul {
    font-size: 14px;
  }
}
.footer__address ul li:nth-child(1) {
  font-weight: 700;
}
.footer__nav {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 45%;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.footer__nav ul {
  font-size: 14px;
  line-height: 2.1;
}
.footer__nav li {
  padding-left: 15px;
  position: relative;
}
.footer__nav li::before {
  background-color: #FA8D74;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
}

/********************************


 Page02/concept


*********************************/
#page02 .concept {
  margin-top: 80px;
}
#page02 .concept h2 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(./images/icon/04.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #FA8D74;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.875rem, -0.042rem + 4.44vw, 1.625rem);
  font-weight: 900;
  height: 90px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-bottom: 10%;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff;
  width: 90%;
}
#page02 .concept h2 img {
  width: 80%;
  max-width: 376px;
}
@media screen and (min-width: 1024px) {
  #page02 .concept h2 img {
    max-width: 488px;
  }
}
@media screen and (min-width: 600px) {
  #page02 .concept h2 {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .concept h2 {
    font-size: 34px;
    height: 116px;
  }
}
#page02 .concept__inner {
  padding: 10px 0 80px;
  max-width: 1300px;
}
@media screen and (min-width: 768px) {
  #page02 .concept__inner {
    padding: 30px 0 80px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .concept__inner {
    padding: 50px 0 60px;
  }
}
#page02 .concept__inner .concept__img:nth-of-type(2) {
  left: 0;
  max-width: 120px;
  width: 20%;
}
@media screen and (min-width: 1024px) {
  #page02 .concept__inner .concept__img:nth-of-type(2) {
    max-width: 180px;
  }
}
#page02 .concept__inner .concept__img:nth-of-type(3) {
  max-width: 120px;
  right: 0;
  width: 20%;
}
@media screen and (min-width: 768px) {
  #page02 .concept__inner .concept__img:nth-of-type(3) {
    top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .concept__inner .concept__img:nth-of-type(3) {
    max-width: 180px;
  }
}
#page02 .concept__img {
  margin-bottom: 10px;
}
#page02 .concept__txt {
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  #page02 .concept__txt {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .concept__txt {
    font-size: 18px;
  }
}
#page02 .concept__box {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: clamp(0.5rem, 0.194rem + 1.48vw, 0.75rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 2;
  margin: 0 auto;
  row-gap: 20px;
}
@media screen and (min-width: 1024px) {
  #page02 .concept__box {
    max-width: 1100px;
  }
}
#page02 .concept__case {
  width: 48%;
  aspect-ratio: 1/0.7;
}
#page02 .concept__case img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#page02 .concept__case figcaption {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #page02 .concept__case figcaption {
    font-size: 16px;
  }
}

/********************************


 Page02/info


*********************************/
#page02 .info {
  background-color: #FEFAEB;
}
#page02 .info h2 {
  max-width: 137px;
  margin-bottom: 90px;
}
#page02 .info h3 {
  color: #FA8D74;
  font-size: clamp(1.125rem, 0.743rem + 1.85vw, 1.438rem);
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #page02 .info h3 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info h3 {
    font-size: 20px;
  }
}
#page02 .info p {
  font-size: clamp(2.125rem, 1.208rem + 4.44vw, 2.875rem);
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #page02 .info p {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info p {
    font-size: 35px;
  }
}
#page02 .info ul {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  #page02 .info ul {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    font-size: 16px;
  }
}
#page02 .info dl {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-size: clamp(0.875rem, 0.722rem + 0.74vw, 1rem);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #page02 .info dl {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info dl {
    font-size: 16px;
  }
}
#page02 .info dt {
  border-bottom: 2px solid #64C9C7;
  font-weight: 500;
  padding-bottom: 10px;
  width: 30%;
}
@media screen and (min-width: 768px) {
  #page02 .info dt {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info dt {
    padding-bottom: 20px;
  }
}
#page02 .info dd {
  border-bottom: 1px solid #E3E3E3;
  height: 100%;
  padding-bottom: 10px;
  padding-left: 10px;
  width: 70%;
}
@media screen and (min-width: 768px) {
  #page02 .info dd {
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info dd {
    padding-bottom: 20px;
  }
}
#page02 .info img.balloon {
  position: absolute;
  top: -150px;
  right: -130px;
  width: 100px;
  display: none;
}
@media (min-width: 1300px) {
  #page02 .info img.balloon {
    display: block;
  }
}
#page02 .info img.human {
  height: auto;
  left: 50%;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -10%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
}
#page02 .info__inner {
  padding: 70px 0;
}
@media screen and (min-width: 1024px) {
  #page02 .info__inner {
    padding: 100px 0;
  }
}
#page02 .info__wrap {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #page02 .info__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info__wrap {
    max-width: 1000px;
  }
}
#page02 .info__date {
  margin-bottom: 100px;
  row-gap: 10px;
}
@media screen and (min-width: 768px) {
  #page02 .info__date {
    margin-bottom: 0;
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info__date {
    row-gap: 20px;
  }
}
#page02 .info__cont {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFFFFF;
  border-radius: 36px;
  line-height: 1.6;
  padding: 80px 0 30px;
  position: relative;
  row-gap: 30px;
  max-width: 516px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #page02 .info__cont {
    margin: 0;
    padding: 50px 10px 30px;
    row-gap: 10px;
    width: 38%;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .info__cont {
    padding: 80px 0 30px;
  }
}
#page02 .info .com-btn {
  max-width: 450px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  #page02 .info .com-btn {
    max-width: 295px;
    height: 50px;
  }
}

/********************************


 Page02/access


*********************************/
#page02 .access h2 {
  margin-bottom: 110px;
}
#page02 .access p {
  font-size: 14px;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  #page02 .access p {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .access p {
    font-size: 14px;
  }
}
#page02 .access dl {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #page02 .access dl {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .access dl {
    font-size: 16px;
  }
}
#page02 .access dt {
  border-bottom: 2px solid #64C9C7;
  font-weight: 500;
  padding-bottom: 20px;
  width: 30%;
}
@media screen and (min-width: 768px) {
  #page02 .access dt {
    width: 20%;
  }
}
#page02 .access dd {
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 20px;
  padding-left: 10px;
  width: 70%;
}
@media screen and (min-width: 768px) {
  #page02 .access dd {
    width: 80%;
  }
}
#page02 .access__inner {
  padding: 50px 0 0;
}
@media screen and (min-width: 1024px) {
  #page02 .access__inner {
    padding: 80px 0 0;
  }
}
#page02 .access__wrap {
  margin-bottom: 130px;
}
@media screen and (min-width: 768px) {
  #page02 .access__wrap {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1024px) {
  #page02 .access__wrap {
    max-width: 1000px;
    padding-bottom: 150px;
  }
}
#page02 .access__wrap .access__img:nth-of-type(1) {
  bottom: 30px;
  left: -30px;
  max-width: 120px;
}
@media screen and (min-width: 1024px) {
  #page02 .access__wrap .access__img:nth-of-type(1) {
    bottom: 50px;
    max-width: 150px;
  }
}
#page02 .access__wrap .access__img:nth-of-type(2) {
  bottom: 0;
  max-width: 120px;
  right: 0;
}
@media screen and (min-width: 1024px) {
  #page02 .access__wrap .access__img:nth-of-type(2) {
    max-width: 165px;
  }
}
@media screen and (min-width: 768px) {
  #page02 .access__box {
    width: 55%;
  }
}
#page02 .access__date {
  margin-bottom: 20px;
  row-gap: 20px;
}
#page02 .access__map {
  max-width: 510px;
  margin: 0 auto;
  aspect-ratio: 1/0.8;
}
@media screen and (min-width: 768px) {
  #page02 .access__map {
    width: 40%;
    margin: 0;
  }
}
#page02 .access__map iframe {
  width: 100%;
  height: 280px;
}/*# sourceMappingURL=page02.css.map */