/* ------------------------------ */
/* SEIWA GYOUGAKU GROUP          */
/* ---------------------------- */

/* COMMON SETTING             */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Sora:wght@400;600;700&display=swap");

*:focus {
  outline: none;
}

body {
  font-family: "Sora", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.3;
  letter-spacing: 1.1px;
  color: #111111;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

/* PAGE TOP */
.page_top_button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.page_top_button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page_top_button img {
  display: block;
  width: 100%;
  height: 100%;
}

.page_top_button:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

@media screen and (max-width: 767px) {
  .page_top_button {
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    width: 45px;
    height: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page_top_button {
    transition: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

a,
a span {
  color: #111111;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover,
a:hover span {
}

.js-anm {
  opacity: 0;
  transition: all 750ms ease;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.js-anm .js-anm02 {
  opacity: 0;
  transition: all 750ms ease 0.3s;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.js-anm .js-anm02 {
  transition-delay: 0.3s;
}

.js-anm[data-status="show"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-anm[data-status="show"] .js-anm02 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.to_pc {
  display: block;
}

.to_sp {
  display: none;
}

.header_pc {
  display: block;
}

.header_sp {
  display: none;
}

.sns {
  width: 180px;
  height: 22px;
}

.sns ul {
  height: 22px;
  line-height: 1;
}

.sns ul li {
  width: 22px;
  height: 22px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin: 0px 9px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1;
}

.sns ul li:first-child {
  margin-left: 0;
}

.sns ul li a {
  display: block;
}

.sns ul li:last-child {
  margin-right: 0;
  margin-top: 3px;
}

.sns ul li a {
  display: block;
  width: 22px;
  height: 22px;
}

.sns ul li path {
  transition: 0.3s;
}

.sns ul li:hover path {
  fill: #c8c8c8;
}

@media only screen and (max-width: 768px) {
  .to_pc {
    display: none !important;
  }

  .to_sp {
    display: block !important;
  }

  .sns {
    width: 36.267vw;
    height: 8vw;
  }

  .sns ul {
    height: 6.4vw;
  }

  .sns ul li {
    width: 6.4vw;
    height: 6.4vw;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.333vw;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    line-height: 1;
  }

  .sns ul li a {
    display: block;
  }

  .sns ul li:hover {
    opacity: 0.7;
  }

  .sns ul li:last-child {
    margin-right: 0;
  }

  .sns ul li.tw {
    width: 6.4vw;
    height: 5.333vw;
  }

  .sns ul li.x {
    width: 6.4vw;
    height: 5.333vw;
  }

  .sns ul li.youtube {
    width: 8.8vw;
    margin-top: 1.026vw;
  }

  .sns ul li a {
    display: block;
    width: 6.4vw;
    height: 6.4vw;
  }

  .sns ul li.tw a {
    display: block;
    width: 6.4vw;
    height: 5.333vw;
  }

  .sns ul li.youtube a {
    display: block;
    width: 8.8vw;
    height: 6.4vw;
  }

  .sns ul li img {
    width: 100%;
    height: auto;
  }
}

/* PAGE LAYOUT             */

/* COMMON */

.layout {
  position: relative;
}

.wrapper {
  width: 100%;
  background: #fff;
  width: 100%;
}

.sp_menu {
  display: none;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  position: fixed;
  border-bottom: solid 1px #111;
  background: #fff;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header.is-active {
  opacity: 1;
}

header .header_contents {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
}

header .header_contents div {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header_contents .header_logo {
  width: 286px;
  height: 76px;
  display: flex;
  align-items: center;
  border-right: solid 1px #111;
  padding-right: 2.941vw;
  margin-left: 2.206vw;
}

header h1 {
  width: 286px;
  height: 29px;
  line-height: 1;
}

header h1 a {
  display: block;
}

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

header .navi_list {
  height: 33px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4.985vw;
}

header .navi_list ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

header .navi_list li {
  text-align: center;
  line-height: 1.4;
}

header .navi_list li:first-child {
  margin-left: 0;
}

header .navi_list li:last-child {
  margin-right: 0;
}

header .navi_list li a {
  font-size: 14px;
  font-weight: 700;
  display: block;
  padding: 20px 10px;
}

header .navi_list li a span {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

header .navi_list li a .hover_anm {
  font-size: 14px;
  font-weight: 600;
  transform: translateY(0px);
  display: inline-block;
}

header .navi_list li a:hover .hover_anm {
  animation: hover_anm 0.7s ease 0s 1 alternate backwards;
}

@keyframes hover_anm {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  30% {
    transform: translateY(-0.45em);
    opacity: 0;
  }
  31% {
    transform: translateY(0.45em);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*
.navi_list li a.is_active {
    border-bottom: solid 2px #66615C;
    padding-bottom: 10px;
}
*/

header .submenu {
  width: 100%;
  position: absolute;
  top: 92px;
  left: 0;
  z-index: 10;
  background: #fff;
  padding: 20px 0;
  display: none;
}

header .submenu ul {
  background: #fff;
  width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .submenu ul li {
  width: 33.3%;
  margin-bottom: 10px;
  font-size: 13px;
  text-align: left;
  padding: 0;
  border: none;
  line-height: 2.4;
}

header .logo_left {
  display: none;
  position: absolute;
  top: 180%;
  left: 55px;
  width: 19px;
  height: 373px;
}

header .logo_left {
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  z-index: 10;
}

header .logo_left svg {
  overflow: hidden;
}

header .sns {
  width: 205px;
  height: 76px;
  display: flex;
  align-items: center;
  border-left: solid 1px #111;
  padding-left: 2.206vw;
  margin-right: 2.206vw;
}

header .border_btn {
  position: absolute;
  top: 47px;
  right: 47px;
  width: 150px;
  height: 48px;
  border: solid 1px #c2c3c0;
  text-align: center;
  z-index: 10;
}

header .border_btn a {
  padding: 8px 0;
  font-size: 14px;
  display: block;
}

#fixed .section01 {
  color: #ff9130;
}

#fixed .white {
  color: #fff;
}

footer {
  width: 100%;
  height: 680px;
  margin-bottom: 90px;
  border-top: 1px solid #111111;
}

footer .footer_inner {
  margin: 100px auto 150px;
  width: 1140px;
  max-width: 1140px;
  height: 410px;
  position: relative;
}

footer h1 {
  margin-bottom: 62px;
  width: 281px;
  height: 230px;
  margin-left: 0;
}

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

footer ul li {
  line-height: 1.2;
  margin-bottom: 30px;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer ul li a {
  font-size: 15px;
  font-weight: 700;
  color: #4b4b4b;
  font-feature-settings: "palt" on;
  transition: 0.3s;
  display: block;
}

footer ul li a span {
  transition: 0.3s;
}

footer ul li a:hover,
footer ul li a:hover span {
  color: #c8c8c8;
}

footer ul li a span {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4b4b4b;
}

footer ul li a:hover {
}

footer .address {
  position: absolute;
  top: 0;
  left: 0;
}

footer .address div {
  display: block;
  text-align: center;
}

footer .small_text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
  width: 200px;
  margin: 0 auto;
  font-feature-settings: "palt" on;
}

footer .menu {
  position: absolute;
  top: 15px;
  left: 400px;
  width: 100%;
  max-width: 500px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .menu .links {
  display: flex;
  width: 100%;
  /* margin-bottom: 20px;*/
  margin-bottom: 40px;
  justify-content: space-between;
}

footer .menu .links div {
  width: calc(50% - 20px);
}

footer .logo_group {
  position: absolute;
  top: 15px;
  right: 0px;
  width: 120px;
  height: 120px;
}

footer .logo_group img {
  width: 100%;
  height: auto;
}

footer .border_btn_column {
  position: absolute;
  top: 330px;
  left: 400px;
  width: 500px;
  height: 4.392vw;
  max-width: 500px;
  max-height: 60px;
  display: flex;
  justify-content: space-between;
}

footer .border_btn {
  width: 240px;
  background: #fff;
  align-items: center;
  height: 5.392vw;
  display: flex;
  justify-content: center;
  max-width: 240px;
  max-height: 65px;
  margin: 0 !important;
}

footer .border_btn a {
  display: block;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 4;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: center;
  border: 1px solid #000000;
  border-radius: 13px;
  position: relative;
}

footer .border_btn a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  height: calc(100% - -6px);
  width: calc(100% - -5px);
  border: solid 3px transparent;
  border-radius: 15px;
  transition: 0.7s;
}

footer .border_btn a:hover::before {
  border: solid 3px #000;
}

@media only screen and (max-width: 1050px) {
  footer .border_btn a {
    font-size: 1.171vw;
  }
}

footer .facilities {
  background: #f0f0f0;
  padding: 45px 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 150px;
  text-align: center;
  position: absolute;
  bottom: 60px;
}

footer .facilities ul {
  width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .facilities ul li {
  width: 33.3%;
  margin-bottom: 10px;
  font-size: 13px;
  text-align: left;
  padding: 0;
  border: none;
  line-height: 1.8;
}

footer .facilities ul li a {
  font-size: 13px;
  color: #66615c;
}

footer .facilities ul li a:hover {
  font-size: 13px;
  color: #9fa19d;
}

footer .copyright {
}

footer .copyright p {
  font-size: 12px;
  text-align: center;
}

main {
  background: #fff;
  margin: 0 auto;
}

main h1 {
  font-size: 36px;
  line-height: 1.6;
}

main h2 {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 40px;
}

main h2 span,
main h3 span {
  font-size: 14px;
}

main h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

main .small_text {
  font-size: 12px;
}

main .super_small_text {
  font-size: 10px;
}

main .border_circle {
  border: solid 1px #66615c;
  border-radius: 21px;
  display: inline-block;
}

main .border_btn,
main .wp-block-button {
  text-align: center;
  width: 480px;
  margin: 0 auto;
}

main .btn_more {
  width: 240px;
  height: 50px;
}

main .border_btn a {
  display: block;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 3.2;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 13px;
  background: #fff;
  transition: 0.3s;
  position: relative;
}

main .border_btn a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  height: calc(100% - -6px);
  width: calc(100% - -5px);
  border: solid 3px transparent;
  border-radius: 15px;
  transition: 0.7s;
}

main .border_btn a:hover::before {
  border: solid 3px #000;
}

main .contents_top {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 80px;
}

main .contents_top h1 {
  margin-top: 28px !important;
}

main .contents_top .post_date {
  display: inline-block;
  margin-right: 36px;
}

main .contents_top .border_circle,
main .block_info .column div .border_circle {
  padding: 0 17px;
}

main .block_info .column div .border_circle {
  margin-top: 0;
}

main .block_info {
  margin: 65px auto 0;
  position: relative;
  width: 83.088vw;
  max-width: 1130px;
}

main .block_info.w_940 {
  width: 69.118vw;
  max-width: 940px;
}

main .second_block {
  margin: 8.088vw auto 0;
  position: relative;
  width: 69.118vw;
  max-width: 940px;
}

main .second_block h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3.676vw !important;
  margin: 0 0 80px;
}

main .second_block h1 span {
  font-size: 14px;
  font-weight: 600;
}

main .article_box .img_cover {
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 104px;
  width: 100vw;
}

main .article_box .img_cover_960 {
  width: 100%;
}

main .article_box img {
  width: 100%;
  height: auto;
}

main .block_info h1 {
  margin: 0 0 38px;
}

main .article_box .small_text {
  line-height: 2.1;
  margin-top: 40px;
}

main .article_box ul {
  margin-bottom: 80px;
  text-indent: -1em;
  margin-left: 1em;
}

main .article_box ul li {
  margin-bottom: 16px;
}

main .column {
  -webkit-display: flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

main .column img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

main .column_2 div {
  width: calc(50% - 24px);
  margin-bottom: 44px;
}

main .column_3 div {
  width: calc(33.3% - 29px);
}

main .column_4 div {
  width: calc(25% - 40px);
}

main .column_5 div {
  width: calc(20% - 32px);
}

main .column_6 div {
  width: calc(16.6% - 23px);
}

main .block_info .column div a dl dt img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

main .block_info .column div a:hover dl dt img {
  transform: scale(1.1, 1.1);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

main .column_4 p,
main .column_5 p,
main .column_6 p {
  font-size: 12px;
}

main .column p span {
  font-size: 15px;
  font-weight: 500;
}

main .article_box.border_box {
  border: solid 1px #66615c;
  border-radius: 20px;
  padding: 48px 60px;
}

main .border_circle.circle_num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  line-height: 52px;
  text-align: center;
  margin-right: 24px;
  letter-spacing: 0;
  font-weight: 500;
}

main .article_box.description dl {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

main .article_box.description dl h3 {
  margin: 0;
}

main .article_box.description dl dt {
  max-width: 370px;
}

main .article_box.description dl dd {
  max-width: 370px;
}

main .article_box.description p {
  margin-left: 77px;
}

main .block_info .google_map {
  width: 100%;
  max-width: 960px;
  height: 540px;
  background: #333;
  margin: 0 0 32px;
}

main.lower_page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 175px 0 140px;
  background-color: #f5f5f5;
}

main.lower_page.bg_01 {
  --lower-bg-image: url(../img/lower_bg01.png);
}

main.lower_page.bg_02 {
  --lower-bg-image: url(../img/lower_bg02.png);
}

main.lower_page.bg_03 {
  --lower-bg-image: url(../img/lower_bg03.png);
}

main.lower_page.bg_04 {
  --lower-bg-image: url(../img/lower_bg04.png);
}

main.lower_page.bg_01::before,
main.lower_page.bg_02::before,
main.lower_page.bg_03::before,
main.lower_page.bg_04::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;

  background-image: var(--lower-bg-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;

  mix-blend-mode: multiply;
  filter: blur(20px);

  transform: rotate(-1.27deg) scale(1.03);
  transform-origin: center top;

  pointer-events: none;
}

main.lower_page > * {
  position: relative;
  z-index: 1;
}

main.lower_page .headline {
  margin: 0 36px 88px;
}

main.lower_page .headline h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  font-feature-settings: "palt" on;
}

main.lower_page .headline h1 span {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.08em;
}

main.lower_page .contents_area {
  background: #ffffff;
  border: 1px solid #111111;
  border-radius: 20px;
  padding: 105px 75px;
}

main.lower_page .news_area .post_info {
  margin-bottom: 40px;
}

main.lower_page .news_area .post_info div {
  display: inline-block;
}

main.lower_page .news_area .post_info .post_date {
  margin-right: 20px;
}

main.lower_page .news_area .post_info .post_date p {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.1em;
  color: #4b4b4b;
}

main.lower_page .news_area .post_info .post_category {
}

main.lower_page .news_area .post_info .post_category p {
  color: #4b4b4b;
  font-size: 13px;
  margin-right: 40px;
  width: fit-content;
  border: solid 1px #4b4b4b;
  padding: 6px 8px;
  line-height: 1;
}

main.lower_page .news_area h1 {
  font-weight: 500;
  font-size: 35px;
  line-height: 180%;
  letter-spacing: 0.15em;
  font-feature-settings:
    "palt" on,
    "pcap" on;
  padding-bottom: 50px;
  border-bottom: solid 1px #111111;
  margin-bottom: 70px;
}

main.lower_page .news_area h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  font-feature-settings: "palt" on;
  margin-bottom: 30px;
}

main.lower_page .news_area h4 {
  font-weight: 700;
  font-size: 19px;
  line-height: 180%;
  font-feature-settings: "palt" on;
  margin-bottom: 30px;
}

main.lower_page .post_contents p {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  font-feature-settings: "palt" on;
  margin-bottom: 40px;
}

main.lower_page .post_contents .wp-block-columns,
main.lower_page .post_contents .wp-block-image {
  margin-bottom: 60px;
}

main.lower_page .post_contents .wp-block-columns p:last-child,
main.lower_page .post_contents .wp-block-columns figure {
  margin-bottom: 0;
}

main.lower_page .post_contents .wp-block-buttons {
  margin: 0 auto 40px;
  text-align: center;
}

main.lower_page .post_contents .wp-block-buttons .wp-block-button {
  text-align: center;
  width: 470px;
  height: 65px;
  margin: 0 auto;
  position: relative;
  border: none;
}

main.lower_page .post_contents .wp-block-button a,
main.lower_page .post_contents .wp-block-button .wp-block-button__link:visited {
  display: block;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 4;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 13px;
  background: #fff;
  /* line-height: 190%; */
  text-align: center;
  color: #111111;
  font-feature-settings:
    "palt" on,
    "pcap" on;
}

main.lower_page .post_contents .wp-block-button a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  height: calc(100% - -6px);
  width: calc(100% - -5px);
  border: solid 3px transparent;
  border-radius: 15px;
  transition: 0.7s;
}

main.lower_page .post_contents .wp-block-button a:hover::before {
  border: solid 3px #000;
}

main .news {
  min-height: 324px;
}

.news .news_area {
}

.news .article_box p {
  margin-bottom: 40px;
}

.news .news_list .news_post {
  border-collapse: collapse;
  border-bottom: solid 1px #111111;
}

.news .news_list .news_post:first-child {
  border-top: solid 1px #111111;
}

.news .news_list .news_post.is-hidden {
  display: none;
}

.news .news_list .news_post a {
  display: block;
  color: #66615c;
  padding: 40px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.news .news_list .news_post a:hover {
  background: #f5f5f5;
}

.second_block .news_list .news_post a:hover {
  background: #fdfdfd;
}

.news .news_list .news_post a div {
  float: left;
}

.news .news_list .news_post .post_category {
  color: #4b4b4b;
  font-size: 13px;
  margin-right: 40px;
  width: fit-content;
  border: solid 1px #4b4b4b;
  padding: 8px 10px;
  line-height: 1;
}

.news .news_list .news_post .post_title {
  width: calc(100% - 240px);
  max-width: 660px;
}

.news .news_list .news_post .post_title p {
  margin-bottom: 0;
}

.news .news_list .news_post .post_title p:first-line {
  line-height: 1;
}

.news .news_list .news_post .post_date {
  font-size: 12px;
  letter-spacing: 1.1px;
  width: 82px;
  position: absolute;
  right: 10px;
  color: #4b4b4b;
}

.news .news_area .news_top {
  position: relative;
  height: 57px;
  margin: 0 0 80px;
}

.news .news_area .news_top h1 {
  position: absolute;
}

.news .news_area .news_top .border_btn {
  position: absolute;
  right: 0;
  width: 200px;
}

.news .news_area .news_top .border_btn a {
  padding: 8px 0;
  font-size: 14px;
}

main .news_area {
  width: 100%;
  position: relative;
}

main .news_area h2 {
  margin-bottom: 70px;
  font-weight: 600;
  font-size: 43px;
}

main .categories {
  position: absolute;
  top: 120px;
  right: 100px;
}

main .categories ul li {
  float: left;
  margin-left: 40px;
  font-size: 12px;
}

main .categories ul li a {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #4b4b4b;
}

main .news_list .news_post {
  border-collapse: collapse;
}

main .news_list .news_post.is-hidden {
  display: none;
}

main .news_list .news_post a {
  display: block;
  color: #66615c;
  padding: 40px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

main .news_list .news_post a:hover {
  background: #f7f7f7;
}

main .news_list .news_post a div {
  float: left;
}

main .news_list .news_post .post_category {
  color: #bdbec2;
  font-size: 12px;
  margin-right: 30px;
  letter-spacing: 1.1px;
  width: 110px;
}

main .news_list .news_post .post_title {
  width: calc(100% - 240px);
}

main .news_list .news_post .post_title p {
  font-weight: 700;
  font-size: 14px;
  line-height: 190%;
  letter-spacing: 0.1em;
  font-feature-settings: "palt" on;
}

main .news_list .news_post .post_date {
  font-size: 12px;
  letter-spacing: 1.1px;
  width: 82px;
  position: absolute;
  right: 30px;
}

main .news_list .post_none {
  text-align: center;
  margin-top: 180px;
}

.wp-pagenavi_area {
  margin-top: 80px;
  text-align: center;
}

.wp-pagenavi {
  display: inline-block;
}

.wp-pagenavi .first,
.wp-pagenavi .last {
  display: none;
}

.wp-pagenavi a {
  text-decoration: none;
  margin: 0 8px;
  background: #ffffff;
  border-radius: 13px;
  border: 1px solid #969696;
  padding: 12px 17px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  color: #969696;
}

.wp-pagenavi a:hover {
  text-decoration: none;
  margin: 0 8px;
  background: #ffffff;
  border-radius: 13px;
  border: 1px solid #000000;
  padding: 12px 17px;
  font-size: 16px;
  font-weight: 600;
  color: #000000 !important;
}

.wp-pagenavi span.current {
  background: #ffffff;
  border-radius: 13px;
  border: solid 1px #000000;
  padding: 12px 19px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 8px;
}

@media only screen and (max-width: 1359px) {
  main {
    background: #fff;
    margin: 0 auto;
  }

  header {
    top: 0;
    left: 0;
    width: 100%;
    height: 7.353vw;
    z-index: 10;
    position: fixed;
    border-bottom: solid 1px #111;
    background: #fff;
  }

  header .header_contents {
    width: 100%;
    height: 7.353vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
  }

  header .header_contents .header_logo {
    width: 20.029vw;
    height: 5.588vw;
    display: flex;
    align-items: center;
    border-right: solid 1px #111;
  }

  header h1 {
    width: 21.029vw;
    height: 2.132vw;
    line-height: 1;
  }

  header .navi_list {
    height: 4.426vw;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .navi_list li a {
    font-size: 1.029vw;
    font-weight: 700;
    letter-spacing: -0.1px;
  }

  header .navi_list li a span {
    font-family: "Sora", sans-serif;
    font-size: 0.882vw;
    font-weight: 600;
  }

  header .navi_list li a .hover_anm {
    font-size: 1.029vw;
    font-weight: 600;
  }

  header .sns {
    width: 177px;
    height: 5.588vw;
    border-left: solid 1px #111;
  }

  header .sns ul {
    height: 1.718vw;
    line-height: 1;
  }

  header .sns ul li {
    width: 1.618vw;
    height: 1.618vw;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin: 0px 0.462vw;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    line-height: 1;
  }

  header .sns ul li:last-child {
    margin-right: 0;
    margin-top: 3px;
  }

  header .sns ul li a {
    display: block;
    width: 1.618vw;
    height: 1.618vw;
  }

  header .sns ul li a img {
    width: 100%;
    height: auto;
  }

  main .news_area h2 {
    margin-bottom: 5.147vw;
    font-weight: 600;
    font-size: 3.162vw;
  }

  main .categories {
    position: absolute;
    top: 8.824vw;
    right: 7.353vw;
  }

  main .categories ul li {
    float: left;
    margin-left: 2.941vw;
    font-size: 0.882vw;
  }

  main .categories ul li a {
    font-weight: 400;
    font-size: 1.029vw;
    letter-spacing: 0.1em;
    color: #4b4b4b;
  }

  main .news_list .news_post a {
    display: block;
    color: #66615c;
    padding: 2.941vw 1.471vw;
    position: relative;
    display: flex;
    align-items: center;
  }

  main .news_list .news_post .post_category {
    color: #bdbec2;
    font-size: 0.882vw;
    margin-right: 2.206vw;
    letter-spacing: 0.081vw;
    width: 8.088vw;
  }

  main .news_list .news_post .post_title {
    width: calc(100% - 17.647vw);
  }

  main .news_list .news_post .post_date {
    font-size: 0.882vw;
    letter-spacing: 0.081vw;
    width: 6.029vw;
    position: absolute;
    right: 2.206vw;
  }

  main .news_list .post_none {
    text-align: center;
    margin-top: 13.235vw;
  }

  .wp-pagenavi_area {
    margin-top: 5.882vw;
    text-align: center;
  }

  .wp-pagenavi a {
    text-decoration: none;
    margin: 0 0.588vw;
    background: #ffffff;
    border-radius: 0.956vw;
    border: 1px solid #969696;
    padding: 0.882vw 1.25vw;
    font-size: 1.176vw;
    font-weight: 600;
  }

  .wp-pagenavi a:hover {
    text-decoration: none;
    margin: 0 0.588vw;
    background: #ffffff;
    border-radius: 0.956vw;
    border: 1px solid #969696;
    padding: 0.882vw 1.25vw;
    font-size: 1.176vw;
    font-weight: 600;
  }

  .wp-pagenavi span.current {
    background: #ffffff;
    border-radius: 0.956vw;
    border: solid 1px #66615c;
    padding: 0.882vw 1.397vw;
    font-size: 1.176vw;
    font-weight: 600;
    margin: 0 0.588vw;
  }

  main.lower_page {
    padding: 12.868vw 0 10.294vw;
  }

  main.lower_page .contents_area {
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 1.471vw;
    padding: 5.515vw;
  }

  main.lower_page .post_contents .wp-block-buttons {
    margin: 0 auto 40px;
    text-align: center;
  }
}

/*
@media only screen and (max-width: 1159px) {

    .header_pc {
        display: none;
    }

    .header_sp {
        display: block;
    }

    .sp_menu {
        display: none;
        background-color: #f0f0f0;
        color: #66615c;
        position: fixed;
        top: 0;
        left: 0;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 10;
    }

    .sp_menu .sp_navi_list {
        position: absolute;
        color: #66615c;
        font-size: 20px;
        top: 200px;
        bottom: auto;
        left: 0;
        right: 0;
        margin: auto;
        width: 48vw;
        height: 44.667vw;
    }

    .sp_menu .sns {
        position: absolute;
        bottom: 9.667vw;
        left: 0;
        right: 0;
        margin: auto;
        width: 550px;
        height: 24px;
        z-index: 10;
    }

    .sp_menu .sns ul li {
        margin: 0 5%;
    }

    .sp_menu .sns ul li:first-child {
        margin-left: 0;
    }

    .sp_menu .sp_navi_list li {
        margin: 0 0 60px;
        line-height: 1.0;
    }

    .sp_menu .sp_navi_list li .js-menu {
        position: relative;
        display: block;
        cursor: pointer;
    }

    .sp_menu .sp_navi_list li .js-menu:before {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        margin: auto;
        width: 24px;
        height: 1px;
        background-color: #66615c;
        transition: .2s;
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
    }

    .sp_menu .sp_navi_list li .js-menu:after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        margin: auto;
        width: 24px;
        height: 1px;
        background-color: #66615c;
        transition: .3s;
    }

    .sp_menu .sp_navi_list li .js-menu.on:before {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    .sp_menu .sp_navi_list li .js-menu.on:after {
        background-color: transparent;
    }

    .sp_menu .sp_navi_list li .submenu {
        display: none;
        margin-top: 4.4vw;
    }

    .sp_menu .sp_navi_list li .submenu li {
        line-height: 1.8;
        margin: 0 0 3.667vw;
        font-size: 18px;
    }

    .sp_menu .sp_sns_list {
        display: flex;
        width: 90%;
        margin: 0 auto;
        position: absolute;
        bottom: 9.333vw;
        left: 0;
        right: 0;
    }

    .sp_menu .sp_sns_list li {
        width: calc(100% / 3);
        text-align: center;
    }

    .sp_menu .sp_sns_list li a {
        font-size: 3.467vw;
    }

    .sp_menu .sp_sns_list {
        display: flex;
        width: 90%;
        margin: 0 auto;
        position: absolute;
        bottom: 9.333vw;
        left: 0;
        right: 0;
    }

    .sp_menu .sp_sns_list li {
        width: calc(100% / 3);
        text-align: center;
    }

    .sp_menu .sp_sns_list li a {
        font-size: 3.467vw;
    }

    .sp_menu .sp_sns_list {
        display: flex;
        width: 90%;
        margin: 0 auto;
        position: absolute;
        bottom: 9.333vw;
        left: 0;
        right: 0;
    }

    .sp_menu .sp_sns_list li {
        width: calc(100% / 3);
        text-align: center;
    }

    .sp_menu .sp_sns_list li a {
        font-size: 3.467vw;
    }

    .sp_menu .border_btn {
        position: absolute;
        bottom: 17.667vw;
        left: 0;
        right: 0;
        margin: auto;
        width: 49vw;
        height: 6.0vw;
        z-index: 10;
        border: solid 1px #C2C3C0;
        text-align: center;
        background: #FFF;
    }

    .sp_menu .border_btn a {
        display: block;
        font-size: 20px;
        padding: 0.867vw;
    }

    header {
        color: #66615c;
        width: 100%;
        height: 125px;
        top: auto;
        left: auto;
    }

    header .header_contents {
        width: 87%;
        max-width: none;
        z-index: 1;
        padding: 0;
        margin: 0 auto;
        position: relative;
    }

    header h1 {
        position: absolute;
        width: 61vw;
        height: 14vw;
        top: 0;
        left: 6.4vw;
        font-size: 6.4vw;
    }

    header h1 span {
        position: absolute;
        width: 61vw;
        height: 14vw;
        top: 0;
        left: 6.4vw;
        font-size: 6.4vw;
    }

    header .sns {
        display: none;
    }

    .fix_header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background: none;
        height: 175px;
        opacity: 1 !important;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .fix_header .header_contents {
        width: 87%;
        height: 10.4vw;
        z-index: 10;
        margin: 0 auto;
        position: relative;
    }

    .fix_header h1 {
        position: absolute;
        width: 9.667vw;
        height: 9vw;
        top: 0.733vw;
        left: -0.2vw
    }

    .fix_header h1 span {
        font-size: 12px;
        line-height: 1.4;
        display: inline-block;
        text-align: center;
        vertical-align: text-top;
    }

    .fix_header h1 span.furigana {
        position: absolute;
        top: -16px;
        left: 82px;
        font-size: 10px;
        letter-spacing: 2.0px;
    }

    .menu_button {
        width: 65px;
        height: 30px;
        display: flex;
        position: absolute;
        top: 44px;
        right: 0;
    }

    .menu_button .menu_border {
        position: absolute;
        border-top: 1px solid #66615c;
        width: 100%;
        height: 4px;
        transition: all .2s;
        transform: rotate(0deg);
    }

    .menu_button .menu_border:first-child {
        transform: translateY(14px);
    }

    .menu_button .menu_border:nth-child(2) {
        transform: translateY(4px);
    }

    .menu_button.active .menu_border:first-child {
        transform: rotate(23deg);
        top: 50%;
    }

    .menu_button.active .menu_border:nth-child(2) {
        transform: rotate(-23deg);
        top: 50%;
    }

    footer .facilities {
        height: 150px;
    }

    footer .facilities ul {
        width: 88%;
    }

    footer .facilities ul li {
        width: 50%;
        margin-bottom: 10px;
        font-size: 13px;
        text-align: left;
        padding: 0;
        border: none;
        line-height: 2.3;
    }

}
*/

.interact dl dt {
  max-width: 429px;
  max-height: 320px;
  margin-bottom: 16px;
  margin-right: 0 !important;
  overflow: hidden;
}

.interact dl dd p {
  font-size: 15px;
  line-height: 1.7;
}

.interact dl dd p.facility_name {
  font-weight: 500;
  margin-bottom: 16px;
}

.interact dl dd p span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.interact .carousel dl dt {
  width: 210px;
  height: 148px;
}

.interact .carousel dl dt img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.interact .carousel a:hover dl dt img {
  transform: scale(1.1, 1.1);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .interact .column div:last-child {
    margin-bottom: 0;
  }

  .interact dl dt {
    width: 100%;
    height: auto;
    margin-bottom: 4.267vw;
  }

  .interact dl dt img {
    margin-bottom: 0;
  }

  .interact dl dd p {
    font-size: 3.2vw;
  }

  .interact dl dd p.facility_name {
    font-size: 4vw;
    margin-bottom: 4.267vw;
  }

  .interact dl dd p span {
    font-size: 3.2vw;
  }

  .interact .carousel dl dt {
    width: 40vw;
    height: 28.267vw;
  }

  .interact .carousel dl dd p {
    font-size: 3.733vw;
    font-weight: 500;
  }
}

main .contents_inner {
  width: 83.088vw;
  max-width: 1130px;
  background: #ffffff;
  border: 1px solid #111111;
  border-radius: 20px;
  margin: 0 auto;
  padding: 100px;
  position: relative;
}
@keyframes first {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes second {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*
.navi_list li a.is_active {
    border-bottom: solid 2px #66615C;
    padding-bottom: 10px;
}
*/

.tour .column::after,
.tour .column::before {
  content: "";
  display: block;
  width: 21%;
  height: 0;
}

.tour .column::before {
  order: 1;
}

@media only screen and (max-width: 1359px) {
  main .contents_inner {
    padding: 7.353vw;
  }

  main .block_info.w_940 {
    width: 83.088vw;
    max-width: 940px;
  }

  main .column_2 div {
    width: calc(50% - 1.765vw);
    margin-bottom: 3.235vw;
  }

  footer {
    width: 100%;
    height: 50vw;
    margin-bottom: 6.618vw;
  }

  footer .footer_inner {
    margin: 7.353vw auto 11.029vw;
    width: 83.824vw;
    max-width: 83.824vw;
    height: 29.412vw;
    position: relative;
  }

  footer h1 {
    margin-bottom: 4.559vw;
    width: 20.662vw;
    height: 16.912vw;
    margin-left: 0;
  }

  footer .small_text {
    font-size: 1.029vw;
    font-weight: 700;
    line-height: 1.8;
    text-align: left;
    width: 18.006vw;
    margin: 0 auto;
    font-feature-settings: "palt" on;
  }

  footer .menu {
    position: absolute;
    top: 1.103vw;
    left: 29.412vw;
    width: 100%;
    max-width: 36.765vw;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  footer .menu .links {
    display: flex;
    width: 100%;
    margin-bottom: 1.471vw;
  }

  footer .sns ul li:last-child {
    margin-right: 0;
    margin-top: 3px;
  }

  footer ul li {
    line-height: 1.2;
    margin-bottom: 2.206vw;
  }

  footer ul li a {
    font-size: 1.103vw;
    font-weight: 700;
    color: #4b4b4b;
    font-feature-settings: "palt" on;
  }

  footer ul li a span {
    font-family: "Sora", sans-serif;
    font-size: 0.882vw;
    font-weight: 600;
    color: #4b4b4b;
  }

  .sns {
    width: 13.235vw;
    height: 1.618vw;
  }

  .sns ul {
    height: 1.618vw;
    line-height: 1;
  }

  .sns ul li {
    width: 1.618vw;
    height: 1.618vw;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin: 0px 0.662vw;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    line-height: 1;
  }

  .sns ul li a {
    display: block;
    width: 1.618vw;
    height: 1.618vw;
  }

  .sns ul li a img {
    width: 100%;
    height: auto;
    vertical-align: unset;
  }

  .sns ul li:last-child {
    margin-right: 0;
    margin-top: 0;
  }

  footer .border_btn_column {
    position: absolute;
    top: 27.265vw;
    left: 29.412vw;
    width: 36.765vw;
    height: 4.392vw;
    max-width: 36.765vw;
    max-height: 4.412vw;
    display: flex;
    justify-content: space-between;
  }

  footer .border_btn {
    width: 17.647vw;
    background: #fff;
    align-items: center;
    height: 5.392vw;
    display: flex;
    justify-content: center;
    max-width: 17.647vw;
    max-height: 4.779vw;
    margin: 0 !important;
  }

  footer .border_btn a {
    display: block;
    padding: 0 !important;
    font-size: 1.176vw !important;
    font-weight: 700;
    line-height: 3.6;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 1px solid #000000;
    border-radius: 0.956vw;
  }

  footer .logo_group {
    position: absolute;
    top: 1.103vw;
    right: 0px;
    width: 8.824vw;
    height: 8.824vw;
  }

  footer .copyright p {
    font-size: 0.882vw;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  main .contents_inner {
    width: 83.088vw;
    max-width: unset;
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 5.128vw;
    margin: 0 auto;
    padding: 11.795vw 6.154vw;
  }

  main .border_btn a {
    display: block;
    padding: 0 !important;
    font-size: 3.846vw !important;
    font-weight: 700;
    line-height: 3.3 !important;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
    border-radius: 13px;
    background: #fff;
  }

  main .border_btn a::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -2px;
    height: calc(100% - -6px);
    width: calc(100% - -5px);
    border: solid 3px transparent;
    border-radius: 15px;
    transition: 0.7s;
  }

  main .border_btn a:hover::before {
    border: solid 3px #000;
  }

  .navi_list li a.is_active {
    border-bottom: solid 2px #66615c;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  body {
    font-family: "Sora", "Noto Sans JP", sans-serif;
    font-size: 3.733vw;
    line-height: 2.3;
    letter-spacing: 0.293vw;
    color: #111111;
  }

  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }

  .layout {
  }

  .sp_menu {
    display: none;
    position: fixed;
    inset: 0;

    background: #f5f5f5;
    color: #111111;

    padding: 20px;
    overflow: hidden;
    z-index: 10;

    isolation: isolate;
  }

  .sp_menu::before {
    content: "";
    position: absolute;
    inset: -5.128vw;

    background: url(../img/sp/sp_menu_bg.png) no-repeat;
    background-position: top right;
    background-size: 100% auto;

    filter: blur(2.428vw);
    transform: scale(1.02);
    mix-blend-mode: multiply;

    transform-origin: top right;

    pointer-events: none;
    z-index: 0;
  }

  .sp_menu > * {
    position: relative;
    z-index: 1;
  }

  .sp_menu .inner {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 20px;
    width: 100%;
    height: 100%;
  }

  .sp_menu .inner .logo {
    width: 160px;
    height: 130px;
    margin: 11.513vw auto 10.385vw;
  }

  .sp_menu .inner .logo a {
    display: block;
  }

  .sp_menu .inner .logo a img {
    width: 100%;
    height: auto;
  }

  .sp_menu .sp_navi_list {
    display: flex;
    flex-direction: column;
    gap: 5.128vw;
    color: #66615c;
    margin: 0 auto;
    width: 66vw;
    text-align: center;
    padding: 0;
    list-style: none;
  }

  .sp_menu .sp_navi_list li {
    margin: 0;
    line-height: 1.2;
  }

  .sp_menu .sp_navi_list a {
    display: block;
    padding: 1vw 0;
    font-size: 16px;
    font-weight: 700;
  }

  .sp_menu .sp_navi_list li a span {
    font-size: 11px;
    font-weight: 600;
  }

  .sp_menu .sns {
    width: 180px;
    height: 30px;
    margin: 0px auto 13.641vw;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
  }

  .sp_menu .sns ul {
    width: 180px;
    height: 30px;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: unset;
  }

  .sp_menu .sns ul li {
    width: 26px;
    height: 26px;
  }

  .sp_menu .sns ul li a {
    display: block;
    width: 26px;
    height: 26px;
  }

  .sp_menu .sns ul li.youtube a {
    display: block;
    width: 26px;
    height: 26px;
  }

  .wrapper {
    background: #fff;
    width: 100%;
  }

  header {
    color: #66615c;
    width: 100%;
    height: 105px;
    top: auto;
    left: auto;
    background: none;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .header_contents {
    width: 90%;
    height: 16.667vw;
    max-width: none;
    z-index: 1;
    position: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header h1 {
    width: 55.385vw;
    height: 5.641vw;
  }

  header .header_contents .header_logo {
    width: 55.385vw;
    height: 5.641vw;
    display: flex;
    align-items: center;
    border-right: none;
    padding-right: 0;
    margin-left: 0;
  }

  header .sns {
    display: none;
  }

  .fix_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: none;
    height: 26.333vw;
    opacity: 1;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .fix_header .header_contents {
    width: 87%;
    height: 11.4vw;
    z-index: 10;
    margin: 0 auto;
    position: relative;
  }

  .fix_header h1 {
    position: absolute;
    width: 22.667vw;
    height: 16vw;
    top: -2.267vw;
    left: 0.8vw;
  }

  .fix_header h1 span {
    font-size: 2.667vw;
    line-height: 1.4;
    display: inline-block;
    text-align: center;
    vertical-align: text-top;
  }

  .fix_header h1 span.furigana {
    position: absolute;
    top: -15px;
    left: 69px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .menu_button_bg {
    width: 65px;
    height: 65px;
    display: flex !important;
    background: #fefefe;
    border-radius: 50%;
    border: solid 1px #000;
    align-items: center;
    justify-content: center;
  }

  .menu_button {
    width: 65px;
    height: 65px;
    display: flex !important;
    background: none;
    border-radius: 0;
    border: none;
    align-items: center;
    justify-content: center;
  }

  .menu_button .menu_border {
    position: absolute;
    border-top: 2px solid #111;
    width: 28px;
    height: 2px;
    transition: all 0.2s;
    transform: rotate(0deg);
  }

  .menu_button .menu_border:nth-child(2) {
    transform: translateY(4px);
  }

  .menu_button .menu_border:nth-child(3) {
    transform: translateY(-4px);
  }

  .menu_button.active .menu_border:nth-child(2) {
    transform: rotate(23deg);
    top: 50%;
  }

  .menu_button.active .menu_border:nth-child(3) {
    transform: rotate(-23deg);
    top: 50%;
  }

  footer {
    width: 100%;
    height: 328vw;
    margin: 0 auto;
    position: static;
  }

  footer .footer_inner {
    margin: 20.353vw auto 11.029vw;
    width: 83.824vw;
    max-width: 83.824vw;
    height: 296.412vw;
    position: relative;
  }

  footer h1 {
    margin: 0 auto 12.667vw;
    width: 46.667vw;
    height: 38vw;
  }

  footer h1 span {
    font-size: 3.2vw;
  }

  footer .small_text {
    font-size: 3.333vw;
    line-height: 1.8;
    margin-bottom: 10.256vw;
    width: 100%;
    display: unset;
  }

  footer ul li {
    line-height: 1.6;
    margin-bottom: 5.128vw;
  }

  footer ul li:last-child {
    margin-bottom: 5.128vw;
  }

  footer ul li a {
    font-size: 3.846vw;
    color: #4b4b4b;
    line-height: 1;
    letter-spacing: -0.026vw;
  }

  footer ul li a span {
    font-size: 3.077vw;
    color: #4b4b4b;
    line-height: 1;
    letter-spacing: -0.026vw;
  }

  footer .address {
    position: static;
    margin-bottom: 7.933vw;
  }

  footer .menu {
    position: static;
    width: 100%;
    -webkit-display: flex;
    display: inline;
  }

  footer .menu .links {
    display: block;
    width: 100%;
    margin-bottom: 9.471vw;
  }

  footer .menu .links div {
    width: 100%;
  }

  footer .sns {
    width: 100%;
    height: 6.667vw;
    margin-bottom: 10.256vw;
  }

  footer .sns ul {
    width: 43.59vw;
    height: 6.41vw;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: unset;
  }

  footer .sns ul li {
    width: 6.4vw;
    height: 5.333vw;
    margin-top: 0.533vw;
  }

  footer .sns ul li a {
    display: block;
    width: 6.4vw;
    height: 5.333vw;
  }

  footer .logo_group {
    position: static;
    width: 100%;
    height: 35.333vw;
    margin-top: 0;
  }

  footer .logo_group a {
    width: 33.333vw;
    height: 33.333vw;
    display: block;
  }

  footer .logo_group img {
    width: 100%;
    height: auto;
  }

  footer .border_btn_column {
    position: static;
    width: 100%;
    height: 37.333vw;
    margin: 0 0 10.256vw;
    justify-content: unset;
    display: block;
    max-width: unset;
    max-height: unset;
  }

  footer .border_btn {
    width: 100% !important;
    background: #fff;
    align-items: center;
    height: 15.385vw;
    border: none;
    display: flex;
    max-width: unset;
    max-height: unset;
    margin-bottom: 20px !important;
  }

  footer .border_btn a {
    font-size: 3.846vw !important;
    line-height: 4 !important;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 3.333vw;
  }

  footer .copyright {
    position: absolute;
    bottom: 10.667vw;
    left: 0;
    right: 0;
    margin: auto;
  }

  footer .copyright p {
    font-size: 2.667vw;
    text-align: center;
  }

  .wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }

  .wp-pagenavi_area {
    margin-top: 10.667vw;
    text-align: center;
  }

  .wp-pagenavi_area .current_page {
    font-size: 3.2vw;
    margin-bottom: 4.267vw;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    text-decoration: none;
    border-radius: 2.564vw;
    border: solid 1px #969696;
    padding: 1.4vw 3.2vw;
    margin: 0;
    font-size: 3.333vw;
    width: 10.256vw;
  }

  .wp-pagenavi a:hover,
  .wp-pagenavi span {
    text-decoration: none;
    border-radius: 2.564vw;
    border: solid 1px #000000;
    padding: 1.4vw 3.2vw;
    margin: 0;
    font-size: 3.333vw;
    width: 10.256vw;
  }

  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi a:nth-child(2) {
    margin-left: 0;
  }

  .wp-pagenavi a:nth-last-child(2) {
    margin-right: 0;
  }

  .wp-pagenavi span.current {
    color: #66615c;
    border-radius: 2.564vw;
    border: solid 1px #66615c;
    padding: 1.4vw 3.2vw;
    margin: 0;
    font-size: 3.333vw;
  }
  .headline {
    height: 13.333vw;
    margin-bottom: 12.821vw;
  }

  .headline div {
    width: 100%;
    height: 69.333vw;
    background-image: none;
    background-attachment: unset;
    margin-bottom: -6.4vw;
  }

  .headline div {
    position: relative;
    width: 100%;
    height: 69.333vw;
  }

  .headline h1.headline_title {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 5.867vw;
    color: #fff;
    width: 85%;
    text-align: center;
    line-height: 1.6;
  }

  main {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }

  main.lower_page {
    padding: 34.615vw 0 34.615vw;
  }

  /* 下層ページ：SP専用背景画像 */
  main.lower_page.bg_01 {
    --lower-bg-image: url(../img/sp/lower_bg01.png);
  }

  main.lower_page.bg_02 {
    --lower-bg-image: url(../img/sp/lower_bg02.png);
  }

  main.lower_page.bg_03 {
    --lower-bg-image: url(../img/sp/lower_bg03.png);
  }

  main.lower_page.bg_04 {
    --lower-bg-image: url(../img/sp/lower_bg04.png);
  }

  main.lower_page.bg_01::before,
  main.lower_page.bg_02::before,
  main.lower_page.bg_03::before,
  main.lower_page.bg_04::before {
    inset: -2.428vw;
    background-image: var(--lower-bg-image);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    mix-blend-mode: multiply;
    filter: blur(2.428vw);
    transform: scale(1.01);
    transform-origin: center top;
  }

  main.lower_page .headline {
    margin: 0 0 12.564vw;
  }

  main.lower_page .headline h1 {
    font-weight: 700;
    font-size: 6.41vw;
    line-height: 1;
    font-feature-settings: "palt" on;
  }

  main.lower_page .headline h1 span {
    font-weight: 700;
    font-size: 3.59vw;
    letter-spacing: 0.08em;
  }

  main.lower_page .contents_area {
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 5.128vw;
    padding: 13.653vw 6.153vw;
  }

  main h1 {
    font-size: 6.933vw;
    line-height: 1.6;
  }

  main h2 {
    font-size: 5.6vw;
    line-height: 1.7;
    margin-bottom: 5.533vw;
  }

  main h3 {
    font-size: 4.8vw;
    line-height: 1.6;
    margin-bottom: 6.4vw;
    height: auto !important;
  }

  main .border_circle {
    border: solid 1px #66615c;
    border-radius: 5.6vw;
    display: inline-block;
  }

  main .wp-block-buttons {
    text-align: center;
    margin: 6.4vw 0;
  }

  main .border_btn,
  main .wp-block-button {
    border: solid 1px #c2c3c0;
    text-align: center;
    width: 100% !important;
    height: 12.8vw;
    margin: 0 auto;
  }

  main .border_btn a,
  main .wp-block-button__link {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    padding: 6px 24px 12px;
  }

  main .icon_pdf a {
    background: url(../img/icon_pdf.svg) no-repeat;
    background-position: 92% center;
  }

  main .contents_top {
    width: 256vw;
    margin: 0 auto 80px;
  }

  main .contents_top h1 {
    margin-top: 4.267vw;
  }

  main .contents_top .post_date {
    display: inline-block;
    margin-right: 4.267vw;
  }

  main .contents_top .border_circle,
  main .block_info .column div .border_circle {
    padding: 0 4.533vw;
  }

  main .block_info .column div .border_circle {
    margin-top: 4.267vw;
  }

  main .block_info {
    width: 89.744vw;
    margin: 0 auto;
  }

  main .block_info.w_940 {
    width: 84.615vw;
    max-width: unset;
    margin: 0 auto 25.641vw;
  }

  main .article_box {
    width: 100%;
    margin: 0 auto 4.615vw;
  }

  main .block_info h1 {
    margin: 0 0 10.533vw !important;
  }

  main .block_info .column div {
    margin: 0 0 10.667vw;
  }

  .event .column div:nth-last-child(-n/**/+3) {
    margin-bottom: 10.667vw !important;
  }

  main .block_info .column.event_list div:last-child {
    margin: 0 !important;
  }

  main .article_box p {
    margin-bottom: 6.4vw !important;
  }

  main .article_box p:last-child {
    margin-bottom: 0;
  }

  main .article_box .img_cover {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  main .article_box .img_cover img {
    width: 100vw;
  }

  main .article_box .small_text {
    line-height: 2.1;
    margin-top: 0;
  }

  main .column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12.308vw !important;
  }

  main .column img {
    width: 100%;
    margin: 0 0 2.733vw;
  }

  main .column_2 div,
  main .column_3 div {
    width: 100%;
    margin: 0 auto;
  }

  main .column_4 div,
  main .column_5 div,
  main .column_6 div {
    width: calc(50% - 10px);
  }

  main .column_4 p,
  main .column_5 p,
  main .column_6 p,
  main .block_info .column div p {
    font-size: 3.733vw;
  }

  main .column p span {
    font-size: 4vw;
    font-weight: 500;
  }

  main .article_box.border_box {
    border: solid 1px #66615c;
    border-radius: 5.333vw;
    padding: 6.4vw;
  }

  main .border_circle.circle_num {
    width: 8.533vw;
    height: 8.533vw;
    border-radius: 50%;
    line-height: 8.533vw;
    text-align: center;
    margin-right: 4.267vw;
    letter-spacing: 0;
  }

  main .article_box.description dl {
    display: flex;
    align-items: center;
    margin: 0 0 5.333vw;
  }

  main .article_box.description dl h3 {
    margin: 0;
    letter-spacing: -0.15px;
  }

  main .article_box.description dl dd {
    max-width: 71.333vw;
  }

  main .article_box.description p {
    margin-left: 12.267vw;
  }

  main .block_info .google_map {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100vw;
    margin-bottom: 8.533vw;
  }

  main .contents_top {
    width: 100%;
    margin: 0 auto 48px;
  }

  main .contents_top h1 {
    margin-top: 4.267vw;
  }

  main .news {
    min-height: 84vw;
  }

  main .news_area h2 {
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: 600;
  }

  .news {
    position: relative;
    margin: 22.4vw 0;
  }

  .news .news_area {
    width: 100%;
    margin: 0 auto;
  }

  .news .news_area .news_top {
    position: relative;
    height: 9.867vw;
    margin: 0 0 8.533vw;
  }

  main .news_list .post_none {
    text-align: center;
    margin: 100px 0;
  }

  .news .news_area .border_btn {
    margin: 14.667vw auto;
    height: 12.8vw;
    border: none;
  }

  .news .news_area .border_btn a {
    font-size: 14px;
    padding: 3.467vw 0;
  }

  .news .news_list {
    margin-bottom: 6.933vw;
  }

  .news .news_list .news_post {
    border-collapse: collapse;
  }

  .news .news_list .news_post a {
    display: block;
    background: #fff;
    color: #66615c;
    padding: 8vw 4vw;
  }

  .news .news_list .news_post a div {
    float: none;
  }

  .news .news_list .news_post .post_category {
    font-size: 2.821vw;
    width: fit-content;
    margin-bottom: 5.128vw;
    padding: 1.538vw;
  }

  .news .news_list .news_post .post_title {
    width: 100%;
    max-width: unset;
  }

  .news .news_list .news_post .post_title p {
    font-size: 3.333vw;
    line-height: 2.4;
  }

  .news .news_list .news_post .post_date {
    font-size: 2.821vw;
    letter-spacing: 0.293vw;
    width: 22.867vw;
    position: absolute;
    top: 8.067vw;
    right: 4vw;
    text-align: right;
  }

  main .categories {
    position: static;
    margin-bottom: 6.805vw;
  }

  main .categories ul li {
    display: inline-block;
    margin-right: 3.077vw;
    font-size: 3.077vw;
    float: none;
    margin-left: 0;
  }

  main .categories ul li a {
    color: #4b4b4b;
    font-size: 3.077vw;
  }

  .block_button button,
  .block_button a {
    font-size: 4.267vw;
    font-weight: 300;
    border: solid 1px #c2c3c0;
    color: #9fa19d;
    width: 100%;
    padding: 5.333vw;
    text-align: center;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .block_button a {
    display: block;
  }

  .block_button button:hover,
  .block_button a:hover {
    border: solid 1px #66615c;
    color: #6b635a;
  }

  .carousel {
    position: relative;
    margin-bottom: 0;
    width: 100vw;
  }

  .carousel .slick-slide {
    display: block;
    width: 40vw;
    margin: 0 1.867vw;
  }

  .carousel .slick-list {
    padding: 0 0 0 30% !important;
  }

  /* ARCHIVE */

  .archive {
    position: relative;
    padding-top: 32.333vw;
  }

  .archive .news_area {
    width: 82.5%;
    margin: 0px 8.75%;
    position: relative;
  }

  .archive h2 {
    font-size: 7.467vw;
    margin-bottom: 13.333vw;
    font-weight: 300;
  }

  .archive .categories {
    position: static;
    top: auto;
    right: auto;
    height: 3.733vw;
    margin-bottom: 9.333vw;
  }

  .archive .categories ul li {
    float: left;
    margin-left: 0;
    margin-right: 8vw;
    font-size: 3.2vw;
    font-weight: 300;
  }

  .archive .news_list {
    margin-bottom: 0;
  }

  .archive .news_list .news_post {
    border-collapse: collapse;
  }

  .archive .news_list .news_post {
    border-bottom: solid 1px #c2c3c0;
  }

  .archive .news_list .news_post:first-child {
    border-top: solid 1px #c2c3c0;
  }

  .archive .news_list .news_post.is-hidden {
    display: none;
  }

  .archive .news_list .news_post a {
    display: block;
    background: #fff;
    color: #66615c;
    padding: 5vw 0;
    position: relative;
  }

  .archive .news_list .news_post a:hover {
    background: #f7f7f7;
  }

  .archive .news_list .news_post a div {
    float: left;
  }

  .archive .news_list .news_post .post_category {
    font-size: 2.933vw;
    letter-spacing: 0.293vw;
    width: 30.667vw;
    margin-bottom: 4vw;
    font-weight: 300;
  }

  .archive .news_list .news_post .post_title {
    width: 73.333vw;
    margin-bottom: 4vw;
  }

  .archive .news_list .news_post .post_title p {
    font-size: 4vw;
    line-height: 6.667vw;
  }

  .archive .news_list .news_post .post_date {
    font-size: 2.933vw;
    letter-spacing: 0.293vw;
    width: 21.867vw;
    position: static;
    float: none;
  }

  /* POST */

  .archive_post {
    position: relative;
    padding-top: 32.333vw;
  }

  .archive_post .post_area {
    width: 82.5%;
    margin: 0px 8.75%;
    position: relative;
  }

  .archive_post .post_area .post {
    display: block;
  }

  .archive_post .post_area .category_date {
    width: 100%;
    height: 3.467vw;
    margin-bottom: 8vw;
  }

  .archive_post .post_area .category_date li {
    float: left;
    color: #9fa19d;
    font-size: 2.933vw;
    margin: 0 4vw 0 0;
  }

  .archive_post .post_area .post .detail {
    width: 100%;
  }

  .archive_post h2 {
    font-size: 7.467vw;
    margin-bottom: 13.333vw;
    padding-bottom: 8vw;
    margin-bottom: 10.667vw;
    border-bottom: solid 1px #c2c3c0;
  }

  .archive_post .categories {
    position: absolute;
    top: 4.8vw;
    right: 0;
  }

  .archive_post .categories ul li {
    float: left;
    margin-left: 10.667vw;
    font-size: 3.2vw;
  }

  .archive_post .news_list {
    margin-bottom: 4.5vw;
  }

  .archive_post h3 {
    clear: both;
    font-size: 5.067vw;
    line-height: 9.333vw;
    margin-bottom: 11.733vw;
    padding-left: 0;
    width: 100%;
  }

  .archive_post h4 {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 9.6vw;
  }

  .archive_post p {
    font-size: 3.733vw;
    line-height: 8vw;
    margin-bottom: 9.6vw;
  }

  .archive_post p img {
    width: 100%;
    height: auto;
  }

  .archive_post p .caption {
    font-size: 3.2vw;
    line-height: 5.6vw;
    margin-top: 7.467vw;
    display: inline-block;
  }

  .archive_post p .icon_pdf {
    background: url(../img/icon_pdf.svg) no-repeat;
    background-size: 8vw;
    background-position: right;
    padding: 0 9.333vw 0 0;
    word-break: break-all;
  }

  .archive_post .column_2 {
    display: block;
  }

  .archive_post .column_2 p:first-child {
    margin-right: 0;
  }

  .archive_post .column_2 p:last-child {
    margin-left: 0;
  }

  main.lower_page .news_area .post_info {
    margin-bottom: 5.128vw;
  }

  main.lower_page .news_area .post_info div {
    display: inline-block;
  }

  main.lower_page .news_area .post_info .post_date {
    margin-right: 3.128vw;
  }

  main.lower_page .news_area .post_info .post_date p {
    font-weight: 400;
    font-size: 2.821vw;
    line-height: 170%;
    letter-spacing: 0.1em;
    color: #4b4b4b;
  }

  main.lower_page .news_area .post_info .post_category {
  }

  main.lower_page .news_area .post_info .post_category p {
    color: #4b4b4b;
    font-size: 2.821vw;
    margin-right: 10.256vw;
    width: fit-content;
    border: solid 1px #4b4b4b;
    padding: 1.238vw 2.051vw;
    line-height: 1;
  }

  main.lower_page .news_area h1 {
    font-weight: 500;
    font-size: 6.667vw;
    line-height: 1.6;
    letter-spacing: 0.15em;
    font-feature-settings:
      "palt" on,
      "pcap" on;
    padding-bottom: 6.692vw;
    border-bottom: solid 1px #111111;
    margin-bottom: 10.256vw;
  }

  main.lower_page .news_area h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 4.359vw;
    line-height: 180%;
    font-feature-settings: "palt" on;
    margin-bottom: 5.128vw;
  }

  main.lower_page .news_area h4 {
    font-weight: 700;
    font-size: 3.846vw;
    line-height: 180%;
    font-feature-settings: "palt" on;
    margin-bottom: 5.128vw;
  }

  main.lower_page .post_contents p {
    font-weight: 400;
    font-size: 3.333vw;
    line-height: 180%;
    font-feature-settings: "palt" on;
    margin-bottom: 7.692vw;
  }

  main.lower_page .post_contents p a {
    word-break: break-all;
  }

  main.lower_page .post_contents .wp-block-columns {
    justify-content: space-between;
  }

  main.lower_page .post_contents .wp-block-column {
    margin-bottom: 5.128vw;
  }

  main.lower_page .post_contents .wp-block-column:last-child {
    margin-bottom: 0;
  }

  main.lower_page .post_contents .wp-block-columns,
  main.lower_page .post_contents .wp-block-image {
    margin-bottom: 10.256vw;
  }

  main.lower_page .post_contents .wp-block-columns p:last-child,
  main.lower_page .post_contents .wp-block-columns figure {
    margin-bottom: 0;
  }

  main.lower_page .post_contents .wp-block-buttons {
    margin: 0 auto 20px;
    text-align: center;
  }

  main.lower_page .post_contents .wp-block-buttons:last-child {
    margin: 0 auto 26px;
    text-align: center;
  }

  main.lower_page .post_contents .wp-block-buttons .wp-block-button {
    text-align: center;
    width: 100%;
    height: 15.385vw;
    margin: 0 auto;
  }

  main.lower_page .post_contents .wp-block-button a,
  main.lower_page
    .post_contents
    .wp-block-button
    .wp-block-button__link:visited {
    display: block;
    padding: 0 !important;
    font-size: 3.846vw !important;
    font-weight: 700;
    line-height: 4;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 1px solid #000000;
    border-radius: 3.333vw;
    background: #fff;
    text-align: center;
    color: #111111;
    font-feature-settings:
      "palt" on,
      "pcap" on;
  }

  main .second_block {
    margin: 15.088vw auto 0;
    position: relative;
    width: 100%;
    max-width: 241.026vw;
  }

  main .second_block h1 {
    text-align: center;
    font-size: 6.41vw;
    font-weight: 700;
    line-height: 1;
  }

  main .second_block h1 span {
    font-size: 3.333vw;
    font-weight: 600;
  }

  main .second_block .news_list {
    margin-bottom: 0;
  }

  main .second_block .news_list .news_post a {
    display: block;
    background: no-repeat;
    color: #66615c;
    padding: 8vw 4vw;
  }
}

@media (min-width: 600px) and (max-width: 781px) {
  .wp-block-column:not(:only-child) {
    flex-basis: 100% !important;
    flex-grow: 0;
  }
}

/* CONTACT */

.form_steps {
  width: 460px;
  margin: 0 auto 64px;
}

.form_steps .step_bar {
  display: flex;
  max-width: 460px;
  text-align: center;
  justify-content: space-between;
}

.form_steps .step_bar li {
  list-style: none;
  position: relative;
  width: 120px;
  height: 65px;
  line-height: 1.5;
  background: #f5f5f5;
  border: 1px solid #969696;
  color: #4b4b4b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_steps .step_bar li.is_visited {
  background: #ffffff;
  border: 1px solid #000000;
  color: #111111;
}

.form_steps .step_bar li:before {
  background: #000000;
  content: "";
  width: calc(100% - 68px);
  height: 1px;
  position: absolute;
  left: calc(-100% + 67px);
  top: 30px;
}

.form_steps .step_bar li.step_02.is_visited:before,
.form_steps .step_bar li.step_03.is_visited:before {
  background: #000000;
  content: "";
  width: calc(100% - 68px);
  height: 1px;
  position: absolute;
  left: calc(-100% + 67px);
  top: 30px;
}

.form_steps .step_bar li:first-child:before {
  display: none;
}

.form_steps .step_bar li span {
  background: #d0e1f9;
  color: #ffffff;
  display: inline-block;
  height: 24px;
  margin-bottom: 5px;
  line-height: 24px;
  width: 24px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.form_steps .step_bar .visited:after {
  background: #4d648d;
}

.form_steps .step_bar .visited span {
  background: #4d648d;
}

.Form {
}

.Form .article_box p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
}

.Form .Form-Item {
  border-bottom: 1px solid #c2c3c0;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form .Form-Item:first-child {
  border-top: 1px solid #c2c3c0;
}

.Form .Form-Item .Form-Item-Label {
  width: 50%;
  max-width: 390px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  font-feature-settings: "palt" on;
  line-height: 1.5;
}

.Form .Form-Item .Form-Item-Label .en {
  font-weight: 400;
  font-size: 14px;
}

.Form .Form-Item .Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

.Form .Form-Item .Form-Item-Label-Required {
  width: 54px;
  height: 33px;
  text-align: center;
  background: #e6503d;
  color: #fff;
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Form .Form-Item .Form-Item-Checkbox-Wrap .attention {
  font-size: 15px;
  letter-spacing: -0.05px;
}

.Form .Form-Item .Form-Item-Checkbox-Wrap .attention a {
  text-decoration: underline;
}

.Form .Form-Item .Form-Item-Input {
  margin-left: 0;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  font-size: 15px;
  border: 1px solid #969696;
  border-radius: 13px;
}

.Form .Form-Item .Form-Item-Input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}

.Form .Form-Item .Form-Item-Input::-webkit-input-placeholder,
.Form .Form-Item .Form-Item-Textarea::-webkit-input-placeholder {
  color: #c2c3c0;
}

.Form .Form-Item .Form-Item-Input:-ms-input-placeholder,
.Form .Form-Item .Form-Item-Textarea:-ms-input-placeholder {
  color: #c2c3c0;
}

.Form .Form-Item .Form-Item-Input::-moz-placeholder,
.Form .Form-Item .Form-Item-Textarea::-moz-placeholder {
  color: #c2c3c0;
}

.Form .Form-Item .Form-Item-Textarea {
  border: 1px solid #c2c3c0;
  border-radius: 6px;
  margin-left: 0;
  padding-left: 1em;
  padding-right: 1em;
  height: 160px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  font-size: 15px;
}

.Form .Form-Item .Form-Item-Serect-Wrap {
  margin-left: 30px;
  height: 40px;
  width: auto;
  max-width: 480px;
  z-index: 0;
  position: relative;
}

.Form .Form-Item .Form-Item-Serect-Wrap .error {
  margin: 0;
  width: 240px;
}

.Form .Form-Item .Form-Item-Serect-Wrap:before {
  margin-top: -0.2em;
  border-width: 0.45em 0.3em;
  border-color: transparent transparent #4b4b4b;
  z-index: -1;
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-bottom: solid 1px;
  border-left: solid 1px;
  transform: rotate(-45deg);
  position: absolute;
  top: 14px;
  right: 14px;
}

.Form .mw_wp_form_confirm .Form-Item .Form-Item-Serect-Wrap:before {
  display: none;
}

.Form .Form-Item .Form-Item-Serect {
  padding-left: 1em;
  padding-right: 3em;
  height: 40px;
  width: auto;
  max-width: 480px;
  font-size: 16px;
  border: 1px solid #969696;
  border-radius: 13px;
  line-height: 1;
  color: #4b4b4b;
}

.Form .Form-Item .Form-Item-Radio-Wrap,
.Form .Form-Item .Form-Item-Checkbox-Wrap {
  margin-left: 30px;
  height: 40px;
  width: 50%;
  max-width: 480px;
  z-index: 0;
  position: relative;
}

.Form .Form-Item .Form-Item-Radio-Wrap .mwform-radio-field {
  margin-right: 14px;
}

.Form .Form-Item .Form-Item-Checkbox-Wrap.contract {
  height: auto;
}

.Form .Form-Item .Form-Item-Checkbox-Wrap.contract .error {
  top: 75px;
}

.Form .Form-Item .Form-Item-Checkbox-Wrap.contract p:nth-child(2) {
  margin-left: 0;
}

@media only screen and (max-width: 768px) {
  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract {
    height: 25vw;
    display: block;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract .error {
    top: 24vw;
  }
}

input[type="radio"] {
  display: none;
}

.Form .Form-Item .mwform-radio-field .mwform-radio-field-text {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0px 0 0 30px;
  margin-left: 10px;
  position: relative;
  width: auto;
}

.mwform-radio-field .mwform-radio-field-text::before {
  background: #fff;
  border: 1px solid #c2c3c0;
  border-radius: 50%;
  content: "";
  display: block;
  height: 28px;
  left: -11px;
  margin-top: -8px;
  position: absolute;
  top: 33%;
  width: 28px;
}

.mwform-radio-field .mwform-radio-field-text::after {
  background: #66615c;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: -1px;
  margin-top: -3px;
  opacity: 0;
  position: absolute;
  top: 46%;
  width: 8px;
}

input[type="radio"]:checked + .mwform-radio-field-text::before {
  background: #eeeeee;
}

input[type="radio"]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

.mwform-checkbox-field .mwform-checkbox-field-text {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 0 5px;
  margin-left: 32px;
  margin-right: 10px;
  position: relative;
  width: auto;
}

.mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: #fff;
  border: 1px solid #c2c3c0;
  content: "";
  display: block;
  height: 24px;
  right: 79px;
  left: -33px;
  margin-top: -6px;
  position: absolute;
  top: 42%;
  width: 24px;
}

.mwform-checkbox-field .mwform-checkbox-field-text::after {
  border-right: 2px solid #66615c;
  border-bottom: 2px solid #66615c;
  content: "";
  display: block;
  height: 13px;
  right: 35px;
  opacity: 0;
  position: absolute;
  top: 37%;
  transform: rotate(45deg);
  width: 7px;
}

.Form-Item-Checkbox-Wrap.contract
  .mwform-checkbox-field
  .mwform-checkbox-field-text::after {
  right: 85px;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
  background: #eeeeee;
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.Form .Form-Item p:nth-child(2) {
  margin-left: 30px;
  flex: 1;
  width: 100%;
  max-width: 480px;
  font-size: 15px;
  word-break: break-all;
}

.Form .Form-Btn-Area {
  margin: 60px auto 0;
  width: 54.412vw;
  max-width: 740px;
  display: flex;
  justify-content: space-between;
}

.Form .Form-Btn-Area br {
  display: none;
}

.Form .Form-Btn {
  padding: 6px;
  width: 350px;
  height: 85px;
  display: block;
  background: #4b4b4b;
  border: none;
  border-radius: 13px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.Form .Form-Btn:hover {
  background: #c8c8c8;
  color: #111111;
}

.Form .Form-Btn-Back_area {
  width: 350px;
  height: 85px;
  display: block;
  background: #ffffff;
  border: 1px solid #4b4b4b;
  border-radius: 13px;
  color: #4b4b4b;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.Form .Form-Btn-Back {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.Form .Form-Btn-Back_area::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  height: calc(100% - -6px);
  width: calc(100% - -5px);
  border: solid 3px transparent;
  border-radius: 15px;
  transition: 0.7s;
  z-index: 0;
}

.Form .Form-Btn-Back_area:hover::before {
  border: solid 3px #000;
}

.Form .Form-Btn-Area .align_center {
  margin: 0 auto;
}

.mw_wp_form_complete {
  text-align: center;
}

.mw_wp_form_complete h3 {
  margin: 0 0 32px;
}

.mw_wp_form_complete .Form-Btn-Back {
  margin: 0 auto;
}

.mw_wp_form_complete .Form-Btn-Back a {
  display: block;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 48px;
}

.Form-Item-Serect-Wrap .wpcf7-not-valid-tip {
  left: 0;
}

.mw_wp_form .error {
  position: absolute;
  margin: 0;
}

@media only screen and (max-width: 1359px) {
  .Form .Form-Item {
    border-bottom: 1px solid #c2c3c0;
    padding: 2.941vw 1.471vw;
    width: 100%;
    display: flex;
    align-items: center;
  }

  .Form .Form-Btn {
    width: calc(50% - 10px);
  }

  .Form .Form-Btn-Back {
    width: calc(50% - 10px);
  }

  .mw_wp_form_complete h3 {
    margin: 0 0 2.353vw;
  }

  .wpcf7-not-valid-tip {
    position: absolute;
    left: 3.529vw;
  }
}

@media only screen and (max-width: 768px) {
  /* CONTACT */

  .form_steps {
    width: 90%;
    margin: 0 auto 10.513vw;
  }

  .form_steps .step_bar {
    display: flex;
    max-width: 128.205vw;
    text-align: center;
    justify-content: space-between;
  }

  .form_steps .step_bar li {
    list-style: none;
    position: relative;
    width: 17.333vw;
    height: 13.846vw;
    font-size: 3.333vw;
    background: #f5f5f5;
    border: solid 1px #969696;
    color: #4b4b4b;
  }

  .form_steps .step_bar li.is_visited {
    background: #fff;
    border: solid 1px #111113;
    color: #111111;
  }

  .form_steps .step_bar li:before {
    background: #000000;
    content: "";
    width: calc(100% - 7.872vw);
    height: 1px;
    position: absolute;
    left: calc(-100% + 7.872vw);
    top: 6.667vw;
  }

  .form_steps .step_bar li.step_02.is_visited:before,
  .form_steps .step_bar li.step_03.is_visited:before {
    background: #000000;
    content: "";
    width: calc(100% - 7.872vw);
    height: 1px;
    position: absolute;
    left: calc(-100% + 7.872vw);
    top: 6.667vw;
  }

  .form_steps .step_bar li:first-child:before {
    display: none;
  }

  .form_steps .step_bar li span {
    background: #d0e1f9;
    color: #ffffff;
    display: inline-block;
    height: 6.154vw;
    margin-bottom: 1.282vw;
    line-height: 6.154vw;
    width: 6.154vw;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .form_steps .step_bar .visited:after {
    background: #4d648d;
  }

  .form_steps .step_bar .visited span {
    background: #4d648d;
  }

  .Form .article_box p {
    font-size: 3.59vw !important;
    font-weight: 400;
    margin-bottom: 0px !important;
  }

  .Form {
  }

  .Form .article_box p {
    text-align: center;
  }

  .Form .Form-Item {
    border-bottom: 1px solid #c2c3c0;
    padding: 6.692vw 0;
    width: 100%;
    display: block;
  }

  .Form .Form-Item:first-child {
    border-top: 1px solid #c2c3c0;
  }

  .Form .Form-Item .Form-Item-Label {
    width: 100%;
    max-width: unset;
    font-weight: 400;
    position: relative;
    font-size: 3.59vw;
    margin-bottom: 3.267vw;
    letter-spacing: -0.026vw;
  }

  .Form .Form-Item .Form-Item-Label .en {
    font-weight: 400;
    font-size: 2.821vw;
    margin-left: 2.564vw;
  }

  .Form .Form-Item .Form-Item-Label.isMsg {
    margin-top: 0;
    margin-bottom: 4.267vw;
  }

  .Form .Form-Item .Form-Item-Label-Required {
    width: 8.974vw;
    height: 5.385vw;
    display: inline-block;
    text-align: center;
    background: #e6503d;
    color: #fff;
    font-size: 3.077vw;
    position: unset;
    margin-left: 2.564vw;
    line-height: 1.8;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap .attention {
    font-size: 3.333vw;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap .attention a {
    text-decoration: underline;
  }

  .Form .Form-Item .Form-Item-Input {
    border: 1px solid #969696;
    border-radius: 3.333vw;
    margin-left: 0;
    padding-left: 1em;
    padding-right: 1em;
    height: 10.256vw;
    flex: 1;
    width: 100%;
    max-width: unset;
    font-size: 3.59vw;
  }

  .Form .Form-Item .Form-Item-Input::-webkit-input-placeholder,
  .Form .Form-Item .Form-Item-Textarea::-webkit-input-placeholder {
    color: #c2c3c0;
  }

  .Form .Form-Item .Form-Item-Input:-ms-input-placeholder,
  .Form .Form-Item .Form-Item-Textarea:-ms-input-placeholder {
    color: #c2c3c0;
  }

  .Form .Form-Item .Form-Item-Input::-moz-placeholder,
  .Form .Form-Item .Form-Item-Textarea::-moz-placeholder {
    color: #c2c3c0;
  }

  .Form .Form-Item .Form-Item-Textarea {
    border: 1px solid #969696;
    border-radius: 3.333vw;
    margin-left: 0;
    padding-left: 1em;
    padding-right: 1em;
    height: 41.026vw;
    flex: 1;
    width: 100%;
    max-width: 123.077vw;
    font-size: 3.59vw;
  }

  .Form .Form-Item .Form-Item-Serect-Wrap {
    margin-left: 0;
    height: 10.256vw;
    width: 100%;
    max-width: unset;
    z-index: 0;
    position: relative;
  }

  .Form .Form-Item .Form-Item-Serect-Wrap .error {
    margin: 0;
    width: 61.538vw;
  }

  .Form .mw_wp_form_confirm .Form-Item .Form-Item-Serect-Wrap:before {
    display: none;
  }

  .Form .Form-Item .Form-Item-Serect {
    border: 1px solid #969696;
    border-radius: 3.333vw;
    padding-left: 1em;
    padding-right: 2em;
    height: 10.256vw;
    width: 100%;
    max-width: 123.077vw;
    font-size: 3.846vw;
  }

  .Form .Form-Item .Form-Item-Serect-Wrap:before {
    margin-top: -0.2em;
    border-width: 0.45em 0.3em;
    border-color: transparent transparent #4b4b4b;
    z-index: -1;
    content: "";
    width: 3.077vw;
    height: 3.077vw;
    display: block;
    border-bottom: solid 1px;
    border-left: solid 1px;
    transform: rotate(-45deg);
    position: absolute;
    top: 3.59vw;
    right: 3.59vw;
  }

  .Form .Form-Item .Form-Item-Radio-Wrap,
  .Form .Form-Item .Form-Item-Checkbox-Wrap {
    margin-left: 0;
    height: 10.256vw;
    width: auto;
    max-width: unset;
    z-index: 0;
    position: relative;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract {
    height: 17.949vw;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract .error {
    top: 17.949vw;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract p:nth-child(2) {
    margin-left: 0;
  }

  input[type="radio"] {
    display: none;
  }

  .Form .Form-Item .mwform-radio-field .mwform-radio-field-text {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 1.282vw 0 0 5.128vw;
    margin-left: 2.564vw;
    position: relative;
    width: auto;
  }

  .mwform-radio-field .mwform-radio-field-text::before {
    background: #fff;
    border: 1px solid #c2c3c0;
    border-radius: 50%;
    content: "";
    display: block;
    height: 7.179vw;
    left: -2.821vw;
    margin-top: -2.051vw;
    position: absolute;
    top: 33%;
    width: 7.179vw;
  }

  .mwform-radio-field .mwform-radio-field-text::after {
    background: #66615c;
    border-radius: 50%;
    content: "";
    display: block;
    height: 2.051vw;
    left: -0.256vw;
    margin-top: -0.769vw;
    opacity: 0;
    position: absolute;
    top: 46%;
    width: 2.051vw;
  }

  input[type="radio"]:checked + .mwform-radio-field-text::before {
    background: #eeeeee;
  }

  input[type="radio"]:checked + .mwform-radio-field-text::after {
    opacity: 1;
  }

  input[type="checkbox"] {
    display: none;
  }

  .mwform-checkbox-field .mwform-checkbox-field-text {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 1.282vw 0 0 1.154vw;
    position: relative;
    width: auto;
    margin-left: 8.205vw;
    margin-right: 2.564vw;
  }

  .mwform-checkbox-field .mwform-checkbox-field-text::before {
    background: #fff;
    border: 1px solid #c2c3c0;
    content: "";
    display: block;
    height: 6.154vw;
    right: 20.256vw;
    margin-top: -2.051vw;
    position: absolute;
    top: 42%;
    left: -7.762vw;
    width: 6.154vw;
  }

  .mwform-checkbox-field .mwform-checkbox-field-text::after {
    border-right: 2px solid #66615c;
    border-bottom: 2px solid #66615c;
    content: "";
    display: block;
    height: 3.333vw;
    right: 7.949vw;
    opacity: 0;
    position: absolute;
    top: 33%;
    transform: rotate(45deg);
    width: 1.795vw;
  }

  input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
    background: #eeeeee;
  }

  input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
    opacity: 1;
  }

  .Form .Form-Item p:nth-child(2) {
    margin-left: 0;
    flex: 1;
    width: 100%;
    max-width: unset;
    font-size: 3.846vw;
  }

  .Form-Item-Checkbox-Wrap.contract
    .mwform-checkbox-field
    .mwform-checkbox-field-text::after {
    right: 21.395vw;
  }

  .Form .Form-Btn-Area {
    margin: 10.121vw auto 3.923vw;
    width: 100%;
    display: flex;
    flex-flow: column;
  }

  .Form .Form-Btn-Area p:first-child {
    display: none;
  }

  .Form .Form-Btn-Back_area::before {
    content: none;
  }

  .Form .Form-Btn-Back {
    width: 100%;
  }

  .Form .Form-Btn {
    width: 100%;
    height: 15.385vw;
    display: block;
    background: #4b4b4b;
    border: 1px solid #4b4b4b;
    border-radius: 3.333vw;
    color: #fff;
    text-align: center;
    font-size: 3.59vw;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .Form .Form-Btn:hover {
    background: #c8c8c8;
    border: 1px solid #c8c8c8;
    color: #111111;
  }

  .Form .Form-Btn.Confirm {
    width: 100%;
  }

  .Form .Form-Btn:hover {
    opacity: 0.7;
  }

  .Form .Form-Btn-Back_area {
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #4b4b4b;
    border-radius: 3.333vw;
    text-align: center;
    height: 15.385vw;
    font-size: 3.59vw;
    order: 2;
    margin-top: 3.59vw;
  }

  .Form .Form-Btn-Area .align_center {
    margin: 0 auto;
  }

  .mw_wp_form_complete {
    text-align: center;
  }

  .mw_wp_form_complete h3 {
    margin: 0 0 32px;
  }

  .mw_wp_form_complete .Form-Btn-Back {
    width: 100%;
    display: block;
    background: #fff;
    border: 1px solid #4b4b4b;
    border-radius: 3.333vw;
    text-align: center;
    height: 15.385vw;
    font-size: 3.59vw;
    order: 2;
    margin-top: 3.59vw;
  }

  .mw_wp_form_complete .Form-Btn-Back a {
    display: block;
    line-height: 4.2;
  }

  .wpcf7-not-valid-tip {
    position: absolute;
    left: 48px;
  }

  .Form-Item-Serect-Wrap .wpcf7-not-valid-tip {
    left: 0;
  }

  .mw_wp_form .error {
    position: absolute;
    margin: 0;
  }
}

@media only screen and (max-width: 768px) {
  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract {
    height: auto;
    display: block;
  }

  .Form .Form-Item .Form-Item-Checkbox-Wrap.contract .error {
    position: static;
    display: block;
    margin-top: 2vw;
  }
}

/* ABOUT */

@media (max-width: 768px) {
}

@media (max-width: 768px) {
}

@media (max-width: 1359px) {
}

@media (max-width: 768px) {
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 100%;
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
  background-color: #fff !important;
  height: 10px !important;
  width: 10px !important;
  border: solid 1px #111111;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #d9d9d9 !important;
}

@media only screen and (max-width: 1359px) {
  .swiper-wrapper {
    height: auto !important;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -0.265vw !important;
    left: 0 !important;
    width: 100%;
  }
}

@media (max-width: 1359px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
  }

  /* ページネーションのサイズと色 */
  .swiper-pagination-bullet {
    background-color: #fff !important;
    height: 0.735vw !important;
    width: 0.735vw !important;
    border: solid 1px #111111;
    opacity: 1 !important;
  }

  .swiper-pagination-bullet-active {
    background-color: #d9d9d9 !important;
  }
}

@media (max-width: 768px) {
  main .block_info .column .text_area {
    margin: 0;
  }
}

/* ARCHIVE */

.archive {
  position: relative;
}

.archive .news_area {
  width: 73%;
  margin: 0px 15%;
  position: relative;
}

.archive h2 {
  font-size: 36px;
  margin-bottom: 80px;
  font-weight: 200;
}

.archive .categories {
  position: absolute;
  top: 18px;
  right: 0;
}

.archive .categories ul li {
  float: left;
  margin-left: 40px;
  font-size: 12px;
}

.archive .news_list {
  margin-bottom: 4.5vw;
}

.archive .news_list .news_post {
  border-collapse: collapse;
}

.archive .news_list .news_post {
  border-bottom: solid 1px #c2c3c0;
}

.archive .news_list .news_post:first-child {
  border-top: solid 1px #c2c3c0;
}

.archive .news_list .news_post.is-hidden {
  display: none;
}

.archive .news_list .news_post a {
  display: block;
  background: #fff;
  color: #66615c;
  padding: 50px 30px;
  position: relative;
  display: flex;
  align-items: normal;
}

.archive .news_list .news_post a:hover {
  background: #f7f7f7;
}

.archive .news_list .news_post a div {
  float: left;
}

.archive .news_list .news_post .post_category {
  color: #bdbec2;
  font-size: 12px;
  margin-right: 30px;
  letter-spacing: 1.1px;
  width: 110px;
}

.archive .news_list .news_post .post_title {
  width: calc(100% - 240px);
}

.archive .news_list .news_post .post_title p {
  font-size: 15px;
  line-height: 25px;
}

.archive .news_list .news_post .post_title p:first-line {
  line-height: 1;
}

.archive .news_list .news_post .post_date {
  font-size: 12px;
  letter-spacing: 1.1px;
  width: 82px;
  position: absolute;
  right: 30px;
}

/* POST */

.archive_post {
  position: relative;
  padding-top: 195px;
}

.archive_post .post_area {
  width: 910px;
  margin: 0 auto;
  position: relative;
}

.archive_post .post_area .post {
  clear: both;
  display: flex;
  justify-content: space-between;
}

.archive_post .post_area .post .category_date {
  width: 190px;
}

.archive_post .post_area .post .category_date li {
  color: #9fa19d;
  font-size: 11px;
  margin-bottom: 24px;
}

.archive_post .post_area .post .detail {
  width: 720px;
}

.archive_post h2 {
  font-size: 36px;
  padding-bottom: 30px;
  margin-bottom: 80px;
  border-bottom: solid 1px #c2c3c0;
}

.archive_post .categories {
  position: absolute;
  top: 18px;
  right: 0;
}

.archive_post .categories ul li {
  float: left;
  margin-left: 40px;
  font-size: 12px;
}

.archive_post .news_list {
  margin-bottom: 4.5vw;
}

.archive_post h3 {
  font-size: 25px;
  line-height: 45px;
  margin-bottom: 55px;
  width: 720px;
  float: right;
}

.archive_post h4 {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 3vw;
}

.archive_post p {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 4vw;
}

.archive_post p img {
  width: 100%;
  height: auto;
}

.wp-block-image {
  margin-bottom: 5vw;
}

.wp-block-image figcaption {
  font-size: 12px;
  line-height: 25px;
  margin-top: 1.5vw;
  display: inline-block;
  margin-bottom: 0;
}

.wp-block-file {
  margin-bottom: 5vw;
}

.wp-block-file a {
  background: url(../img/icon_pdf.svg) no-repeat;
  background-size: 30px;
  background-position: right;
  padding: 0 35px 0 0;
  font-size: 14px;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.archive_post .column_2 {
  display: flex;
  justify-content: space-between;
}

.archive_post .column_2 p:first-child {
  margin-right: 1.5vw;
}

.archive_post .column_2 p:last-child {
  margin-left: 1.5vw;
}

.Content-table {
  width: 100%;
  margin: 3rem 0;
  table-layout: fixed;
}

.Content-table__description,
.Content-table__head {
  padding: 1rem;
  border: 1px solid #ddd;
  display: block;
  vertical-align: middle;
}

.Content-table__head {
  font-weight: 500;
}

@media (min-width: 768px) {
  .Content-table__description,
  .Content-table__head {
    display: table-cell;
  }
}

.Content-table__head {
  background: #f6f6f6;
}

@media (min-width: 768px) {
  .Content-table__head {
    width: 34%;
  }

  .Content-table__head--auto {
    width: auto;
  }
}

.Content-table__description {
  min-height: 4rem;
  vertical-align: middle;
}

.Content-table__description:last-child {
  margin-bottom: 2rem;
}

.Content-table__description--row {
  margin-bottom: 0;
  border-bottom: none;
}

@media (min-width: 768px) {
  .Content-table__description {
    margin-bottom: 0;
  }
}

.Content-table--onecol thead {
  display: none;
}

@media (min-width: 768px) {
  .Content-table--onecol thead {
    display: table-header-group;
  }
}

.Content-table--onecol tbody tr {
  margin-bottom: 2rem;
  display: block;
}

.Content-table--onecol tbody tr:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .Content-table--onecol tbody tr {
    display: table-row;
  }
}

.Content-table--onecol .Content-table__description {
  display: block;
  text-align: left;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .Content-table--onecol .Content-table__description:first-child {
    border-bottom: none;
  }

  .Content-table--onecol .Content-table__description:nth-child(3) {
    border-top: none;
  }
}

.Content-table--onecol .Content-table__description:before {
  padding-right: 2rem;
  font-weight: 700;
  color: #8a8a8a;
  font-size: 12px;
  font-size: 1.2rem;
  content: attr(aria-label);
  float: left;
  font-weight: 500;
  font-size: 3.733vw;
}

@media (min-width: 768px) {
  .Content-table--onecol .Content-table__description:before {
    float: none;
    content: none;
  }
}

@media (min-width: 768px) {
  .Content-table--onecol .Content-table__description {
    display: table-cell;
    text-align: left;
  }
}

/* EVENT */

.event .column div {
  margin-bottom: 60px;
}

.event .column div:nth-last-child(-n/**/+3) {
  margin-bottom: 0;
}

.event .column div a .image {
  width: 100%;
  margin-bottom: 2.206vw;
  overflow: hidden;
  border-radius: 20px;
}

.event .column div a .image img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.event .column div a:hover .image img {
  transform: scale(1.1, 1.1);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.event .column div dl dt {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.event .column div dl dd {
  letter-spacing: -0.1px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .event .column div a .image {
    width: 100%;
    height: 47.436vw;
    margin-bottom: 5.128vw !important;
    border-radius: 5.128vw;
    overflow: hidden;
    display: grid;
    align-content: center;
  }

  .event .column div dl dt {
    margin-bottom: 2.051vw;
    font-size: 3.846vw;
    font-weight: 700;
    line-height: 1.4;
  }

  .event .column div dl dd {
    font-size: 3.333vw;
    font-weight: 400;
  }
}

/* event */

.event .block_info .column::after,
.event .block_info .column::before {
  content: "";
  display: block;
  width: 29.65%;
  height: 0;
}

.event .block_info .column::before {
  order: 1;
}

.event .block_info .column div {
  margin-bottom: 60px;
}

.event .block_info .column div dl dt {
  width: 100%;
  height: auto;
  max-width: 284px;
  max-height: 284px;
  margin-right: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.event .block_info .column div dl dt img {
  max-width: 100%;
  height: auto;
  margin: 0;
}

#map-canvas {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 39.531vw;
  max-height: 580px;
}

.map_thumb {
  width: 260px;
  height: auto;
  margin-bottom: 10px;
}

.map_text {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  main.event {
    padding-top: 7.4vw;
  }

  .event .block_info .column div dl dt {
    width: 100%;
    height: auto;
    max-width: unset;
    max-height: unset;
    margin-right: 0;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .event .block_info .column div dl dt img {
    margin: 0;
  }

  #map-canvas {
    margin: 0 calc(50% - 50vw);
    margin-bottom: 32px;
    width: 100vw;
    height: 400px;
  }
}

/* ========================================
   FACILITIES COMPONENT
======================================== */

.facilities .column {
  margin-bottom: 2.928vw;
  row-gap: 80px;
}

.facilities .column:last-child {
  margin-bottom: 0;
}

.facilities .column > div {
  margin-bottom: 0;
}

.facilities .column .image {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 30px;
  overflow: hidden;
}

.facilities .column a .image img {
  transition: 0.3s ease-in-out;
}

.facilities .column a:hover .image img {
  transform: scale(1.1);
}

.facilities .facility_info span {
  display: block;
  font-feature-settings: "palt";
}

.facilities .facility_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.facilities .facility_title_sub {
  margin-top: 4px;
}

.facilities .facility_note {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.facilities .facility_text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.facilities .facility_address {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.facilities .border_circle {
  background: #1a1311;
  border-radius: 21px;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.facilities .column dl dd .column {
  width: 100%;
  justify-content: flex-start;
}

.facilities .column dl dd .column p:first-child {
  margin-right: 10px;
}

.facilities .column dl dd .type {
  font-size: 12px;
  font-weight: 500;
  color: #231815;
  border: solid 2px #231815;
  width: fit-content;
  padding: 0 10px;
  transition: 0.3s ease-in-out;
}

.facilities a:hover dl dd .type {
  color: #9fa19d;
  border-color: #5e5958;
}

@media only screen and (max-width: 768px) {
  main .block_info.facilities .facility_list > div {
    margin-bottom: 0;
  }

  .facilities .column .image {
    width: 100%;
    height: 45.128vw;
    margin-bottom: 5.128vw;
    border-radius: 5.128vw;
    overflow: hidden;
    display: grid;
    align-content: center;
  }

  .facilities .facility_title {
    font-size: 3.846vw; /* 15px / 390 */
    line-height: 1.55;
  }

  .facilities .facility_title_sub {
    margin-top: 1.026vw; /* 4px / 390 */
  }

  .facilities .facility_note {
    font-size: 3.333vw; /* 13px / 390 */
    line-height: 1.5;
  }

  .facilities .facility_text {
    margin-top: 4.103vw; /* 16px / 390 */
    font-size: 3.846vw; /* 15px / 390 */
    line-height: 1.9;
  }

  .facilities .facility_address {
    margin-top: 4.615vw; /* 18px / 390 */
    font-size: 3.333vw; /* 13px / 390 */
    line-height: 1.6;
  }
}

/* ========================================
   LANGUAGE SWITCH
======================================== */

.language_switch {
  position: relative;
  flex: 0 0 auto;
  font-family: "Sora", "Noto Sans JP", sans-serif;
  line-height: 1;
}

.language_switch_button {
  display: flex;
  align-items: center;
  width: 102px;
  height: 32px;
  padding: 8px 8px 8px 6px;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  background: #f5f5f5;
  color: #111;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.language_switch_label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" on;
  white-space: nowrap;
}

.language_switch_arrow {
  flex: 0 0 9px;
  width: 9px;
  height: 6px;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.2s ease;
}

.language_switch.is-open .language_switch_arrow {
  transform: rotate(180deg);
}

.language_switch_menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 18px rgb(0 0 0 / 12%);
  list-style: none;
}

.language_switch_menu[hidden] {
  display: none;
}

.language_switch_menu li {
  margin: 0;
  padding: 0;
}

.language_switch_menu button {
  display: block;
  width: 100%;
  padding: 8px 7px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: left;
}

.language_switch_menu button:hover,
.language_switch_menu button:focus-visible,
.language_switch_menu [aria-selected="true"] button {
  background: #f5f5f5;
}

.language_switch--pc {
  margin-left: 24px;
  margin-right: 22px;
}

@media only screen and (max-width: 1359px) and (min-width: 769px) {
  .language_switch_button {
    width: 7.5vw;
    height: 2.353vw;
    min-width: 82px;
    min-height: 28px;
    padding: 0.588vw;
    gap: 0.588vw;
  }

  .language_switch_label {
    font-size: clamp(10px, 0.956vw, 13px);
  }

  .language_switch_arrow {
    flex-basis: clamp(7px, 0.662vw, 9px);
    width: clamp(7px, 0.662vw, 9px);
    height: clamp(5px, 0.441vw, 6px);
  }

  .language_switch_menu button {
    font-size: clamp(10px, 0.956vw, 13px);
  }

  .language_switch--pc {
    margin-left: 1.765vw;
    margin-right: 1.618vw;
  }
}

.language_switch--sp {
  display: none;
}

@media only screen and (max-width: 768px) {
  .language_switch--pc {
    display: none !important;
  }

  .sp_menu_bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11.282vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8.205vw;
  }

  .sp_menu .language_switch--sp {
    position: relative;
    width: clamp(184px, 47.179vw, 220px);
    margin: 0;
    display: block;
  }

  .sp_menu .sns {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
  }

  .sp_menu .language_switch--sp .language_switch_button {
    width: 100%;
    height: clamp(36px, 9.231vw, 42px);
    min-height: 0;
    padding: clamp(8px, 2.051vw, 10px) clamp(9px, 2.308vw, 11px);
    gap: clamp(8px, 2.051vw, 10px);
  }

  .sp_menu .language_switch--sp .language_switch_label {
    font-size: clamp(13px, 3.333vw, 15px);
  }

  .sp_menu .language_switch--sp .language_switch_arrow {
    flex-basis: clamp(9px, 2.308vw, 10px);
    width: clamp(9px, 2.308vw, 10px);
    height: clamp(6px, 1.538vw, 7px);
  }

  .sp_menu .language_switch--sp .language_switch_menu {
    top: auto;
    bottom: calc(100% + 1.538vw);
  }

  .sp_menu .language_switch--sp .language_switch_menu button {
    padding: clamp(8px, 2.051vw, 10px) clamp(7px, 1.795vw, 9px);
    font-size: clamp(13px, 3.333vw, 15px);
  }
}

/* ========================================
   HEADER - PC / FIGMA RESPONSIVE REBUILD

   Figma基準：1360px × 100px
   ・1360px以上：1360pxの見た目を維持して中央配置
   ・769～1359px：1360px基準の比率をvwへ変換して等比縮小
   ・ロゴ / ナビ / 言語切替 / SNSの位置関係を変えない
   ・768px以下：既存SPヘッダーを維持
======================================== */

/* ----------------------------------------
   PC共通
---------------------------------------- */
@media only screen and (min-width: 769px) {
  /* PC表示時はSP用ヘッダーを確実に非表示 */
  header .header_contents.to_sp,
  header > .header_contents.to_sp {
    display: none !important;
  }

  header .pc_header {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    display: grid !important;
    align-items: center;
    transform: translateX(-50%);
    background: #fff;
  }

  header .pc_header_logo,
  header .pc_header_nav,
  header .pc_header_actions {
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
  }

  header .pc_header_logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid #111;
  }

  header .pc_header_logo h1 {
    height: auto;
    margin: 0;
    line-height: 1;
  }

  header .pc_header_logo h1 a,
  header .pc_header_logo h1 img {
    display: block;
    width: 100%;
    height: auto;
  }

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

  header .pc_header_nav ul {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0 auto;
    padding: 0;
  }

  header .pc_header_nav li {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
  }

  header .pc_header_nav a {
    display: block;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-feature-settings: "palt" on;
    white-space: nowrap;
  }

  header .pc_header_nav .hover_anm {
    display: inline-block;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
    transform: translateY(0);
    font-weight: 600;
  }

  header .pc_header_nav a:hover .hover_anm {
    animation: hover_anm 0.7s ease 0s 1 alternate backwards;
  }

  header .pc_header_actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  header .pc_header_actions::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #111;
  }

  header .pc_header_language {
    position: relative;
    margin: 0;
    padding: 0;
  }

  header .pc_header_language::before {
    content: none;
  }

  header .pc_header_language .language_switch_button,
  header .pc_header_language .language_switch_menu {
    box-sizing: border-box;
  }

  header .pc_header_language .language_switch_button {
    min-height: 0;
  }

  header .pc_header_language .language_switch_label {
    flex: 1 1 auto;
    min-width: 0;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  header .pc_header_language .language_switch_menu {
    top: calc(100% + 4px);
    left: 0;
    right: auto;
    margin: 0;
    transform: none;
  }

  header .pc_header_language .language_switch_menu button {
    width: 100%;
    white-space: nowrap;
  }

  header .pc_header_sns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }

  header .pc_header_sns_item {
    flex: 0 0 auto;
    display: block;
    line-height: 1;
  }

  header .pc_header_sns_item img,
  header .pc_header_sns_item svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* ----------------------------------------
   1360px以上
   Figmaの1360pxレイアウトを固定して中央配置
---------------------------------------- */
@media only screen and (min-width: 1360px) {
  header {
    height: 100px;
  }

  header .pc_header {
    width: 1360px;
    grid-template-columns: 350px 663px 347px;
  }

  header .pc_header_logo {
    width: 350px;
    height: 76px;
    padding: 0 32px 0 29px;
  }

  header .pc_header_logo h1 {
    width: 289px;
  }

  header .pc_header_nav {
    width: 663px;
    height: 31px;
    padding: 0 40px;
  }

  header .pc_header_nav ul {
    width: 583px;
    height: 31px;
  }

  header .pc_header_nav a {
    font-size: 14px;
    line-height: 31px;
  }

  header .pc_header_actions {
    width: 347px;
    height: 76px;
    gap: 28px;
    padding: 0 29px 0 40px;
  }

  header .pc_header_language {
    flex: 0 0 102px;
    width: 102px;
    height: 32px;
  }

  header .pc_header_language .language_switch_button,
  header .pc_header_language .language_switch_menu {
    width: 102px;
    min-width: 102px;
    max-width: 102px;
  }

  header .pc_header_language .language_switch_button {
    height: 32px;
    padding: 8px 8px 8px 6px;
    gap: 8px;
  }

  header .pc_header_language .language_switch_label,
  header .pc_header_language .language_switch_menu button {
    font-size: 13px;
  }

  header .pc_header_language .language_switch_arrow {
    flex: 0 0 9px;
    width: 9px;
    height: 6px;
  }

  header .pc_header_sns {
    flex: 0 0 132px;
    width: 132px;
    height: 22px;
  }

  header .pc_header_sns_item {
    width: 22px;
    height: 22px;
  }

  header .pc_header_sns_item--youtube {
    height: 16px;
  }
}

/* ----------------------------------------
   769～1359px
   1360px時の全寸法をvwへ変換して等比縮小
---------------------------------------- */
@media only screen and (min-width: 769px) and (max-width: 1359px) {
  header {
    height: 7.353vw;
  }

  header .pc_header {
    width: 100vw;
    grid-template-columns: 25.735vw 48.75vw 25.515vw;
  }

  header .pc_header_logo {
    width: 25.735vw;
    height: 5.588vw;
    padding: 0 2.353vw 0 2.132vw;
  }

  header .pc_header_logo h1 {
    width: 21.25vw;
  }

  header .pc_header_nav {
    width: 48.75vw;
    height: 2.279vw;
    padding: 0 2.941vw;
  }

  header .pc_header_nav ul {
    width: 42.868vw;
    height: 2.279vw;
  }

  header .pc_header_nav a {
    font-size: 1.029vw;
    line-height: 2.279vw;
  }

  header .pc_header_actions {
    width: 25.515vw;
    height: 5.588vw;
    gap: 2.059vw;
    padding: 0 2.132vw 0 2.941vw;
  }

  header .pc_header_language {
    flex: 0 0 7.5vw;
    width: 7.5vw;
    height: 2.353vw;
  }

  header .pc_header_language .language_switch_button,
  header .pc_header_language .language_switch_menu {
    width: 7.5vw;
    min-width: 7.5vw;
    max-width: 7.5vw;
  }

  header .pc_header_language .language_switch_button {
    height: 2.353vw;
    padding: 0.588vw 0.588vw 0.588vw 0.441vw;
    gap: 0.588vw;
    border-radius: 0.294vw;
  }

  header .pc_header_language .language_switch_label,
  header .pc_header_language .language_switch_menu button {
    font-size: 0.956vw;
  }

  header .pc_header_language .language_switch_arrow {
    flex: 0 0 0.662vw;
    width: 0.662vw;
    height: 0.441vw;
  }

  header .pc_header_language .language_switch_menu {
    top: calc(100% + 0.294vw);
    padding: 0.294vw;
    border-radius: 0.294vw;
  }

  header .pc_header_language .language_switch_menu button {
    padding: 0.588vw 0.515vw;
  }

  header .pc_header_sns {
    flex: 0 0 9.706vw;
    width: 9.706vw;
    height: 1.618vw;
  }

  header .pc_header_sns_item {
    width: 1.618vw;
    height: 1.618vw;
  }

  header .pc_header_sns_item--youtube {
    height: 1.176vw;
  }
}

/* SPではPC専用DOMのみ非表示 */
@media only screen and (max-width: 768px) {
  header .pc_header {
    display: none !important;
  }
}

/* ========================================
   SP HEADER - PRODUCTION LAYOUT RESTORE

   PCヘッダー再構築時の共通指定による影響を遮断し、
   768px以下では従来のSP配置へ戻す。
======================================== */
@media only screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 105px;
    top: 0;
    left: 0;
    display: block;
    background: transparent;
    border-bottom: 0;
  }

  header .pc_header {
    display: none !important;
  }

  header > .header_contents.to_sp {
    position: relative !important;
    top: 0;
    left: 0;
    width: calc(100% - 36px);
    height: 105px;
    margin: 0 auto;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
  }

  header > .header_contents.to_sp > .header_logo {
    position: relative;
    flex: 0 0 auto;
    width: 55.385vw;
    max-width: 216px;
    height: auto;
    margin: 0;
    padding: 0;
    border-right: 0;
    display: block;
  }

  header > .header_contents.to_sp > .header_logo h1 {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    line-height: 1;
  }

  header > .header_contents.to_sp > .header_logo h1 a,
  header > .header_contents.to_sp > .header_logo h1 img {
    display: block;
    width: 100%;
    height: auto;
  }

  header > .header_contents.to_sp > .menu_button {
    position: absolute !important;
    top: 20px;
    right: 0;
    left: auto;
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    margin: 0;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    z-index: 2;
  }

  header > .header_contents.to_sp > .menu_button .menu_button_bg {
    position: absolute;
    inset: 0;
    width: 65px;
    height: 65px;
    display: block !important;
    background: #fefefe;
    border: 1px solid #000;
    border-radius: 50%;
  }

  header > .header_contents.to_sp > .menu_button .menu_border {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 2px;
    margin-left: -14px;
    border-top: 2px solid #111;
    transition: transform 0.2s ease;
    z-index: 1;
  }

  header > .header_contents.to_sp > .menu_button .menu_border:nth-of-type(1) {
    transform: translateY(-4px);
  }

  header > .header_contents.to_sp > .menu_button .menu_border:nth-of-type(2) {
    transform: translateY(4px);
  }

  header
    > .header_contents.to_sp
    > .menu_button.active
    .menu_border:nth-of-type(1) {
    transform: rotate(23deg);
  }

  header
    > .header_contents.to_sp
    > .menu_button.active
    .menu_border:nth-of-type(2) {
    transform: rotate(23deg);
    top: 50%;
  }
}

/* ==========================================================
   PC HEADER：1360px以上を全幅表示
   ・現本番同様、画面幅いっぱいに展開
   ・ロゴ／言語・SNS／文字サイズ／高さは1360px基準を維持
   ・余った横幅のみナビの余白へ配分
   ・区切り線〜最初／最後の項目の余白を、
     ナビ項目同士の余白より常に広く保つ
========================================================== */

@media only screen and (min-width: 1360px) {
  header {
    height: 100px;
  }

  header .pc_header {
    width: 100%;
    grid-template-columns:
      350px
      minmax(663px, 1fr)
      347px;
  }

  /* ------------------------------
     ロゴ領域
  ------------------------------ */
  header .pc_header_logo {
    width: 350px;
    height: 76px;
    padding: 0 32px 0 29px;
  }

  header .pc_header_logo h1 {
    width: 289px;
  }

  /* ------------------------------
     ナビ領域

     1360px時点
     ・項目間：28px
     ・区切り線〜端項目：およそ45px

     画面幅が広がっても、
     外側余白 > 項目間余白
     の関係を維持する
  ------------------------------ */
  header .pc_header_nav {
    width: 100%;
    height: 31px;
    padding: 0;
  }

  header .pc_header_nav ul {
    width: 100%;
    max-width: none;
    height: 31px;
    margin: 0;
    padding: 0;

    display: grid;
    grid-template-columns:
      1.6fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1.6fr;
    align-items: center;
  }

  header .pc_header_nav li {
    min-width: 0;
    white-space: nowrap;
  }

  header .pc_header_nav li:nth-child(1) {
    grid-column: 2;
  }

  header .pc_header_nav li:nth-child(2) {
    grid-column: 4;
  }

  header .pc_header_nav li:nth-child(3) {
    grid-column: 6;
  }

  header .pc_header_nav li:nth-child(4) {
    grid-column: 8;
  }

  header .pc_header_nav li:nth-child(5) {
    grid-column: 10;
  }

  header .pc_header_nav a {
    display: block;
    padding: 0;
    font-size: 14px;
    line-height: 31px;
    white-space: nowrap;
  }

  header .pc_header_nav a span,
  header .pc_header_nav a .hover_anm {
    display: inline-block;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
  }

  /* ------------------------------
     言語切替＋SNS領域
  ------------------------------ */
  header .pc_header_actions {
    width: 347px;
    height: 76px;
    gap: 28px;
    padding: 0 29px 0 40px;
  }

  header .pc_header_language {
    flex: 0 0 102px;
    width: 102px;
    height: 32px;
  }

  header .pc_header_language .language_switch_button,
  header .pc_header_language .language_switch_menu {
    width: 102px;
    min-width: 102px;
    max-width: 102px;
  }

  header .pc_header_sns {
    flex: 0 0 132px;
    width: 132px;
    height: 22px;
  }
}

/* English contact form: keep Required labels legible */
body.lang-en .Form .Form-Item .Form-Item-Label-Required {
  width: auto;
  min-width: 92px;
  padding: 0 10px;
  box-sizing: border-box;
  white-space: nowrap;
}

/* English ABOUT: balance Social Action copy */
@media only screen and (min-width: 769px) {
  body.lang-en .about_social_header h3 {
    max-width: 720px;
    margin-inline: auto;
    text-wrap: balance;
  }

  body.lang-en .about_social_header > p:nth-of-type(2) {
    letter-spacing: 0.055em;
  }
}

/* English ABOUT SP: avoid justified word spacing */
@media only screen and (max-width: 768px) {
  body.lang-en .contents_area.about p:not(.border),
  body.lang-en .contents_area.about li,
  body.lang-en .contents_area.about li span,
  body.lang-en .contents_area.about .about_goal_detail,
  body.lang-en .contents_area.about .about_goal_heading {
    text-align: left;
    text-align-last: auto;
    word-spacing: normal;
  }
}

/* English ABOUT SP: prevent group banner overlap */
@media only screen and (max-width: 768px) {
  body.lang-en .about .about_group .title_area {
    height: 56vw;
  }

  body.lang-en .about .about_group .title_area .inner {
    height: 52vw;
  }

  body.lang-en .about .about_group .title_area h2 {
    margin-top: 0;
    font-size: 5.128vw;
    line-height: 1.4;
  }

  body.lang-en .about .about_group .illust01 {
    bottom: 3vw !important;
  }
}

/* English TOP SP: prevent hero copy highlight overlap */
@media only screen and (max-width: 768px) {
  body.lang-en .index .index_mv .description h1 span {
    padding: 0 0.18em 0.12em;
    line-height: 1.85;
    background: linear-gradient(transparent 60%, #f5f5f5 60%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}

/* English TOP SP: set vertical section titles horizontally */
@media only screen and (max-width: 768px) {
  body.lang-en .index .index_about_project .about_project_intro h1 {
    width: 100%;
    height: auto;
    margin: 0 0 32px;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-align: center;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  body.lang-en .index .index_about_group .inner .title_area h1 {
    width: 100%;
    height: auto;
    margin: 70px 0 40px;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-align: center;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }
}

/* English: use uppercase for every footer menu label */
body.lang-en footer .menu .links a {
  text-transform: uppercase;
}

/* English TOP SP: remove excessive spacing caused by justified copy */
@media only screen and (max-width: 768px) {
  body.lang-en .index .about_project_intro_text .text p,
  body.lang-en .index .index_about_group .inner .text_area,
  body.lang-en .index .index_about_group .inner .text_area p {
    text-align: left;
    text-align-last: auto;
    word-spacing: normal;
  }
}

/* English ABOUT SP: center the group vision heading with an intentional line break */
@media only screen and (max-width: 768px) {
  body.lang-en .about .about_group_title h2 {
    width: 100%;
    font-size: 0;
    line-height: 0;
    text-align: center;
  }

  body.lang-en .about .about_group_title h2::before {
    content: "VISION FOR\A “NEW GLOBAL CHILDCARE”";
    display: inline-block;
    white-space: pre;
    font-size: clamp(16px, 5.128vw, 20px);
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
}

/* SP hamburger menu: optically center the wider YouTube icon */
@media only screen and (max-width: 768px) {
  .sp_menu .sns li.youtube {
    transform: translateY(3px) !important;
  }
}

/* English ABOUT SP: ensure the intentional two-line heading replaces the original rendering */
@media only screen and (max-width: 768px) {
  body.lang-en .about .about_group_title h2 {
    font-size: 0 !important;
    line-height: 0 !important;
    text-align: center !important;
  }
}

/* English ABOUT PC: keep the group vision heading clear of the side illustrations */
@media only screen and (min-width: 769px) {
  body.lang-en .about .about_group_title h2 {
    position: relative;
    z-index: 1;
    width: min(44%, 520px);
    font-size: 0;
    line-height: 0;
    text-align: center;
  }

  body.lang-en .about .about_group_title h2::before {
    content: "VISION FOR\A“NEW GLOBAL CHILDCARE”";
    display: inline-block;
    white-space: pre;
    font-size: clamp(16px, 2vw, 28px);
    line-height: 1.35;
    letter-spacing: 0.08em;
  }
}

/* English ABOUT SP: match the Japanese diagram edge treatment */
@media only screen and (max-width: 768px) {
  html:has(link[rel="canonical"][href*="/en/"]) .about .about_intro_card {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  html:has(link[rel="canonical"][href*="/en/"])
    .about
    .about_intro_card::after {
    content: none !important;
  }

  html:has(link[rel="canonical"][href*="/en/"]) .about .about_map_block {
    position: static;
    z-index: auto;
  }

  html:has(link[rel="canonical"][href*="/en/"])
    .about
    .about_map_block
    .map_area,
  html:has(link[rel="canonical"][href*="/en/"])
    .about
    .about_map_block
    .img_map,
  html:has(link[rel="canonical"][href*="/en/"])
    .about
    .about_map_block
    .img_map
    img.to_sp {
    background-color: #f5f5f5 !important;
  }
}

/* English ABOUT SP: clip the diagram background to the Japanese card outline */
@media only screen and (max-width: 768px) {
  html:has(link[rel="canonical"][href*="/en/"]) .about .about_intro_card {
    overflow: hidden;
  }
}

/* CLIENT FEEDBACK 2026-09-01 */
/*
 * Client feedback received 2026-09-01.
 * English-only fixes for the HIROGARI test site.
 */

/* TOP: move ABOUT to the leading (rightmost) column of both vertical headings. */
@media only screen and (min-width: 769px) {
  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_project
    .about_project_intro
    h1,
  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_group
    .inner
    .title_area
    h1 {
    writing-mode: vertical-lr !important;
    -webkit-writing-mode: vertical-lr !important;
  }
}

/* TOP SP: keep the headings horizontal and put ABOUT first. */
@media only screen and (max-width: 768px) {
  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_project
    .about_project_intro
    h1,
  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_group
    .inner
    .title_area
    h1 {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_project
    .about_project_intro
    h1::before,
  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_group
    .inner
    .title_area
    h1::before {
    display: block;
    color: #111;
    white-space: pre-line;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    text-align: center;
    line-height: 1.45;
  }

  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_project
    .about_project_intro
    h1::before {
    content: "ABOUT\A THE HIROGARI CHILDCARE PROJECT";
    font-size: 18px;
    letter-spacing: 0.045em;
  }

  html:has(link[rel="canonical"][href*="/en/"])
    .index
    .index_about_group
    .inner
    .title_area
    h1::before {
    content: "ABOUT\A SEIWA GYOGAKU GROUP";
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

/* TOP: do not stretch English words to both edges of the copy box. */
html:has(link[rel="canonical"][href*="/en/"])
  .index
  .index_about_group
  .inner
  .text_area,
html:has(link[rel="canonical"][href*="/en/"])
  .index
  .index_about_group
  .inner
  .text_area
  p {
  text-align: left !important;
  text-align-last: auto !important;
  word-spacing: normal !important;
}

/* ABOUT: turn off justified spacing for English body copy on PC and SP. */
html:has(link[rel="canonical"][href*="/en/"])
  .contents_area.about
  p:not(.border),
html:has(link[rel="canonical"][href*="/en/"]) .contents_area.about li,
html:has(link[rel="canonical"][href*="/en/"]) .contents_area.about li span,
html:has(link[rel="canonical"][href*="/en/"])
  .contents_area.about
  .about_goal_detail,
html:has(link[rel="canonical"][href*="/en/"])
  .contents_area.about
  .about_goal_heading {
  text-align: left !important;
  text-align-last: auto !important;
  word-spacing: normal !important;
}

/* Preserve the intentional centered Social Action introduction. */
html:has(link[rel="canonical"][href*="/en/"]) .about .about_social_header > p {
  text-align: center !important;
}

/*
 * Language-specific TOP diagram images are switched by body.lang-ja / body.lang-en
 * and .image-ja / .image-en in the TOP stylesheet/template.
 * Do not override TOP .about_project_diagram images with content:url() here.
 */

/* ========================================
   ENGLISH GLOBAL CHROME
   Header / Footer / SP menu
   Figma layout adjustment
======================================== */

/* English brand titles are markup-only helpers; hidden on Japanese pages. */
.pc_header_brand_title_en,
.sp_header_brand_title_en,
.sp_menu_brand_title_en,
.footer_brand_title_en {
  display: none;
}

/* ------------------------------
   PC HEADER
------------------------------ */

@media only screen and (min-width: 1360px) {
  body.lang-en header .pc_header {
    grid-template-columns:
      376px
      minmax(637px, 1fr)
      347px;
  }

  body.lang-en header .pc_header_logo {
    width: 376px;
    height: 76px;
    padding: 0 34px 0 29px;
  }

  body.lang-en header .pc_header_logo h1 {
    width: 313px;
  }

  /* Keep the Japanese header's full-width / flexible-nav behavior. */
  body.lang-en header .pc_header_nav {
    width: 100%;
    height: 31px;
    padding: 0;
  }

  body.lang-en header .pc_header_nav ul {
    width: 100%;
    max-width: none;
  }
}

@media only screen and (min-width: 769px) {
  body.lang-en header .pc_header_logo {
    align-items: center;
  }

  body.lang-en header .pc_header_logo h1 {
    height: auto;
  }

  body.lang-en header .pc_header_logo h1 a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  body.lang-en header .pc_header_brand_title_en {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  body.lang-en header .pc_header_logo h1 img {
    width: 162px;
    height: auto;
  }

  body.lang-en header .pc_header_nav a,
  body.lang-en header .pc_header_nav .hover_anm {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1359px) {
  body.lang-en header .pc_header {
    grid-template-columns: 27.647vw 46.838vw 25.515vw;
  }

  body.lang-en header .pc_header_logo {
    width: 27.647vw;
    height: 5.588vw;
    padding: 0 2.5vw 0 2.132vw;
  }

  body.lang-en header .pc_header_logo h1 {
    width: 23.015vw;
  }

  body.lang-en header .pc_header_nav {
    width: 46.838vw;
    padding: 0;
  }

  body.lang-en header .pc_header_nav ul {
    width: 100%;
    max-width: none;
  }

  body.lang-en header .pc_header_brand_title_en {
    font-size: clamp(12px, 1.324vw, 18px);
  }

  body.lang-en header .pc_header_logo h1 img {
    width: 11.912vw;
    min-width: 92px;
  }

  body.lang-en header .pc_header_logo h1 a {
    gap: 0.735vw;
  }
}

/* ------------------------------
   SP CLOSED HEADER
------------------------------ */
@media only screen and (max-width: 768px) {
  body.lang-en header > .header_contents.to_sp > .header_logo {
    width: min(63vw, 246px);
    max-width: none;
  }

  body.lang-en header > .header_contents.to_sp > .header_logo h1 a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }

  body.lang-en header .sp_header_brand_title_en {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: clamp(10px, 3.59vw, 14px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  body.lang-en header > .header_contents.to_sp > .header_logo h1 img {
    width: clamp(88px, 25.128vw, 110px);
    height: auto;
  }
}

/* ------------------------------
   SP MENU
------------------------------ */
@media only screen and (max-width: 768px) {
  body.lang-en .sp_menu .inner .logo {
    width: 100%;
    height: auto;
    margin: clamp(62px, 20.513vw, 80px) auto clamp(46px, 15.385vw, 60px);
  }

  body.lang-en .sp_menu .inner .logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body.lang-en .sp_menu .sp_menu_brand_title_en {
    display: block;
    margin-bottom: clamp(18px, 6.154vw, 24px);
    font-family: "Sora", sans-serif;
    font-size: clamp(14px, 4.103vw, 16px);
    font-weight: 700;
    line-height: 1.23;
    letter-spacing: 0.025em;
    text-align: center;
  }

  body.lang-en .sp_menu .inner .logo a img {
    width: clamp(60px, 17.692vw, 69px);
    height: auto;
  }

  body.lang-en .sp_menu .sp_navi_list {
    gap: clamp(19px, 5.128vw, 24px);
  }

  body.lang-en .sp_menu .sp_navi_list a {
    font-family: "Sora", sans-serif;
    font-size: clamp(16px, 4.359vw, 18px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  body.lang-en .sp_menu_bottom {
    bottom: clamp(34px, 8.718vw, 44px);
    gap: clamp(24px, 6.154vw, 32px);
  }
}

/* ------------------------------
   FOOTER
------------------------------ */
body.lang-en footer .footer_brand_title_en {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.035em;
}

body.lang-en footer .menu .links a,
body.lang-en footer .border_btn a {
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
}

@media only screen and (min-width: 769px) {
  body.lang-en footer .border_btn a {
    letter-spacing: normal;
  }

  body.lang-en footer {
    height: 620px;
    margin-bottom: 0;
  }

  body.lang-en footer .footer_inner {
    height: 430px;
    margin-top: 78px;
    margin-bottom: 105px;
  }

  body.lang-en footer .address {
    width: 250px;
  }

  body.lang-en footer h1 {
    width: 250px;
    height: auto;
    margin: 0 0 105px;
  }

  body.lang-en footer h1 a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  body.lang-en footer .footer_brand_title_en {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.18;
  }

  body.lang-en footer h1 img {
    width: 80px;
    height: auto;
  }

  body.lang-en footer .small_text {
    width: 200px;
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }

  body.lang-en footer .menu {
    top: 15px;
  }

  body.lang-en footer .menu .links {
    margin-bottom: 48px;
  }

  body.lang-en footer ul li {
    margin-bottom: 28px;
  }

  body.lang-en footer ul li a {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  body.lang-en footer .border_btn_column {
    top: 315px;
  }

  body.lang-en footer .logo_group {
    top: 15px;
    width: 120px;
    height: 120px;
  }

  body.lang-en footer .copyright {
    margin-top: 0;
  }
}

/* Keep the English footer proportional between tablet and 1359px. */
@media only screen and (min-width: 769px) and (max-width: 1359px) {
  body.lang-en footer {
    height: 45.588vw;
  }

  body.lang-en footer .footer_inner {
    height: 31.618vw;
    margin-top: 5.735vw;
    margin-bottom: 7.721vw;
  }

  body.lang-en footer .address {
    width: 18.382vw;
  }

  body.lang-en footer h1 {
    width: 18.382vw;
    margin-bottom: 7.721vw;
  }

  body.lang-en footer .footer_brand_title_en {
    margin-bottom: 1.765vw;
    font-size: 1.471vw;
  }

  body.lang-en footer h1 img {
    width: 5.882vw;
  }

  body.lang-en footer .small_text {
    width: 14.706vw;
    font-size: 0.882vw;
  }

  body.lang-en footer .menu .links {
    margin-bottom: 3.529vw;
  }

  body.lang-en footer ul li {
    margin-bottom: 2.059vw;
  }

  body.lang-en footer ul li a {
    font-size: 1.029vw;
  }

  body.lang-en footer .border_btn_column {
    top: 23.162vw;
  }
}

/* English footer on SP: keep the existing one-column structure, but use the English brand lockup. */
@media only screen and (max-width: 768px) {
  body.lang-en footer {
    height: 310vw;
  }

  body.lang-en footer .footer_inner {
    height: 278vw;
  }

  body.lang-en footer h1 {
    width: 100%;
    height: auto;
    margin: 0 auto 10.256vw;
  }

  body.lang-en footer h1 a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  body.lang-en footer .footer_brand_title_en {
    margin-bottom: 5.128vw;
    font-size: 5.128vw;
    line-height: 1.2;
  }

  body.lang-en footer h1 img {
    width: 25.641vw;
    max-width: 100px;
  }

  body.lang-en footer .menu .links a,
  body.lang-en footer .border_btn a {
    letter-spacing: 0.04em;
  }
}

/* ==========================================================
   ENGLISH HEADER V2
   English header is treated as its own layout.
   The Japanese header remains untouched.
========================================================== */

/* ---------- PC: 1360px and wider ---------- */
@media only screen and (min-width: 1360px) {
  body.lang-en header {
    height: 100px;
  }

  body.lang-en header .pc_header {
    width: 100%;
    display: grid !important;
    grid-template-columns:
      406px
      minmax(607px, 1fr)
      347px !important;
    align-items: center;
  }

  body.lang-en header .pc_header_logo {
    width: 406px !important;
    height: 76px;
    padding: 0 32px 0 29px !important;
    display: flex;
    align-items: center;
  }

  body.lang-en header .pc_header_logo h1 {
    width: 345px !important;
    height: auto;
    margin: 0;
  }

  body.lang-en header .pc_header_logo h1 a {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px !important;
  }

  body.lang-en header .pc_header_brand_title_en {
    display: block !important;
    width: 100%;
    font-family: "Sora", sans-serif;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  body.lang-en header .pc_header_logo h1 img {
    display: block;
    width: 162px !important;
    max-width: none !important;
    height: auto;
  }

  body.lang-en header .pc_header_nav {
    width: 100% !important;
    height: 31px;
    padding: 0 !important;
  }

  /* Same spacing logic as the Japanese header, but scoped to English. */
  body.lang-en header .pc_header_nav ul {
    width: 100% !important;
    max-width: none !important;
    height: 31px;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns:
      1.6fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1fr
      max-content
      1.6fr;
    align-items: center;
  }

  body.lang-en header .pc_header_nav li:nth-child(1) {
    grid-column: 2;
  }
  body.lang-en header .pc_header_nav li:nth-child(2) {
    grid-column: 4;
  }
  body.lang-en header .pc_header_nav li:nth-child(3) {
    grid-column: 6;
  }
  body.lang-en header .pc_header_nav li:nth-child(4) {
    grid-column: 8;
  }
  body.lang-en header .pc_header_nav li:nth-child(5) {
    grid-column: 10;
  }

  body.lang-en header .pc_header_nav a,
  body.lang-en header .pc_header_nav .hover_anm {
    font-family: "Sora", sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-transform: uppercase;
  }

  body.lang-en header .pc_header_actions {
    width: 347px !important;
    height: 76px;
    gap: 28px;
    padding: 0 29px 0 40px !important;
  }
}

/* ---------- PC/tablet: proportional scaling below 1360px ---------- */
@media only screen and (min-width: 769px) and (max-width: 1359px) {
  body.lang-en header {
    height: 7.353vw;
  }

  body.lang-en header .pc_header {
    width: 100vw;
    display: grid !important;
    grid-template-columns:
      29.853vw
      44.632vw
      25.515vw !important;
    align-items: center;
  }

  body.lang-en header .pc_header_logo {
    width: 29.853vw !important;
    height: 5.588vw;
    padding: 0 2.353vw 0 2.132vw !important;
  }

  body.lang-en header .pc_header_logo h1 {
    width: 25.368vw !important;
  }

  body.lang-en header .pc_header_logo h1 a {
    gap: 0.588vw !important;
  }

  body.lang-en header .pc_header_brand_title_en {
    display: block !important;
    font-size: 1.324vw !important;
    line-height: 1.1;
    white-space: nowrap;
  }

  body.lang-en header .pc_header_logo h1 img {
    width: 11.912vw !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto;
  }

  body.lang-en header .pc_header_nav {
    width: 44.632vw !important;
    height: 2.279vw;
    padding: 0 2.941vw !important;
  }

  body.lang-en header .pc_header_nav ul {
    width: 38.75vw !important;
    max-width: none !important;
  }

  body.lang-en header .pc_header_nav a,
  body.lang-en header .pc_header_nav .hover_anm {
    font-size: 1.029vw !important;
    line-height: 2.279vw;
    letter-spacing: 0.04em;
  }

  body.lang-en header .pc_header_actions {
    width: 25.515vw !important;
    height: 5.588vw;
    gap: 2.059vw;
    padding: 0 2.132vw 0 2.941vw !important;
  }
}

/* ---------- SP closed header: independent English layout ---------- */
@media only screen and (max-width: 768px) {
  body.lang-en header > .header_contents.to_sp {
    width: calc(100% - 36px);
    height: 105px;
    margin: 0 auto;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
  }

  body.lang-en header > .header_contents.to_sp > .header_logo {
    width: calc(100% - 78px) !important;
    max-width: none !important;
    height: auto;
    margin: 0;
    padding: 0;
  }

  body.lang-en header > .header_contents.to_sp > .header_logo h1 {
    width: 100% !important;
    height: auto;
    margin: 0;
  }

  body.lang-en header > .header_contents.to_sp > .header_logo h1 a {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(5px, 1.795vw, 7px) !important;
  }

  body.lang-en header .sp_header_brand_title_en {
    display: block !important;
    width: 100%;
    font-family: "Sora", sans-serif;
    font-size: clamp(12px, 3.59vw, 18px) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* 100px at 390px; scales proportionally. */
  body.lang-en header > .header_contents.to_sp > .header_logo h1 img {
    display: block;
    width: clamp(110px, 33.333vw, 150px) !important;
    max-width: none !important;
    height: auto;
  }

  body.lang-en header > .header_contents.to_sp > .menu_button {
    top: 20px;
    right: 0;
    left: auto;
    width: 65px;
    height: 65px;
  }
}
/* ==========================================================
   CLIENT FEEDBACK 2026-09-03
   Stable footer centering and compact-device safeguards.
========================================================== */

/* SP footer buttons: center labels independently of font metrics (Edge included). */
@media only screen and (max-width: 768px) {
  footer .border_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    line-height: 1.4 !important;
  }
}

/*
 * Compact phones only (for example iPhone SE):
 * keep the navigation, language switcher and SNS in normal document flow.
 */
@media only screen and (max-width: 390px) and (max-height: 740px) {
  .sp_menu {
    padding: 12px;
    opacity: 1 !important;
  }

  /* Hide the original header immediately while the compact menu is open. */
  body:has(header .menu_button.active)
    header
    > .header_contents.to_sp
    > .header_logo {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: none !important;
  }

  .sp_menu .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    min-height: 0;
    overflow-y: auto;
    padding: 28px 14px 18px;
  }

  .sp_menu .inner .logo {
    flex: 0 0 auto;
    width: 130px;
    height: auto;
    margin: 0 auto 14px;
  }

  .sp_menu .sp_navi_list {
    flex: 0 0 auto;
    width: 100%;
    gap: 6px;
  }

  .sp_menu .sp_navi_list a {
    padding: 3px 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .sp_menu_bottom,
  body.lang-en .sp_menu_bottom {
    position: static;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 14px;
    gap: 10px;
  }

  .sp_menu .language_switch--sp {
    width: min(184px, 70vw);
  }

  .sp_menu .language_switch--sp .language_switch_button {
    height: 34px;
    min-height: 34px;
    padding: 6px 9px;
  }

  .sp_menu .language_switch--sp .language_switch_menu {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: 6px;
  }

  .sp_menu .sns {
    flex: 0 0 auto;
  }

  body.lang-en .sp_menu .inner .logo {
    width: 100%;
    margin: 0 auto 12px;
  }

  body.lang-en .sp_menu .sp_menu_brand_title_en {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.15;
  }

  body.lang-en .sp_menu .inner .logo a img {
    width: 52px;
  }

  body.lang-en .sp_menu .sp_navi_list {
    gap: 5px;
  }

  body.lang-en .sp_menu .sp_navi_list a {
    padding: 2px 0;
    font-size: 14px;
    line-height: 1.2;
  }

  body.lang-en .form_steps {
    width: 100%;
  }

  body.lang-en .form_steps .step_bar {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 5%;
  }

  body.lang-en .form_steps .step_bar li {
    flex: 0 0 30%;
    width: auto;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 2px;
    font-size: clamp(9px, 2.7vw, 10.5px);
    line-height: 1.2;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body.lang-en .form_steps .step_bar li::before,
  body.lang-en .form_steps .step_bar li.step_02.is_visited::before,
  body.lang-en .form_steps .step_bar li.step_03.is_visited::before {
    width: 16.667%;
    left: -16.667%;
    top: 50%;
  }
}

/* English CONTACT step bar (SP) */
@media only screen and (max-width: 768px) {
  body.lang-en .form_steps {
    width: 100%;
  }

  body.lang-en .form_steps .step_bar li {
    width: 22vw;
    font-size: 2.8vw;
    letter-spacing: 0;
    white-space: nowrap;
  }

  body.lang-en .form_steps .step_bar li::before,
  body.lang-en .form_steps .step_bar li::after {
    width: 5.6vw;
  }

  body.lang-en .form_steps .step_bar li::before {
    left: -5.6vw;
  }

  body.lang-en .form_steps .step_bar li::after {
    right: -5.6vw;
  }
}

/* English footer copyright: align vertical position with Japanese footer (PC) */
@media only screen and (min-width: 769px) {
  body.lang-en footer {
    position: relative;
  }

  body.lang-en footer .copyright {
    position: absolute;
    right: 0;
    bottom: 68px;
    left: 0;
    margin: 0;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1359px) {
  body.lang-en footer .copyright {
    bottom: 5vw;
  }
}

