@charset "UTF-8";
/* 日本語 */
/* ------------------------------ */
/*          リセットCSS */
/* ------------------------------ */
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

​ address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

​ ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

​ abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

​ input,
textarea,
select {
  font-size: 16px;
}

​ textarea {
  resize: vertical;
  display: block;
}

​ button {
  padding: 0;
  cursor: pointer;
}

​ legend {
  color: #000;
}

​ main {
  display: block;
}

​ a {
  text-decoration: none;
  color: inherit;
}

​ img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

​ svg {
  display: block;
}

​ * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* 色管理 */
/* z-index */
/* font */
/* ブレイクポイント */
/* mixin */
/* ---------------------------
base
----------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho", serif;
  color: #000;
  counter-reset: number;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.5;
  transition: 0.4s;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

/* ---------------------------
layout
----------------------------*/
.l_container {
  width: 100%;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 832px;
}
@media screen and (min-width: 1600px) {
  .l_container {
    max-width: 1132px;
  }
}

.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 832px;
}
@media screen and (min-width: 1600px) {
  .l_container-lg {
    max-width: 1632px;
  }
}

.l_contents-lg {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .l_contents-lg {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1100px) {
  .l_contents-lg {
    padding: 150px 0;
  }
}
@media screen and (min-width: 1600px) {
  .l_contents-lg {
    padding: 200px 0;
  }
}

.l_contents {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .l_contents {
    padding: 100px 0;
  }
}

.l_content-top__sm {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .l_content-top__sm {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .l_content-top__sm {
    margin-top: 50px;
  }
}

.l_content-top__lg {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l_content-top__lg {
    margin-top: 80px;
  }
}

/* ---------------------------
header
----------------------------*/
.l_header {
  width: 100vw;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.l_header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.l_header-logo_img-box {
  width: clamp(60px, 16vw, 135px);
}

.l_header-logo_link {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 1100px) {
  .l_header-logo_link {
    gap: 30px;
  }
}

.l_header-logo_name {
  font-size: 12px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l_header-logo_name {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 1100px) {
  .l_header-logo_name {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .l_header-logo_name {
    font-size: 20px;
  }
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #948989;
  z-index: 200;
}
@media screen and (min-width: 1100px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    display: block;
    opacity: 1;
    pointer-events: inherit;
  }
}

.l_header-nav_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1100px) {
  .l_header-nav_inner {
    position: static;
    transform: inherit;
  }
}

.l_header-nav_inner .l_header-logo_name {
  color: #fff;
}

.l_header-nav_list {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
}
@media screen and (min-width: 1100px) {
  .l_header-nav_list {
    margin-top: 0;
    gap: 20px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1600px) {
  .l_header-nav_list {
    gap: 38px;
  }
}

.l_header-nav_item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (min-width: 1100px) {
  .l_header-nav_item {
    color: #000;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: clamp(32px, 8vw, 56px);
}
@media screen and (min-width: 1100px) {
  .l_header-nav_item:not(:first-child):not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav_link {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-family: "Cinzel", "Shippori Mincho", serif;
  font-size: 16px;
}
@media screen and (min-width: 1100px) {
  .l_header-nav_link {
    margin-top: 0;
    font-size: 15px;
  }
}
@media screen and (min-width: 1600px) {
  .l_header-nav_link {
    font-size: 18px;
  }
}

/* all
-------------------------------------------------------------------*/
.sitewrap {
  width: 1100px;
  overflow: hidden;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (max-width: 1124px) {
  .sitewrap {
    width: 100%;
  }
  .sitewrap > * {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .sitewrap {
    width: 100%;
    min-width: 0;
  }
  .sitewrap > * {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* footer
-------------------------------------------------------------------*/
footer {
  background: #ffffff;
  padding: 30px 0 0;
  font-weight: 500;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  border-bottom: #d2d2d2 solid 1px;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

#foot_left {
  width: 365px;
  border-right: solid 1px #d2d2d2;
  font-size: 12px;
}

#foot_left .icon_menu {
  margin-bottom: 20px;
}

#foot_left .icon_menu > *,
#foot_left .icon_menu a {
  display: inline-block;
}

#foot_left .icon_menu a.home {
  transition: opacity 0.4s;
}

#foot_left .icon_menu a.home:hover {
  opacity: 0.6;
}

#foot_left .icon_menu .sns a {
  margin-left: 10px;
  transition: transform 0.4s, opacity 0.4s;
}

#foot_left .icon_menu .sns a img {
  max-width: 28px;
}

#foot_left .icon_menu .sns a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

#foot_left .address_menu dl {
  line-height: 1.8;
}

#foot_left .address_menu dl + dl {
  margin-top: 5px;
}

#foot_right {
  width: 735px;
  font-size: 14px;
  display: flex;
  padding-left: 60px;
  justify-content: space-between;
}

#foot_right li a,
#foot_right p {
  display: block;
  margin-bottom: 12px;
}

#foot_right li li,
#foot_right li li a {
  color: #999;
}

#foot_right li li {
  position: relative;
  padding-left: 0.75em;
}

#foot_right li li:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 2px;
  background: #999;
  vertical-align: middle;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

#foot_right li a,
#foot_right small {
  color: #000;
  transition: color 0.4s, transform 0.4s;
}

#foot_right li a:hover {
  color: #034ea2;
  transform: translateX(2px);
}

footer [target=_blank] span {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

footer a[target=_blank] span:before,
footer a[target=_blank] span:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background-size: contain;
  vertical-align: middle;
  margin: auto;
  margin-left: 5px;
  transform: none;
  position: absolute;
  left: auto;
  right: 3px;
  top: 0;
  bottom: 0;
  background: #fff;
  border: solid 1px #444140;
  box-sizing: border-box;
  transform: translateY(2px);
  transition: border-color 0.4s;
}

footer a[target=_blank] span:after {
  transform: translateY(-1px);
  right: 0px;
  border-top-width: 4px;
}

footer a[target=_blank]:hover span:before,
footer a[target=_blank]:hover span:after {
  border-color: #034ea2;
}

#foot_right .btn_wrap {
  margin-top: 40px;
}

#foot_right .btn_wrap a {
  display: block;
  background: #fff;
  border: solid 1px #034ea2;
  color: #034ea2;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.4s, color 0.4s;
  text-align: center;
}

#foot_right .btn_wrap a:hover {
  background: #034ea2;
  color: #fff;
  transform: none;
}

.footer_bottom {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer_bottom dl {
  padding: 10px 10px 10px 0px;
  width: 365px;
}

.footer_bottom dl + dl {
  padding: 10px 10px 10px 40px;
  border-left: solid #d2d2d2 1px;
}

.footer_bottom dt {
  color: #034ea2;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer_bottom dd p {
  font-size: 14px;
  display: inline-block;
}

.footer_bottom dd p + p {
  margin-left: 2em;
}

.footer_bottom dd a {
  display: inline-block;
  transition: transform 0.4s, color 0.4s;
}

.footer_bottom dd a:hover {
  color: #034ea2;
  transform: translateX(2px);
}

footer .copy {
  background: #034ea2;
  color: #fff;
  padding: 15px;
  font-size: 12px;
}

footer .copy .sitewrap {
  text-align: center;
}

main a.page_link {
  margin-top: -100px;
  padding-top: 100px;
  display: block;
}

.min_b {
  text-align: left;
}

.min_b_span {
  font-size: 0.9rem;
}

.footer_bottom_dl {
  border-left: none !important;
}

.other_link_dl {
  border-bottom: none !important;
}

@media screen and (max-width: 1100px) {
  footer {
    padding: 20px 0 0;
  }
  .footer_top {
    border: none;
    padding: 0;
    margin: 0;
  }
  #foot_left {
    width: 100%;
    padding: 0 15px 15px;
    text-align: center;
    border-right: none;
  }
  #foot_left .icon_menu {
    margin-bottom: 10px;
  }
  #foot_left .icon_menu .home img {
    width: 102px;
    height: auto;
  }
  #foot_left .icon_menu .sns a {
    margin-left: 15px;
  }
  #foot_left .icon_menu .sns a img {
    max-width: 41px;
  }
  #foot_left .address_menu dl {
    text-align: center;
  }
  #foot_right {
    display: none;
  }
  .footer_bottom {
    display: none;
  }
  footer .copy {
    padding: 15px;
    font-size: 10px;
    font-weight: 400;
  }
  footer .copy small {
    margin-top: 5px;
    display: block;
  }
  main a.page_link {
    margin-top: -60px;
    padding-top: 60px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #foot_left .address_menu dl {
    text-align: left;
  }
}
/* ---------------------------
module
----------------------------*/
/* 
section
------------------- -*/
.m_section_inner {
  position: relative;
}
.m_section_inner::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 0;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, black, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 1100px) {
  .m_section_inner::before {
    top: 0;
    left: -20px;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, black, white 100%);
  }
}
@media screen and (min-width: 1600px) {
  .m_section_inner::before {
    left: -50px;
  }
}

.m_section_title {
  font-size: 15px;
  font-family: "Cinzel";
}
@media screen and (min-width: 1100px) {
  .m_section_title {
    position: absolute;
    left: -60px;
    writing-mode: vertical-rl;
    white-space: nowrap;
    height: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .m_section_title {
    left: -100px;
  }
}

.m_section_head {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .m_section_head {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .m_section_head {
    margin-top: 0;
    line-height: 1;
    font-size: 27px;
  }
}

.m_section_head__lg {
  line-height: 1.5;
  display: flex;
}
@media screen and (min-width: 768px) {
  .m_section_head__lg {
    line-height: 1.75;
  }
}
@media screen and (min-width: 1600px) {
  .m_section_head__lg {
    line-height: 2;
  }
}
.m_section_head__lg span {
  margin: -0.5em 0;
}

.m_section_head-sns {
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}

.m_section_head-sns__instagram {
  width: 40px;
}

.m_section_desc {
  margin-top: 24px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .m_section_desc {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .m_section_desc {
    font-size: 15px;
    margin-top: 50px;
    line-height: 2.5;
  }
}

/* 
button
------------------- -*/
.m_btn_wrapper {
  width: -moz-fit-content;
  width: fit-content;
}

.m_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-family: "Shippori Mincho";
}
@media screen and (min-width: 768px) {
  .m_btn {
    font-size: 18px;
  }
}

.m_btn-bright {
  background: #fff;
  color: #221714;
  border: 1px solid #221714;
}

.m_btn-dark {
  background: #221714;
  color: #fff;
}

.m_btn_img-box {
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
hamburger
------------------- -*/
.m_hamburger {
  width: 40px;
  height: 16px;
  position: relative;
  z-index: 200;
}
@media screen and (min-width: 1100px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger_bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #000;
  left: 50%;
  transition: 0.3s;
}

.m_hamburger_bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger_bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

/* 
youtube
------------------- -*/
.m_youtube {
  padding: 60px 0 20px;
}
@media screen and (min-width: 768px) {
  .m_youtube {
    padding: 150px 0 50px;
  }
}

.m_youtube_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1100px) {
  .m_youtube_list {
    gap: 70px;
  }
}

.m_youtube_item {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .m_youtube_item {
    width: calc((100vw - 20px - 32px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .m_youtube_item {
    width: calc((100vw - 40px - 32px) / 3);
  }
}
@media screen and (min-width: 1100px) {
  .m_youtube_item {
    width: calc((100vw - (100vw - 1100px) - 140px) / 3);
  }
}

.m_youtube_video-box {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.m_youtube_video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m_youtube-wrapper__pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .m_youtube-wrapper__pc {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .m_youtube-wrapper__pc {
    gap: 30px;
  }
}

.m_youtube-wrapper__pc .m_youtube_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.m_sns-btn_wrapper {
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .m_sns-btn_wrapper {
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 1600px) {
  .m_sns-btn_wrapper {
    margin: 50px auto 0;
  }
}

/*
instagram
------------------- -*/
.m_instagram {
  padding: 40px 0 20px;
}
@media screen and (min-width: 768px) {
  .m_instagram {
    padding: 100px 0 50px;
  }
}

.m_instagram_list {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}

.m_instagram_item {
  width: calc((100vw - 30px - 32px) / 2);
  height: calc((100vw - 30px - 32px) / 2);
}
@media screen and (min-width: 500px) {
  .m_instagram_item {
    width: calc((100vw - 60px - 32px) / 3);
    height: calc((100vw - 60px - 32px) / 3);
  }
}
@media screen and (min-width: 1100px) {
  .m_instagram_item {
    width: calc((100vw - (100vw - 1100px) - 120px) / 5);
    height: calc((100vw - (100vw - 1100px) - 120px) / 5);
  }
}

/* 
contact
------------------- -*/
.m_contact {
  padding: 40px 0 80px;
}
@media screen and (min-width: 768px) {
  .m_contact {
    padding: 100px 0 120px;
  }
}
@media screen and (min-width: 1100px) {
  .m_contact {
    padding: 100px 0 150px;
  }
}
@media screen and (min-width: 1600px) {
  .m_contact {
    padding: 100px 0 200px;
  }
}

@media screen and (min-width: 768px) {
  .m_contact__end {
    padding-bottom: 200px;
  }
}

.m_contact-tel_head {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .m_contact-tel_head {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .m_contact-tel_head {
    font-size: 20px;
  }
}

.m_contact-tel_link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: clamp(36px, 8vw, 70px);
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "Cinzel";
}

.m_contact-tel_img-box {
  max-width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.m_contact-tel_time {
  margin-top: 8px;
  font-size: clamp(12px, 3vw, 16px);
  font-family: "Shippori Mincho";
  letter-spacing: 0.06em;
}

.m_contact-btn_link {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_link {
    padding: 20px 32px;
    gap: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .m_contact-btn_link {
    padding: 30px 50px;
    gap: 40px;
    height: 170px;
  }
}
@media screen and (min-width: 1600px) {
  .m_contact-btn_link {
    gap: 50px;
    height: 140px;
  }
}

.m_contact-btn_link__reserve {
  margin-top: 40px;
  background: #002662;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_link__reserve {
    margin-top: 80px;
  }
}

.m_contact-btn_link__contact {
  margin-top: 24px;
  background: #fff;
  color: #002662;
  border: 1px solid #002662;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_link__contact {
    margin-top: 50px;
  }
}

.m_contact-btn_head {
  width: 70px;
  flex-shrink: 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_head {
    width: inherit;
    flex-shrink: inherit;
    font-size: 20px;
  }
}

.m_contact-btn_desc {
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_desc {
    padding-left: 30px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .m_contact-btn_desc {
    padding-left: 50px;
  }
}
.m_contact-btn_desc span {
  font-size: 20px;
}
@media screen and (min-width: 500px) {
  .m_contact-btn_desc span {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .m_contact-btn_desc span {
    font-size: 30px;
  }
}

@media screen and (min-width: 1600px) {
  .m_contact-btn_desc-br {
    display: none;
  }
}

.m_contact-btn_link__reserve .m_contact-btn_desc {
  border-left: 1px solid #fff;
}

.m_contact-btn_link__contact .m_contact-btn_desc {
  border-left: 1px solid #002662;
}

.m_contact-btn_arrow {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .m_contact-btn_arrow {
    width: 80px;
    height: 80px;
  }
}
.m_contact-btn_arrow::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.25px 0 3.25px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .m_contact-btn_arrow::before {
    border-width: 7.5px 0 7.5px 20px;
  }
}

.m_contact-btn_link__reserve .m_contact-btn_arrow {
  border: 1px solid #fff;
}
.m_contact-btn_link__reserve .m_contact-btn_arrow::before {
  border-color: transparent transparent transparent #fff;
}

.m_contact-btn_link__contact .m_contact-btn_arrow {
  border: 1px solid #002662;
}
.m_contact-btn_link__contact .m_contact-btn_arrow::before {
  border-color: transparent transparent transparent #002662;
}

/*
m_view
------------------- -*/
.m_view {
  height: 200px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .m_view {
    height: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .m_view {
    height: 600px;
  }
}

.m_view_bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.m_view_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.m_view_head {
  font-size: 40px;
  text-align: center;
  font-family: "Cinzel";
}
@media screen and (min-width: 768px) {
  .m_view_head {
    font-size: 90px;
  }
}
@media screen and (min-width: 1100px) {
  .m_view_head {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1600px) {
  .m_view_head {
    font-size: 100px;
  }
}

.m_view_text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: "Cinzel";
}

.m_view_text {
  font-size: clamp(20px, 5vw, 38px);
}

.m_view_img-box {
  max-width: 40px;
}

/*
m_plan
------------------- -*/
.m_plan .l_contents-lg {
  border-bottom: 1px solid #231815;
}

.m_plan-summary_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_wrap {
    flex-direction: row;
  }
}

.m_plan-summary_text-wrap {
  background: #bebebe;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text-wrap {
    width: 50%;
  }
}

.m_plan-summary_text-box {
  display: flex;
}

.m_plan-summary_text {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  line-height: 1;
  background: #000;
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text {
    width: 140px;
    height: 140px;
  }
}
.m_plan-summary_text span {
  font-size: 44px;
  font-family: "Cinzel";
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text span {
    font-size: 60px;
  }
}

.m_plan-summary_text02 {
  font-size: 32px;
  padding: 44px 16px 8px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Cinzel", serif;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text02 {
    font-size: 44px;
  }
}
@media screen and (min-width: 1100px) {
  .m_plan-summary_text02 {
    padding: 34px 20px 8px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text02 {
    font-size: 60px;
    padding: 44px 30px 8px;
  }
}
.m_plan-summary_text02 span {
  display: block;
  font-size: clamp(20px, 5vw, 27px);
  font-size: 16px;
  margin-top: 4px;
  letter-spacing: 0;
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text02 span {
    margin-top: 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text02 span {
    font-size: 27px;
  }
}

.m_plan-summary_text-box02 {
  width: 90%;
  margin: 28px auto 0;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text-box02 {
    width: 100%;
    max-width: 270px;
  }
}
@media screen and (min-width: 1100px) {
  .m_plan-summary_text-box02 {
    max-width: 342px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text-box02 {
    max-width: 470px;
  }
}

.m_plan-summary_text03 {
  background: #fff;
  font-family: "Cinzel", serif;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.12em;
  font-size: 15px;
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text03 {
    font-size: 20px;
    height: 40px;
  }
}

.m_plan-summary_text04 {
  text-align: center;
  padding: 8px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text04 {
    padding: 20px 0 12px 0;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text04 {
    font-size: 21px;
  }
}

.m_plan-summary_text05 {
  padding: 8px;
  text-align: center;
  border-top: 1px solid #000;
  font-size: 22px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .m_plan-summary_text05 {
    padding: 0 0 12px 0;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text05 {
    font-size: 30px;
  }
}
.m_plan-summary_text05 span {
  font-size: 14px;
}
@media screen and (min-width: 1600px) {
  .m_plan-summary_text05 span {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .m_plan-summary_img-box {
    width: 50%;
  }
}

.m_plan-point_title {
  font-size: 18px;
  margin-top: 40px;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .m_plan-point_title {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-point_title {
    font-size: 24px;
  }
}

.m_plan-point_list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
}
@media screen and (min-width: 1100px) {
  .m_plan-point_list {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-point_list {
    margin-top: 40px;
    gap: 70px;
  }
}

.m_plan-indoor_img-box {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .m_plan-indoor_img-box {
    margin-top: 80px;
  }
}

.m_plan-point_item {
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 1100px) {
  .m_plan-point_item {
    width: calc((100% - 60px) / 3);
  }
}

.m_plan-point_head {
  font-size: 15px;
  text-align: center;
  color: #666666;
  font-family: "Cinzel";
}
.m_plan-point_head span {
  font-size: 28px;
  display: block;
}

.m_plan-point_text-box {
  width: 100%;
}

.m_plan-point_desc {
  margin-top: 8px;
  border-top: 1px solid #666666;
  padding-top: 8px;
  font-size: 14px;
  text-align: justify;
  letter-spacing: 0.04em;
  line-height: 1.82;
}
@media screen and (min-width: 768px) {
  .m_plan-point_desc {
    padding-top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan-point_desc {
    font-size: 17px;
  }
}

.m_plan_img-box {
  margin: 40px auto 0;
  overflow: hidden;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .m_plan_img-box {
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 1600px) {
  .m_plan_img-box {
    width: 80%;
  }
}

/* ---------------------------
utility
----------------------------*/
.u_sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .u_sp-none {
    display: block;
  }
}

.u_pc-none {
  display: block;
}
@media screen and (min-width: 768px) {
  .u_pc-none {
    display: none;
  }
}

.u_pc-xl-none {
  display: block;
}
@media screen and (min-width: 1600px) {
  .u_pc-xl-none {
    display: none;
  }
}

.u_pc-lg-none {
  display: none;
}
@media screen and (min-width: 1600px) {
  .u_pc-lg-none {
    display: block;
  }
}

.u_img100_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u_img100_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------
top
----------------------------*/
/* top_cta-btn
-----------------------------*/
.top_cta-btn {
  z-index: 100;
  width: 100px;
  height: 100px;
  background: #b50d23;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 16px;
  bottom: 20px;
  transition: top 0.7s ease;
}
@media screen and (min-width: 768px) {
  .top_cta-btn {
    top: 145px;
    right: 30px;
    width: 160px;
    height: 160px;
  }
}
@media screen and (min-width: 1600px) {
  .top_cta-btn {
    width: 220px;
    height: 220px;
  }
}

.top_cta-btn_link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-direction: column;
}
@media screen and (min-width: 1600px) {
  .top_cta-btn_link {
    gap: 0;
  }
}

.top_cta-btn_text {
  font-size: 14px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top_cta-btn_text {
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-width: 1600px) {
  .top_cta-btn_text {
    font-size: 17px;
  }
}

.top_cta-btn_text02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .top_cta-btn_text02 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 16px;
    margin-top: 8px;
    color: #fff;
    line-height: 1;
    text-align: center;
  }
}
@media screen and (min-width: 1600px) {
  .top_cta-btn_text02 {
    font-size: 20px;
  }
}
.top_cta-btn_text02 span {
  font-size: 20px;
}
@media screen and (min-width: 1600px) {
  .top_cta-btn_text02 span {
    font-size: 30px;
  }
}

.top_cta-btn_img-box {
  transform: rotate(10deg);
  width: 40px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .top_cta-btn_img-box {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1600px) {
  .top_cta-btn_img-box {
    width: 78px;
    height: 56px;
  }
}

/* top_mv
-----------------------------*/
.top_mv {
  height: 100svh;
  width: 100%;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .top_mv {
    padding-top: 115px;
  }
}
@media screen and (min-width: 1100px) {
  .top_mv {
    height: 765px;
  }
}

.top_mv_bg,
.top_mv-swiper {
  width: 100%;
  height: 100%;
}

.top_mv_bg {
  position: relative;
}

.top_mv-swiper {
  overflow: hidden;
}

.top_mv_inner {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  width: 90%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  text-shadow: 0px 0px 4px #000;
}
@media screen and (min-width: 768px) {
  .top_mv_inner {
    width: 70%;
  }
}
@media screen and (min-width: 1100px) {
  .top_mv_inner {
    width: -moz-fit-content;
    width: fit-content;
    text-shadow: inherit;
  }
}

/**********/
@media screen and (min-width: 1100px) {
  .top_mv_inner.top_mv_inner__top-left {
    top: 70px;
    left: 100px;
    right: auto;
    bottom: auto;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1100px) {
  .top_mv_inner.top_mv_inner__bottom-left {
    top: auto;
    bottom: 50px;
    left: 100px;
    right: auto;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1100px) {
  .top_mv_inner.top_mv_inner__bottom-right {
    top: auto;
    left: auto;
    bottom: 50px;
    right: 50px;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1100px) {
  .top_mv_inner.top_mv_inner__center-left {
    left: 100px;
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

.top_mv_img {
  -o-object-position: center top;
     object-position: center top;
}

.top_mv_caption {
  position: absolute;
  bottom: 0;
  right: 10px;
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 1100px) {
  .top_mv_caption {
    bottom: 20px;
    left: 30px;
    right: auto;
    font-size: 14px;
  }
}

/**********/
.top_mv_copy,
.top_mv_name,
.top_mv_desc {
  color: #fff;
}

.top_mv_copy {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top_mv_copy {
    font-size: 22px;
  }
}
@media screen and (min-width: 1600px) {
  .top_mv_copy {
    font-size: 34px;
  }
}

.top_mv_name {
  font-size: 40px;
  font-family: "Cinzel";
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .top_mv_name {
    font-size: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .top_mv_name {
    font-size: 60px;
  }
}

.top_mv_desc {
  font-size: 12px;
  line-height: 2;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .top_mv_desc {
    font-size: 13px;
  }
}
@media screen and (min-width: 1600px) {
  .top_mv_desc {
    font-size: 14px;
  }
}

/* top_info
-----------------------------*/
.top_info {
  background: #e1e1e1;
  text-align: center;
}

.top_info_title {
  font-size: 24px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1600px) {
  .top_info_title {
    font-size: 34px;
  }
}

.top_info_desc {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .top_info_desc {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .top_info_desc {
    line-height: 2.375;
  }
}
@media screen and (min-width: 1600px) {
  .top_info_desc {
    font-size: 18px;
    line-height: 3.3;
  }
}

.top_info_text-box {
  margin: 100px auto 0;
  padding: 0px 16px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .top_info_text-box {
    padding: 20px 64px;
    margin: 120px auto 0;
  }
}
@media screen and (min-width: 1100px) {
  .top_info_text-box {
    margin: 150px auto 0;
  }
}
@media screen and (min-width: 1600px) {
  .top_info_text-box {
    margin: 200px auto 0;
  }
}
.top_info_text-box::before, .top_info_text-box::after {
  content: "";
  top: 0;
  width: 8px;
  height: 100%;
  position: absolute;
  display: inline-block;
}
.top_info_text-box::before {
  right: 0;
  background: url(../img/line_left.svg) no-repeat center/contain;
}
.top_info_text-box::after {
  left: 0;
  background: url(../img/line_right.svg) no-repeat center/contain;
}

.top_info_text {
  font-size: clamp(16px, 4vw, 18px);
  letter-spacing: 0;
}

.top_info_text02 {
  font-size: clamp(20px, 5vw, 30px);
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  letter-spacing: 0;
}

.top_info_text03 {
  padding-top: 10px;
  font-size: 18px;
  letter-spacing: 0.16em;
}

/* top_position
-----------------------------*/
/* top_event
-----------------------------*/
.top_event_list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .top_event_list {
    flex-direction: row;
  }
}

.top_event_item {
  width: 100%;
  height: 240px;
}
@media screen and (min-width: 768px) {
  .top_event_item {
    width: 240px;
    height: 240px;
  }
}
@media screen and (min-width: 1600px) {
  .top_event_item {
    width: 320px;
    height: 320px;
  }
}

.top_event_link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_event_link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(255, 255, 255, 0) 100%);
}

.top_event_link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_event_text-box {
  position: absolute;
  bottom: 20px;
  color: #fff;
  max-width: 100%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .top_event_text-box {
    max-width: 180px;
  }
}
@media screen and (min-width: 1600px) {
  .top_event_text-box {
    max-width: 260px;
  }
}

.top_event_title {
  border-bottom: 1px solid #fff;
  font-size: 15px;
  padding-bottom: 8px;
}

.top_event_more-btn {
  padding-top: 8px;
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 1600px) {
  .top_event_more-btn {
    font-size: 20px;
  }
}

/* top_youtube 01/02
-----------------------------*/
.top_youtube-swiper,
.top_youtube02-swiper {
  overflow: hidden;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 40px !important;
}

/* top_instagram 01/02
-----------------------------*/
.top_instagram-swiper,
.top_instagram02-swiper {
  overflow: hidden;
  position: relative;
}

/* top_view
-----------------------------*/
.top_view03_text {
  font-size: clamp(16px, 4vw, 30px);
  text-shadow: 0px 0px 4px #000;
  font-family: "Shippori Mincho";
}
@media screen and (min-width: 768px) {
  .top_view03_text {
    text-shadow: none;
  }
}

/* top_concept
-----------------------------*/
/*----------- 共通 -----------*/
.top_concept {
  overflow: hidden;
}

.top_concept_list {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .top_concept_list {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_list {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_list {
    margin-top: 176px;
  }
}

.top_concept_item {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .top_concept_item {
    flex-direction: row;
    min-height: 350px;
  }
}
.top_concept_item:not(:first-child) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .top_concept_item:not(:first-child) {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item:not(:first-child) {
    margin-top: 150px;
  }
}

.top_concept_text-box {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top_concept_text-box {
    position: relative;
    width: 50%;
    margin-top: 0;
  }
}

.top_concept_text-box-inner {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top_concept_text-box-inner {
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 10px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_text-box-inner {
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_text-box-inner {
    margin-top: 30px;
  }
}

.top_concept_number {
  font-size: 20px;
  color: #666666;
  font-family: "Cinzel";
}

.top_concept_head {
  font-size: 20px;
  letter-spacing: 0.12em;
  font-family: "Shippori Mincho";
  margin-right: -1.2em;
  margin-left: 0em;
}
@media screen and (min-width: 1100px) {
  .top_concept_head {
    margin-left: 0em;
    margin-right: -3em;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_head {
    font-size: 24px;
  }
}

.top_concept_desc {
  font-size: 13px;
  margin-top: 16px;
  letter-spacing: 0.05em;
  text-align: justify;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .top_concept_desc {
    margin-top: 10px;
    padding-left: 30px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_desc {
    font-size: 16px;
    padding-left: 40px;
    letter-spacing: 0.05em;
    margin-top: 20px;
  }
}

.top_concept_detail {
  font-size: 11px;
  letter-spacing: 0;
}
@media screen and (min-width: 1600px) {
  .top_concept_detail {
    font-size: 13px;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_img-box {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_number,
  .top_concept_item04 .top_concept_number {
    display: flex;
    justify-content: end;
  }
}

/*------------ 個別 ------------*/
@media screen and (min-width: 768px) {
  .top_concept_item01 {
    min-height: 400px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item01 {
    min-height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item01 .top_concept_text-box-inner {
    max-width: 370px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item01 .top_concept_text-box-inner {
    left: 0;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item01 .top_concept_text-box-inner {
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 360px;
  }
}

.top_concept_item02 {
  flex-direction: column;
}
.top_concept_item02 .top_concept_wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap {
    flex-direction: row;
  }
}
.top_concept_item02 .top_concept_wrap:nth-child(2) {
  flex-direction: column-reverse;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:nth-child(2) {
    flex-direction: row;
    margin-top: 0;
  }
}
.top_concept_item02 .top_concept_wrap:nth-child(2) .top_concept_desc {
  margin-top: 0;
}
.top_concept_item02 .top_concept_wrap:nth-child(3) {
  display: none;
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:nth-child(3) {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:first-child {
    min-height: 410px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item02 .top_concept_wrap:first-child {
    min-height: 550px;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:first-child .top_concept_text-box-inner {
    max-width: 350px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item02 .top_concept_wrap:first-child .top_concept_text-box-inner {
    left: auto;
    right: 0;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item02 .top_concept_wrap:first-child .top_concept_text-box-inner {
    max-width: 420px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:first-child .top_concept_desc {
    width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item02 .top_concept_wrap:first-child .top_concept_desc {
    width: 86%;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item02 .top_concept_wrap:nth-child(2) .top_concept_text-box-inner {
    max-width: 320px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item02 .top_concept_wrap:nth-child(2) .top_concept_text-box-inner {
    margin-top: 90px;
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item02 .top_concept_wrap:nth-child(2) .top_concept_text-box-inner {
    max-width: 340px;
    margin-top: 140px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.top_concept_item02 .top_concept_wrap:nth-child(2) .top_concept_desc {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .top_concept_item03 {
    min-height: 264px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item03 {
    min-height: 350px;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item03 .top_concept_text-box-inner {
    max-width: 370px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item03 .top_concept_text-box-inner {
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item03 .top_concept_text-box-inner {
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 380px;
  }
}
.top_concept_item03 .top_concept_head {
  letter-spacing: 0.18em;
}

@media screen and (min-width: 768px) {
  .top_concept_item04 {
    flex-direction: row-reverse;
    min-height: 260px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item04 {
    min-height: 350px;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item04 .top_concept_text-box-inner {
    max-width: 350px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item04 .top_concept_text-box-inner {
    right: 0;
    left: auto;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item04 .top_concept_text-box-inner {
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 380px;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_item05 {
    min-height: 330px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item05 {
    min-height: 350px;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item05 .top_concept_text-box-inner {
    max-width: 450px;
  }
}
@media screen and (min-width: 1100px) {
  .top_concept_item05 .top_concept_text-box-inner {
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item05 .top_concept_text-box-inner {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 768px) {
  .top_concept_item05 .top_concept_desc {
    max-width: 360px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_item05 .top_concept_desc {
    max-width: 450px;
  }
}

/*------------ボーダー ------------*/
.top_concept_item01,
.top_concept_item02,
.top_concept_item03,
.top_concept_item04,
.top_concept_item05 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_concept_item01::after,
  .top_concept_item02::after,
  .top_concept_item03::after,
  .top_concept_item04::after,
  .top_concept_item05::after {
    position: absolute;
    content: "";
    display: inline-block;
    height: 1px;
    bottom: 0;
    background: #231815;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_item01::after,
  .top_concept_item03::after,
  .top_concept_item05::after {
    width: 45.5%;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_item02::after {
    width: 70%;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_item04::after {
    width: 45.5%;
    right: 0;
  }
}

/*------------飾り ------------*/
@media screen and (min-width: 768px) {
  .top_concept_deco01,
  .top_concept_deco02,
  .top_concept_deco03 {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .top_concept_deco01::after,
  .top_concept_deco02::after,
  .top_concept_deco03::after {
    content: "";
    position: absolute;
  }
}

@media screen and (min-width: 1100px) {
  .top_concept_deco01::after {
    width: 200px;
    height: 100px;
    background: url(../img/deco01.webp) no-repeat center/contain;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_deco01::after {
    right: 34px;
    top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .top_concept_deco02::after {
    width: 180px;
    height: 210px;
    background: url(../img/deco02.png) no-repeat center/contain;
    top: -30px;
    left: -20px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_deco02::after {
    top: -30px;
    left: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .top_concept_deco03::after {
    width: 140px;
    height: 100px;
    background: url(../img/deco03.webp) no-repeat center/contain;
    right: 30px;
    top: -30px;
  }
}
@media screen and (min-width: 1600px) {
  .top_concept_deco03::after {
    width: 160px;
    height: 126px;
    right: 20px;
    top: 15px;
  }
}

/* top_quality
-----------------------------*/
.top_quality_img-box {
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .top_quality_img-box {
    margin-top: 150px;
  }
}

/* top_planning
-----------------------------*/
.top_planning {
  background: #dfddd7;
  padding: 80px 0 40px;
}
@media screen and (min-width: 768px) {
  .top_planning {
    padding: 120px 0 100px;
  }
}
@media screen and (min-width: 1100px) {
  .top_planning {
    padding: 150px 0 140px;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning {
    padding: 200px 0 140px;
  }
}

.top_planning_list {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .top_planning_list {
    margin-top: 150px;
  }
}

.top_planning_item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .top_planning_item {
    flex-direction: row;
    gap: 50px;
    min-height: 320px;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning_item {
    height: 400px;
  }
}
.top_planning_item:not(:first-child) {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .top_planning_item:not(:first-child) {
    flex-direction: row-reverse;
    margin-top: 150px;
  }
}
@media screen and (min-width: 768px) {
  .top_planning_item:nth-child(2) {
    min-height: 390px;
  }
}
.top_planning_item:last-child {
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .top_planning_item:last-child {
    height: inherit;
  }
}
@media screen and (min-width: 1100px) {
  .top_planning_item:last-child {
    flex-direction: row-reverse;
  }
}

.top_planning_text-box {
  border-bottom: 1px solid #231815;
}
@media screen and (min-width: 768px) {
  .top_planning_text-box {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .top_planning_item:last-child .top_planning_text-box {
    width: 100%;
  }
}

.top_planning_number {
  font-size: 20px;
  color: #666666;
  font-family: "Cinzel";
}

@media screen and (min-width: 768px) {
  .top_planning_item:nth-child(2) .top_planning_number {
    display: flex;
    justify-content: end;
  }
}

.top_planning_head {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.67;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .top_planning_head {
    font-size: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .top_planning_head {
    margin-right: -1.5em;
    letter-spacing: 0.18em;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning_head {
    font-size: 24px;
    margin-top: 32px;
  }
}

.top_planning_desc {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.875;
  margin-top: 16px;
  text-align: justify;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .top_planning_desc {
    padding-left: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning_desc {
    font-size: 16px;
    padding-left: 40px;
    letter-spacing: 0.05em;
    padding-bottom: 16px;
  }
}

@media screen and (min-width: 768px) {
  .top_planning_img-box {
    width: 50%;
  }
}

.top_planning-card_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .top_planning-card_list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning-card_list {
    gap: 30px;
  }
}

@media screen and (min-width: 500px) {
  .top_planning-card_item {
    display: flex;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .top_planning-card_item {
    display: block;
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 1100px) {
  .top_planning-card_item {
    width: 160px;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning-card_item {
    width: 210px;
  }
}

@media screen and (min-width: 500px) {
  .top_planning-card_img-box {
    width: 40%;
    height: 300px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .top_planning-card_img-box {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .top_planning-card_img-box {
    height: 220px;
  }
}
@media screen and (min-width: 1600px) {
  .top_planning-card_img-box {
    height: 300px;
  }
}

.top_planning-card_head {
  margin-top: 8px;
  font-size: 15px;
}
@media screen and (min-width: 1600px) {
  .top_planning-card_head {
    font-size: 18px;
    margin-top: 10px;
  }
}

.top_planning-card_desc {
  margin-top: 8px;
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  font-size: 14px;
}
@media screen and (min-width: 1600px) {
  .top_planning-card_desc {
    font-size: 16px;
    margin-top: 12px;
  }
}

/* top_landscape
-----------------------------*/
/* top_work-through
-----------------------------*/
.top_work-through {
  padding: 80px 0 0;
}
@media screen and (min-width: 768px) {
  .top_work-through {
    padding: 200px 0 0;
  }
}

.top_work-throuth_wrapper {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.top_work-throuth_video-box {
  position: relative;
  width: 100%;
  padding-top: 55%;
}

.top_work-throuth_video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* top_plan
-----------------------------*/
.top_plan_container {
  padding: 0 0 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top_plan_container {
    padding: 0 0 100px;
  }
}

.top_plan_swiper-wrapper {
  position: relative;
}

.top_plan_swiper {
  overflow: visible;
}

.swiper-pagination-bullet {
  background: #736357 !important;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "" !important;
  height: 16px;
  width: 32px;
  margin: auto;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  transform: skew(-45deg);
  right: -30px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after {
    right: -100px;
  }
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  left: -30px;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::after {
    left: -100px;
  }
}

.swiper-button-prev:active:after,
.swiper-button-next:active::after {
  height: 8px;
  width: 32px;
  top: 10px;
  transition: 0.5s;
}

.swiper-button-prev:active:after {
  transform: skew(-70deg);
}

.swiper-button-next:active::after {
  transform: skew(70deg);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  bottom: 0;
  content: "";
  height: 50px;
  width: 50px;
  margin: auto;
  position: absolute;
  top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e9e9e9;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    background: transparent;
  }
}

.swiper-button-prev::before {
  right: -30px;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::before {
    right: -100px;
  }
}

.swiper-button-next::before {
  left: -30px;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::before {
    left: -100px;
  }
}

.top_plan_desc-box {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_plan_desc-box {
    margin-top: 80px;
  }
}

.top_plan_desc {
  text-align: justify;
  font-size: 14px;
  line-height: 1.73;
}
@media screen and (min-width: 1600px) {
  .top_plan_desc {
    font-size: 15px;
  }
}

/* top_equipment
-----------------------------*/
.top_equipment_container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
@media screen and (min-width: 1600px) {
  .top_equipment_container {
    margin-top: 80px;
  }
}

.top_equipment_text {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e9e9e9;
  font-size: 15px;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .top_equipment_text {
    height: 90px;
  }
}
@media screen and (min-width: 1600px) {
  .top_equipment_text {
    font-size: 20px;
  }
}

.top_equipment_text__lg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top_equipment_text__lg {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (min-width: 1100px) {
  .top_equipment_text__lg {
    width: calc((100% - 24px - (100% - 60px) / 6) / 2);
  }
}

.top_equipment_text__sm {
  width: calc((100% - 12px) / 2);
}
@media screen and (min-width: 500px) {
  .top_equipment_text__sm {
    width: calc((100% - 24px) / 3);
  }
}
@media screen and (min-width: 768px) {
  .top_equipment_text__sm {
    width: calc((100% - 48px) / 5);
  }
}
@media screen and (min-width: 1100px) {
  .top_equipment_text__sm {
    width: calc((100% - 60px) / 6);
  }
}

/* top_safety
-----------------------------*/
.top_safety_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top_safety_list {
    gap: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .top_safety_list {
    margin-top: 80px;
  }
}

.top_safety_item {
  border: 1px solid #666666;
  padding: 32px;
  width: 100%;
  min-height: 190px;
}
@media screen and (min-width: 768px) {
  .top_safety_item {
    padding: 40px;
    width: calc((100% - 40px) / 2);
    min-height: 218px;
  }
}
@media screen and (min-width: 1100px) {
  .top_safety_item {
    padding: 50px 40px 40px;
    min-height: 228px;
  }
}
@media screen and (min-width: 1600px) {
  .top_safety_item {
    min-height: 240px;
  }
}

.top_safety_head {
  font-size: 18px;
  padding-left: 24px;
  border-left: 5px solid #736357;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .top_safety_head {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .top_safety_head {
    font-size: 24px;
  }
}

.top_safety_desc {
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (min-width: 1600px) {
  .top_safety_desc {
    padding-left: 30px;
    font-size: 17px;
  }
}

.top_safety-btn_wrapper {
  margin: 24px 0 0 auto;
  letter-spacing: 0.08em;
}

/* top_after-service
-----------------------------*/
.top_after-service {
  padding: 40px 0 80px;
}
@media screen and (min-width: 768px) {
  .top_after-service {
    padding: 100px 0 120px;
  }
}
@media screen and (min-width: 1100px) {
  .top_after-service {
    padding: 100px 0 150px;
  }
}
@media screen and (min-width: 1600px) {
  .top_after-service {
    padding: 100px 0 200px;
  }
}

.top_after-service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .top_after-service_list {
    gap: 40px;
  }
}
@media screen and (min-width: 1600px) {
  .top_after-service_list {
    margin-top: 80px;
  }
}

.top_after-service_item {
  background: #dfddd7;
  padding: 32px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_after-service_item {
    padding: 40px;
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 1100px) {
  .top_after-service_item {
    padding: 50px 40px;
  }
}

.top_after-service_head {
  font-size: 18px;
  padding-left: 24px;
  border-left: 5px solid #736357;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top_after-service_head {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .top_after-service_head {
    font-size: 24px;
  }
}

.top_after-service_desc {
  font-size: 14px;
  margin-top: 30px;
  line-height: 2.11;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .top_after-service_desc {
    padding-left: 30px;
    font-size: 17px;
  }
}

.top_after-service_overlay {
  width: 80px;
  height: 80px;
  background: #948989;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: -20px;
  right: -10px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top_after-service_overlay {
    top: -20px;
    right: -20px;
  }
}
@media screen and (min-width: 1100px) {
  .top_after-service_overlay {
    width: 100px;
    height: 100px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .top_after-service_overlay {
    width: 120px;
    height: 120px;
  }
}
.top_after-service_overlay span {
  font-size: 40px;
  font-family: "Cinzel";
}
@media screen and (min-width: 1100px) {
  .top_after-service_overlay span {
    font-size: 50px;
  }
}
@media screen and (min-width: 1600px) {
  .top_after-service_overlay span {
    font-size: 60px;
  }
}

/* top_location
-----------------------------*/
.top_location {
  padding: 80px 0 40px;
}
@media screen and (min-width: 768px) {
  .top_location {
    padding: 120px 0 50px;
  }
}
@media screen and (min-width: 1100px) {
  .top_location {
    padding: 150px 0 50px;
  }
}
@media screen and (min-width: 1600px) {
  .top_location {
    padding: 200px 0 100px;
  }
}

.top_location-lead {
  display: flex;
  flex-direction: column;
}

.top_location-lead_item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_location-lead_item {
    flex-direction: row;
  }
}
.top_location-lead_item:nth-child(2n) {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top_location-lead_item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .top_location-lead_text {
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .top_location-lead_text {
    margin-top: 0;
  }
}

.top_location-lead_img-box {
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top_location-lead_img-box {
    width: 50%;
    margin-top: 0;
  }
}
.top_location-lead_img-box span {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #fff;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .top_location-lead_img-box span {
    font-size: 14px;
  }
}

.top_location-lead_desc {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top_location-lead_desc {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 50px 0 0 40px;
  }
}
@media screen and (min-width: 1100px) {
  .top_location-lead_desc {
    line-height: 2;
  }
}
@media screen and (min-width: 1600px) {
  .top_location-lead_desc {
    justify-content: center;
    font-size: 16px;
    line-height: 2.5;
    padding-left: 70px;
  }
}

.top_location_list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 500px) {
  .top_location_list {
    margin-top: 120px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px) {
  .top_location_list {
    margin-top: 150px;
    gap: 50px 40px;
  }
}
@media screen and (min-width: 1600px) {
  .top_location_list {
    gap: 50px 70px;
    margin-top: 200px;
  }
}

@media screen and (min-width: 500px) {
  .top_location_item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .top_location_item {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (min-width: 1600px) {
  .top_location_item {
    width: calc((100% - 140px) / 3);
  }
}

.top_location_desc {
  font-size: 14px;
  line-height: 1.35;
  margin-top: 10px;
  word-break: break-all;
}
@media screen and (min-width: 1600px) {
  .top_location_desc {
    font-size: 19px;
  }
}

.top_location-map_img-box {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .top_location-map_img-box {
    margin-top: 120px;
  }
}
@media screen and (min-width: 1100px) {
  .top_location-map_img-box {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1600px) {
  .top_location-map_img-box {
    margin-top: 200px;
  }
}

.top_location-map_iframe-box {
  width: 100%;
  position: relative;
  padding-top: 45%;
}
.top_location-map_iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* top_life-info
-----------------------------*/
.top_life-info_container {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top_life-info_container {
    display: flex;
    gap: 40px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .top_life-info_container {
    gap: 50px;
  }
}

.top_life-info_img-box {
  height: 100%;
}

/* top_access
-----------------------------*/
.top_access_desc {
  margin-top: 70px;
  font-size: 12px;
  line-height: 1.67;
}

/* ---------------------------
js
----------------------------*/
.js_body.is-active {
  overflow: hidden;
}

.js_body {
  overflow: inherit;
}

.js_opening.is-active {
  opacity: 0;
  visibility: hidden;
}

/* header */
.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
@media screen and (min-width: 1100px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger_bar {
  background: #fff;
}

.js_hamburger.is-active .m_hamburger_bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger_bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger_bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.m_plan-summary_text-wrap__souldout {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.m_plan-summary__souldout {
  color: #fff;
  margin-top: 24px;
  font-size: 20px;
}

.one-story {
  display: inline-block !important;
  background-color: #000;
  color: #fff;
  padding: 0.25em 0.75em;
  vertical-align: 7px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .one-story {
    vertical-align: 5px;
  }
}

.m_plan .l_contents-lg {
  padding: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .m_plan .l_contents-lg {
    padding: 0;
  }
}
@media screen and (min-width: 1100px) {
  .m_plan .l_contents-lg {
    padding: 0;
  }
}

#plan {
  padding: 40px 0 80px;
}
@media screen and (min-width: 768px) {
  #plan {
    padding: 60px 0 120px;
  }
}
@media screen and (min-width: 1100px) {
  #plan {
    padding: 75px 0 150px;
  }
}

.top-landscape__notes {
  margin-top: 2rem;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-landscape__notes {
    font-size: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .top-landscape__notes {
    margin-top: 0;
    line-height: 1;
    font-size: 27px;
  }
}
.top-landscape__notes.-mt {
  margin-top: 100px;
}
.top-landscape__notes.-pd {
  padding: 0 16px;
}

.hide-area { /*モーダル表示をする場所をあらかじめ隠す*/
  display: none;
}

.modaal-fullscreen .modaal-content-container { /*full画面の色設定*/
  background: #333;
  color: #fff;
  text-align: center;
}
.modaal-fullscreen .modaal-content-container li {
  max-width: 800px;
  margin: 1rem auto;
}
.modaal-fullscreen .modaal-content-container li img {
  width: 100%;
}

.modaal-fullscreen .modaal-close { /*ボタンの色、位置*/
  background: none !important;
  right: 20px !important;
}

/*クローズボタンの×の色変更*/
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.m_contact__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .m_contact__wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .m_contact-tel {
    text-align: center;
  }
}
.m_contact-tel_link {
  font-size: 60px;
}
@media screen and (max-width: 1600px) {
  .m_contact-tel_link {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-btn {
    width: 100%;
  }
}
.p-contact-btn__link {
  flex-direction: column;
  height: auto;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact-btn__link {
    width: 100%;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
}
.p-contact-btn__text {
  padding-top: 30px;
  border-top: 1px solid #002662;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-btn__text {
    flex-direction: column;
    padding-top: 20px;
    gap: 20px;
  }
}
.p-contact-btn__head {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact-btn__head {
    width: 100%;
  }
}
.p-contact-btn__disc {
  border: none !important;
  padding: 0;
  font-size: 16px;
}
.p-contact-btn__arrow {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact-btn__arrow {
    margin: auto;
  }
}
.p-contact-btn__arrow:before {
  border-width: 5px 0 5px 10px;
}
@media screen and (max-width: 767px) {
  .p-contact-btn__arrow {
    width: 30px;
    height: 30px;
  }
  .p-contact-btn__arrow:before {
    border-width: 3.25px 0 3.25px 10px;
  }
}

.m_plan {
  padding-top: 80px;
  margin-top: -80px;
}

.cp-banner {
  position: absolute;
  right: -25px;
  top: -25px;
  width: 20%;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .cp-banner {
    right: -10px;
    top: -10px;
    width: 25%;
  }
}
.cp-banner img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 5px;
}

.info-banner {
  width: calc(100% - 24px);
  max-width: 800px;
  margin: auto;
}
.info-banner.-mb {
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .info-banner.-mb {
    margin: 0 auto 60px;
  }
}
.info-banner.-mt {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .info-banner.-mt {
    margin: 40px auto 0;
  }
}
.info-banner.-footer {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .info-banner.-footer {
    margin: 25px auto 0;
  }
}
.info-banner.-footer small {
  display: block;
  text-align: right;
  font-size: 20px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .info-banner.-footer small {
    font-size: 16px;
  }
}
.info-banner img {
  width: auto;
  height: auto;
  max-width: 100%;
}/*# sourceMappingURL=style.css.map */