@charset "UTF-8";
/*  letter-spacing: tracking(140); */
/*  @include l_h(14, 16.8);*/
:root {
  --Red: #C40C08;
  --Gold: #D5BE79;
  --fontsize_XXS: 10px;
  --fontsize_XS: 10px;
  --fontsize_S: 12px;
  --fontsize_M: 14px;
  --fontsize_L: 16px;
  --fontsize_XL: 18px;
  --fontsize_XXL: 20px;
  --sb: 15px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  color: #374b52;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #709ca9;
}
body.open_menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.super_wrap {
  overflow-x: hidden;
}

a {
  color: #374b52;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
a:hover {
  opacity: 0.6;
}

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

/*WordPress*/
.screen-reader-text,
.screen-reader-response {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
}

.flex {
  display: flex;
}

.flex_reverse {
  flex-direction: row-reverse;
}

.justify_center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.space_between {
  justify-content: space-between;
}

.align_items_center {
  align-items: center;
}

.flex_wrap {
  flex-wrap: wrap;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ta-l {
  text-align: left;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.fw_bold {
  font-weight: bold;
}

.fs10 {
  font-size: 10px;
}

.red {
  color: #e23541;
}

.txt_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.txt_fade_in.active {
  opacity: 1;
}

.img_fade_in {
  opacity: 0;
  transition: opacity 1.4s;
}
.img_fade_in.active {
  opacity: 1;
}

.btn_reset {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.inner {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.h2_wrap h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 769px) and (max-width: 1439.9999px) {
  .super_wrap {
    min-width: calc(1100px - var(--sb));
  }
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  .only_sp {
    display: none;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .only_pc {
    display: none;
  }
  .sp_none {
    display: none;
  }
  .sp_column {
    flex-direction: column;
  }
  .sp_column.align_items_center {
    justify-content: center;
  }
  .h2_wrap h2 {
    font-size: 26px;
  }
}
/******************************/
/**********ヘッダー************/
/*****************************/
#header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header_menu_list {
  list-style: none;
  display: flex;
}
#header .header_menu_list .sub-menu {
  display: none;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #header .header_wrap {
    display: none;
  }
  #header .header_wrap_sp {
    display: flex;
    align-items: center;
    position: relative;
  }
  #header .hamburger_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
  }
  #header .hamburger_btn span,
  #header .hamburger_btn span:before,
  #header .hamburger_btn span:after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #000;
    position: absolute;
    transition: all 0.4s ease;
  }
  #header .hamburger_btn span:before {
    bottom: 8px;
  }
  #header .hamburger_btn span:after {
    top: 8px;
  }
  #header .header_menu_wrap_sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 1s;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    z-index: 100;
  }
  #header .header_menu_list_sp {
    list-style: none;
  }
  .open_menu #header .hamburger_btn span {
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.1s ease;
  }
  .open_menu #header .hamburger_btn span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .open_menu #header .hamburger_btn span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .open_menu #header .hamburger_btn_wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
  }
  .open_menu #header .header_menu_wrap_sp {
    opacity: 1;
    visibility: visible;
    position: fixed;
    transition: opacity 0.5s ease;
  }
}
.mv_section {
  padding-top: 32.7388535032vh;
  text-align: center;
  position: relative;
  height: 100vh;
}
.mv_section .bg_L {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  height: 100vh;
  background-color: #6395a6;
}
.mv_section .bg_R {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  height: 100vh;
  background-color: #6093aa;
}
.mv_section .bg_grand {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #6395a6 0%, #6093aa 100%);
  height: 100vh;
}
.mv_section .bg_blur {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center/cover no-repeat url("../images/mv/bg_blur.png");
}
.mv_section .bg_circle {
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  height: 472px;
  width: 472px;
  background: center/cover no-repeat url("../images/mv/circle_base.png");
  top: 20.3821656051vh;
  height: 60.127388535vh;
  width: 60.127388535vh;
}
.mv_section .bg_effect {
  top: -554px;
  left: 50%;
  transform: translateX(calc(-50% + 0px));
  position: absolute;
  height: 1900px;
  width: 1900px;
  background: center/cover no-repeat url("../images/mv/circle_effect.png");
  mix-blend-mode: screen;
  top: -70.5732484076vh;
  height: 242.0382165605vh;
  width: 242.0382165605vh;
}
.mv_section .title_wrap,
.mv_section .p1,
.mv_section .p2,
.mv_section .p3 {
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.16em;
  font-size: 24px;
  font-size: 3.0573248408vh;
  text-shadow: 0 0 2.5477707006vh rgba(0, 0, 0, 0.8);
}
.mv_section .title_wrap {
  margin-bottom: 25px;
  font-size: 64px;
  letter-spacing: 0.27em;
  margin-bottom: 3.1847133758vh;
  font-size: 8.152866242vh;
}
.mv_section .title_wrap span {
  font-size: 38.2px;
  margin-left: 28px;
  letter-spacing: 0.16em;
  font-size: 4.8662420382vh;
  margin-left: 1.2738853503vh;
}
.mv_section .p2 {
  margin-top: 168px;
  margin-bottom: 10px;
  margin-top: 13.3821656051vh;
  margin-bottom: 1.2738853503vh;
}
.mv_section .p3 {
  margin-bottom: 15px;
  margin-bottom: 1.9108280255vh;
}
.mv_section .mv_btn {
  width: 249px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  border-radius: 1000px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
  width: 37.7197452229vh;
  height: 6.3694267516vh;
  font-size: 2.0382165605vh;
  padding: 0 3.0573248408vh;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .mv_section {
    padding-top: 252px;
    padding-bottom: 70px;
    padding-top: 22.4872563718vh;
    padding-bottom: 10.4947526237vh;
    height: auto;
    min-height: 100vh;
  }
  .mv_section .bg_wrap {
    top: 0;
    left: 50%;
    height: 785px;
    width: 1440px;
    background: center/cover no-repeat url("../images/mv/bg.png");
  }
  .mv_section .bg_circle {
    top: 160px;
    left: 50%;
    height: 1900px;
    width: 1900px;
    background: center/cover no-repeat url(../images/mv/circle_base_sp.png);
    height: 320vw;
    width: 320vw;
    top: 50%;
    transform: translate(-50%, calc(-50% - 14.9925037481vh));
  }
  .mv_section .bg_effect {
    height: 320vw;
    width: 320vw;
    top: 50%;
    transform: translate(-50%, calc(-50% - 14.9925037481vh));
  }
  .mv_section .title_wrap {
    margin-bottom: 25px;
    font-size: 40px;
    margin-bottom: 3.748125937vh;
    font-size: min(10.6666666667vw, 40px);
  }
  .mv_section .title_wrap span {
    font-size: 26px;
    margin-left: 0px;
    display: inline-block;
  }
  .mv_section .p1 {
    font-size: 20px;
    font-size: 4.3333333333vw;
    font-size: min(4.3333333333vw, 20px);
    text-shadow: 0 0 2.9985007496vh rgba(0, 0, 0, 0.8);
  }
  .mv_section .p1 span {
    display: inline-block;
  }
  .mv_section .p2 {
    margin-top: 60px;
    margin-bottom: 130px;
    font-size: 26px;
    font-size: min(5.9333333333vw, 26px);
    margin-top: 9.7436281859vh;
    margin-bottom: 1.1979010495vh;
  }
  .mv_section .p3 {
    font-size: min(5.3333333333vw, 20px);
    margin-bottom: 4.4977511244vh;
  }
  .mv_section .mv_btn {
    width: 249px;
    height: 50px;
    padding: 0 24px;
    font-size: 16px;
    width: 66.4vw;
    height: 13.3333333333vw;
    padding: 0 6.4vw;
    font-size: 3.8666666667vw;
  }
}
.about_section {
  padding-top: 60px;
  padding-bottom: 60px;
  backdrop-filter: blur(100px);
  background-color: rgba(44, 60, 66, 0.5);
}
.about_section .h2_wrap {
  margin-bottom: 46px;
}
.about_section .h2_wrap h2 {
  color: rgba(255, 255, 255, 0.8);
}
.about_section .flex {
  gap: 55px;
}
.about_section h3 {
  margin-top: 145px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 2.2;
  color: #fff;
  line-height: 1.6;
}
.about_section p {
  font-size: 14px;
  line-height: 2.2;
  color: #fff;
}
.about_section p + p {
  margin-top: 10px;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .about_section h3 {
    white-space: nowrap;
  }
  .about_section .inner {
    padding-left: 90px;
    padding-right: 90px;
  }
  .about_section .txt_wrap {
    max-width: 505px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1375px) {
  .about_section h3 {
    margin-top: 50px;
  }
  .about_section .br3,
  .about_section .br4 {
    display: none !important;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .about_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about_section .inner > .flex {
    flex-direction: column;
  }
  .about_section .h2_wrap {
    margin-bottom: 46px;
  }
  .about_section .flex {
    gap: 0px;
  }
  .about_section h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.7;
  }
  .about_section h3 span {
    display: inline-block;
  }
  .about_section p {
    font-size: 13px;
    line-height: 2.2;
  }
  .about_section p + p {
    margin-top: 10px;
  }
}
.facility_section {
  padding-top: 40px;
  padding-bottom: 81px;
  background-color: #c0d4dc;
  position: relative;
  background-image: linear-gradient(to right, #c9e0e5 75%, rgba(201, 224, 229, 0));
}
.facility_section > .bg_wrap {
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 106px));
  position: absolute;
  height: 100%;
  width: 1155px;
  background: center/cover no-repeat url("../images/facility/bg.png");
}
.facility_section > .bg_wrap2 {
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - 444px));
  position: absolute;
  height: 100%;
  width: 640px;
  background-image: linear-gradient(to right, #c9e0e5 75%, rgba(201, 224, 229, 0));
}
.facility_section .h2_wrap {
  margin-bottom: 40px;
}
.facility_section .facility_wrap {
  width: 100%;
  max-width: 680px;
  max-width: 684px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.facility_section .facility_wrap .img_wrap {
  overflow: hidden;
  width: 100%;
  max-width: 288px;
}
.facility_section .facility_wrap .content_wrap {
  width: 100%;
  max-width: 312px;
  max-width: 316px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.facility_section .facility_wrap .txt {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #374b52;
}
.facility_section .facility_round {
  margin-right: -20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 599.1px;
  -webkit-backdrop-filter: blur(9.6px);
  backdrop-filter: blur(9.6px);
  background-color: rgba(55, 75, 82, 0.4);
}
.facility_section .facility_content {
  width: 100%;
  display: flex;
}
.facility_section .floor {
  font-size: 21.3px;
  font-weight: 600;
  color: #374b52;
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 817.6px;
  background-color: #fff;
  margin-bottom: 20px;
}
.facility_section .tmp1 {
  display: inline-block;
  height: 18px;
}
.facility_section .tmp2 {
  display: inline-block;
  height: 1em;
}
.facility_section .facility_wrap1 {
  border-top-right-radius: 20px;
}
.facility_section .facility_wrap1 .img_wrap {
  border-top-left-radius: 20px;
}
.facility_section .facility_wrap3 {
  border-bottom-right-radius: 20px;
}
.facility_section .facility_wrap3 .img_wrap {
  border-bottom-left-radius: 20px;
}
.facility_section .facility_wrap4 {
  margin-top: 20px;
}
.facility_section .facility_wrap4 .facility_content {
  gap: 30px;
  padding: 10px 10px 10px 10px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.facility_section .facility_wrap4 .facility_round {
  background: none;
  backdrop-filter: none;
}
.facility_section .facility_wrap4 .img_wrap {
  border-radius: 10px;
  max-width: 195px;
}
.facility_section .facility_wrap4 .content_wrap {
  background: none;
}
.facility_section .facility_wrap4 .flex {
  font-size: 13px;
  font-weight: 500;
  gap: 12px;
}
.facility_section .facility_wrap4 .flex + .flex {
  margin-top: 6px;
}
.facility_section .facility_wrap4 .left {
  line-height: 1.67;
}
.facility_section .p1 {
  padding-left: 80px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #374b52;
}
.facility_section .floor_title {
  margin-top: 15px;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: bold;
  color: #374b52;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .facility_section .facility_wrap3 .content_wrap {
    padding: 20px 0px 18px;
  }
  .facility_section .facility_wrap3 .img_wrap img {
    width: auto;
    height: 100%;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .facility_section {
    padding-top: 0px;
  }
  .facility_section > .bg_wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1155/944;
    margin-bottom: 40px;
  }
  .facility_section .bg_wrap2 {
    display: none;
  }
  .facility_section .facility_wrap {
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .facility_section .facility_wrap + .facility_wrap {
    margin-top: 40px;
  }
  .facility_section .facility_wrap .img_wrap {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    max-width: none;
  }
  .facility_section .facility_wrap .content_wrap {
    max-width: none;
    gap: 30px;
    padding: 20px 0;
  }
  .facility_section .floor {
    font-size: 16px;
    width: 70px;
    height: 30px;
    margin-bottom: 12px;
  }
  .facility_section .facility_round {
    margin-right: 0;
    margin-bottom: -20px;
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
  .facility_section .facility_content {
    flex-direction: column;
  }
  .facility_section .facility_wrap4 {
    border-radius: 20px;
  }
  .facility_section .facility_wrap4 .facility_content {
    gap: 0px;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
  }
  .facility_section .facility_wrap4 .facility_content > div:last-child {
    padding-left: 10px;
  }
  .facility_section .facility_wrap4 .facility_round {
    height: 0;
    margin: 0;
  }
  .facility_section .facility_wrap4 .floor_title {
    margin-top: 16px;
    margin-bottom: 12px;
  }
  .facility_section .facility_wrap4 .flex + .flex {
    margin-top: 4px;
  }
  .facility_section .floor_title {
    margin-top: 8px;
    margin-bottom: 6px;
    font-size: 16px;
  }
  .facility_section .p1 {
    padding-left: 0;
  }
}
.planed_section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(169, 196, 203, 0.6);
  /*
  .gmap {
    margin-top: 46px;
    margin-bottom: 40px;
    position: relative;
    aspect-ratio: 1360 / 439;
    width: 100%;
    height: auto;
    iframe {
      position: absolute;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }*/
}
.planed_section p {
  text-align: center;
}
.planed_section .p1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
.planed_section .p2 {
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
}
.planed_section .inline {
  text-align: center;
}
.planed_section .p3 {
  text-align: left;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin: 1em auto;
  width: 100%;
  max-width: 420px;
}
.planed_section #gmap {
  margin-top: 46px;
  margin-bottom: 40px;
  aspect-ratio: 1360/439;
  width: 100%;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .planed_section #gmap {
    margin-top: 40px;
    margin-bottom: 20px;
    aspect-ratio: 640/480;
  }
  .planed_section .p1 {
    font-size: 17px;
  }
  .planed_section .p3 {
    font-size: 14px;
  }
}
.newsletter_section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #a9c4cb;
}
.newsletter_section h3 {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 616px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}
.newsletter_section .d1 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.newsletter_section .mail_flex {
  margin-bottom: 40px;
}
.newsletter_section .mail_flex form {
  display: flex;
  gap: 10px 24px;
}
.newsletter_section .mail_flex input[type=text] {
  appearance: none;
  border: none;
  width: 356px;
  padding: 11px 12px 11px 12px;
  border-bottom: solid 2px #374b52;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
.newsletter_section .mail_flex input[type=submit] {
  appearance: none;
  border: none;
  width: 120px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 666.7px;
  background-color: #374b52;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.newsletter_section p.title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.newsletter_section p.title a {
  text-decoration: underline;
  font-weight: 500;
}
.newsletter_section p.txt {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}
.newsletter_section p.txt a {
  text-decoration: underline;
}
.newsletter_section p.txt + .title {
  margin-top: 10px;
}
.newsletter_section p.txt:nth-last-of-type() {
  margin-top: 10px;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
@media screen and (min-width: 769px) {
  .newsletter_section .inner {
    max-width: 580px;
  }
}
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .newsletter_section h3 {
    font-size: 18px;
    text-align: left;
  }
  .newsletter_section .d1 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .newsletter_section .mail_flex {
    margin-bottom: 30px;
  }
  .newsletter_section .mail_flex form {
    flex-direction: column;
    align-items: center;
    gap: 10px 10px;
  }
  .newsletter_section .mail_flex input[type=text] {
    width: 100%;
    padding: 11px 12px 11px 12px;
    font-size: 14px;
  }
  .newsletter_section .mail_flex input[type=submit] {
    width: 100px;
    height: 40px;
    font-size: 18px;
  }
  .newsletter_section p.txt.indent {
    padding-left: 5em;
    text-indent: -5em;
  }
}
/******************************/
/**********フッター************/
/*****************************/
#footer {
  background-color: #a9c4cb;
  padding-top: 60px;
  padding-bottom: 40px;
}
#footer .d1 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-align: center;
}
#footer .d2 {
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
}
#footer .d2 span {
  font-size: 32px;
}
#footer .footer_link_wrap {
  justify-content: center;
  gap: 52px;
  margin-bottom: 177px;
}
#footer .footer_link_wrap ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
#footer .footer_link_wrap ul:nth-child(1) {
  margin-bottom: 24px;
  gap: 32px;
  font-weight: 500;
  font-size: 16px;
}
#footer .footer_link_wrap ul:nth-child(2) {
  gap: 24px;
  font-size: 14px;
}
#footer .footer_link_wrap a {
  display: flex;
  align-items: center;
}
#footer .footer_link_wrap a:after {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: center/cover no-repeat url("../images/footer/arrow.svg");
  margin-left: 8px;
}
#footer .footer_privacy {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
#footer .p1 {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

#to_top {
  position: relative;
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#to_top > div {
  margin-left: auto;
  width: 16px;
}
#to_top > div > div {
  width: 16px;
  height: 14px;
  bottom: 37px;
  position: fixed;
  cursor: pointer;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
#to_top.fadein > div > div {
  opacity: 1;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}
#to_top.absolute > div > div {
  position: absolute;
}

.footer_menu_list {
  list-style: none;
}
/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  #footer {
    padding-top: 40px;
  }
  #footer .d1 {
    font-size: 20px;
  }
  #footer .d1 span {
    display: inline-block;
  }
  #footer .d2 {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 36px;
  }
  #footer .footer_link_wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 140px;
  }
  #footer .footer_link_wrap ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    display: block;
  }
  #footer .footer_link_wrap ul:nth-child(1) {
    gap: 24px;
    margin-bottom: 0;
  }
  #footer .footer_link_wrap ul:nth-child(1) li a {
    font-size: 16px;
  }
  #footer .footer_link_wrap ul li + li {
    margin-top: 8px;
  }
  #footer .footer_link_wrap ul li a {
    justify-content: center;
    font-size: 14px;
  }
  #footer .footer_privacy {
    font-size: 16px;
  }
}
.fadeIn {
  opacity: 0;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeIn.active {
  animation: fadeIn 2s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.fade_in_up {
  opacity: 0;
  transform: translateY(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_up.active {
  animation-name: fadeInUp;
}

.fade_in_left {
  opacity: 0;
  transform: translateX(-100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_left.active {
  animation-name: fadeInLeft;
}

.fade_in_right {
  opacity: 0;
  transform: translateX(100px);
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fade_in_right.active {
  animation-name: fadeInRight;
}

/***********************************/
/**********アニメーション************/
/**********************************/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes to_transparent {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes to_appear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cf7_wrap {
  margin: 0 auto;
  /* 各項目共通 */
}
.cf7_wrap input[type=text],
.cf7_wrap input[type=email],
.cf7_wrap input[type=tel],
.cf7_wrap select,
.cf7_wrap textarea {
  width: 100%;
  height: 45px;
  padding: 9px 20.5px 12px;
  background-color: #f5f5f5;
  border: none;
  font-family: "Noto Sans JP", serif;
}
.cf7_wrap input[type=text]:focus,
.cf7_wrap input[type=email]:focus,
.cf7_wrap input[type=tel]:focus,
.cf7_wrap select:focus,
.cf7_wrap textarea:focus {
  outline: 0;
}
.cf7_wrap input[type=checkbox],
.cf7_wrap input[type=radio] {
  appearance: auto;
}
.cf7_wrap .wpcf7-list-item {
  display: block;
}
.cf7_wrap textarea {
  height: 250px;
}

.cf7_item {
  border-bottom: 1px solid #c1c1c1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.cf7_item::before, .cf7_item:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 220px;
  height: 1px;
  background-color: #004ea8;
}
.cf7_item:first-child {
  border-top: 1px solid #c1c1c1;
}
.cf7_item:first-child:after {
  bottom: auto;
  top: -1px;
}
.cf7_item:last-of-type {
  margin-bottom: 0;
}

.cf7_head {
  min-width: 220px;
  padding: 31.5px 19.5px 34.5px;
  line-height: 1.75;
  color: #003a7b;
}

.cf7_content {
  width: 100%;
  padding: 22.5px 28px 22.5px;
}

.cf7_contentccept_check {
  margin-top: 60px;
  margin-bottom: 61.5px;
}
.cf7_contentccept_check .wpcf7-list-item {
  margin: 0;
}
.cf7_contentccept_check label {
  display: flex;
  justify-content: center;
}
.cf7_contentccept_check a {
  color: #004ea8;
  text-decoration: underline;
}
.cf7_contentccept_check input {
  display: none;
}
.cf7_contentccept_check input + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.cf7_contentccept_check input + span::after, .cf7_contentccept_check input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.cf7_contentccept_check input + span::before {
  width: 22px;
  height: 22px;
  border: solid 1px #004ea8;
  background-color: transparent;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cf7_contentccept_check input + span::after {
  border: none;
  width: 16px;
  height: 6px;
  border-left: 2px solid #004ea8;
  border-bottom: 2px solid #004ea8;
  transform: rotate(-45deg);
  top: 7px;
  left: 3px;
  display: none;
}
.cf7_contentccept_check input:checked + span::after {
  display: block;
}

.cf7_submit {
  width: 220px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background-color: #004ea8;
}
.cf7_submit:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  max-width: 0;
  background-color: #0088ff;
  transition: all 0.3s ease-in-out;
}
.cf7_submit:hover:before {
  max-width: 220px;
}
.cf7_submit input[type=submit] {
  width: 220px;
  height: 60px;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #fff;
  border: none;
  background-color: transparent;
}
.cf7_spinner_wrap {
  position: relative;
}
.cf7_spinner_wrap .wpcf7-spinner {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/*必須ラベル*/
.cf7_req {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #eb2a2a;
  color: #ffffff;
  margin-left: 10px;
  display: inline-block;
}

/****************************/
/**********タブレット・スモールPC以下************/
/***************************/
/****************************/
/**********タブレット・スモールPC以上************/
/***************************/
/****************************/
/**********スマホ************/
/***************************/
@media screen and (max-width: 768px) {
  .cf7_item {
    display: block;
  }
  .cf7_wrap label {
    display: block;
    margin-bottom: 10px;
  }
  .cf7_head {
    width: 100%;
    margin: 0;
  }
  .cf7_content {
    width: 100%;
  }
  .cf7_wrap input[type=text],
  .cf7_wrap input[type=email],
  .cf7_wrap input[type=tel],
  .cf7_wrap select,
  .cf7_wrap textarea {
    margin-left: 0;
  }
  .cf7_submit {
    width: 90%;
  }
}