/* index.php reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== main visual ====== */
/* main visual */
#index .mv {
  width: 100%;
  height: min(calc((var(--vh) * 100) - 100px), 800px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index .mv .mv_tent {
  padding-top: 30px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
#index .mv .mv_tent .mv_tent_img01,
#index .mv .mv_tent .mv_tent_img02 {
  width: 20%;
  max-width: 220px;
  height: auto;
  position: absolute;
}
#index .mv .mv_tent .mv_tent_img01 {
  top: 20px;
  left: 30px;
}
#index .mv .mv_tent .mv_tent_img02 {
  top: 20px;
  right: 30px;
}
#index .mv .mv_tent h1 {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 120px;
  background: var(--main-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  line-height: 0;
  overflow: hidden;
}
#index .mv .mv_tent h1 img {
  width: auto;
  height: 80%;
}

#index .mv .mv_room {
  width: 100%;
  height: calc(100% - 150px);
  position: relative;
  z-index: 1;
}
#index .mv .mv_copy {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 100;
  writing-mode: vertical-rl;
}
#index .mv .mv_copy div {
  width: fit-content;
  height: auto;
  margin: 0 0 0 15px;
}
#index .mv .mv_copy span {
  display: inline-block;
  background: #ffd13b;
  padding: 10px 4px 10px 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8em;
  color: var(--text-color);
  line-height: 1.4;
}

/* slider */
#index .mv .mv_box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: visible;
  clip-path: polygon(7% 0%, 93% 0%, 100% 100%, 0% 100%);
}
#index .mv .mv_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  background-size: cover;
  background-position: center;
}
#index .mv .mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top 40% left 50%;
}

#index .mv .mv_box li {
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s ease 0s;
}
#index .mv .mv_box li.mv-fadein {
  overflow: visible;
  opacity: 1;
  transition: all 0.8s ease 0s;
}

/* pager（矢印） */
.mv-pager {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.mv-pager button {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1081px) {
  #index .mv {
    width: 100%;
    height: clamp(500px, calc((var(--vh) * 76) - 100px), 780px);
    /* height: calc((var(--vh) * 76) - 100px);
    min-height: auto; */
    position: relative;
    z-index: 1;
  }
  #index .mv .mv_copy {
    right: 8%;
  }
  #index .mv .mv_copy div {
    margin: 0 0 0 10px;
  }
  #index .mv .mv_copy span {
    padding: 10px 5px 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  #index .mv {
    width: 100%;
    /*  height: calc(var(--vh) * 70); */
    height: clamp(460px, calc((var(--vh) * 70) - 100px), 520px);
    position: relative;
    z-index: 1;
  }
  #index .mv .mv_copy {
    writing-mode: inherit;
    right: auto;
    top: auto;
    left: 0;
    bottom: 0;
  }
  #index .mv .mv_copy div {
    margin-left: 0;
  }
  #index .mv .mv_copy span {
    margin: 0 0 10px 0;
    padding: 5px 10px 5px 10px;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 431px) {
  #index .mv {
    width: 100%;
    /* height: calc(var(--vh) * 60); */
    position: relative;
    z-index: 1;
  }
  #index .mv .mv_tent h1 {
    height: 85px;
  }
  #index .mv .mv_tent h1 img {
    height: 80%;
  }
  #index .mv .mv_room {
    height: calc(100% - 130px);
  }
  #index .mv .mv_copy span {
    margin: 0 0 5px 0;
    padding: 1vw 3vw 1vw 3vw;
    font-size: 1.4em;
  }
}

/* introducs */
#index .introduction {
  position: relative;
  z-index: 1;
}
#index .introduction .introduction_img01,
#index .introduction .introduction_img02 {
  width: 20%;
  max-width: 200px;
  height: auto;
  position: absolute;
  z-index: 2;
}
#index .introduction .introduction_img01 {
  top: -180px;
  left: 6%;
}
#index .introduction .introduction_img02 {
  top: -180px;
  right: 6%;
}

#index .intro_box {
  margin-top: 280px;
  margin-bottom: 200px;
  padding: 20px 0;
  background: var(--bg-color);
  position: relative;
  z-index: 1;
}
#index .intro_box::before,
#index .intro_box::after {
  content: "";
  display: block;
  width: 100vw;
  height: 140px;
  background: url("../images/index/intor_bg_pc.png") center top no-repeat;
  background-size: cover;
  position: absolute;
  z-index: -1;
}
#index .intro_box::before {
  top: -120px;
  left: 0;
}
#index .intro_box::after {
  bottom: -120px;
  left: 0;
  transform: scale(1, -1);
}
#index .intro_box .intro_txt {
  width: 100%;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.8;
}
#index .intro_box .intro_img {
  width: 20%;
  max-width: 180px;
  position: absolute;
  top: -210px;
  left: calc(50% - 90px);
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .intro_box {
    margin-bottom: 16vw;
  }
  #index .intro_box::before,
  #index .intro_box::after {
    height: 11vw;
  }
  #index .intro_box::before {
    top: -10vw;
  }
  #index .intro_box::after {
    bottom: -10vw;
  }
  #index .intro_box .intro_wpap {
    padding: 4vw 6vw 0 6vw;
  }
  #index .intro_box .intro_wpap::before,
  #index .intro_box .intro_wpap::after {
    width: 12vw;
    height: 18vw;
  }
  #index .intro_box .intro_wpap::before {
    position: absolute;
    top: 0;
    left: 2px;
  }
  #index .intro_box .intro_wpap::after {
    position: absolute;
    bottom: 0;
    right: 2px;
    transform: scale(-1, -1);
  }
  #index .intro_box .intro_txt {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 811px) {
  /*  #index .intro_box .intro_wpap{
    display: block;
    padding: 10vw;
  }*/
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .intro_box {
    padding: 0;
    font-size: clamp(14px, calc(100vw / 28), 17px);
  }
  #index .intro_box::before,
  #index .intro_box::after {
    height: 14vw;
    background-image: url("../images/index/intor_bg_sp.png");
  }
  #index .intro_box::before {
    top: -13vw;
  }
  #index .intro_box::after {
    bottom: -13vw;
  }
  #index .intro_box .intro_wpap {
    display: block;
    padding: 5vw 3vw;
    width: 100%;
  }
  #index .intro_box .intro_wpap::before,
  #index .intro_box .intro_wpap::after {
    width: 16vw;
    height: 22vw;
  }
  #index .intro_box .intro_wpap::before {
    position: absolute;
    top: 0;
    left: -10px;
  }
  #index .intro_box .intro_wpap::after {
    position: absolute;
    right: -10px;
    bottom: auto;
    top: 0;
    transform: scale(-1, 1);
  }
  #index .intro_box .intro_txt {
    width: 100%;
    font-size: 100%;
    line-height: 1.8;
    text-align: center;
  }
  #index .intro_box .intro_img {
    width: 30vw;
    left: calc(50% - 15vw);
  }
}
@media screen and (max-width: 431px) {
  #index .intro_box {
    margin: 32vw 0;
  }
  #index .intro_box .intro_img {
    width: 24vw;
    left: calc(50% - 12vw);
    top: -30vw;
  }
  #index .introduction .introduction_img01 {
    top: -20vw;
    left: 6%;
  }
  #index .introduction .introduction_img02 {
    top: -20vw;
    right: 6%;
  }
}
/* facility */
#index .about {
  padding-top: 20px;
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}
#index .about::before,
#index .about::after {
  content: "";
  display: block;
  width: 20%;
  height: 20vh;
  background: url(../images/index/about_bg.png) center top no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}
#index .about::before {
  top: 40px;
  left: 0;
}
#index .about::after {
  top: 40px;
  right: 0;
  transform: scale(-1, 1);
}
#index .about .about_hl1 {
  width: fit-content;
  margin: 20px auto;
  padding: 0 10px 20px;
  color: var(--text-color);
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8em;
  font-weight: bolder;
  line-height: 1;
  border-bottom: 6px dotted var(--main-color);
  position: relative;
  z-index: 1;
}
#index .about .about_hl1::before,
#index .about .about_hl1::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../images/index/about_hl.png) no-repeat center center;
  background-size: contain;
}
#index .about .about_hl1 em {
  background: #ffd13b;
  border-radius: 3px;
  padding: 0 5px;
}
#index .about .about_hl1::before {
  position: absolute;
  top: 0;
  left: -2em;
}
#index .about .about_hl1::after {
  position: absolute;
  top: 0;
  right: -2em;
  transform: scale(-1, 1);
}
#index .about .about_intro {
  width: 100%;
  margin: 40px auto 60px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.8;
}
#index .about .facility_box {
  margin: 120px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6%;
}
#index .about .facility_box .facility_img {
  width: 26%;
  max-width: 420px;
  box-shadow: -80px 60px 0 #fbd1bf;
  line-height: 0;
}
#index .about .facility_box .facility_cntns {
  width: 68%;
  max-width: 620px;
  padding: 30px 50px 20px;
  background: #ffffff;
  border: 5px dotted var(--text-color);
  border-radius: 20px;
  position: relative;
}
#index .about .facility_box .facility_cntns h3 {
  width: fit-content;
  background: url(../images/index/facility_hl.png) no-repeat top left;
  background-size: contain;
  padding: 0 30px 40px 80px;
  margin: -10px auto 15px -50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8em;
  font-weight: bolder;
  color: var(--main-color);
}
#index .about .facility_box .facility_cntns h3 span {
  padding: 2px 1.5em 2px 5px;
  position: relative;
  z-index: 1;
}
#index .about .facility_box .facility_cntns h3 span::before {
  content: "";
  display: block;
  margin: auto;
  height: 1em;
  width: 1em;
  background: url("../images/common/icon_02.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.25em;
}
#index .about .facility_box .facility_cntns .facility_txt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.8;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .about::before,
  #index .about::after {
    height: 14vh;
  }
  #index .about::before {
    top: 40vw;
  }
  #index .about::after {
    top: 40vw;
  }
  #index .about .facility_box .facility_cntns {
    padding: 3vw 5vw;
    margin-bottom: 20px;
  }
  #index .about .about_intro {
    font-size: 1.2em;
  }
  #index .about .about_hl1 {
    font-size: 1.6em;
    line-height: 1.6;
  }
  #index .about .facility_box .facility_cntns h3 {
    margin: -10px auto 0 -40px;
    padding: 0 10px 20px 56px;
    font-size: 1.6em;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .about {
    margin-bottom: 12vw;
    padding: 2vw 0;
  }
  #index .about::before,
  #index .about::after {
    width: 26%;
  }
  #index .about::before {
    top: 46vw;
  }
  #index .about::after {
    top: 46vw;
  }
  #index .about .facility_box {
    justify-content: center;
    margin: 12vw 0;
  }
  #index .about .facility_box .facility_img {
    width: 30%;
  }
  #index .about .facility_box .facility_cntns {
    width: 60%;
    max-width: none;
    padding: 3vw 5vw;
    margin: 0;
  }
  #index .about .facility_box .facility_cntns h3 {
    padding: 0 0 4vw 12vw;
    margin: 3vw auto 2vw -5vw;
    font-size: 1.5em;
  }
}

@media screen and (max-width: 431px) {
  #index .about::before {
    top: 88vw;
  }
  #index .about::after {
    top: 88vw;
  }
  #index .about .facility_box .facility_img {
    width: 50%;
    margin: 3vw 8vw 3vw auto;
    order: 2;
  }
  #index .about .facility_box .facility_cntns {
    width: 100%;
    margin: 3vw auto;
    order: 1;
  }
  #index .about .about_hl1 {
    line-height: 1.6;
    padding: 0 1vw 2vw;
  }
  #index .about .about_intro {
    margin: 4vw auto 6vw;
    font-size: 1.1em;
  }
}

/* 四角いアニメーション */
.anime-01 {
  width: 75%;
  position: relative;
  margin: 0 -40% 0 auto;
  z-index: -1;
}
.anime-01 span {
  display: block;
}
.anime-01-1 {
  width: 90%;
  height: 140px;
  background: #fbd1bf;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .anime-01-1 {
    width: 28vw;
    height: 15vw;
    position: absolute;
    top: 4vw;
    left: 0;
  }
}

.anime-01-1.is-active {
  animation: anime1-1 1s cubic-bezier(0.6, 1, 0.8, 1) 1 forwards;
}
@keyframes anime1-1 {
  20% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  100% {
    opacity: 0.4;
  }
}

.anime-01-2 {
  width: 70%;
  height: 120px;
  background: #fbd1bf;
  position: absolute;
  top: 0;
  left: 120px;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .anime-01-2 {
    width: 38vw;
    height: 18vw;
    position: absolute;
    top: 0;
    left: 20vw;
  }
}
.anime-01-2.is-active {
  animation: anime1-2 1s cubic-bezier(0.25, 1, 0.7, 1) 1 forwards;
}
@keyframes anime1-2 {
  20% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  100% {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  #index .about .facility_box .facility_cntns .anime-01 {
    margin-top: 0;
    position: absolute;
    height: 20vh;
    bottom: 0;
  }
}
/* ====== gallery ====== */
#index .gallery {
  padding: 60px 0;
  margin-bottom: 180px;
  background: var(--bg-color);
  position: relative;
  z-index: 1;
}
#index .gallery::before,
#index .gallery::after {
  content: "";
  display: block;
  width: 100vw;
  height: 160px;
  background: url(../images/index/gallery_bg2_pc.png) no-repeat bottom center;
  background-size: cover;
}

#index .gallery::before {
  position: absolute;
  top: -150px;
  left: 0;
}
#index .gallery::after {
  position: absolute;
  bottom: -150px;
  left: 0;
  transform: scale(1, -1);
}
#index .gallery .gallery_hl {
  width: fit-content;
  margin: 0 auto 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8em;
  font-weight: bolder;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}
#index .gallery .gallery_hl span {
  background: var(--bg-color);
  padding: 0 45px;
}
#index .gallery .gallery_hl span::before {
  content: "";
  display: block;
  margin: auto;
  height: 32px;
  width: 32px;
  background: url("../images/common/icon_03.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
}
#index .gallery .gallery_hl span::after {
  content: "";
  display: block;
  margin: auto;
  height: 32px;
  width: 32px;
  background: url("../images/common/icon_03.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
}
#index .gallery .gallery_hl::before {
  content: "";
  display: block;
  background: url(../images/common/cont_hr01.png) repeat-x top center;
  background-size: auto 100%;
  width: 100vw;
  height: 14px;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(-50vw + (90px + 10%));
  z-index: -1;
}
#index .gallery .gallery_box {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}
#index .gallery .gallery_box .gallery_pickup {
  width: 360px;
  padding: 20px;
  border: 0;
  box-shadow: 3px 3px 6px #cccc;
}
#index .gallery .gallery_box .gallery_pickup h3 {
  width: 100%;
  margin-bottom: 10px;
}
#index .gallery .gallery_box .gallery_pickup .pickup_img {
  width: 32vw;
  height: 32vw;
  max-width: 320px;
  max-height: 320px;
}
#index .gallery .gallery_box .gallery_pickup figcaption {
  padding: 10px 0;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
#index .gallery .gallery_box .gallery_list {
  padding: 0;
  width: calc(100% - (360px + 80px));
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
#index .gallery .gallery_box .gallery_list li {
  width: 16vw;
  height: 16vw;
  max-width: 240px;
  max-height: 240px;
  border: 4px #ffffff solid;
  box-shadow: 8px 8px 0 #ffd13b88;
  border-radius: 0;
  overflow: hidden;
}
#index .gallery .gallery_box .gallery_list li:nth-of-type(even) {
  box-shadow: 8px 8px 0 #77be6488;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .gallery {
    padding: 6vw 0;
    margin-bottom: 10vw;
  }
  #index .gallery::before,
  #index .gallery::after {
    background-image: url(../images/index/gallery_bg2_sp.png);
    height: 16vw;
  }
  #index .gallery::before {
    top: -15vw;
  }
  #index .gallery::after {
    bottom: -15vw;
  }
  #index .gallery .gallery_box {
    gap: 5vw;
    padding: 6vw 0 3vw;
  }
  #index .gallery .gallery_box .gallery_pickup {
    width: 38%;
  }
  #index .gallery .gallery_box .gallery_pickup .pickup_img {
    width: 100%;
    max-width: none;
  }
  #index .gallery .gallery_box .gallery_list {
    width: calc(100% - (38% + 5vw));
    gap: 2vw;
  }
  #index .gallery .gallery_box .gallery_list li {
    width: 15vw;
    height: 15vw;
    border: 3px #ffffff solid;
    box-shadow: 6px 6px 0 #ffd13b88;
  }
  #index .gallery .gallery_box .gallery_list li:nth-of-type(even) {
    box-shadow: 6px 6px 0 #77be6488;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .gallery {
    padding: 6vw 0;
    margin-bottom: 14vw;
  }
  #index .gallery .gallery_box .gallery_pickup {
    width: 80%;
    padding: 2vw;
  }
  #index .gallery .gallery_hl::before {
    height: 2vw;
    position: absolute;
    top: calc(50% - 1vw);
  }
  #index .gallery .gallery_box .gallery_pickup .pickup_img {
    height: 42vw;
    max-height: none;
  }
  #index .gallery .gallery_box .gallery_list {
    width: 100%;
    justify-content: center;
    gap: 3vw;
  }
  #index .gallery .gallery_box .gallery_list li {
    width: 25vw;
    height: 25vw;
  }
}
@media screen and (max-width: 430px) {
}

/* ====== disclosure ====== */
.disclosure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ffffff;
  z-index: 0;
}
#index .disclosure .disclosure_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
  padding: 40px 0;
  background: url(../images/index/disclosure_bg.png) no-repeat bottom right 3%;
  background-size: 20%;
}
#index .disclosure .disclosure_box .disclosure_img {
  width: 42vw;
  height: 26vw;
  overflow: hidden;
  line-height: 0;
}
#index .disclosure .disclosure_box .disclosure_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index .disclosure .disclosure_box .disclosure_img.sp {
  display: none;
}
#index .disclosure .disclosure_box .disclosure_cntns {
  width: 50vw;
  max-width: 660px;
  padding: 0 0 0 5vw;
  position: relative;
  z-index: 1;
}
#index .disclosure .disclosure_box .disclosure_cntns h3 {
  width: fit-content;
  display: block;
  margin-bottom: 40px;
  padding: 0 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  transition: 0.8s;
  position: relative;
  z-index: 1;
}
#index .disclosure .disclosure_box .disclosure_cntns h3::before {
  content: "";
  display: block;
  margin: auto;
  height: 32px;
  width: 32px;
  background: url("../images/common/icon_05.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
#index .disclosure .disclosure_box .disclosure_cntns h3::after {
  content: "";
  display: block;
  margin: auto;
  height: 32px;
  width: 32px;
  background: url("../images/common/icon_05.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
#index .disclosure .disclosure_box .disclosure_cntns .disclosure_txt {
  font-size: 1.2em;
  line-height: 1.8;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  #index .disclosure .disclosure_list_box {
    gap: 20px;
  }
  #index .disclosure .disclosure_box .disclosure_img {
    height: 40vw;
  }
  #index .disclosure .disclosure_box .disclosure_cntns {
    width: 56vw;
  }
  #index .disclosure .disclosure_box .disclosure_cntns dt {
    margin-bottom: 30px;
  }
  #index .disclosure .disclosure_box .disclosure_cntns h3 {
    font-size: 1.2em;
    font-weight: bold;
  }
  #index .disclosure .disclosure_box .disclosure_cntns .disclosure_txt {
    font-size: 100%;
    line-height: 1.8;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  #index .disclosure .disclosure_box {
    justify-content: center;
    margin-bottom: 6vw;
    background-size: 36%;
  }
  #index .disclosure .disclosure_box .disclosure_cntns {
    width: 100%;
    padding: 0 5vw;
    margin-bottom: 20px;
  }
  #index .disclosure .disclosure_box .disclosure_img.pc {
    display: none;
  }
  #index .disclosure .disclosure_box .disclosure_img.sp {
    display: block;
    width: 90%;
    height: 46vw;
    margin: 30px auto;
  }
  #index .disclosure .disclosure_box .disclosure_cntns dt {
    margin-bottom: 8vw;
    position: relative;
    z-index: 1;
  }
  #index .disclosure .disclosure_box .disclosure_cntns h3 {
    margin: 0 auto 3vw;
    text-align: center;
    font-size: clamp(24px, calc(90vw / 14), 32px);
    font-weight: bold;
  }
  #index .disclosure .disclosure_box .disclosure_cntns dd {
    font-size: 100%;
  }
  #index .disclosure .disclosure_box .disclosure_cntns .disclosure_txt {
    width: 90%;
    margin: 0 auto 3vw;
    line-height: 1.8;
  }
}

/*--- access ---*/
.access {
  padding: 80px 0 120px;
  position: relative;
  z-index: 1;
  background: var(--bg-color);
}
.access::before,
.access::after {
  content: "";
  display: block;
  width: 100vw;
  height: 40px;
  background: url(../images/common/cont_hr02.png) repeat-x left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
}
.access::before {
  top: 30px;
}
.access::after {
  bottom: 30px;
}
.access .info_box {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 20px;
  margin: 30px auto 60px;
}
.access .info_box .info_list {
  max-width: 720px;
  width: 58%;
  margin: 30px auto 30px 0;
}

.access .info_box .info_list {
  padding: 30px 40px;
  background: #ffffff;
  border: 4px solid var(--main-color);
  border-radius: 10px;
}
.access .info_box .info_list .info_item {
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 20px;
}
.access .info_box .info_list .info_item dt {
  display: block;
  width: fit-content;
  margin-left: -1em;
  margin: 0 0 5px;
  padding: 2px 8px 5px;
  font-size: 70%;
  color: #ffffff;
  background: var(--main-color);
  border-radius: 5px;
}
.access .info_box .info_list .info_item dd {
  display: block;
  padding-left: 1em;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.access .info_box .info_list .info_item dd::before {
  content: "・";
  margin-left: -1em;
}

.access .info_box .contact_img01 {
  max-width: 320px;
  width: 30%;
  overflow: hidden;
  margin-bottom: 20px;
}

/* タブレット用のスタイル */
@media screen and (max-width: 1081px) {
  .access .info_box .info_list {
    padding: 3vw 4vw;
  }
  .access .info_box .info_list dt {
    padding: 3px 6px 3px;
    font-size: 80%;
    margin-bottom: 3px;
  }
  .access .info_box .info_list dd {
    margin: 0 0 5px;
    line-height: 1.2;
  }
  .access .info_box .contact_img01 {
    margin: 20px 0 0;
  }
}
/* スマートフォン用のスタイル */
@media screen and (max-width: 768px) {
  .access .info_box {
    margin: 6vw 0;
  }
  .access .info_box .info_list {
    width: 90%;
    margin: 0 auto;
    padding: 5vw 5vw;
    border: 2px solid var(--main-color);
  }
  .access .info_box .contact_img01 {
    width: 60%;
    margin-left: 20vw;
  }
}

@media screen and (max-width: 391px) {
}
