@charset "UTF-8";
/*---------------------------------------
基本設定
---------------------------------------*/
html,
body {
  box-sizing: border-box;
  color: #755F34;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: 0.08em;
  margin: 0;
  background-color: #fff;
  line-height: 170%;
}

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

::-moz-selection {
  background: #eee;
}

::selection {
  background: #eee;
}

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

.header {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width:640px) {
  .header {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width:1025px) {
  .header {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.header h1 {
  margin-bottom: 0;
}
.headerInner {
  display: flex;
  align-items: center;
  height: 64px;
  background-color: #fff;
}
@media screen and (min-width:1025px) {
  .headerInner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    height: 96px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header .drawer {
  margin-left: auto;
}
.header .tel {
  margin-left: clamp(22px, 3vw, 30px);
}
@media screen and (max-width:1024px) {
  .header .tel {
    display: none;
  }
}

.contents .contact {
  background-color: #B9F2FF;
  padding-top: 76px;
  padding-bottom: 80px;
  margin-bottom: 0;
}
@media screen and (max-width:1024px) {
  .contents .contact {
    padding-bottom: 50px;
  }
}
.contents .contactInner {
  background-color: rgba(255, 255, 255, 0.6);
  padding-bottom: clamp(40px, 4.8vw, 48px);
  position: relative;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 16px;
}
@media screen and (max-width:639px) {
  .contents .contactInner {
    padding-bottom: 24px;
  }
}
.contents .contact .h2-style {
  font-size: 28px;
  color: #005DB4;
  background-color: #fff;
  position: relative;
  filter: drop-shadow(2px 4px 0px #FFD646);
  padding: 10px clamp(32px, 4vw, 40px);
  padding-left: calc(clamp(32px, 4vw, 40px) + 0.2em);
  border-radius: 100px;
  margin-top: -37px;
}
.contents .contact .h2-style br {
  display: none;
}
@media screen and (max-width:639px) {
  .contents .contact .h2-style {
    padding-left: auto;
    padding: 15px 20px 24px 20px;
    font-size: clamp(21px, 2.4vw, 24px);
    line-height: 1.3;
  }
  .contents .contact .h2-style br {
    display: block;
  }
}
.contents .contact .h2-style:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -24px;
  margin-top: -11px;
  border: 24px solid transparent;
  border-top: 24px solid #fff;
}
.contents .contact h3 {
  color: #005DB4;
  font-size: clamp(18px, 2vw, 20px);
  margin-top: clamp(18px, 2vw, 20px);
  margin-bottom: clamp(21px, 2.4vw, 24px);
  text-align: center;
}
@media screen and (max-width:639px) {
  .contents .contact h3 {
    font-size: 15px;
  }
  .contents .contact h3 br {
    display: none;
  }
}
.contents .contact p {
  margin-bottom: clamp(14px, 1.6vw, 16px);
  text-align: center;
}
.contents .contact p:last-child {
  margin-bottom: clamp(32px, 4vw, 40px);
}
@media screen and (max-width:639px) {
  .contents .contact p br {
    display: none;
  }
}

.footer {
  background-color: #0EA6E7;
  color: #fff;
  padding-top: 28px;
}
@media screen and (min-width:1025px) {
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (max-width:639px) {
  .footerInner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .footerInner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width:640px) {
  .footer {
    padding-top: 34px;
  }
}
@media screen and (min-width:1025px) {
  .footer {
    padding-top: 40px;
  }
}
.footerInner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: clamp(24px, 3.2vw, 32px);
}
@media screen and (max-width:639px) {
  .footerInner {
    display: block;
  }
}
.footerInfo {
  flex-grow: 1;
}
.footerInfo > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width:639px) {
  .footerInfo > div {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .footerInfo > div {
    width: 100%;
    justify-content: space-between;
  }
}
.footerInfo h3 {
  font-size: clamp(15px, 1.7vw, 17px);
}
@media screen and (max-width:639px) {
  .footerInfo h3 {
    text-align: center;
  }
}
.footerInfo p {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}
.footerInfo strong {
  background-color: #ccc4b1;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 8px;
  display: inline-block;
}
@media screen and (max-width:639px) {
  .footerInfo span {
    display: block;
    margin-top: 10px;
  }
}
.footerRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footerNav {
  display: none;
}
@media screen and (min-width:1025px) {
  .footerNav {
    display: block;
  }
}
.footerNav ul {
  display: flex;
}
.footerNav ul li a {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: bold;
  margin-left: 25px;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.footer .copyright {
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 14px;
  background-color: #0096D6;
}
@media screen and (min-width:1025px) {
  .footer .copyright {
    margin-left: -32px;
    margin-right: -32px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  .footer .copyright {
    font-size: 12px;
  }
}
@media screen and (max-width:639px) {
  .footer .copyright {
    font-size: 11px;
  }
}
.footer .copyright a {
  color: #fff;
}

@media screen and (max-width:639px) {
  section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width:1024px) and (min-width:640px) {
  section {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width:1025px) {
  section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

section {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width:640px) {
  section {
    margin-top: 51.2px;
    margin-bottom: 51.2px;
  }
}
@media screen and (min-width:1025px) {
  section {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}

.section-fill {
  background: #0EA6E7;
  padding-top: 32px;
  padding-bottom: 32px;
}
.section-fill .h2-style {
  color: #fff;
}
@media screen and (min-width:640px) {
  .section-fill {
    padding-top: 51.2px;
    padding-bottom: 51.2px;
  }
}
@media screen and (min-width:1025px) {
  .section-fill {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

section > div[class$=Inner] {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

section > div.narrow {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/*---------------------------------------
グロナビ
---------------------------------------*/
.gnav {
  position: fixed;
  top: 0;
  left: -100%;
  left: 0;
  z-index: 99;
  transition: 0.5s ease-out;
  width: 100%;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width:1024px) {
  .gnav {
    pointer-events: none;
  }
}
@media screen and (max-width:1024px) {
  .gnav {
    opacity: 0;
  }
}
@media screen and (min-width:1025px) {
  .gnav {
    height: 96px;
    position: relative;
    left: auto;
  }
}
@media screen and (min-width:1025px) {
  .gnav ul.nav-list {
    display: flex;
    justify-content: space-between;
  }
}

.nav-toggle:checked ~ .gnav {
  left: 0;
  pointer-events: auto;
  overflow: hidden;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .gnav {
    background: transparent;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
  }
  .gnav ul.nav-list {
    background-color: #fff;
    padding-top: 64px;
  }
  .gnav ul.nav-list li {
    font-size: 17px;
    border-top: 1px solid #005DB4;
    padding-left: 32px;
    padding-right: 32px;
  }
  .gnav ul.nav-list li:last-child {
    border-bottom: 1px solid #005DB4;
  }
  .gnav ul.nav-list li a {
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
    color: #005DB4;
  }
  .gnav ul.nav-list li a:after {
    content: url(../../assets/img/cmn/ico_arrow_navy.svg);
    margin-left: auto;
  }
}
@media screen and (min-width:1025px) {
  .gnav {
    overflow: hidden;
  }
  .gnav ul.nav-list li {
    margin-left: 20px;
  }
  .gnav ul.nav-list li a {
    display: flex;
    height: 96px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    white-space: nowrap;
  }
  .gnavContact {
    background-color: #0EA6E7;
  }
  .gnavContact a {
    display: block;
    color: #fff;
    height: 96px;
    width: 128px;
  }
}
/*---------------------------------------
ハンバーガーメニュー
---------------------------------------*/
.btn-burger {
  background-color: #005DB4;
  cursor: pointer;
  display: block;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999999;
  transition: 0.2s ease-out;
}
.btn-burger .icon, .btn-burger .icon:after, .btn-burger .icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 28px;
  background-color: #fff;
  cursor: pointer;
  margin: auto;
  transition: 0.2s ease-out;
}
.btn-burger .icon:before {
  top: 8px;
  margin: 0;
}
.btn-burger .icon:after {
  top: -8px;
  margin: 0;
}
@media screen and (min-width:1025px) {
  .btn-burger {
    display: none;
  }
}

.nav-toggle {
  display: none;
}
.nav-toggle:checked ~ .btn-burger {
  background-color: #0EA6E7;
  background-color: transparent;
}
.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: #005DB4;
  transform: rotate(-45deg);
  top: 0;
}
.nav-toggle:checked ~ .btn-burger .icon:after {
  background-color: #005DB4;
  transform: rotate(45deg);
  top: 0;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:639px) {
  .flex-between {
    flex-direction: column;
  }
}
.flex-between > div {
  width: 100%;
}
@media screen and (max-width:639px) {
  .flex-between > div {
    margin-bottom: 16px;
  }
}
@media screen and (max-width:639px) {
  .flex-between {
    margin-bottom: 32px;
  }
  .flex-between img {
    width: 100%;
  }
}

.flex-reverse > div:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width:639px) {
  .flex-reverse > div:nth-child(odd) {
    flex-direction: column;
  }
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.flex-grid .flex-item {
  width: calc((100% - 60px) / 3);
  background-color: #ccc;
}

@media not all and (min-width: 768px) {
  .item {
    width: 100%;
  }
}
h2, h3, h4 {
  line-height: 140%;
}

.h2-style {
  font-size: 40px;
  margin-bottom: 36px;
  font-weight: bold;
  color: #0EA6E7;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width:639px) {
  .h2-style {
    font-size: 32px;
  }
}
.h2-style small {
  line-height: 1.3;
  font-size: 24px;
  display: block;
}
@media screen and (max-width:639px) {
  .h2-style small {
    font-size: 19.2px;
  }
}
.h2-style small {
  margin-bottom: 8px;
}
@media screen and (max-width:639px) {
  .h2-style {
    margin-bottom: 28.8px;
  }
  .h2-style small {
    margin-bottom: 6.4px;
  }
}

h3 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.h3-style {
  font-size: 30px;
  margin-bottom: 24px;
}
@media screen and (max-width:639px) {
  .h3-style {
    font-size: 24px;
    margin-bottom: 19.2px;
  }
}

.h3-style {
  color: #0EA6E7;
  margin-bottom: clamp(40px, 4.8vw, 48px);
}
.h3-style img {
  margin-bottom: clamp(21px, 2.8vw, 28px);
}

.h4-style {
  margin-bottom: 16px;
  font-size: clamp(21px, 2.4vw, 24px);
  text-align: center;
  margin-bottom: 24px;
}

/*---------------------------------------
links
---------------------------------------*/
a {
  color: #755F34;
  text-decoration: none;
  transition: 0.2s ease-out;
}
a img {
  transition: 0.2s ease-out;
}

a:hover {
  color: #ccc4b1;
  opacity: 0.8;
  text-decoration: none;
}
a:hover img {
  opacity: 0.8;
}

a.link-text {
  color: #0EA6E7;
  position: relative;
}
a.link-text::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0EA6E7;
  border-right: 2px solid #0EA6E7;
  transform: rotate(45deg);
}

a[class^=btn] {
  box-sizing: content-box;
  background-color: #fff;
  color: #E7690E;
  border: 2px solid #E7690E;
  font-weight: bold;
  height: 36px;
  line-height: 36px;
  font-size: clamp(13px, 1.5vw, 15px);
  border-radius: 100px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}
a[class^=btn]:hover {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width:639px) {
  a[class^=btn] {
    font-size: 13px;
  }
}
a[class^=btn].accent {
  background-color: #E7690E;
  color: #fff;
}
a[class^=btn].accent:after {
  content: url(../../assets/img/cmn/ico_arrow.svg);
  filter: brightness(1000%);
}
a[class^=btn].accent.back:after {
  content: none;
}
a[class^=btn].accent.back:before {
  background-image: none;
  display: inline-block;
  filter: brightness(1000%);
  position: relative;
  transform: scale(-1, 1);
  top: 2px;
  margin-right: 8px;
}
a[class^=btn].large {
  font-weight: bold;
  padding: 12px 56px;
  height: auto;
  line-height: auto;
}
a[class^=btn].large:before {
  background-position: right 24px center;
}

.btn {
  padding: 0 24px;
}
.btn:after {
  display: inline-block;
  content: url(../../assets/img/cmn/ico_arrow.svg);
  position: relative;
  top: 2px;
  margin-left: 8px;
}
.btn.back:after {
  content: none;
}
.btn.back:before {
  background-image: none;
  display: inline-block;
  content: url(../../assets/img/cmn/ico_arrow.svg);
  position: relative;
  transform: scale(-1, 1);
  top: 2px;
  margin-right: 8px;
}

/*---------------------------------------
table
---------------------------------------*/
.table-style {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin: 0.5em 0;
}
.table-style th {
  background-color: #0EA6E7;
  color: #ffffff;
  text-align: center;
  padding: 12px;
}
.table-style td {
  background-color: #DBF6FB;
  text-align: left;
  padding: 12px;
}
.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;
}

ul.listCheck {
  margin-bottom: clamp(32px, 4vw, 40px);
}
ul.listCheck li:before {
  content: url(../../assets/img/cmn/ico_check.svg);
  margin-right: 5px;
  top: 6px;
  position: relative;
}
ul.listCheck li:not(last-child) {
  margin-bottom: 6px;
}

ul.listAttention li {
  font-size: 0.9em;
  line-height: 1.4em;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
ul.listAttention li:before {
  content: "※";
  margin-right: 0.3em;
}
ul.listAttention li:not(last-child) {
  margin-bottom: 6px;
}

.listNormal li {
  padding: 4px 8px 4px 15px;
  line-height: 1.4;
  position: relative;
}
.listNormal li:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 7px;
  background-color: #0EA6E7;
  position: absolute;
  top: 10px;
  left: 0;
  margin: auto;
}

.note {
  background: #eee;
  padding: 0 40px;
  border-radius: 20px;
  font-size: 13px;
  color: #888;
  max-height: 300px;
  overflow-y: scroll;
}

.attention {
  color: #b54444;
  font-size: 13px;
  border: 2px dotted #b54444;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.bg-s {
  background-color: #005DB4;
}

.bg-w {
  background-color: #fff;
}

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

.txtL {
  text-align: left;
}

.txtR {
  text-align: right;
}

.strong {
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 60%, #FFD646 60%);
  font-weight: bold;
}

.big {
  font-size: 112%;
}

.small {
  font-size: 85%;
}

.weak {
  color: #755F34;
}

span.nowrap {
  white-space: nowrap;
}

/*---------------------------------------
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: 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: #DBF6FB;
  padding: 24px;
  border-radius: 24px;
  margin: 1em 0;
}
@media screen and (min-width:640px) {
  .bg-gray {
    padding: 24px 40px;
  }
}

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

hr {
  border: none;
  background-color: #ffffff;
  border-width: 2px 0 0 0;
  border-top: 1px solid;
  border-color: #ccc;
  margin: 3em 0;
}

/*---------------------------------------
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 */

.mail-section {
  background-color: #E6F7FF;
  color: #005DB4;
  font-weight: bold;
  font-size: 1.1em;
  padding: 6px 14px;
  border-left: 6px solid #0EA6E7;
  border-radius: 6px;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

