@charset "UTF-8";
/*共通の要素---------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 1.6rem;
}

body::-webkit-scrollbar {
  /* display: none; */
}

a {
  display: table;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

main {
  overflow: hidden;
  padding-top: 85px;
  background-color: #f0f7f7;
}

@media screen and (max-width: 1024px) {
  main {
    padding-top: 70px;
  }
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 67px;
  }
}

*:focus {
  outline: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #0f2d33;
}

.br-l {
  display: none;
}

@media screen and (max-width: 1024px) {
  .br-l {
    display: block;
  }
}

.br-l-hide {
  display: block;
}

@media screen and (max-width: 1024px) {
  .br-l-hide {
    display: none;
  }
}

.br-m {
  display: none;
}

@media screen and (max-width: 767px) {
  .br-m {
    display: block;
  }
}

.br-m-hide {
  display: block;
}

@media screen and (max-width: 767px) {
  .br-m-hide {
    display: none;
  }
}

.br-s {
  display: none;
}

@media screen and (max-width: 520px) {
  .br-s {
    display: block;
  }
}

.br-s-hide {
  display: block;
}

@media screen and (max-width: 520px) {
  .br-s-hide {
    display: none;
  }
}

.br__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br__sp {
    display: block;
  }
}

@font-face {
  font-family: "Jenna Sue";
  src: url(../font/JennaSue.ttf) format("truetype");
}

/*ヘッダー--------------------------------------------------------------------------------*/
.header {
  font-size: 1.4rem;
  background-color: #f0f7f7;
  width: 100%;
  position: fixed;
  z-index: 100;
}

@media screen and (max-width: 1190px) {
  .header {
    font-size: 1.3rem;
  }
}

.header__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    padding-left: 15px;
    margin-right: 10px;
  }
}

.header__img {
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .header__img {
    max-width: 160px;
  }
}

.header__company {
  font-size: 1.9rem;
  letter-spacing: 0.13em;
  margin-left: 8px;
  white-space: nowrap;
}

@media screen and (max-width: 1190px) {
  .header__company {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .header__company {
    font-size: 1.4rem;
  }
}

.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

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

.header__list {
  margin-right: 2.5vw;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

@media screen and (max-width: 1190px) {
  .header__list {
    margin-right: 1.5vw;
  }
}

.header__list:last-of-type {
  margin-right: 3vw;
}

@media screen and (max-width: 1190px) {
  .header__list:last-of-type {
    margin-right: 1.5vw;
  }
}

.header__list::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background: #7ad4e6;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__list:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header__link {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
  font-family: "Noto Serif JP", sans-serif;
}

.header__link::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(/img/header-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 10px;
}

.header__english {
  color: #7ad4e6;
  padding-left: 15px;
  font-family: "Jenna Sue";
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__download {
  background-color: #b8dee6;
  padding: 20px 15px 15px;
  text-align: center;
  line-height: 1.3;
  font-size: 1rem;
}

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

.header__contact {
  background-color: #fad996;
  padding: 20px 30px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .header__contact {
    font-weight: bold;
    padding: 15px 10px;
  }
}

@media screen and (max-width: 767px) {
  .header__contact {
    font-size: 1rem;
  }
}

.header__icon {
  max-width: 12px;
  margin-bottom: 8px;
}

.header__icon02 {
  max-width: 20px;
  margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
  .header__icon02 {
    max-width: 25px;
    margin-bottom: 5px;
  }
}

.header__text {
  font-family: "Noto Serif JP", sans-serif;
}

/*マウスオーバー-----------------------------------------------------------------*/
.hover {
  display: none;
  padding: 30px 15px 40px;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #e6f1f2;
}

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

.hover02 {
  display: none;
  padding: 30px 15px 40px;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #e6f1f2;
}

.hover__outer {
  max-width: 1024px;
  margin: auto;
  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;
}

.hover__title {
  font-size: 2.8rem;
  font-family: "Noto Serif JP", sans-serif;
}

.hover__subtitle {
  font-size: 3.6rem;
  font-family: "Jenna Sue";
  color: #7ad4e6;
  margin: 10px 0 25px;
	display: block;
}

.hover__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}

.hover__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 695px;
}

.hover__box {
  width: calc(100% / 2 - 10px);
}

.hover__arrow {
  margin: 0 10px 0 0;
}

.hover__img {
  margin-bottom: 10px;
}

.hover__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  font-size: 1.4rem;
}

.hover__link {
  border-bottom: solid 1px #7ad4e6;
  display: block;
  width: 100%;
  max-width: 150px;
  margin-right: 15px;
  padding-bottom: 5px;
  position: relative;
}

.hover__link:last-of-type {
  max-width: 200px;
  margin-right: 0;
}

.hover__link::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(/img/header-arrow.svg);
  background-repeat: no-repeat;
  right: 5px;
  width: 5px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.hover__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 695px;
}

.hover__room {
  width: calc(100% / 2 - 25px);
}

.hover__item {
  font-size: 1.8rem;
  font-family: "Noto Serif JP", sans-serif;
  padding-left: 12px;
  border-left: solid 6px #7ad4e6;
  margin-bottom: 10px;
}

.hover__subitem {
  font-size: 1.4rem;
  border-bottom: solid 1px #7ad4e6;
  padding-bottom: 10px;
  padding-top: 10px;
  display: block;
  position: relative;
}

.hover__subitem:last-of-type {
  margin-bottom: 0;
}

.hover__subitem::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(/img/header-arrow.svg);
  background-repeat: no-repeat;
  right: 5px;
  width: 5px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/*ハンバーガーメニュー--------------------------------------------------------------------*/
.hamburger {
  display: none;
  background-color: #99d3e5;
  padding: 15px 15px 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hamburger02 {
  background-color: rgba(0, 155, 179, 0.69);
}

.hamburger__bar {
  display: block;
  width: 20px;
  height: 3px;
  margin-bottom: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #0f2f33;
}

.hamburger__bar:last-of-type {
  margin-bottom: 0;
}

.hamburger__text {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .hamburger__text {
    font-size: 1rem;
  }
}

.hamburger__text::before {
  content: "MENU";
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.hamburger__text.open::before {
  content: "閉じる";
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cross-top {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
}

.cross-middle {
  opacity: 0;
}

.cross-bottom {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
}

/*ハンバーガーメニュー内-----------------------------------------------------------------*/
.slide {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #E6F1F2;
  padding: 30px 15px 70px;
  overflow-y: scroll;
  height: 100vh;
}

.slide__item {
  color: #009bb3;
  padding-bottom: 10px;
  border-bottom: solid 1px #009bb3;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
}

.slide__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background-image: url(/img/header-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.slide__item02::before, .slide__item03::before, .slide__item04::before {
  display: none;
}

.slide__arrow, .slide__arrow02, .slide__arrow05 {
  max-width: 4px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  right: 0;
  top: 40%;
}

.slide__arrow03, .slide__arrow0203, .slide__arrow0503 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.slide__arrow04, .slide__arrow0204, .slide__arrow0504 {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.slide__ul {
  margin: 20px 0 30px;
  display: none;
}

.slide__head {
  border-left: solid 5px #7ad4e6;
  padding-left: 10px;
  margin-bottom: 15px;
}

.slide__list {
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
  font-size: 1.5rem;
}

.slide__list::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background-color: #7ad4e6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.slide__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 270px;
  margin: 30px auto;
}

.slide__image {
  max-width: 125px;
  margin: auto;
  text-align: center;
  font-size: 1.4rem;
}

.slide__logo {
  padding: 0 15px;
  margin-bottom: 15px;
}

.slide__none {
  overflow: hidden;
}

/*フッター----------------------------------------------------------------------------*/
.footer {
  background-color: #f0f7f7;
}

.footer__info {
  background-color: #f2f2f2;
}

.footer__contact {
  padding: 8rem 15px 0;
}

.footer__contact--outer {
  max-width: 1024px;
  margin: auto;
  background-color: #fff;
  padding: 40px 15px;
}

.footer__contact--title {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", sans-serif;
  text-align: center;
  padding: 20px 0 5px;
  position: relative;
}

.footer__contact--title::before {
  content: "";
  display: inline-block;
  height: 4px;
  width: 20px;
  background-color: #7ad4e6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.footer__contact--subtitle {
  font-size: 1.8rem;
  color: #7ad4e6;
  text-align: center;
  font-family: "Jenna Sue";
}

.footer__contact--text {
  text-align: center;
  margin: 30px 0 35px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .footer__contact--text {
    font-size: 1.5rem;
  }
}

.footer__contact--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 790px;
}

@media screen and (max-width: 767px) {
  .footer__contact--block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__contact--unit {
  width: calc(100% / 2);
  border-right: solid 1px #7ad4e6;
  padding-right: 80px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .footer__contact--unit {
    padding-left: 6.5vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__contact--unit {
    padding: 0;
    width: 100%;
    border-right: none;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: solid 1px #7ad4e6;
  }
}

.footer__contact--unit:last-of-type {
  border: none;
  padding-left: 115px;
  padding-right: 0;
}

@media screen and (max-width: 1024px) {
  .footer__contact--unit:last-of-type {
    padding-left: 9.5vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__contact--unit:last-of-type {
    padding: 0;
    margin: 0;
  }
}

.footer__contact--item {
  color: #7ad4e6;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer__contact--button {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border: solid 1px #7ad4e6;
  border-radius: 40px;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .footer__contact--button {
    max-width: 100%;
  }
}

.footer__contact--button .info__btn--bg {
  background-color: #7ad4e6;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.footer__contact--button:hover .footer__contact--btn {
  color: #fff;
}

.footer__contact--button:hover .footer__contact--btn::before {
  background-image: url(/img/arrow_white.svg);
  -webkit-animation: move 0.7s forwards;
          animation: move 0.7s forwards;
}

.footer__contact--button:hover .info__btn--bg {
  left: 0;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.footer__contact--btn {
  font-size: 1.4rem;
  position: relative;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.footer__contact--btn::before {
  content: "";
  display: inline-block;
  background-image: url(/img/header-arrow.svg);
  background-size: cover;
  width: 5px;
  height: 10px;
  margin-right: 8px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.footer__contact--tel {
  font-size: 2.4rem;
  display: block;
}

.footer__contact--span {
  font-size: 3.4rem;
}

.footer__contact--message {
  font-size: 1.4rem;
  margin-top: 5px;
}

.footer__heading {
  font-size: 6rem;
  color: #7ad4e6;
  text-align: center;
  padding: 60px 0 35px;
  font-family: "Jenna Sue";
}

@media screen and (max-width: 767px) {
  .footer__heading {
    font-size: 3rem;
    padding: 30px 0 20px;
  }
}

.footer__contents {
  background-color: #e1e9ed;
  padding: 30px 15px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer__contents {
    padding: 20px 35px;
  }
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin: auto;
  gap:2rem;
}

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

.footer__img {
  max-width: 330px;
}

.footer__outer {
  max-width: 1054px;
  margin: auto;
  padding: 30px 15px 40px;
}

@media screen and (max-width: 767px) {
  .footer__outer--sp {
    background-color: #009bb3;
    position: relative;
  }
}

.footer__arrow {
  display: none;
}

@media screen and (max-width: 767px) {
  .footer__arrow {
    display: block;
    background-image: url(/img/footer-accordion.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}

.footer__inner {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.footer__unit {
  max-width: 245px;
  width: 100%;
  margin-right: 75px;
}

@media screen and (max-width: 1024px) {
  .footer__unit {
    margin-right: 6vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__unit {
    max-width: 100%;
    margin: 0;
  }
}

.footer__unit:last-of-type {
  margin-right: 30px;
}

@media screen and (max-width: 1024px) {
  .footer__unit:last-of-type {
    margin-right: 2.5vw;
  }
}

@media screen and (max-width: 767px) {
  .footer__unit:last-of-type {
    margin: 0;
  }
}

.footer__unit02 {
  max-width: 355px;
}

@media screen and (max-width: 767px) {
  .footer__unit02 {
    max-width: 100%;
    margin: 20px 0;
  }
}

.footer__subtitle {
  font-size: 1.4rem;
}

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

.footer__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer__ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__item {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-bottom: solid 1px #7ad4e6;
  position: relative;
}

.footer__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(/img/header-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4px;
  height: 7px;
  top: 55%;
  right: 0;
  transform: translateY(-55%);
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
}

.footer__box {
  margin-right: 45px;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .footer__box {
    margin-right: 3vw;
  }
}

.footer__box:last-of-type {
  margin-right: 0;
}

.footer__menu {
  font-size: 1.2rem;
  margin-bottom: 5px;
  line-height: 1.3;
  padding-left: 15px;
  position: relative;
}

.footer__menu::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 4px;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #7ad4e6;
}

.footer__bg {
  background-color: #fff;
  padding: 20px 15px;
}

.footer__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1024px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .footer__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .footer__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__company {
  font-size: 2.4rem;
  letter-spacing: 0.13em;
  margin-left: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .footer__company {
    font-size: 1.9rem;
  }
}

.footer__logo {
  max-width: 320px;
}

@media screen and (max-width: 1024px) {
  .footer__logo {
    max-width: 240px;
  }
}

.footer__text {
  font-size: 1.4rem;
}

.footer__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .footer__section {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}

.footer__tel {
  font-size: 2.8rem;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .footer__tel {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .footer__tel {
    margin: 10px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__span {
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .footer__span {
    font-size: 3rem;
  }
}

.footer__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .footer__image {
    margin: 20px auto 0;
  }
}

.footer__icon {
  max-width: 75px;
}

.footer__icon02 {
  max-width: 58px;
  margin: 0 10px;
}

.footer__icon03 {
  max-width: 60px;
}

.footer__bottom {
  padding: 20px 15px 25px;
  background-color: #7ad4e6;
}

.footer__bottom--outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1024px;
  margin: auto;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footer__bottom--outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.1rem;
  }
}

.footer__bottom--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__bottom--menu {
    margin-bottom: 15px;
  }
}

.footer__bottom--list {
  border-right: solid 1px #fff;
  padding-right: 15px;
  margin-right: 15px;
}

.footer__bottom--list:last-of-type {
  border: none;
  margin: 0;
  padding: 0;
}

.footer__bottom--copy {
  color: #fff;
}

/*スワイパー-----------------------------------------------------------------------*/
.slider {
  overflow: hidden;
  display: none;
}

@media screen and (max-width: 767px) {
  .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  right: 10px;
  width: 40px;
  height: 40px;
}

.slider .swiper-button-next::before,
.slider .swiper-button-prev::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 47, 51, 0.7);
  border-radius: 50%;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  display: none;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  position: absolute;
  z-index: 1;
  background-image: url(/img/swiper-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.slider .swiper-button-prev::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*下層タイトル-------------------------------------------------------------------------*/
.lower {
  background-color: #7ad4e6;
  padding: 30px 15px;
  text-align: center;
}

.lower__title {
  font-size: 2rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .lower__title {
    font-size: 1.8rem;
  }
}

.lower__subtitle {
  font-size: 1.2rem;
  margin-top: 5px;
  color: #fff;
}

.lower__heading {
  font-size: 2.4rem;
  color: #009bb3;
  border-left: 8px solid #7ad4e6;
  padding-left: 20px;
  font-family: "Noto Serif JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .lower__heading {
    font-size: 2rem;
  }
}

.lower__head {
  background-color: #7ad4e6;
  color: #fff;
  padding: 10px 15px;
}

/*ぱんくず------------------------------------------------------------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  max-width: 1054px;
  margin: auto;
  padding: 15px;
}

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

.breadcrumb__img {
  max-width: 12px;
}

.breadcrumb__arrow {
  max-width: 5px;
  margin: 0 10px;
}
/*# sourceMappingURL=common.css.map */
