@charset "UTF-8";
/* common */
/* =================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  color: #000000;
  line-height: 1.4;
}
@media (max-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}

.wrapper {
  width: 100%;
  padding-top: 150px;
  padding-bottom: 150px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .wrapper {
    width: 1600px;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .inner {
    padding-right: 3%;
    padding-left: 3%;
  }
}

@media (max-width: 599px) {
  .pc {
    display: none;
  }
}

.pc_ctrl_on {
  display: none;
}
@media (max-width: 1240px) {
  .pc_ctrl_on {
    display: block;
  }
}

@media (max-width: 769px) {
  .sp_ctrl_non {
    display: none;
  }
}

.sp_ctrl_on {
  display: none;
}
@media (max-width: 769px) {
  .sp_ctrl_on {
    display: block;
  }
}

.tab {
  display: none;
}
@media (max-width: 1024px) {
  .tab {
    display: block;
  }
}

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

.sp {
  display: none;
}
@media (max-width: 599px) {
  .sp {
    display: block;
  }
}

@media (max-width: 599px) {
  .sp_non {
    display: none;
  }
}

.txt_yellow {
  color: #ead813;
}

@media (max-width: 1024px) {
  .link_txt {
    text-align: center;
  }
}
.link_txt a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 16px 44px 17px 22px;
  border: 1px solid;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 599px) {
  .link_txt a {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }
}
.link_txt a:hover {
  background-color: #fff;
  color: #041e35;
}
.link_txt a::after {
  position: absolute;
  top: 19px;
  right: 7px;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border: 9px solid transparent;
  border-left: 9px solid #d7542e;
}
@media (max-width: 599px) {
  .link_txt a::after {
    top: 7.5vw;
  }
}
.link_txt.link_reserve {
  margin-top: 74px;
  text-align: center;
}
.link_txt.link_reserve a {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 800;
  padding: 36px 100px;
}
@media (max-width: 769px) {
  .link_txt.link_reserve a {
    font-size: 5vw;
    width: 85%;
  }
}
@media (max-width: 599px) {
  .link_txt.link_reserve a {
    padding: 7vw 0;
  }
}
.link_txt.link_reserve a::after {
  top: 53px;
  right: 37px;
}
@media (max-width: 769px) {
  .link_txt.link_reserve a::after {
    top: 6.5vw;
    right: 3vw;
  }
}
@media (max-width: 599px) {
  .link_txt.link_reserve a::after {
    top: 8.5vw;
  }
}

/* ページトップボタン */
.page-top {
  /* position: fixed; */
  /* right: 10px; */
  /* bottom: 160px; */
  /* z-index: 50; */
  cursor: pointer;
  margin-right: 10px;
  margin-left: auto;
  text-align: right;
  width: fit-content;
}
@media (max-width: 769px) {
  .page-top {
    /* bottom: 37vw; */
    /* width: 17vw; */
  }
  .page-top img {
    width: 100%;
    width: 17vw;
  }
}
.page-top:hover {
  opacity: 0.7;
}
.fixed {
  position: fixed;
  z-index: 50;
  bottom: 10px;
  width: 100%;
}
#sp_nav {
  display: none;
}
@media (max-width: 769px) {
  #sp_nav {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
  }
}

.sp_nav_logo {
  width: 80%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
.sp_nav_logo img {
  width: 100%;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 20px;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open .hm_border,
.drawer_open .hm_border2 {
  content: "";
  display: block;
  height: 3px;
  width: 44px;
  border-radius: 3px;
  background: #041e35;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}

.drawer_open .hm_menu {
  position: absolute;
  top: 10px;
  color: #041e35;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open .hm_border {
  top: 0;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open .hm_border2 {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open .hm_menu {
  opacity: 0;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open .hm_border {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}

#drawer_input:checked ~ .drawer_open .hm_border2 {
  top: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #0c3356;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 80px;
  padding-right: 5%;
  padding-left: 5%;
}
.nav_content li {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  padding: 15px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;
  /* メニューを画面に入れる */
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}
#header .wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 769px) {
  #header {
    position: static;
  }
}
#header > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#headlogo {
  text-align: center;
  color: #fff;
  width: 345px;
}
@media (max-width: 1240px) {
  #headlogo {
    width: 240px;
  }
}
@media (max-width: 769px) {
  #headlogo {
    width: 100%;
  }
}
#headlogo > * {
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 1240px) {
  #headlogo > * {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 1.6rem;
  }
}
#headlogo > *:first-child {
  background-color: #041e35;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 1240px) {
  #headlogo > *:first-child {
    font-size: 1.5rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 769px) {
  #headlogo > *:first-child {
    padding: 0 70px 0 10px;
    font-size: 3.7vw;
    line-height: 60px;
  }
}
#headlogo > *:nth-child(2) {
  background-color: #161471;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6rem;
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 1240px) {
  #headlogo > *:nth-child(2) {
    font-size: 4rem;
    padding-top: 4px;
    padding-bottom: 8px;
  }
}
@media (max-width: 769px) {
  #headlogo > *:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 9vw;
    line-height: 1.1em;
  }
}
#headlogo > *:nth-child(2) > p {
  border-bottom: 1px solid #fff;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 769px) {
  #headlogo > *:nth-child(2) > p {
    width: 50%;
    border-bottom: none;
  }
}
#headlogo > *:nth-child(2) .logo_head {
  padding-top: 10px;
}
@media (max-width: 769px) {
  #headlogo > *:nth-child(2) .logo_head {
    padding-top: 0;
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#headlogo > *:nth-child(2) .logo_head img {
  width: 100%;
}

#header_nav {
  margin-right: 36px;
}
@media (max-width: 1024px) {
  #header_nav {
    margin-right: 2vw;
  }
}
@media (max-width: 769px) {
  #header_nav {
    display: none;
  }
}
#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
#header_nav li:not(:first-child) {
  margin-left: 50px;
}
@media (max-width: 1024px) {
  #header_nav li:not(:first-child) {
    margin-left: 1.8vw;
  }
}
#header_nav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
  #header_nav li a {
    font-size: 1.8rem;
  }
}
#header_nav li a:hover {
  border-bottom: 1px solid #fff;
}

#mv {
  position: relative;
}
#mv .logo_mv {
  position: absolute;
  top: 44.5vw;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  opacity: 0.5;
  width: 40vw;
  z-index: 10;
}
@media (max-width: 769px) {
  #mv .logo_mv {
    display: none;
  }
}
#mv .swiper {
  width: 100%;
}
#mv .swiper img {
  width: 100%;
  display: block;
}
#mv .swiper img.sp_ctrl_on {
  display: none;
}
@media (max-width: 769px) {
  #mv .swiper img.sp_ctrl_on {
    display: block;
  }
}
@media (max-width: 769px) {
  #mv .swiper img.sp_ctrl_non {
    display: none;
  }
}
#mv .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #fff;
  opacity: 1;
  width: 16px;
  height: 16px;
}
#mv .swiper-pagination-bullet-active {
  background-color: #1d68b0;
}
@media (max-width: 1024px) {
  #mv .swiper-horizontal > .swiper-pagination-bullets,
#mv .swiper-pagination-bullets.swiper-pagination-horizontal,
#mv .swiper-pagination-custom,
#mv .swiper-pagination-fraction {
    display: none;
  }
}
#mv .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}

#benefits {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#benefits .benefits_left {
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 10;
  width: calc(355px + 50vw - 600px);
  background-color: #0c3356;
  color: #fff;
  text-align: center;
}
@media (max-width: 1240px) {
  #benefits .benefits_left {
    width: 35%;
  }
}
@media (max-width: 1024px) {
  #benefits .benefits_left {
    position: relative;
    width: 100%;
    top: 0;
  }
}
#benefits .benefits_left > * {
  padding-left: calc(100% - 355px);
}
@media (max-width: 1024px) {
  #benefits .benefits_left > * {
    padding-right: 3%;
    padding-left: 3%;
  }
}
#benefits .benefits_left .benefits_ttl {
  position: relative;
  height: 50px;
  color: #ead813;
}
#benefits .benefits_left .benefits_ttl > * {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 355px;
  text-align: center;
  font-size: 6rem;
  text-shadow: 5px 5px 0 #0c3356, -5px -5px 0 #0c3356, -5px 5px 0 #0c3356, 5px -5px 0 #0c3356, 0px 5px 0 #0c3356, 0 -5px 0 #0c3356, -5px 0 0 #0c3356, 5px 0 0 #0c3356;
}
@media (max-width: 1240px) {
  #benefits .benefits_left .benefits_ttl > * {
    font-size: 5rem;
  }
}
@media (max-width: 1024px) {
  #benefits .benefits_left .benefits_ttl > * {
    width: 100%;
    font-size: 6rem;
    text-align: center;
  }
}
#benefits .benefits_left .benefits_lead {
  border-top: 1px solid #fff;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
}
#benefits .benefits_left .benefits_lead > p {
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 1240px) {
  #benefits .benefits_left .benefits_lead > p {
    font-size: 2.8rem;
  }
}
#benefits .benefits_left .benefits_lead > p:last-of-type {
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 4px;
}
#benefits .benefits_right {
  position: relative;
  top: 0;
  right: 0;
  z-index: 9;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 820px;
  background-color: #e0e7ef;
  padding: 22px 0 22px 227px;
  padding-right: calc(50vw - 600px);
}
@media (max-width: 1240px) {
  #benefits .benefits_right {
    width: 64%;
  }
}
@media (max-width: 1024px) {
  #benefits .benefits_right {
    position: static;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    padding-right: 3%;
    padding-left: 3%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#benefits .benefits_right .txt_ver {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #0c3356;
  border: 1px solid;
  padding: 8px 4px;
  margin-right: 16px;
}
@media (max-width: 1024px) {
  #benefits .benefits_right .txt_ver {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 15px;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
#benefits .benefits_right > ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
}
#benefits .benefits_right > ol dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.25rem;
}
@media (max-width: 1240px) {
  #benefits .benefits_right > ol dl {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  #benefits .benefits_right > ol dl {
    -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;
  }
}
#benefits .benefits_right > ol dl dt {
  color: #d7542e;
  margin-right: 5px;
}
@media (max-width: 1024px) {
  #benefits .benefits_right > ol dl dt {
    background-color: #d7542e;
    color: #fff;
    display: inline-block;
    padding: 2px 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-right: 0;
  }
}
#benefits .benefits_right > ol dl dt .small {
  font-size: 1.6rem;
}
#benefits .benefits_right > ol dl dd .txt_red {
  color: #c11e1e;
}

#sns {
  /* position: fixed; */
  /* bottom: 10px; */
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  /* z-index: 20; */
}
@media (max-width: 1240px) {
  #sns {
    width: 94%;
    margin-left: 3%;
    margin-right: 3%;
  }
}
#sns > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1142px;
  margin: 0 auto;
  flex-wrap: wrap;
}
#sns > * > * {
  /* -webkit-box-shadow: 4px 4px #637b9c; */
  /* box-shadow: 4px 4px #637b9c; */
}
#sns > * .line {
  width: 100%;
  max-width: 377px;
  color: #041e35;
  margin-right: 22px;
  -webkit-box-shadow: 4px 4px #637b9c;
  box-shadow: 4px 4px #637b9c;
}
@media (max-width: 1240px) {
  #sns > * .line {
    width: 30%;
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  #sns > * .line {
    width: 36%;
  }
}
@media (max-width: 769px) {
  #sns > * .line {
    width: 27%;
  }
}
#sns > * .line a {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #daf5e8;
    height: 100%;
    flex-direction: column;
}
#sns > * .line .line_txt {
  background-color: #f4e10c;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 1240px) {
  #sns > * .line .line_txt {
      font-size: 1.6rem;
  }
}
@media (max-width: 769px) {
  #sns > * .line .line_txt {
      font-size: 1.4rem;
  }
}
@media (max-width: 599px) {
  #sns > * .line .line_txt {
      font-size: 1rem;
  }
}
#sns > * .line .line_box {
  position: relative;
  width: 100%;
  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;
  padding: 0 22px;
  flex: 1;
}
@media (max-width: 1240px) {
  #sns > * .line .line_box {
    padding: 1.5vw;
  }
}
@media (max-width: 769px) {
  #sns > * .line .line_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
#sns > * .line .line_box::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  border: 10px solid transparent;
  border-left: 10px solid #d7542e;
}
@media (max-width: 1240px) {
  #sns > * .line .line_box::after {
    right: 0.5vw;
  }
}
@media (max-width: 1024px) {
  #sns > * .line .line_box::after {
    right: 0.3vw;
  }
}
@media (max-width: 769px) {
  #sns > * .line .line_box::after {
    display: none;
  }
}
#sns > * .line a:hover {
  -webkit-transform: translate3d(4px, 4px, 0);
          transform: translate3d(4px, 4px, 0);
}
#sns > * .line .line_box > p {
  width: calc(100% - 73px);
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 1240px) {
  #sns > * .line .line_box > p {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  #sns > * .line .line_box > p {
    font-size: 2.6vw;
    width: 100%;
  }
}
@media (max-width: 769px) {
  #sns > * .line .line_box > p {
    text-align: center;
    margin-top: 10px;
    font-size: 3.5vw;
  }
}
#sns > * .line .line_box > p.line-img {
  width: 63px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 769px) {
  #sns > * .line .line_box > p.line-img {
    margin: 0;
    width: 58%;
  }
}
@media (max-width: 599px) {
  #sns > * .line .line_box > p.line-img {
    width: 63%;
  }
}
#sns > * .line .line_box > p.line-img img {
  display: block;
  width: 100%;
}
#sns > * .app_wrapper {
  width: 100%;
    max-width: 741px;
}
@media (max-width: 1240px) {
  #sns > * .app_wrapper {
    width: 68%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  #sns > * .app_wrapper {
    width: 62%;
  }
}
@media (max-width: 769px) {
  #sns > * .app_wrapper {
    width: 71%;
  }
}
#sns > * .app {
  /* width: 100%; */
  /* max-width: 741px; */
  background-color: #d7542e;
  color: #fff;
  padding: 5px 17px 5px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 4px 4px #637b9c;
  box-shadow: 4px 4px #637b9c;
}
@media (max-width: 1240px) {
  #sns > * .app {
    /* width: 68%; */
    /* max-width: 100%; */
  }
}
@media (max-width: 1024px) {
  #sns > * .app {
    /* width: 62%; */
    padding: 1.5vw;
    margin-bottom: 5px;
  }
}
@media (max-width: 769px) {
  #sns > * .app {
    /* width: 71%; */
    padding: 1vw 2vw 1vw 2vw;
  }
}
#sns > * .app .wash_img {
  width: 50px;
  margin-right: 10px;
}
@media (max-width: 1240px) {
  #sns > * .app .wash_img {
    /* width: 64px; */
    /* margin-right: 20px; */
  }
}
@media (max-width: 1024px) {
  #sns > * .app .wash_img {
    display: none;
  }
}
#sns > * .app .wash_img img {
  width: 100%;
}
#sns > * .app .app_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% - 60px);
  align-items: center;
}
@media (max-width: 1240px) {
  #sns > * .app .app_box {
    width: calc(100% - 60px);
  }
}
@media (max-width: 1024px) {
  #sns > * .app .app_box {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
#sns > * .app .app_box .app_box_dl {
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 0.1em;
}
@media (max-width: 1240px) {
  #sns > * .app .app_box .app_box_dl {
    /* font-size: 2rem; */
  }
}
@media (max-width: 1024px) {
  #sns > * .app .app_box .app_box_dl {
    font-size: 2.3vw;
  }
}
@media (max-width: 769px) {
  #sns > * .app .app_box .app_box_dl {
    width: 100%;
    text-align: center;
    font-size: 4vw;
    margin-bottom: 1.5vw;
  }
}
#sns > * .app .app_box > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 769px) {
  #sns > * .app .app_box > ul {
    width: 100%;
  }
}
#sns > * .app .app_box > ul li a {
  display: block;
  margin-right: 11px;
}
@media (max-width: 1024px) {
  #sns > * .app .app_box > ul li a {
    margin-right: 1vw;
  }
}
#sns > * .app .app_box > ul li a:hover {
  -webkit-transform: translate3d(3px, 3px, 0);
          transform: translate3d(3px, 3px, 0);
}
#sns > * .app .app_box > ul li a img {
  display: block;
  height: 48px;
  width: auto;
}
@media (max-width: 769px) {
  #sns > * .app .app_box > ul li a img {
    height: 9.5vw;
  }
}
#sns > * .app .app_box > ul li:last-child a {
  margin-right: 0;
}
#sns > * .app .app_box .sup {
  font-size: 1rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  #sns > * .app .app_box .sup {
    font-size: 1.4rem;
  }
}
@media (max-width: 769px) {
  #sns > * .app .app_box .sup {
    margin-top: 2vw;
  }
}
@media (max-width: 599px) {
  #sns > * .app .app_box .sup {
    font-size: 1.1rem;
    margin-top: 0.5vw;
  }
}
#sns > * .ig {
  color: #0a253e;
  -webkit-box-shadow: 4px 4px #637b9c;
  box-shadow: 4px 4px #637b9c;
}
#sns > * .ig a {
  background-color: #ffffff;
  padding: 5px 17px 5px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-weight: bold;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 769px) {
  #sns > * .ig a{
    padding: 1vw 2vw 1vw 2vw;
  }
}
#sns > * .ig .ig_img {
  width: 120px;
  margin-right: 10px;
}
@media (max-width: 769px) {
  #sns > * .ig .ig_img {
    width: 14vw;
    margin-right: 10px;
  }
}
#sns > * .ig .ig_img img {
  width: 100%;
}
#sns > * .ig .sup {
  font-size: 1.1rem;
  font-weight: normal;
  margin-right: auto;
  color: #0a253e;
}
@media (max-width: 769px) {
  #sns > * .ig p {
    font-size: 3vw;
  }
}
#sns > * .ig p span {
  color: #d7542e;
}
#sns > * .ig a:hover {
  -webkit-transform: translate3d(4px, 4px, 0);
  transform: translate3d(4px, 4px, 0);
}
#sns.fixed {
  position: fixed;
  bottom: 0;
  z-index: 11;
}
#lead {
  width: 100%;
  background-color: #0c3356;
  background-image: url(../img/bg01.png);
  background-size: cover;
}
@media (max-width: 1024px) {
  #lead .wrapper {
    padding-bottom: 0;
  }
}
#lead .wrapper .lead_outer {
  color: #fff;
}
#lead .wrapper .lead_outer .lead_toptxt {
  width: 100%;
  font-size: 3.6rem;
  margin-bottom: 36px;
  text-indent: -0.4em;
}
@media (max-width: 1240px) {
  #lead .wrapper .lead_outer .lead_toptxt {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_toptxt {
    text-align: center;
  }
}
#lead .wrapper .lead_outer .lead_container {
  display: grid;
  grid-template-columns: 55% calc(45% - 30px);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding-left: calc(50vw - 600px);
}
@media (min-width: 1600px) {
  #lead .wrapper .lead_outer .lead_container {
    padding-left: 200px;
  }
}
@media (max-width: 1240px) {
  #lead .wrapper .lead_outer .lead_container {
    padding-left: 3%;
  }
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_container {
    grid-template-columns: 100%;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    width: 100%;
    margin-right: 0;
    padding-right: 3%;
  }
}
#lead .wrapper .lead_outer .lead_container .lead_topttl {
  grid-column: 1/3;
  grid-row: 1/2;
  font-size: 4rem;
}
@media (max-width: 1240px) {
  #lead .wrapper .lead_outer .lead_container .lead_topttl {
    font-size: 2.5rem;
  }
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_container .lead_topttl {
    text-align: center;
  }
}
#lead .wrapper .lead_outer .lead_container .lead_ttl {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 7rem;
  margin-bottom: 47px;
}
@media (max-width: 1240px) {
  #lead .wrapper .lead_outer .lead_container .lead_ttl {
    font-size: 3.7rem;
  }
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_container .lead_ttl {
    text-align: center;
  }
}
#lead .wrapper .lead_outer .lead_container .lead_txt_container {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_container .lead_txt_container {
    grid-row: 4/5;
  }
}
#lead .wrapper .lead_outer .lead_container .lead_txt {
  line-height: 2;
  width: 88%;
  margin-bottom: 46px;
  font-weight: 400;
  font-size: 2.4rem;
}
@media (max-width: 1240px) {
  #lead .wrapper .lead_outer .lead_container .lead_txt {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_container .lead_txt {
    font-size: 2rem;
  }
}
#lead .wrapper .lead_outer .lead_img {
  grid-column: 2/3;
  grid-row: 1/4;
  width: 100%;
}
@media (max-width: 1024px) {
  #lead .wrapper .lead_outer .lead_img {
    grid-column: 1/2;
    grid-row: 3/4;
    width: 100%;
    margin-bottom: 6vw;
  }
}
#lead .wrapper .lead_outer .lead_img img {
  display: block;
  width: 100%;
}

#campaign + main #lead .wrapper {
  padding-top: 80px;
}
@media (max-width: 1024px) {
  #campaign + main #lead .wrapper {
    padding-top: 5vw;
  }
}

.contents_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 769px) {
  .contents_list {
    margin-top: 30px;
  }
}
@media (max-width: 769px) {
  .contents_list.inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.contents_list li {
  width: 28.5%;
}
@media (max-width: 1024px) {
  .contents_list li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.contents_list li:hover {
  -webkit-transform: translate3d(3px, 3px, 0);
          transform: translate3d(3px, 3px, 0);
}
.contents_list li a {
  width: 100%;
  height: 100%;
}
.contents_list li a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .contents_list li a dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contents_list li a dl > * {
  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;
  width: 100%;
}
@media (max-width: 1024px) {
  .contents_list li a dl > * {
    width: 50%;
  }
}
.contents_list li a dl dt {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-color: #fff;
  padding: 25px;
}
@media (max-width: 769px) {
  .contents_list li a dl dt img {
    display: block;
    width: 100%;
  }
}
.contents_list li a dl dd {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #fff;
  font-size: 2.6rem;
  padding: 15px;
}
@media (max-width: 769px) {
  .contents_list li a dl dd {
    font-size: 3.8vw;
    padding: 1vw;
  }
}
.contents_list li:first-child dd {
  background-color: #1563aa;
}
.contents_list li:nth-child(2) dd {
  background-color: #06163e;
}
.contents_list li:nth-child(3) dd {
  background-color: #1a6251;
}

.contents_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media (max-width: 769px) {
  .contents_ttl {
    font-size: 6vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contents_ttl img {
  display: block;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .contents_ttl img {
    width: 180px;
  }
}
@media (max-width: 769px) {
  .contents_ttl img {
    width: 70%;
    margin-right: 0;
    margin-bottom: 4vw;
  }
}

#wash {
  background-color: #1563aa;
  background-image: url(../img/bg02.png);
  background-size: cover;
}
@media (min-width: 1600px) {
  #wash .wrapper {
    width: 100%;
  }
}
#wash .wrapper .wash_ttl {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#wash .wrapper .wash_lead_area {
  text-align: center;
  color: #fff;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_lead_area {
    padding-right: 3%;
    padding-left: 3%;
  }
}
#wash .wrapper .wash_lead_area .wash_lead {
  line-height: 1.5;
  margin-top: 24px;
  font-size: 5rem;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_lead_area .wash_lead {
    font-size: 4rem;
    line-height: 1.3;
    margin-top: 7vw;
  }
}
@media (max-width: 599px) {
  #wash .wrapper .wash_lead_area .wash_lead {
    font-size: 8vw;
  }
}
#wash .wrapper .wash_lead_area .wash_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 3rem;
  line-height: 2;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_lead_area .wash_heading {
    font-size: 2.5rem;
    line-height: 1.7;
    margin-top: 7vw;
  }
}
@media (max-width: 599px) {
  #wash .wrapper .wash_lead_area .wash_heading {
    font-size: 5vw;
    line-height: 1.7;
  }
}
#wash .wrapper .wash_lead_area .wash_heading > p > span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #0c4171));
  background: linear-gradient(transparent 60%, #0c4171 60%);
}
#wash .wrapper .wash_lead_area .wash_txt {
  font-size: 2.4rem;
  line-height: 2;
  margin-top: 28px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_lead_area .wash_txt {
    font-size: 2rem;
  }
}
@media (max-width: 769px) {
  #wash .wrapper .wash_lead_area .wash_txt {
    text-align: left;
  }
}
#wash .wrapper .wash_update .bg_w {
  background-color: #fff;
  padding-top: 45px;
  padding-bottom: 50px;
}
#wash .wrapper .wash_update .wash_update_num {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #11528d;
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update .wash_update_num {
    font-size: 2rem;
  }
}
#wash .wrapper .wash_update .wash_update_num::after {
  position: absolute;
  top: 2rem;
  content: "";
  display: block;
  width: calc(100% - 8em);
  border-top: solid 1px;
  margin-left: 8em;
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update .wash_update_num::after {
    top: 1.5rem;
  }
}
#wash .wrapper .wash_update .wash_update_catch {
  font-size: 7rem;
  color: #11528d;
  vertical-align: bottom;
  font-weight: 900;
  line-height: 1.23em;
  margin-top: 40px;
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update .wash_update_catch {
    font-size: 12vw;
    margin-top: 5vw;
  }
}
#wash .wrapper .wash_update .wash_update_catch .big {
  font-size: 15.4rem;
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update .wash_update_catch .big {
    font-size: 18vw;
  }
}
#wash .wrapper .wash_update .wash_update_txt {
  margin-top: 30px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 2.4rem;
  font-weight: 800;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update .wash_update_txt {
    line-height: 1.6;
    font-size: 2rem;
  }
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update .wash_update_txt {
    margin-top: 7vw;
  }
}
#wash .wrapper .wash_update01 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 90px;
}
#wash .wrapper .wash_update01 .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 600px;
  background-image: url(../img/wash01.jpg);
  background-repeat: no-repeat;
  background-position: top 0 right 0;
  background-size: cover;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update01 .img {
    width: 80%;
    height: 57vw;
  }
}
#wash .wrapper .wash_update01 .img img {
  width: auto;
  min-height: 600px;
}
#wash .wrapper .wash_update01 .bg_w {
  position: relative;
  top: 127px;
  right: 0;
  margin-top: 127px;
  padding-right: calc(50vw - 600px);
  padding-left: 50px;
}
@media (max-width: 1240px) {
  #wash .wrapper .wash_update01 .bg_w {
    padding: 4vw 4vw 4vw 6vw;
  }
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update01 .bg_w {
    padding: 6.5vw;
    width: 85%;
    top: 44vw;
    margin-top: 0;
  }
}
#wash .wrapper .wash_update02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 280px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 55vw;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box {
  width: calc(100% - 365px - (50vw - 600px));
}
@media (max-width: 1240px) {
  #wash .wrapper .wash_update02 .wash_update02_box {
    width: calc(100% - 365px - 3%);
  }
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box {
    width: 100%;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box > * {
  padding-left: calc(50vw - 600px);
}
@media (max-width: 1240px) {
  #wash .wrapper .wash_update02 .wash_update02_box > * {
    padding-left: 3%;
  }
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box > * {
    padding-left: 0;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box .bg_w {
  width: 100%;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box .bg_w {
    width: 88%;
    padding: 6.5vw;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box .bg_w > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#wash .wrapper .wash_update02 .wash_update02_box .wash_update_catch {
  line-height: 1.1em;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box .wash_update_catch {
    font-size: 9.5vw;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box .wash_update_catch .small {
  font-size: 5rem;
  display: block;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box .wash_update_catch .small {
    font-size: 5.5vw;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box .sup {
  margin-top: 26px;
  color: #fff;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_update02_box .sup {
    padding-right: 3%;
    padding-left: 3%;
  }
}
#wash .wrapper .wash_update02 .wash_update02_box .link_txt {
  margin-top: 25px;
  color: #fff;
}
#wash .wrapper .wash_update02 .wash_app {
  width: calc(320px + 50% - 600px);
  margin-left: 45px;
  padding-right: calc(50% - 600px);
}
@media (max-width: 1240px) {
  #wash .wrapper .wash_update02 .wash_app {
    width: calc(320px + 3%);
    padding-right: 3%;
  }
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app {
    width: 94%;
    padding-right: 0;
    margin-top: 7vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box {
  background-color: #fff;
  padding: 25px 22px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box {
    padding: 3vw;
  }
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box .wash_app_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #wash .wrapper .wash_update02 .wash_app .wash_app_box .wash_app_ttl > * {
    width: 48%;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box img {
  width: 100%;
  display: block;
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box .wash_app_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #041e35;
  margin-top: 14px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box .wash_app_txt {
    font-size: 4vw;
    text-align: left;
    margin-top: 0;
  }
}
@media (max-width: 769px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box .wash_app_txt {
    font-size: 5vw;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box ul {
    margin-top: 3vw;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box ul li {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box ul li {
    width: auto;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box ul li a {
  display: block;
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box ul li a:hover {
  -webkit-transform: translate3d(3px, 3px, 0);
          transform: translate3d(3px, 3px, 0);
}
@media (max-width: 1024px) {
  #wash .wrapper .wash_update02 .wash_app .wash_app_box ul li img {
    width: auto;
    height: 14vw;
  }
}
#wash .wrapper .wash_update02 .wash_app .wash_app_box .txt_orange {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #d7542e;
}
#wash table {
  table-layout: fixed;
}
#wash table th,
#wash table td {
  vertical-align: middle;
}
#wash .table_01_wrap {
  margin-top: 55px;
  padding-bottom: 10px;
}
#wash ::-webkit-scrollbar {
  height: 5px;
}
#wash ::-webkit-scrollbar-button {
  display: none;
}
#wash ::-webkit-scrollbar-track {
  background: #fff;
}
#wash ::-webkit-scrollbar-thumb {
  background: #d7542e;
}
#wash .tabele_wash {
  width: 100%;
}
#wash .tabele_wash tr:not(:last-child) th,
#wash .tabele_wash tr:not(:last-child) td {
  border-bottom: 1px solid #1e7dc1;
}
#wash .tabele_wash th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  color: #041e35;
  background-color: #fff;
  padding: 13px 22px;
}
@media (max-width: 1240px) {
  #wash .tabele_wash th {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  #wash .tabele_wash th {
    padding: 7px 15px;
  }
}
#wash .tabele_wash td {
  background-color: #fff;
  color: #041e35;
  padding: 13px 22px;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  #wash .tabele_wash td {
    font-size: 1.6rem;
    padding: 7px 10px;
  }
}
#wash .tabele_wash th:first-child,
#wash .tabele_wash td:first-child {
  background-color: #0a253e;
  color: #fff;
  padding-left: 34px;
  position: sticky;
  left: 0;
  z-index: 5;
}
@media (max-width: 1024px) {
  #wash .tabele_wash th:first-child,
#wash .tabele_wash td:first-child {
    padding-left: 10px;
  }
}
#wash .tabele_wash th:nth-child(even),
#wash .tabele_wash td:nth-child(even) {
  background-color: #bbd8ec;
}
#wash .tabele_wash td:nth-child(2) {
  text-align: center;
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 tr {
    border: none;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 th {
    display: none;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 td {
    display: block;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #1e7dc1;
  }
}
#wash .tabele_wash.table_01 td:not(:first-child) {
  font-size: 2rem;
  font-weight: 800;
}
@media (max-width: 1024px) {
  #wash .tabele_wash.table_01 td:not(:first-child) {
    font-size: 1.5rem;
  }
}
#wash .tabele_wash.table_01 th:first-child,
#wash .tabele_wash.table_01 td:first-child {
  width: 360px;
}
@media (max-width: 1240px) {
  #wash .tabele_wash.table_01 th:first-child,
#wash .tabele_wash.table_01 td:first-child {
    width: 248px;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 th:first-child,
#wash .tabele_wash.table_01 td:first-child {
    width: 100%;
    text-align: center;
    padding-right: 0;
    padding-left: 0;
  }
}
#wash .tabele_wash.table_01 th:nth-child(2),
#wash .tabele_wash.table_01 td:nth-child(2) {
  width: 240px;
}
@media (max-width: 1240px) {
  #wash .tabele_wash.table_01 th:nth-child(2),
#wash .tabele_wash.table_01 td:nth-child(2) {
    width: 160px;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 th:nth-child(2),
#wash .tabele_wash.table_01 td:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_01 td:nth-child(3) {
    border-bottom: none;
  }
}
#wash .tabele_wash .hyphen {
  display: inline-block;
  width: 1.3em;
  height: 3px;
  background-color: #d7542e;
}
#wash .table_01_list {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#wash .table_01_list > li {
  width: 17%;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 769px) {
  #wash .table_01_list > li {
    width: 48%;
    margin-bottom: 10vw;
  }
}
#wash .table_01_list > li img {
  width: 100%;
  display: block;
}
#wash .table_01_list > li figcaption {
  margin-top: 15px;
}
#wash .wash_price {
  margin-top: 50px;
}
#wash .wash_price .wash_price_ttl {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5em;
}
@media (max-width: 1240px) {
  #wash .wash_price .wash_price_ttl {
    font-size: 3rem;
  }
}
#wash .wash_price .wash_price_subttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-top: 18px;
  background-color: #0c3356;
  padding: 4px 0 7px 0;
}
@media (max-width: 1240px) {
  #wash .wash_price .wash_price_subttl {
    width: 94%;
    font-size: 2.4rem;
    margin-right: auto;
    margin-left: auto;
  }
}
#wash .wash_price .wash_price_tablebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1134px;
  margin: 55px auto;
}
@media (max-width: 1240px) {
  #wash .wash_price .wash_price_tablebox {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox {
    margin-top: 0;
  }
}
#wash .wash_price .wash_price_tablebox > * {
  width: 47%;
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox > * {
    width: 100%;
  }
}
#wash .wash_price .wash_price_tablebox > * .table_02 {
  width: 100%;
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 {
    margin-top: 10vw;
  }
}
#wash .wash_price .wash_price_tablebox > * .table_02 caption {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 caption {
    margin-bottom: 5vw;
  }
}
#wash .wash_price .wash_price_tablebox > * .table_02 tr:not(:last-child) th,
#wash .wash_price .wash_price_tablebox > * .table_02 tr:not(:last-child) td {
  border-bottom: 1px solid #1e7dc1;
}
#wash .wash_price .wash_price_tablebox > * .table_02 th {
  color: #fff;
  background-color: #0a253e;
  padding: 13px 22px;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 68%;
}
@media (max-width: 1240px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 th {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 th {
    padding: 7px 10px;
    width: 75%;
  }
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 th {
    width: 86%;
  }
}
#wash .wash_price .wash_price_tablebox > * .table_02 td {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: right;
  color: #d7542e;
  padding: 13px 22px;
}
@media (max-width: 1240px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 td {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  #wash .wash_price .wash_price_tablebox > * .table_02 td {
    padding: 7px 10px;
    width: 35%;
  }
}
#wash .wash_price .wash_price_tablebox > * .table_02.table_02_2 th {
  width: 60%;
}
@media (max-width: 769px) {
  #wash .wash_price .wash_price_tablebox > * .table_02.table_02_2 th {
    width: 86%;
  }
}
#wash .sup_right {
  font-size: 1.4rem;
  text-align: right;
  color: #fff;
  margin-top: 11px;
  letter-spacing: 0.15em;
}
@media (max-width: 769px) {
  #wash .sup_right {
    text-align: left;
    font-size: 1.6rem;
  }
}
#wash .wash_price_tablebox_subsc {
  width: 100%;
  max-width: 1134px;
  margin: 55px auto;
}
@media (max-width: 1240px) {
  #wash .wash_price_tablebox_subsc {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
  }
}
#wash .table_02_wrap {
  padding-bottom: 10px;
}
@media (max-width: 769px) {
  #wash .table_02_wrap {
    overflow: scroll;
    overflow-y: hidden;
  }
}
#wash .tabele_wash.table_03 {
  width: 100%;
}
#wash .tabele_wash.table_03 td:not(:first-child) {
  text-align: center;
  color: #d7542e;
  font-weight: bold;
}
#wash .tabele_wash.table_03 th {
  width: 16%;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  #wash .tabele_wash.table_03 th {
    width: 135px;
    font-size: 1.6rem;
  }
}
#wash .tabele_wash.table_03 th:first-child {
  width: 36%;
  background-color: transparent;
}
@media (max-width: 1024px) {
  #wash .tabele_wash.table_03 th:first-child {
    width: 170px;
  }
}
@media (max-width: 769px) {
  #wash .tabele_wash.table_03 th:first-child {
    width: 170px;
    background-color: #1563aa;
  }
}

.contents_head {
  color: #fff;
  display: grid;
  grid-template-columns: 30% calc(70% - 50px);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media (max-width: 769px) {
  .contents_head {
    grid-template-columns: 49% 46%;
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
  }
}
.contents_head > p {
  grid-column: 1;
  grid-row: 1/3;
}
@media (max-width: 769px) {
  .contents_head > p {
    grid-row: 1/2;
  }
}
.contents_head > p img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 769px) {
  .contents_head > p img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.contents_head > div {
  padding-right: calc(50vw - 600px);
  text-align: left;
}
@media (max-width: 1240px) {
  .contents_head > div {
    padding-right: 3%;
  }
}
@media (max-width: 769px) {
  .contents_head > div {
    margin-right: auto;
    margin-left: auto;
  }
}
.contents_head .contents_ttl_box {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
}
@media (max-width: 769px) {
  .contents_head .contents_ttl_box .contents_ttl {
    font-size: 2.1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 769px) {
  .contents_head .contents_ttl_box .contents_ttl img {
    width: 66%;
    margin-bottom: 2vw;
  }
}
.contents_head .contents_ttl_box .contents_lead {
  margin-top: 40px;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .contents_head .contents_ttl_box .contents_lead {
    font-size: 2.4rem;
  }
}
@media (max-width: 769px) {
  .contents_head .contents_ttl_box .contents_lead {
    margin-top: 3vw;
    font-size: 2.3rem;
  }
}
.contents_head .contents_lead_txt {
  grid-column: 2;
  grid-row: 2;
  margin-top: 40px;
  font-size: 2.4rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .contents_head .contents_lead_txt {
    font-size: 2rem;
  }
}
@media (max-width: 769px) {
  .contents_head .contents_lead_txt {
    grid-column: 1/3;
    grid-row: 2;
    padding-left: 3%;
    margin-top: 6vw;
  }
}

#carcoating {
  background-image: url(../img/bg03.png);
  background-size: cover;
}
#carcoating .carcoating_area {
  color: #fff;
  margin-top: 42px;
}
#carcoating .carcoating_list {
  background-image: url(../img/carcoating02.jpg);
  background-repeat: no-repeat;
  background-position: right bottom 45px;
  background-size: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1024px) {
  #carcoating .carcoating_list {
    background-position: right bottom 2vw;
    padding-bottom: 55vw;
    background-size: 100%;
  }
}
#carcoating .carcoating_list > li {
  width: 46%;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  #carcoating .carcoating_list > li {
    width: 100%;
    margin-bottom: 13vw;
  }
}
@media (max-width: 769px) {
  #carcoating .carcoating_list > li {
    margin-bottom: 20vw;
  }
}
#carcoating .carcoating_list > li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#carcoating .carcoating_item_ttl {
  margin-top: 14px;
  font-size: 3rem;
}
@media (max-width: 769px) {
  #carcoating .carcoating_item_ttl {
    text-align: center;
  }
}
#carcoating .carcoating_item_point {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 769px) {
  #carcoating .carcoating_item_point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
#carcoating .carcoating_item_point img {
  display: inline-block;
}
#carcoating .carcoating_item_point > p {
  margin-right: 10px;
}
@media (max-width: 769px) {
  #carcoating .carcoating_item_point > p {
    margin-right: 0;
  }
}
@media (max-width: 769px) {
  #carcoating .carcoating_item_point > p:first-child {
    margin-top: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#carcoating .carcoating_item_point > p span {
  display: inline-block;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 20px;
  color: #0c3356;
}
#carcoating .carcoating_item_txt {
  margin-top: 20px;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
#carcoating .carcoating_item_price {
  margin-top: 32px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  #carcoating .carcoating_item_price {
    text-align: center;
  }
}
#carcoating .carcoating_item_price .carcoating_item_price_red {
  font-size: 3rem;
  color: #d7542e;
}
#carcoating .carcoating_more {
  margin-top: 50px;
}
#carcoating .carcoating_more .carcoating_more_ttl {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  color: #0c3356;
  padding: 7px 0 10px 0;
}
#carcoating .carcoating_list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 58px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#carcoating .carcoating_list2 li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#carcoating .carcoating_list2 li:first-child {
  border-right: solid 1px #fff;
}
@media (max-width: 769px) {
  #carcoating .carcoating_list2 li:first-child {
    border: none;
  }
}
@media (max-width: 769px) {
  #carcoating .carcoating_list2 li {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  #carcoating .carcoating_list2 li > * {
    width: 100%;
    text-align: center;
  }
}
#carcoating .carcoating_list2 li .carcoating_item_ttl {
  margin: 0;
  margin-right: 30px;
}
@media (max-width: 1240px) {
  #carcoating .carcoating_list2 li .carcoating_item_ttl {
    margin-right: 15px;
  }
}
@media (max-width: 1024px) {
  #carcoating .carcoating_list2 li .carcoating_item_ttl {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#carcoating .carcoating_list2 li .carcoating_item_price {
  margin: 0;
}
@media (max-width: 769px) {
  #carcoating .carcoating_list2 li .carcoating_item_price {
    margin-bottom: 30px;
  }
}

#cleaning {
  background-image: url(../img/bg04.png);
  background-size: cover;
}
#cleaning .cleaning_area {
  margin-top: 45px;
}
#cleaning .cleaning_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#cleaning .cleaning_list > li {
  width: 23%;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 33px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1240px) {
  #cleaning .cleaning_list > li {
    margin-bottom: 2.6vw;
  }
}
@media (max-width: 769px) {
  #cleaning .cleaning_list > li {
    width: 100%;
    padding-top: 7vw;
    padding-bottom: 5vw;
    margin-bottom: 3vw;
  }
}
#cleaning .cleaning_list > li > dl {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
#cleaning .cleaning_list > li .cleaning_item_ttl {
  font-size: 3rem;
  color: #fff;
}
@media (max-width: 1024px) {
  #cleaning .cleaning_list > li .cleaning_item_ttl {
    font-size: 2.2rem;
  }
}
#cleaning .cleaning_list > li .cleaning_item_ttl .small {
  font-size: 2rem;
  display: block;
}
@media (max-width: 1024px) {
  #cleaning .cleaning_list > li .cleaning_item_ttl .small {
    font-size: 1.6rem;
  }
}
#cleaning .cleaning_list > li .cleaning_item_img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
#cleaning .cleaning_list > li .cleaning_item_img img {
  width: 100%;
}
#cleaning .cleaning_list > li .cleaning_item_price {
  margin-top: 10px;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #d7542e;
}
@media (max-width: 769px) {
  #cleaning .cleaning_list > li:not(:last-child) > dl {
    display: grid;
    grid-template-columns: 30% 69%;
  }
  #cleaning .cleaning_list > li:not(:last-child) .cleaning_item_ttl {
    grid-column: 2;
  }
  #cleaning .cleaning_list > li:not(:last-child) .cleaning_item_img {
    grid-column: 1/2;
    grid-row: 1/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #cleaning .cleaning_list > li:not(:last-child) .cleaning_item_img img {
    width: 145%;
  }
  #cleaning .cleaning_list > li:not(:last-child) .cleaning_item_price {
    font-size: 2.5rem;
    grid-column: 2;
    grid-row: 2;
  }
}
#cleaning .cleaning_list > li:last-child {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  #cleaning .cleaning_list > li:last-child {
    padding-right: 4%;
    padding-left: 4%;
  }
}
#cleaning .cleaning_list > li:last-child dl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#cleaning .cleaning_list > li:last-child dl .cleaning_item_ttl {
  margin-right: 50px;
}
#cleaning .cleaning_list > li:last-child dl .cleaning_item_price {
  margin-top: 0;
}
#cleaning .cleaning_list > li:last-child dl .cleaning_item_txt {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #fff;
  border-top: 1px solid #fff;
  margin-top: 15px;
  padding-top: 30px;
}
#cleaning .sup_right {
  text-align: right;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.15em;
}
@media (max-width: 769px) {
  #cleaning .sup_right {
    text-align: left;
    font-size: 1.6rem;
  }
}
#cleaning .link_reserve a {
  color: #fff;
}
#cleaning .link_reserve a:hover {
  color: #1f7662;
}

#access {
  background-color: #083156;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#access .access_bgtxt {
  position: absolute;
  top: 3px;
  left: 0;
}
@media (max-width: 769px) {
  #access .access_bgtxt {
    display: none;
  }
}
#access .access_left {
  width: calc(490px + 50% - 600px);
  padding-top: 60px;
  padding-bottom: 75px;
  padding-right: 10px;
  padding-left: calc(50% - 600px);
  color: #fff;
}
@media (max-width: 1240px) {
  #access .access_left {
    padding-left: 3%;
    width: calc(490px + 3%);
  }
}
@media (max-width: 1024px) {
  #access .access_left {
    width: 100%;
    text-align: center;
    padding-top: 11vw;
  }
}
#access .access_left .access_ttl {
  font-size: 6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  font-family: "Times New Roman", serif;
}
#access .access_left dl {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (max-width: 1024px) {
  #access .access_left dl {
    line-height: 1.5;
  }
}
#access .access_left dt {
  margin-top: 33px;
  text-indent: -0.4em;
}
#access .access_left dt:first-child {
  margin-top: 8px;
}
#access .access_left .access_link a {
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
#access .access_left .access_link a:hover {
  opacity: 0.7;
}
#access .access_left .access_time_sup {
  margin-top: 25px;
}
#access .access_left .access_tel {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
}
#access #map {
  width: calc(100% - (490px + 50% - 600px));
}
@media (max-width: 1240px) {
  #access #map {
    width: calc(100% - (490px + 3%));
  }
}
@media (max-width: 1024px) {
  #access #map {
    width: 100%;
    height: 67vw;
  }
}
#access #map iframe {
  width: 100%;
  height: 100%;
}

#campaign {
  background-color: #0d3357;
  padding: 50px 0;
}
@media (max-width: 1024px) {
  #campaign {
    padding: 20px 0;
  }
}
#campaign .img_box {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
}
#campaign .img_box img {
  width: 100%;
}

#footer {
  background-color: #bbd8ec;
  padding-top: 45px;
  padding-bottom: 150px;
}
@media (max-width: 1240px) {
  #footer {
    padding-bottom: 200px;
  }
}
@media (max-width: 769px) {
  #footer {
    padding-bottom: 36vw;
  }
}
#footer > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  #footer > * {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer .logo_footer {
  width: 208px;
}
#footer .logo_footer img {
  width: 100%;
}
#footer #footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0c3356;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 769px) {
  #footer #footer_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footer #footer_nav li:not(:first-child) {
  margin-left: 50px;
}
@media (max-width: 1024px) {
  #footer #footer_nav li:not(:first-child) {
    margin-left: 2vw;
  }
}
#footer #footer_nav li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 769px) {
  #footer #footer_nav li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
#footer #footer_nav li a:hover {
  border-bottom: 1px solid #0c3356;
}
#footer .copy a {
  font-size: 13px;
  margin: 50px auto 10px;
  color: #0c3356;
}

/* 20221221 CTA追加 */

.d-inbk{
  display: inline-block;
}

.cta-tel{
  /* background-color: #031f49; */
  background-image: url(../img/bg05.png);
  background-size: cover;
  background-position: bottom right;
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-tel-item1{
  color: #fff;
  text-align: center;
  margin-bottom: 37px;;
}

.cta-tel-ttl{
  font-size: 3.6rem;
  margin-bottom: 17px;
}

.cta-tel-ttl > *{
  display: inline-block;
  padding: 0 0.2em;
  position: relative;
  z-index: 2;
}

.cta-tel-ttl > *::after{
  position: absolute;
  left: 0;
  bottom: -0.1em;
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-color: #d74d31;
  z-index: -1;
}

.cta-tel-lead{
  font-size: 2.4rem;
}

.cta-tel-item2{
  width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cta-tel-item2 .cta-tel-flexbox{
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-tel-sup {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cta-tel-btn{
  display: flex;
  align-items: center;
  width: fit-content;
  background-color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 13px 32px 13px 22px;
  margin-right: 19px;
}

.cta-tel-icon{
  display: block;
  width: 48px;
  height: auto;
  background-color: #d7542e;
  border-radius: 50px;
  padding: 9px;
  margin-right: 13px;
}

.cta-tel-icon > *{
  display: block;
  width: 100%;
  height: auto;
  fill: #fff;
}

.cta-tel-num{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
}

.cta-tel-time{
  color: #fff;
  font-size: 1.6rem;
}


@media (max-width: 769px) {
  .cta-tel-ttl{
    font-size: 2.5rem;
  }
  .cta-tel-lead {
    font-size: 2rem;
  }
  .cta-tel-item2{
    width: 100%;
  }
  .cta-tel-item2 .cta-tel-flexbox{
    flex-direction: column;
    width: 100%;
  }
  .cta-tel-sup{
    text-align: center;
  }
  .cta-tel-btn{
    margin-right: 0;
    padding: 10px 27px 10px 17px;
    margin-bottom: 18px;
  }
  .cta-tel-time{
    font-size: 1.4rem;
  }
}

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

/* 20221221　お知らせ追加 */

.info {
  background-color: #093556;
  padding-top: 20px;
  padding-bottom: 80px;
}

@media (max-width: 1240px) {
  .info {
    padding-right: 3%;
    padding-left: 3%;
  }
}

@media (max-width: 769px){
  .info {
    padding-bottom: 50px;
  }
}

.info-box {
  background-color: #fff;
  padding: 16px 3% 30px 3%;
  text-align: center;
  line-height: 1.5em;
  position: relative;
}

.info-ttl {
  text-align: center;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 15px;
  margin-bottom: 9px;
  position: relative;
  background-color: #fff;
  z-index: 1;
  font-size: 130%;
}

.info-txt01{
  font-size: 115%;
  margin-bottom: 0.5em;
  color: #d74e31;
}

.info-or{
  color: #d74e31;
}

.info-box::after {
  content: "";
  display: block;
  width: 100%;
  top: 2em;
  left: 0;
  border-top: solid 1px;
  position: absolute;
  z-index: 0;
}