@charset "UTF-8";
:root {
  --main-color: #A9ADE8;
  --accent-color: #5A64D4;
  --txt-color: #565656;
  --ttl-blue: #5B75B9;
  --white: #FFF;
  --light-purple: #DADCF9;
  --gold: #BFA87E;
  --line-btn: #00B900;
  --blue-opa: rgb(90 100 212 / .48);
  --marker-yellow: #FEFFB8;
  --red: #ED4D6D;
  --font-main: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --gold-grad: linear-gradient(to right, var(--gold), #FDF7EC, var(--gold));
}

html {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; /* iOS 8+ */
  scroll-behavior: smooth;
}
@media screen and (width <= 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (width > 767px), print {
  html {
    font-size: 10px;
  }
}

body {
  color: var(--txt-color);
  letter-spacing: 0;
  word-break: break-word;
  -webkit-animation: loading 0.8s;
          animation: loading 0.8s;
}
@media screen and (width <= 767px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (width > 767px) {
  body {
    font-size: 1.8rem;
  }
}

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

@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (width <= 960px) {
  main {
    padding-top: 6rem;
  }
}
@media screen and (width > 960px), print {
  main {
    padding-top: 8rem;
  }
}

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

summary::-webkit-details-marker {
  display: none;
}

@media screen and (width > 767px), print {
  br.sp {
    display: none;
  }
}
@media screen and (width <= 767px) {
  br.pc {
    display: none;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin-inline: auto;
  padding: 1.6rem 1.8rem 1.6rem 2.8rem;
  background-color: var(--accent-color);
  color: var(--white);
  border: 0.1rem solid var(--accent-color);
  border-radius: 100vh;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/common/icon_arw_r.svg);
          mask-image: url(../images/common/icon_arw_r.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: 0.1rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (width > 767px) {
  .btn:hover {
    background-color: var(--white);
    color: var(--accent-color);
  }
  .btn:hover::after {
    background-color: var(--accent-color);
  }
}
.btn.-border {
  background-color: transparent;
  color: var(--accent-color);
}
.btn.-border::after {
  background-color: var(--accent-color);
}
@media screen and (width > 767px) {
  .btn.-border:hover {
    background-color: var(--white);
  }
}
.btn.-line {
  border-color: var(--line-btn);
  background-color: var(--line-btn);
}
@media screen and (width > 767px) {
  .btn.-line:hover {
    background-color: var(--white);
    color: var(--line-btn);
  }
  .btn.-line:hover::after {
    background-color: var(--line-btn);
  }
}
.btn.-icon {
  height: 5.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  margin-inline: 0;
  padding: 0;
  position: relative;
}
@media screen and (width <= 767px) {
  .btn.-icon {
    width: 24rem;
  }
}
@media screen and (width > 767px), print {
  .btn.-icon {
    width: 22rem;
  }
}
.btn.-icon img {
  width: 4.6rem;
}
.btn.-icon > span {
  margin-bottom: 0.3rem;
  margin-right: 2em;
}
.btn.-icon::after {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container {
  max-width: 126.4rem;
  margin-inline: auto;
}
@media screen and (width <= 960px) {
  .container {
    padding-inline: 1.8rem;
  }
}
@media screen and (width > 960px), print {
  .container {
    padding-inline: 3.2rem;
  }
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  position: relative;
}
@media screen and (width <= 960px) {
  .header_inner {
    height: 6rem;
    padding-left: 1rem;
  }
}
@media screen and (960px < width <= 1200px) {
  .header_inner {
    padding-left: 2rem;
  }
}
@media screen and (width > 1200px), print {
  .header_inner {
    height: 8rem;
    padding-left: 3.2rem;
  }
}
.header_inner::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: var(--gold-grad);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 960px) {
  .header_logo {
    gap: 1rem;
  }
}
@media screen and (width > 960px), print {
  .header_logo {
    gap: 1.6rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header_logo:hover {
    opacity: 0.7;
  }
}
@media screen and (width <= 960px) {
  .header_logo img {
    width: 4rem;
  }
}
@media screen and (width > 960px), print {
  .header_logo img {
    width: 5rem;
  }
}
.header_logo_txt {
  color: var(--ttl-blue);
  font-family: var(--font-serif);
}
@media screen and (width <= 960px) {
  .header_logo_txt {
    font-size: 1.5rem;
  }
}
@media screen and (width > 960px), print {
  .header_logo_txt {
    font-size: 1.7rem;
  }
}
.header_menu {
  background-color: var(--main-color);
}
@media screen and (width <= 1200px) {
  .header_menu {
    opacity: 0;
    -webkit-transform: translateX(120vw);
            transform: translateX(120vw);
    width: 100vw;
    height: 100vh;
    max-width: 80rem;
    position: absolute;
    right: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
    overflow-y: auto;
  }
}
@media screen and (width <= 960px) {
  .header_menu {
    height: calc(100vh - 6rem);
    top: 6rem;
  }
}
@media screen and (960px < width <= 1200px) {
  .header_menu {
    height: calc(100vh - 8rem);
    top: 8rem;
  }
}
@media screen and (width > 1200px), print {
  .header_menu {
    -webkit-clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (width <= 1200px) {
  .header_menu[data-open=true] {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 1200px) {
  .header_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6.4rem 1.8rem;
  }
}
@media screen and (width > 1200px), print {
  .header_nav {
    height: 8rem;
  }
}
@media screen and (1200px < width <= 1300px) {
  .header_nav {
    padding-inline: 6.4rem 2.4rem;
  }
}
@media screen and (width > 1300px), print {
  .header_nav {
    padding-inline: 8rem 2.4rem;
  }
}
.header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 1200px) {
  .header_nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (1200px < width <= 1300px) {
  .header_nav_list {
    gap: 2rem;
  }
}
@media screen and (width > 1300px), print {
  .header_nav_list {
    gap: 3.2rem;
  }
}
.header_nav_list > li {
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 500;
}
@media screen and (width <= 1200px) {
  .header_nav_list > li {
    font-size: 1.8rem;
  }
}
@media screen and (1200px < width <= 1300px) {
  .header_nav_list > li {
    font-size: 1.4rem;
  }
}
@media screen and (width > 1300px), print {
  .header_nav_list > li {
    font-size: 1.6rem;
  }
}
.header_nav_list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  text-shadow: 0 0.2rem 1rem var(--blue-opa);
}
@media screen and (width > 1200px) {
  .header_nav_list > li a {
    -webkit-transition: color 0.3s, text-shadow 0.3s;
    transition: color 0.3s, text-shadow 0.3s;
  }
  .header_nav_list > li a:hover {
    color: var(--accent-color);
    text-shadow: none;
  }
}
.header_nav_list > li a::after {
  content: attr(data-ttl);
  font-size: 1rem;
}
.header_nav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (width <= 1200px) {
  .header_nav_sns {
    margin-top: 4rem;
  }
}
@media screen and (1200px < width <= 1300px) {
  .header_nav_sns {
    margin-left: 2.4rem;
  }
}
@media screen and (width > 1300px), print {
  .header_nav_sns {
    margin-left: 4.8rem;
  }
}
.header_nav_sns > li a {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--white);
  border: 0.1rem solid var(--white);
  border-radius: 100vh;
}
@media screen and (width > 1200px) {
  .header_nav_sns > li a {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .header_nav_sns > li a:hover {
    background-color: var(--light-purple);
  }
}
.header_nav_sns > li a img {
  width: 100%;
}
.header_line_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 1rem;
  border: 0.1rem solid var(--white);
  border-radius: 0.5rem;
  background-color: var(--line-btn);
}
@media screen and (width <= 1200px) {
  .header_line_btn {
    margin-top: 4rem;
  }
}
@media screen and (width > 1200px), print {
  .header_line_btn {
    margin-left: 2.4rem;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .header_line_btn:hover {
    background-color: var(--white);
  }
  .header_line_btn:hover .balloon {
    background-color: var(--line-btn);
    color: var(--white);
  }
  .header_line_btn:hover .balloon::after {
    background-color: var(--line-btn);
  }
  .header_line_btn:hover .txt {
    color: var(--line-btn);
  }
}
.header_line_btn .balloon {
  padding: 0.1rem 1rem;
  background-color: var(--white);
  border-radius: 100vh;
  color: var(--line-btn);
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.header_line_btn .balloon::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.5rem;
  background-color: var(--white);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header_line_btn .txt {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

#header_trigger {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--accent-color);
  padding-bottom: 0.3rem;
}
@media screen and (width <= 960px) {
  #header_trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (960px < width <= 1200px) {
  #header_trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 8rem;
    height: 8rem;
  }
}
@media screen and (width > 1200px), print {
  #header_trigger {
    display: none;
  }
}
#header_trigger::before, #header_trigger::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 2.6rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#header_trigger::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 0.3rem;
}
#header_trigger::after {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 0.7rem;
}
#header_trigger .bar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  background-color: var(--white);
  width: 2.6rem;
  height: 0.2rem;
  margin-top: 0.7rem;
  border-radius: 0.1rem;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
#header_trigger[data-open=true]::before {
  -webkit-transform: translateY(0.9rem) rotate(45deg);
          transform: translateY(0.9rem) rotate(45deg);
}
#header_trigger[data-open=true]::after {
  -webkit-transform: translateY(-0.9rem) rotate(-45deg);
          transform: translateY(-0.9rem) rotate(-45deg);
}
#header_trigger[data-open=true] .bar {
  opacity: 0;
  -webkit-transform: translateX(10rem);
          transform: translateX(10rem);
}

#footer {
  background-color: #6067B7;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  background-image: var(--gold-grad);
}
@media screen and (width <= 767px) {
  #footer::before {
    height: 0.4rem;
  }
}
@media screen and (width > 767px), print {
  #footer::before {
    height: 0.8rem;
  }
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--white);
}
@media screen and (width <= 767px) {
  .footer_inner {
    padding: 4.8rem 1.8rem 2.4rem;
  }
}
@media screen and (width > 767px), print {
  .footer_inner {
    padding: 4.8rem 1.8rem 1.8rem;
  }
}
.footer_logo {
  text-align: center;
}
.footer_logo img {
  width: 10.5rem;
}
.footer_logo_txt {
  margin-top: 1.2rem;
  font-family: var(--font-serif);
  letter-spacing: 0.14em;
}
.footer_nav {
  margin-top: 4.8rem;
}
.footer_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.2rem 4rem;
  font-size: 1.6rem;
}
@media screen and (width > 767px), print {
  .footer_nav_list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer_nav_list a:hover {
    opacity: 0.7;
  }
}
.footer_nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
  font-size: 1.3rem;
}
@media screen and (width <= 767px) {
  .footer_nav_link {
    margin-top: 6.4rem;
  }
}
@media screen and (width > 767px), print {
  .footer_nav_link {
    margin-top: 2.4rem;
  }
}
@media screen and (width > 767px), print {
  .footer_nav_link a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer_nav_link a:hover {
    opacity: 0.7;
  }
}
.footer_nav_sns {
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.footer_nav_sns > li a {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--white);
  border-radius: 100vh;
  overflow: hidden;
}
@media screen and (width > 767px), print {
  .footer_nav_sns > li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer_nav_sns > li a:hover {
    opacity: 0.7;
  }
}
.footer_nav_sns > li a img {
  width: 100%;
}
.footer_nav_sns > li.-line a {
  background-color: var(--line-btn);
  border: 0.1rem solid var(--white);
}
.footer_copy {
  margin-top: 4.8rem;
  font-size: 1.2rem;
}

.breadcrumb {
  background-color: var(--accent-color);
}
@media screen and (width <= 767px) {
  .breadcrumb {
    margin-bottom: 4rem;
    padding-block: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb {
    margin-bottom: 8.8rem;
    padding-block: 2rem;
  }
}

.breadcrumb_list > li {
  display: inline;
  color: var(--white);
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  .breadcrumb_list > li {
    font-size: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list > li {
    font-size: 1.4rem;
  }
}
.breadcrumb_list > li:first-of-type::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/icon_home.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (width <= 767px) {
  .breadcrumb_list > li:first-of-type::before {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.2rem;
    margin-bottom: -0.3rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list > li:first-of-type::before {
    width: 2rem;
    height: 2rem;
    margin-right: 0.4rem;
    margin-bottom: -0.4rem;
  }
}
.breadcrumb_list > li:not(:first-of-type) {
  position: relative;
}
@media screen and (width <= 767px) {
  .breadcrumb_list > li:not(:first-of-type) {
    padding-left: 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list > li:not(:first-of-type) {
    padding-left: 1.7rem;
  }
}
.breadcrumb_list > li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.1rem solid var(--white);
  border-right: 0.1rem solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 0;
}
@media screen and (width <= 767px) {
  .breadcrumb_list > li:not(:first-of-type)::before {
    top: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list > li:not(:first-of-type)::before {
    top: 0.8rem;
  }
}
.breadcrumb_list > li a {
  text-decoration: underline;
}
.breadcrumb_list > li a:hover {
  text-decoration: none;
}

.lower_mv {
  width: 100%;
  position: relative;
}
.lower_mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.lower_mv.-common::before {
  content: none;
}
.lower_mv .lower_page_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: absolute;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .lower_mv .lower_page_ttl {
    font-size: 3.2rem;
    left: 1.8rem;
    bottom: 2.4rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv .lower_page_ttl {
    font-size: min(4.8rem, 3.3333vw);
    left: min(12rem, 8.3333vw);
    bottom: min(4.8rem, 3.3333vw);
  }
}
.lower_mv .lower_page_ttl .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.lower_mv .lower_page_ttl .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media screen and (width <= 767px) {
  .lower_mv .lower_page_ttl .en {
    font-size: 1.8rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv .lower_page_ttl .en {
    font-size: min(2.4rem, 1.6666vw);
  }
}
.lower_mv .lower_page_ttl .en::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 0.1rem;
  margin-top: 0.8rem;
  background-color: var(--white);
}
.lower_mv_img {
  width: 100%;
}

.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (width <= 767px) {
  .news_list_item {
    width: 100%;
  }
}
@media screen and (767px < width <= 960px) {
  .news_list_item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (width > 960px), print {
  .news_list_item {
    width: calc((100% - 12rem) / 4);
  }
}
.news_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: var(--white);
  border-radius: 0.8rem;
  -webkit-box-shadow: 0 0.2rem 2.4rem var(--blue-opa);
          box-shadow: 0 0.2rem 2.4rem var(--blue-opa);
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (width > 767px) {
  .news_list_item a:hover {
    -webkit-box-shadow: 0 0.2rem 0.2rem var(--blue-opa);
            box-shadow: 0 0.2rem 0.2rem var(--blue-opa);
  }
  .news_list_item a:hover .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.news_list_item .img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news_list_item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news_list_item .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.6rem 1.2rem 1.2rem;
}
.news_list_item .txt dt {
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid var(--main-color);
  color: var(--accent-color);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.3;
}
.news_list_item .txt dt + dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (width > 767px), print {
  .news_list_item .txt dt + dd {
    font-weight: 300;
  }
}
.news_list_item .txt .date {
  margin-top: 1.2rem;
  text-align: right;
  color: var(--gold);
}

.contact_section {
  background-color: var(--light-purple);
}
@media screen and (width <= 767px) {
  .contact_section {
    padding-block: 6.4rem;
  }
}
@media screen and (width > 767px), print {
  .contact_section {
    padding-block: 8rem;
  }
}
.contact_section .contact_box {
  background-color: var(--white);
  position: relative;
}
@media screen and (width <= 767px) {
  .contact_section .contact_box {
    padding: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .contact_section .contact_box {
    padding: 0.8rem;
  }
}
.contact_section .contact_box::before {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--gold)), color-stop(#FDF7EC), to(var(--gold)));
  background-image: linear-gradient(to bottom, var(--gold), #FDF7EC, var(--gold));
  position: absolute;
}
@media screen and (width <= 767px) {
  .contact_section .contact_box::before {
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    top: 0.6rem;
    left: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .contact_section .contact_box::before {
    width: calc(100% - 1.6rem);
    height: calc(100% - 1.6rem);
    top: 0.8rem;
    left: 0.8rem;
  }
}
.contact_section .contact_box_inner {
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  margin: 0.1rem;
  background-color: var(--white);
  position: relative;
}
@media screen and (width <= 767px) {
  .contact_section .contact_box_inner {
    padding: 3.4rem 2.6rem;
  }
}
@media screen and (width > 767px), print {
  .contact_section .contact_box_inner {
    padding: 4rem 3.2rem;
  }
}
.contact_section .contact_box .article-txt {
  margin-top: 3.2rem;
  line-height: 1.7;
}
.contact_section .contact_box .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 3.2rem;
}
@media screen and (width > 767px) {
  .contact_section .contact_box .btn:hover {
    background-color: rgba(218, 220, 249, 0.8);
  }
}

.service_bnr {
  display: block;
}
@media screen and (width <= 767px) {
  .service_bnr {
    width: 100vw;
    margin-left: -1.8rem;
  }
}
@media screen and (width > 767px), print {
  .service_bnr {
    width: 100%;
  }
}
.service_bnr .img {
  width: 100%;
  aspect-ratio: 3/1;
  overflow: hidden;
}
.service_bnr .img img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.service_bnr p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--accent-color);
  color: var(--white);
  font-family: var(--font-serif);
  letter-spacing: 0.1em;
}
@media screen and (width <= 767px) {
  .service_bnr p {
    gap: 0.8rem;
    padding: 1.2rem 1em 1.4rem;
    font-size: 1.8rem;
  }
}
@media screen and (width > 767px), print {
  .service_bnr p {
    gap: 1.2rem;
    padding: 1.5rem 1em 1.8rem;
    font-size: 2.2rem;
  }
}
.service_bnr p::after {
  content: "";
  display: block;
  background-image: url(../images/common/icon_arw_r.svg);
  background-size: contain;
  margin-top: 0.2rem;
}
@media screen and (width <= 767px) {
  .service_bnr p::after {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media screen and (width > 767px), print {
  .service_bnr p::after {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (width > 767px), print {
  .service_bnr:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.privacy-policy_content {
  padding-bottom: 8rem;
}
.privacy-policy_content p {
  margin-top: 1.6rem;
  line-height: 1.8;
}
.privacy-policy_content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.6rem;
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  .privacy-policy_content dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.privacy-policy_content dl dt {
  font-weight: 400;
}
@media screen and (width > 767px), print {
  .privacy-policy_content dl dt {
    min-width: 15.6rem;
    margin-right: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.privacy-policy_content dl dt::after {
  content: "：";
}
@media screen and (width > 767px), print {
  .privacy-policy_content dl + dl {
    margin-top: 0.5rem;
  }
}

.law_content {
  max-width: 86.4rem;
  margin-bottom: 8rem;
}
.law_list {
  font-size: 1.6rem;
  line-height: 1.5;
}
.law_list > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1rem solid var(--gold);
  padding-block: 2.4rem;
}
@media screen and (width > 767px), print {
  .law_list > div {
    gap: 1rem;
  }
}
@media screen and (width <= 767px) {
  .law_list > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
  }
}
.law_list dt {
  font-weight: 500;
}
@media screen and (width > 767px), print {
  .law_list dt {
    width: 24rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.law_list dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.notfound {
  margin-block: 8rem;
}
.notfound .article-txt {
  line-height: 2;
}
@media screen and (width > 767px), print {
  .notfound .article-txt {
    text-align: center;
  }
}
.notfound .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.8rem;
}

h2.wp-block-heading {
  margin-bottom: 2.4rem;
  border-left: 0.4rem solid var(--accent-color);
  background-color: var(--light-purple);
  color: var(--accent-color);
  font-family: var(--font-serif);
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (width <= 767px) {
  h2.wp-block-heading {
    margin-top: 6.4rem;
    padding: 0.6rem 1.8rem 0.8rem 2rem;
    font-size: 2.2rem;
  }
}
@media screen and (width > 767px), print {
  h2.wp-block-heading {
    margin-top: 8rem;
    padding: 0.8rem 2.4rem 0.8rem 3.2rem;
    font-size: 2.6rem;
  }
}
h2.wp-block-heading + .wp-block-heading {
  margin-top: 0;
}

h3.wp-block-heading {
  margin-bottom: 1.6rem;
  color: var(--accent-color);
  line-height: 1.6;
  position: relative;
}
@media screen and (width <= 767px) {
  h3.wp-block-heading {
    margin-top: 3.2rem;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
}
@media screen and (width > 767px), print {
  h3.wp-block-heading {
    margin-top: 4rem;
    padding-left: 2.4rem;
    font-size: 2.2rem;
  }
}
h3.wp-block-heading::before {
  content: "";
  display: block;
  height: 0.4rem;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
}
@media screen and (width <= 767px) {
  h3.wp-block-heading::before {
    width: 1rem;
    top: 1.6rem;
  }
}
@media screen and (width > 767px), print {
  h3.wp-block-heading::before {
    width: 1.4rem;
    top: 1.9rem;
  }
}

.wp-block-list {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  line-height: 1.4;
}

ol.wp-block-list {
  counter-reset: list-cnt;
}
ol.wp-block-list > li {
  counter-increment: list-cnt;
  position: relative;
}
@media screen and (width <= 767px) {
  ol.wp-block-list > li {
    padding-left: 1.2em;
  }
}
@media screen and (width > 767px), print {
  ol.wp-block-list > li {
    padding-left: 1.5em;
  }
}
ol.wp-block-list > li::before {
  content: counter(list-cnt) ".";
  position: absolute;
  top: 0;
  left: 0;
}
ol.wp-block-list > li .wp-block-list {
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (width > 767px), print {
  ol.wp-block-list > li .wp-block-list {
    padding-left: 1em;
  }
}
ol.wp-block-list > li .wp-block-list .wp-block-list {
  margin-bottom: 0;
}