@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;
}

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


 Contact


*********************************/
#contact .concept {
  margin-top: 80px;
}
#contact .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%;
}
#contact .concept h2 img {
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80%;
}
@media screen and (min-width: 600px) {
  #contact .concept h2 img {
    max-width: 212px;
  }
}
@media screen and (min-width: 600px) {
  #contact .concept h2 {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1024px) {
  #contact .concept h2 {
    font-size: 34px;
    height: 116px;
  }
}
#contact .concept h3 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 80px;
}
#contact .concept h3::before {
  max-width: 141px;
}
#contact .concept h4 {
  color: #FA8D74;
  font-size: clamp(1.125rem, 0.972rem + 0.74vw, 1.25rem);
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #contact .concept h4 {
    text-align: left;
  }
}
#contact .concept__inner {
  max-width: 1300px;
  padding: 10px 0 80px;
}
@media screen and (min-width: 768px) {
  #contact .concept__inner {
    padding: 30px 0 80px;
  }
}
@media screen and (min-width: 1024px) {
  #contact .concept__inner {
    padding: 50px 0 100px;
  }
}
#contact .concept__inner .concept__img:nth-of-type(2) {
  left: 0;
  max-width: 120px;
  width: 20%;
}
@media screen and (min-width: 1024px) {
  #contact .concept__inner .concept__img:nth-of-type(2) {
    max-width: 180px;
  }
}
#contact .concept__inner .concept__img:nth-of-type(3) {
  max-width: 120px;
  right: 0;
  width: 20%;
}
@media screen and (min-width: 768px) {
  #contact .concept__inner .concept__img:nth-of-type(3) {
    top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #contact .concept__inner .concept__img:nth-of-type(3) {
    max-width: 180px;
  }
}
#contact .concept__wrap {
  margin: 0 auto;
  max-width: 1000px;
}
#contact .concept__box {
  row-gap: 20px;
}
#contact .concept__tel {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #C9C9C9;
  line-height: 1.7;
  padding: 25px 10px;
  row-gap: 10px;
}
#contact .concept__tel p:nth-of-type(1) {
  font-size: 35px;
  font-weight: 900;
}
#contact .concept__img {
  margin-bottom: 10px;
}
#contact .contact-form h2 {
  color: #000;
  font-weight: 700;
  margin-bottom: 70px;
}
#contact .contact-form h2::before {
  max-width: 141px;
}
#contact .contact-form p {
  line-height: 1.7;
}
#contact .contact-form__inner {
  max-width: 1000px;
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  #contact .contact-form__inner {
    padding: 70px 0 100px;
  }
}

.mail-contact {
  margin: 40px 0;
}
.mail-contact .main-ttl {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mail-contact .form-container {
  width: 100%;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.mail-contact .form-group {
  margin-bottom: 20px;
}
.mail-contact .form-group label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mail-contact .form-group label .required {
  color: #ff4444;
  font-size: 14px;
  margin-left: 5px;
  background: #ff4444;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: normal;
}
.mail-contact .form-group input[type=text],
.mail-contact .form-group input[type=email],
.mail-contact .form-group input[type=tel] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mail-contact .form-group input[type=text]:focus,
.mail-contact .form-group input[type=email]:focus,
.mail-contact .form-group input[type=tel]:focus {
  outline: none;
  border-color: #1ab3d5;
  -webkit-box-shadow: 0 0 5px rgba(26, 179, 213, 0.3);
          box-shadow: 0 0 5px rgba(26, 179, 213, 0.3);
}
.mail-contact .form-group input[type=text]::-webkit-input-placeholder, .mail-contact .form-group input[type=email]::-webkit-input-placeholder, .mail-contact .form-group input[type=tel]::-webkit-input-placeholder {
  color: #999;
}
.mail-contact .form-group input[type=text]::-moz-placeholder, .mail-contact .form-group input[type=email]::-moz-placeholder, .mail-contact .form-group input[type=tel]::-moz-placeholder {
  color: #999;
}
.mail-contact .form-group input[type=text]:-ms-input-placeholder, .mail-contact .form-group input[type=email]:-ms-input-placeholder, .mail-contact .form-group input[type=tel]:-ms-input-placeholder {
  color: #999;
}
.mail-contact .form-group input[type=text]::-ms-input-placeholder, .mail-contact .form-group input[type=email]::-ms-input-placeholder, .mail-contact .form-group input[type=tel]::-ms-input-placeholder {
  color: #999;
}
.mail-contact .form-group input[type=text]::placeholder,
.mail-contact .form-group input[type=email]::placeholder,
.mail-contact .form-group input[type=tel]::placeholder {
  color: #999;
}
.mail-contact .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
}
.mail-contact .form-group textarea:focus {
  outline: none;
  border-color: #1ab3d5;
  -webkit-box-shadow: 0 0 5px rgba(26, 179, 213, 0.3);
          box-shadow: 0 0 5px rgba(26, 179, 213, 0.3);
}
.mail-contact .form-group textarea::-webkit-input-placeholder {
  color: #999;
}
.mail-contact .form-group textarea::-moz-placeholder {
  color: #999;
}
.mail-contact .form-group textarea:-ms-input-placeholder {
  color: #999;
}
.mail-contact .form-group textarea::-ms-input-placeholder {
  color: #999;
}
.mail-contact .form-group textarea::placeholder {
  color: #999;
}
.mail-contact .form-submit {
  text-align: center;
  margin-top: 30px;
}
.mail-contact .form-submit .submit-btn {
  background: #1ab3d5;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease;
  transition: background-color 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  font-family: "Zen Maru Gothic", sans-serif;
}
.mail-contact .form-submit .submit-btn:hover {
  background: #158ba8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.mail-contact .form-submit .submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .mail-contact .main-ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .mail-contact .form-container {
    padding: 20px;
    margin: 0 15px;
  }
  .mail-contact .form-group {
    margin-bottom: 15px;
  }
  .mail-contact .form-group label {
    font-size: 14px;
  }
  .mail-contact .form-group input[type=text],
  .mail-contact .form-group input[type=email],
  .mail-contact .form-group input[type=tel],
  .mail-contact .form-group textarea {
    font-size: 16px;
  }
  .mail-contact .form-submit .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .mail-contact .main-ttl {
    font-size: 20px;
  }
  .mail-contact .form-container {
    padding: 15px;
    margin: 0 10px;
  }
}/*# sourceMappingURL=contact.css.map */