@charset "UTF-8";
/* ======================================================================
 🌎 Root Variables
====================================================================== */
:root {
  --BorderRadius: .8rem;
  --ColorBackground: #fff;
  --ColorBorder: #ddd;
  --ColorBtn: #f29d42;
  --ColorLink: #222;
  /* 🎨 Colors */
  --ColorPrimary: #87cefa;
  --ColorSecondary: #366d9e;
  --ColorText: #222;
  --ContentWidth: 90%;
  --FontMontser: "Montserrat";
  --FontNoto: "Noto Sans JP";
  /* 🔤 Typography */
  --FontPrimary: "Noto Sans JP";
  --FontSizeBase: 1.6rem;
  --FontSizeLg: 1.8rem;
  --FontSizeSm: 1.4rem;
  --FontWeightBold: 700;
  --FontWeightNormal: 400;
  /* 📏 Layout */
  --MaxWidth: 110rem;
  --MinWidth: 32rem;
  --ShadowMd: 0 .4rem .8rem rgba(0, 0, 0, .15);
  --ShadowSm: 0 .2rem .4rem rgba(0, 0, 0, .1);
  /* 🎭 Effects */
  --Transition: all .3s ease;
}

/* ======================================================================
  🛠️ Reset & Box Model
====================================================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-y: auto;
  font-size: 10px;
  line-height: normal;
  scroll-behavior: smooth;
}

body {
  color: var(--ColorText);
  font-size: var(--FontSizeBase);
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴシック ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: var(--FontSizeBase);
  }
}

/* ======================================================================
 🏗️ Structure
====================================================================== */
#l-wrapper {
  position: relative;
  overflow: hidden;
  min-width: var(--MinWidth);
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media only screen and (min-width: 768px) {
  #l-wrapper {
    min-width: var(--MaxWidth);
  }
}

.l-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: var(--MaxWidth);
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .l-container {
    padding: 0;
  }
}

/* ======================================================================
 🖼️ Images
====================================================================== */
img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  border: 0;
  vertical-align: top;
  -webkit-transition: var(--Transition);
  transition: var(--Transition);
}

.OvHover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* 🔝 Back to Top Button */
.page-up {
  position: fixed;
  right: -550px;
  bottom: 10%;
  z-index: 999;
  width: 12%;
}
@media only screen and (min-width: 768px) {
  .page-up {
    bottom: 120px;
    width: auto;
  }
}
.page-up a {
  display: block;
}

/* ======================================================================
 🔗 Links 
====================================================================== */
a {
  color: var(--ColorLink);
  text-decoration: underline;
  -webkit-transition: var(--Transition);
  transition: var(--Transition);
  /* Phone link adjustments */
}
a:hover {
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}

/* ======================================================================
 📝 Typography
====================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--FontWeightBold);
  line-height: 1.8;
}

p,
li,
pre,
td,
th,
dt,
dd {
  line-height: 1.6;
}

/* ======================================================================
 📝 Button
====================================================================== */
.c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding: 1rem;
  min-width: 24rem;
  border: none;
  border-radius: 5rem;
  background: linear-gradient(-58deg, rgb(54, 109, 158) 0%, rgb(89, 173, 229) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: var(--FontWeightBold);
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .c-button {
    padding: 1.5rem;
    min-width: 32rem;
    font-size: 2rem;
  }
  .c-button:hover {
    background: rgb(123, 195, 243);
  }
}
.c-button a {
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.c-button:after {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  display: block;
  margin: auto;
  width: 1.5rem;
  height: 2rem;
  background: url(../images/common_img/arrow.webp) no-repeat center center/contain;
  content: "";
}
.c-button--back {
  border: 1px solid var(--ColorSecondary);
  background: #fff;
  color: var(--ColorSecondary);
}
.c-button--back:after {
  right: auto;
  left: 2rem;
  background: url(../images/common_img/back.webp) no-repeat center center/contain;
}
.c-button--back2:after {
  right: auto;
  left: 2rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ======================================================================
 📝 List
====================================================================== */
.c-list-1 a {
  text-decoration: none;
}
.c-list-1 a:hover {
  text-decoration: underline;
}
.c-list-1__item {
  margin-left: 2rem;
  list-style-type: number;
}

.c-list-2,
.c-list-3 {
  margin-left: 2rem;
}

.c-list-disc {
  margin-bottom: 2rem;
}
.c-list-disc li {
  margin-left: 2rem;
  list-style-type: disc;
}

.c-list-number {
  margin-bottom: 2rem;
}
.c-list-number li {
  margin-left: 2rem;
  list-style-type: decimal;
}

/* ======================================================================
 📝 Photo layout
====================================================================== */
.c-photo-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 3rem;
}
.c-photo-left p {
  font-size: 1.4rem;
}

.c-photo-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}
.c-photo-center p {
  font-size: 1.4rem;
}

.c-photo-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 3rem;
}
.c-photo-right p {
  font-size: 1.4rem;
}

.c-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}

/* ======================================================================
 📝 Title
====================================================================== */
.c-title-1 {
  text-align: center;
  font-weight: var(--FontWeightBold);
  font-size: 2.4rem;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .c-title-1 {
    font-size: 3.6rem;
  }
}
.c-title-1:after {
  display: block;
  margin: 1rem auto 3rem;
  width: 13rem;
  height: 1px;
  background: var(--ColorPrimary);
  content: "";
}
@media only screen and (min-width: 768px) {
  .c-title-1:after {
    width: 23rem;
  }
}

.c-title-2 {
  margin-bottom: 1rem;
  color: var(--ColorSecondary);
  font-size: 1.6rem;
}

.c-title-3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.c-title-4 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
.c-title-4 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
}
@media only screen and (min-width: 768px) {
  .c-title-4 img {
    width: 5.1rem;
  }
}
.c-title-4__text {
  display: inline-block;
  margin-left: 4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #59ade5;
  color: var(--ColorSecondary);
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .c-title-4__text {
    margin-left: 7rem;
    padding-right: 1rem;
    padding-left: 1rem;
    width: 100%;
    font-size: 3.4rem;
  }
}

.c-title-5 {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #282828;
  border-left: none;
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .c-title-5 {
    font-size: 2.8rem;
  }
}

.c-title-6 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.c-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ======================================================================
 📝 Header
====================================================================== */
.l-header {
  z-index: 100;
  padding-bottom: 2rem;
  width: 100%;
  background: var(--ColorPrimary);
}
@media only screen and (min-width: 768px) {
  .l-header {
    position: relative;
    padding-bottom: 0;
    min-width: var(--MaxWidth);
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .l-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .l-header__search {
    position: absolute;
    top: 2.5rem;
    right: 10rem;
    width: 20rem;
    height: 4.5rem;
  }
}

.c-logo {
  display: block;
  margin-right: 2rem;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .c-logo {
    width: 49.6rem;
  }
}

.c-search-form {
  margin: 0 2rem;
  padding: 0 2rem;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .c-search-form {
    margin: 0;
    padding: 0;
  }
}
.c-search-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .c-search-form form {
    border-radius: 4rem;
  }
}
.c-search-form input {
  padding: 0 4rem;
  width: calc(100% - 4.5rem);
  height: 100%;
  border: none;
  background: transparent;
  font-family: var(--FontPrimary);
}
.c-search-form input:focus {
  outline: none;
}
.c-search-form__btn {
  width: 4.5rem;
  border: none;
  background: transparent;
}

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

/* ======================================================================
 📝 Footer
====================================================================== */
.l-footer {
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .l-footer {
    padding: 3rem 0;
    font-size: 1.4rem;
  }
}

.c-copyright {
  margin: 0;
  padding: 0;
}

/* ======================================================================
 📝 c-contact
====================================================================== */
.c-contact {
  padding: 2rem 0;
  background: url(../images/common_img/f_bg.webp) no-repeat center center/cover;
}
@media only screen and (min-width: 768px) {
  .c-contact {
    margin: 0 2rem;
    padding: 10rem 0;
    border-radius: 1rem;
    background: url(../images/common_img/pc_bg.webp) no-repeat center center/cover;
  }
}
@media only screen and (min-width: 768px) {
  .c-contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-contact__title {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: var(--FontWeightBold);
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-contact__title {
    margin-right: 4rem;
    text-align: left;
    font-size: 2.5rem;
    line-height: 1.6;
  }
}
.c-contact__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.c-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding: 1rem;
  min-width: 24rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.83);
  text-decoration: none;
  font-weight: var(--FontWeightBold);
}
@media only screen and (min-width: 768px) {
  .c-contact__btn:hover {
    background: rgb(123, 195, 243);
  }
}
.c-contact__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.4rem;
}