@charset "UTF-8";
/*---------------------------------------
基本設定
---------------------------------------*/
html,
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #57453E;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 640px) {
  html,
  body {
    font-size: 15px;
  }
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/*---------------------------------------
ヘッダー
---------------------------------------*/
.header {
  margin: 0;
  position: relative;
  background-color: #FAF8EF;
}

.headerWrap {
  padding: 18px 0px 17px 16px;
}

@media screen and (min-width: 1280px) {
  .headerWrap {
    padding: 28px 2.9vw 30px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header h1 {
  max-width: 136px;
  margin-bottom: 0;
  width: 100%;
}

.header h1 a img {
  width: 100%;
}

.header h1 img {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .header h1 {
    max-width: 216px;
  }
}

.pd {
  padding-left: 24px;
  padding-right: 24px;
}

/*---------------------------------------
フッター
---------------------------------------*/
.footer {
  position: relative;
  text-align: center;
  border-top: 8px solid #221D7F;
  border-bottom: 8px solid #221D7F;
  background-color: #FFF;
}

.footer .footerNav {
  display: none;
}

.footer .footerInfoWrap {
  padding: 3em 24px 2em;
}

.footer .footerInfoWrap .footerInfo img {
  margin-bottom: 20px;
  width: 60%;
}

@media screen and (min-width: 1025px) {
  .footer .footerInfoWrap .footerInfo img {
    width: 320px;
  }
}

.footer .footerInfoWrap .footerInfo address {
  display: block;
}

.footer .footerInfoWrap .footerInfo address p {
  line-height: 1.4em;
  margin-bottom: 0.5em;
  font-weight: 500;
  font-size: 14px;
}

.footer .footerInfoWrap .copyright {
  display: block;
  margin-top: 3em;
  font-family: "Poppins", sans-serif;
  color: #221D7F;
  font-weight: 700;
}

.footer .footerInfoWrap .copyright a {
  color: #221D7F;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (min-width: 1025px) {
  .footer {
    text-align: left;
    border-top: none;
  }
  .footer .footerNav {
    background-color: #FAF8EF;
    display: block;
    border-bottom: 8px solid #221D7F;
  }
  .footer .footerNav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 1024px;
    padding: auto;
    gap: 24px;
  }
  .footer .footerNav ul li a {
    color: #221D7F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
  .footer .footerNav ul .nav-contact a {
    color: #CE3F00;
    background-color: #FFF;
    border: 2px solid #CE3F00;
    width: 164px;
    margin: auto;
    border-radius: 100px;
    padding: 7px 0;
    font-size: 15px;
    font-weight: 700;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: center;
  }
  .footer .footerNav ul .nav-contact a:before {
    content: "";
    display: block;
    background-image: url(/assets/img/cmn/mail-icon.svg);
    width: 20px;
    height: 15px;
    margin-right: 6px;
  }
  .footer .footerNav ul .nav-tel {
    margin-left: calc(55px - 24px);
  }
  .footer .footerNav ul .nav-tel a {
    max-width: 236px;
  }
  .footer .footerNav ul .nav-tel a img {
    width: 100%;
  }
  .footer .footerInfoWrap {
    padding: 40px 24px;
  }
  .footer .footerInfoWrap .footerInfo {
    text-align: center;
  }
  .footer .footerInfoWrap .footerInfo img {
    width: 216px;
  }
  .footer .footerInfoWrap .footerInfo address {
    text-align: center;
  }
  .footer .footerInfoWrap .footerInfo address .br {
    display: none;
  }
  .footer .footerInfoWrap .footerInfo address .post-code {
    margin-right: 5px;
  }
  .footer .copyright {
    font-size: 12px;
    text-align: center;
    font-family: "Poppins", sans-serif;
  }
}

/*---------------------------------------
グロナビ
---------------------------------------*/
.gnav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99;
  background: #FAF8EF;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.gnav .nav-list {
  list-style: none;
  margin-top: 80px;
  margin-bottom: 24px;
  padding-left: 0;
  text-align: center;
}

.gnav .nav-list li {
  position: relative;
  border-top: 1px solid #221D7F;
}

.gnav .nav-list li a {
  font-weight: bold;
  text-decoration: none;
  color: #57453E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #221D7F;
  padding: 24px 0;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
}

@media screen and (min-width: 640px) {
  .gnav .nav-list li a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
}

.gnav .nav-list li a:after {
  content: "";
  display: inline-block;
  background-image: url(../img/cmn/arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.gnav .nav-list .nav-contact a {
  color: #CE3F00;
  background-color: #FFF;
  border: 2px solid #CE3F00;
  max-width: 280px;
  margin: auto;
  border-radius: 100px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 700;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 24px;
}

.gnav .nav-list .nav-contact a:before {
  content: "";
  display: block;
  background-image: url(/assets/img/cmn/mail-icon.svg);
  width: 20px;
  height: 15px;
  margin-right: 6px;
}

.gnav .nav-list .nav-tel {
  border-top: none;
}

.gnav .nav-list .nav-tel a {
  max-width: 236px;
  margin: auto;
  padding: 0;
  margin-top: 24px;
}

.gnav .nav-list .nav-tel a img {
  width: 100%;
}

.gnav .nav-list li:nth-child(7) a:after, .gnav .nav-list li:nth-child(8) a:after {
  display: none;
}

@media screen and (min-width: 1280px) {
  .gnav {
    background-color: initial;
    left: 0;
    height: auto;
    z-index: 0;
    position: initial;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .gnav .nav-list {
    height: auto;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: min(1.7vw,24px);
    margin-bottom: 0;
  }
  .gnav .nav-list li {
    padding: 0;
    text-align: center;
    border: none;
    margin-bottom: 0;
  }
  .gnav .nav-list li:last-child {
    margin-right: 0;
  }
  .gnav .nav-list li a {
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 0;
  }
  .gnav .nav-list li a:after {
    display: none;
  }
  .gnav .nav-list .current {
    position: relative;
  }
  .gnav .nav-list .current:after {
    content: "";
    display: block;
    background-color: #CE3F00;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    bottom: -8px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .gnav .nav-list .nav-contact a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 164px;
    margin: 0;
  }
  .gnav .nav-list .nav-tel a {
    margin: 0;
  }
}

@media screen and (min-width: 1280px) and (min-width: 1400px) {
  .gnav .nav-list .nav-tel {
    margin-left: min(2.6vw,36px);
  }
}

.nav-toggle:checked ~ .gnav {
  left: 0;
}

/*---------------------------------------
ハンバーガーメニュー
---------------------------------------*/
.btn-burger {
  background-color: #FFF;
  cursor: pointer;
  display: block;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 100;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  margin-bottom: 0;
}

.btn-burger .icon, .btn-burger .icon:before, .btn-burger .icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 20px;
  background-color: #221D7F;
  cursor: pointer;
  margin: auto;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.btn-burger .icon:before {
  top: 7px;
  margin: 0;
}

.btn-burger .icon:after {
  top: -7px;
  margin: 0;
}

@media screen and (min-width: 1280px) {
  .btn-burger {
    display: none;
  }
}

.nav-toggle {
  display: none;
}

.nav-toggle:checked ~ .btn-burger {
  background-color: #11ffee00;
}

.nav-toggle:checked ~ .btn-burger .icon, .nav-toggle:checked ~ .btn-burger .icon:before, .nav-toggle:checked ~ .btn-burger .icon:after {
  background-color: transparent;
}

.nav-toggle:checked ~ .btn-burger .icon:before {
  background-color: #221D7F;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.nav-toggle:checked ~ .btn-burger .icon:after {
  background-color: #221D7F;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

/*---------------------------------------
heading
---------------------------------------*/
.h2-style {
  color: #ffffff;
  margin: 1.5em 0;
  text-align: center;
  font-size: 1.75rem;
}

.h2-style strong {
  font-size: 144%;
}

.h2-style > span {
  white-space: nowrap;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.h2-style > span > span {
  position: relative;
}

.h2-style > span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #57453E;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}

.h3-style {
  color: #221D7F;
  font-size: 1.375rem;
}

.h4-style {
  color: #221D7F;
  margin-bottom: 16px;
  font-size: 1.125rem;
  text-align: center;
}

/*---------------------------------------
links
---------------------------------------*/
a {
  color: #1F61F4;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

a:hover {
  color: #ffffff;
  opacity: 0.6;
}

a:hover img {
  opacity: 0.6;
}

a.link-text {
  color: #221D7F;
  position: relative;
}

a.link-text::before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #221D7F;
  border-right: 2px solid #221D7F;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*---------------------------------------
table
---------------------------------------*/
.table-style {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin: 0.5em 0;
}

.table-style th {
  background-color: #221D7F;
  color: #ffffff;
  text-align: center;
  padding: 12px 8px;
}

.table-style td {
  background-color: #FAF8EF;
  text-align: left;
  padding: 12px 8px;
}

.table-style .nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 640px) {
  .table-style th {
    padding-left: 24px;
    padding-right: 24px;
  }
  .table-style td {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/*---------------------------------------
list
---------------------------------------*/
ul {
  padding-left: 0;
  list-style: none;
}

.listNormal li {
  padding: 4px 8px 4px 15px;
  line-height: 2;
  position: relative;
}

.listNormal li:before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #CE3F00;
  position: absolute;
  top: 16px;
  left: 0;
  margin: auto;
}

/*---------------------------------------
form
---------------------------------------*/
/*---------------------------------------
text/fonts
---------------------------------------*/
.txtC {
  text-align: center;
}

.txtL {
  text-align: left;
}

.txtR {
  text-align: right;
}

.strong {
  font-weight: bold;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #FFEEA8));
  background: -webkit-linear-gradient(transparent 40%, #FFEEA8 40%);
  background: linear-gradient(transparent 40%, #FFEEA8 40%);
  font-weight: bold;
}

.big {
  font-size: 112%;
}

.small {
  font-size: 85%;
}

.weak {
  color: #57453E;
}

span.nowrap {
  white-space: nowrap;
}

.dpi {
  display: inline-block;
}

/*---------------------------------------
layout
---------------------------------------*/
.img1 img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 640px) {
  .img1 img {
    height: 320px;
  }
}

@media screen and (min-width: 1025px) {
  .img1 img {
    width: 1024px;
    height: 400px;
  }
}

@media screen and (min-width: 1025px) {
  .img1 {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.img2,
.img3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.img2 img,
.img3 img {
  width: calc(50% - 1px);
  height: 144px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 1px;
}

.img2 img:last-child,
.img3 img:last-child {
  width: 50%;
  margin-right: 0;
}

@media screen and (min-width: 640px) {
  .img2 img,
  .img3 img {
    height: 280px;
  }
}

@media screen and (min-width: 1025px) {
  .img2 img,
  .img3 img {
    width: 512px;
    height: 320px;
  }
}

@media screen and (min-width: 1025px) {
  .img2,
  .img3 {
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.img3 img {
  width: calc(33.3% - 1px);
}

.img3 img:last-child {
  width: 33.3%;
}

@media screen and (min-width: 640px) {
  .img3 img {
    height: 240px;
  }
}

@media screen and (min-width: 1025px) {
  .img3 img {
    width: 33.3%;
    height: 280px;
  }
}

@media screen and (min-width: 1025px) {
  .img3 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}

.opT {
  -o-object-position: 50% 0;
  object-position: 50% 0;
}

.opB {
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}

.full-width {
  width: 100vw;
  margin-left: calc((100% - 100vw)/2);
}

.bg-gray {
  background-color: #FAF8EF;
  padding: 24px;
}

@media screen and (min-width: 640px) {
  .bg-gray {
    padding: 24px 64px;
  }
}

.waku-box {
  border: 2px solid #E5DDD3;
  padding: 24px;
  border-radius: 16px;
}

hr {
  border: none;
  background-color: #ffffff;
  border-width: 2px 0 0 0;
  border-top: 1px solid;
  border-color: #57453E;
}

/*---------------------------------------
misc
---------------------------------------*/
.pc {
  display: none;
}

@media screen and (min-width: 640px) {
  .pc {
    display: inherit;
  }
}

.sp {
  display: inherit;
}

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

@media screen and (min-width: 640px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*# sourceMappingURL=style.css.map */