/*======================================
    Font / Color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 62.5%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  color: #646464;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.is-nowrap {
  white-space: nowrap;
}

/*======================================
    header
======================================*/
.header {
  position: relative;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 calc(57 / 1440 * 100vw) 0 calc(60 / 1440 * 100vw);
  height: 110px;
}

@media screen and (max-width: 768px) {
  .header__inner {
    height: 100px;
    padding: 0 0 0 calc(40 / 750 * 100vw);
  }
}

.header__logo {
  width: 174px;
  max-width: 80%;
}

.header__contents {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header__contents {
    display: none;
  }
}

.header__tel--link {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: #41A3E1;
  padding-left: 1.3846em;
  position: relative;
}

.header__tel--link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0385em;
  height: 1.3077em;
  background: url(../img/icon-tel.svg) no-repeat center center/contain;
}

.header__links--container {
  margin-left: 48px;
}

.header__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-column-gap: calc(45 / 1440 * 100vw);
}

.header__link a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 11px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.header__link a:hover {
  opacity: 0.7;
}

.header__email {
  background-color: #41A3E1;
  position: relative;
}

.header__email::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 37px;
  height: 26px;
  background: url(../img/icon-mail.svg) no-repeat center center/contain;
}

.header__line {
  background-color: #41A3E1;
  position: relative;
}

.header__line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 36px;
  height: 34px;
  background: url(../img/icon-line.svg) no-repeat center center/contain;
}

.header__insta {
  background-color: #fff;
}

.drawer-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 300;
}

@media screen and (min-width: 1440px) {
  .drawer-icon {
    display: none;
  }
}

@media screen and (max-width: 1439px) {
  .drawer-icon {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon.is-active .drawer-bar1 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-icon.is-active .drawer-bar2 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-icon.is-active .drawer-menu {
  opacity: 0;
}

.drawer-bars {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #41A3E1;
}

.drawer-bar1,
.drawer-bar2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: top .5s ease, -webkit-transform .5s ease;
  transition: top .5s ease, -webkit-transform .5s ease;
  transition: top .5s ease, transform .5s ease;
  transition: top .5s ease, transform .5s ease, -webkit-transform .5s ease;
}

.drawer-bar1 {
  top: 26px;
}

.drawer-bar2 {
  top: 40px;
}

.drawer-menu {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.drawer-content {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 299;
  background-color: #41A3E1;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  opacity: 0;
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, opacity .5s ease;
  transition: transform .5s ease, opacity .5s ease, -webkit-transform .5s ease;
}

@media screen and (min-width: 1440px) {
  .drawer-content {
    display: none;
  }
}

@media screen and (max-width: 1439px) {
  .drawer-content {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .drawer-content {
    display: block;
  }
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer-lists {
  padding: 40px 0.5em;
}

.drawer-list a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.75;
  padding: 0.5em 0;
  text-align: center;
}

/*======================================
    footer
======================================*/
.footer {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-top: max(110 / 750 * 100vw, 86px);
  }
}

.footer__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 900px;
  max-width: 95%;
  margin: 0 auto;
  height: 65px;
}

@media screen and (max-width: 768px) {
  .footer__links {
    display: none;
  }
}

.footer__link {
  border-right: 2px solid #41A3E1;
}

.footer__link:first-child {
  border-left: 2px solid #41A3E1;
}

.footer__link a {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: #41A3E1;
  padding: 0.25em 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.footer__link a:hover {
  opacity: 0.7;
}

.footer__links--sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: calc(3 / 750 * 100vw);
}

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

@media screen and (max-width: 1439px) {
  .footer__links--sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__links--sp {
    display: -ms-grid;
    display: grid;
  }
}

.footer__link--sp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: max(110 / 750 * 100vw, 86px);
  background-color: #41A3E1;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  padding-bottom: 14px;
}

.footer__link--sp a span {
  display: block;
  position: relative;
}

.footer__link--sp a span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.footer__sp--tel {
  padding-top: 2.8889em;
}

.footer__sp--tel::before {
  width: 1.5em;
  height: 1.8889em;
  background: url(../img/icon-tel_white.svg) no-repeat center center/contain;
}

.footer__sp--mail {
  padding-top: 2.7778em;
}

.footer__sp--mail::before {
  width: 2.6111em;
  height: 1.7222em;
  background: url(../img/icon-mail.svg) no-repeat center center/contain;
}

.footer__sp--line {
  padding-top: 3.3333em;
}

.footer__sp--line::before {
  width: 2.7778em;
  height: 2.6667em;
  background: url(../img/icon-line.svg) no-repeat center center/contain;
}

.footer__sp--insta {
  padding-top: 3.3333em;
}

.footer__sp--insta::before {
  width: 2.7778em;
  height: 2.7778em;
  background: url(../img/icon-insta_white.svg) no-repeat center center/contain;
}

/*======================================
    TOP
======================================*/
.mv__texts {
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 15px black;
  font-size: 2.8rem;
  position: absolute;
  top: 33%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 768px) {
  .mv__texts {
    font-size: min(28 / 750 * 100vw, 2.8rem);
    top: 39%;
  }
}

.mv__lead {
  font-size: 1.8929em;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mv__text {
  margin-top: 30px;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}

.top-news__wrap {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 920px;
  max-width: 90%;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .top-news__wrap {
    bottom: 20px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.top-news {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  padding: 12px 57px 20px 14px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.top-news::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 27px;
  width: 3px;
  height: 24px;
  background-color: #646464;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .top-news::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 12px calc(14 / 750 * 100vw) 20px;
    gap: calc(35 / 750 * 100vw);
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-size: calc(18 / 750 * 100vw);
  }
}

.top-news__head {
  font-size: 1.5556em;
}

.top-news__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 94px auto;
      grid-template-columns: 94px auto;
  grid-gap: 30px;
  line-height: 1.38889;
  margin-top: 13px;
}

@media screen and (max-width: 768px) {
  .top-news__container {
    grid-gap: calc(28 / 1440 * 100vw);
    -ms-grid-columns: 5.5em auto;
        grid-template-columns: 5.5em auto;
  }
}

.top-news__title a {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.top-news__title a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  .top-news__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 768px) {
  .top-news__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.mv-bg {
  position: relative;
}

.mv-imgs {
  gap: 4px;
  display: -ms-grid;
  display: grid;
}

.mv-img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.mv-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-img1,
.mv-img2,
.mv-img3 {
  height: 255px;
}

.mv-img1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 41;
  grid-column: 1 / 42;
}

@media screen and (max-width: 768px) {
  .mv-img1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 33;
    grid-column: 1 / 34;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: min(259 / 750 * 100vw, 259px);
  }
}

.mv-img2 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 42;
  -ms-grid-column-span: 38;
  grid-column: 42 / 80;
}

@media screen and (max-width: 768px) {
  .mv-img2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 34;
    -ms-grid-column-span: 42;
    grid-column: 34 / 76;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: min(259 / 750 * 100vw, 259px);
  }
}

.mv-img3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 80;
  -ms-grid-column-span: 28;
  grid-column: 80 / 108;
}

@media screen and (max-width: 768px) {
  .mv-img3 {
    display: none;
  }
}

.mv-img4 {
  margin-bottom: -54px;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  -ms-grid-column: 108;
  -ms-grid-column-span: 37;
  grid-column: 108 / 145;
}

@media screen and (max-width: 768px) {
  .mv-img4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 47;
    -ms-grid-column-span: 29;
    grid-column: 47 / 76;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    height: min(400 / 750 * 100vw, 400px);
  }
}

.mv-img5,
.mv-img6 {
  height: 305px;
}

.mv-img5 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 51;
  grid-column: 1 / 52;
}

@media screen and (max-width: 768px) {
  .mv-img5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 39;
    grid-column: 1 / 40;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    height: min(330 / 750 * 100vw, 330px);
  }
}

.mv-img6 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 52;
  -ms-grid-column-span: 56;
  grid-column: 52 / 108;
}

@media screen and (max-width: 768px) {
  .mv-img6 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 46;
    grid-column: 1 / 47;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    height: min(400 / 750 * 100vw, 400px);
  }
}

.mv-img7 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / 3;
  -ms-grid-column: 108;
  -ms-grid-column-span: 37;
  grid-column: 108 / 145;
  margin-top: 54px;
}

@media screen and (max-width: 768px) {
  .mv-img7 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 40;
    -ms-grid-column-span: 36;
    grid-column: 40 / 76;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    margin-top: 0;
    height: min(330 / 750 * 100vw, 330px);
  }
}

/*======================================
    contact
======================================*/
.contact {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  color: #41A3E1;
  font-size: 2.4rem;
  font-weight: 700;
}

.contact__container {
  width: 900px;
  max-width: 95%;
  margin: 40px auto 0;
  padding: 40px 40px 60px;
  background-color: rgba(65, 163, 225, 0.2);
}

@media screen and (max-width: 768px) {
  .contact__container {
    padding: 20px 20px 40px;
  }
}

.contact__container p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.75;
}

.contact-form {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .contact-form {
    font-size: 1.6rem;
  }
}

.form__list {
  padding: 20px 0;
}

.form__dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 14.5em auto;
      grid-template-columns: 14.5em auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .form__dl {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

.form__title {
  font-weight: 700;
}

.is-required {
  display: inline-block;
  margin-left: 1em;
  padding: 0.5em;
  font-size: 0.8em;
  background-color: #41A3E1;
  color: #fff;
}

.form__input input {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 18px;
  width: 100%;
}

.form__input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: #fff;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 18px;
  width: 100%;
  resize: none;
  height: 240px;
}

.form__submit {
  text-align: center;
  margin-top: 50px;
}

.form__submit [type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  border: none;
  background-color: #41A3E1;
  font-weight: 700;
  color: #fff;
  padding: 15px;
  width: 304px;
  max-width: 100%;
  display: inline-block;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.form__submit [type="submit"]:hover {
  opacity: 0.7;
}
