@keyframes scroll {
  0% {
    transform: translateY(9em);
  }

  100% {
    transform: translateY(20em);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

.anm_scroll {
  position: absolute;
  top: 149px;
  left: 0;
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 60s linear infinite;
  animation-play-state: running;
  --offset: 20vw;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  width: fit-content;
  white-space: nowrap;
  display: flex;
}

.anm_scroll .ani_text {
  color: #fbd7e7;
  opacity: 20%;
  font-size: 180px;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 0;
}

@media (769px <=width <=1366px) {
  .anm_scroll .ani_text {
    font-size: min(130px, 12vw);
  }
}

.home_page .key {
  --height: 56vw;
  --min-height: 550px;
  --max-height: 1000px;
  height: var(--height);
  min-height: var(--min-height);
  max-height: var(--max-height);
  font-size: 0.625em;
  background-color: #594b47;

}

#myvideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  opacity: .7;
}

.home_page .key .inner {
  position: relative;
  max-width: 1280px;
  padding: 0;
  width: 100%;
  height: calc(100vh + var(--wrapper));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1921px) {
  .home_page .key .inner {
    height: calc(66vh + var(--wrapper));
  }
}

.home_page .key .key_text {
  position: relative;
  /* background-color: rgba(89, 75, 71, 0.3);*/
}

.home_page .key .key_text .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 23px;
}

.home_page .key .catch {
  font-size: 10px;
}

.home_page .key h2,
.home_page .key p {
  color: #fff;
  font-weight: 500;
}

.home_page .key h2 {
  margin-bottom: 8px;
  font-size: 4.6em;
  line-height: 1.5217391304;
  font-family: var(--f-mplus);
  letter-spacing: 0.16em;
}

.home_page .key p {
  font-size: 2.6em;
  line-height: 1.9230769231;
  letter-spacing: 0.1em;
}

.home_page .key p span {
  display: inline-block;
}

.home_page .key .key-circle {
  font-size: 10px;
  margin-top: 3.8em;
  display: flex;
  align-items: center;
}

.home_page .key .key-circle .box {
  width: 23em;
  height: 23em;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
  position: relative;
}

.home_page .key .key-circle .box div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/key-shape-bg.png);
}

.home_page .key .key-circle .box::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26em;
  height: 26em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/key-shape-circle.png);
}

.home_page .key .key-circle .box p {
  font-size: 1em;
  text-align: center;
}

@media (min-width: 1281px) {
  .home_page .key .key-circle .box p {
    padding-bottom: 4px;
  }
}

.home_page .key .key-circle .box p span {
  font-weight: bold;
  display: block;
}

.home_page .key .key-circle .box p .t1 {
  font-size: 2.3em;
  line-height: 1.3913043478;
  margin-bottom: 0.4347826em;
}

.home_page .key .key-circle .box p .t2 {
  font-size: 1.8em;
  line-height: 1.4444444444;
  font-weight: 500;
}

.home_page .key .key-circle .box:nth-child(2) {
  margin: 0 1em;
}

.home_page .key .scroll {
  position: absolute;
  bottom: 0;
  left: 40px;
  font-size: 12px;
}

.home_page .key .scroll a {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

.home_page .key .scroll a::after,
.home_page .key .scroll a::before {
  display: block;
  content: "";
  width: 1px;
  margin-top: 11px;
}

.home_page .key .scroll a::after {
  background-color: #fff;
  height: 15em;
}

.home_page .key .scroll a::before {
  height: 40px;
  background-color: var(--main-color);
  animation: scroll 1.5s infinite alternate-reverse forwards;
}

.home_page .topic_path {
  display: none;
}

.home_page .idx-title {
  position: relative;
  font-size: 10px;
}

.home_page .idx-title.center {
  text-align: center;
}

.home_page .idx-title.white h3,
.home_page .idx-title.white p {
  color: #fff;
}

.home_page .idx-title.white p::first-letter {
  color: #fff;
}

.home_page .idx-title.white p::before {
  filter: brightness(0) invert(1);
}

.home_page .idx-title h3,
.home_page .idx-title p {
  color: var(--clr1);
  font-weight: 500;
}

.home_page .idx-title h3 {
  font-size: 3.6em;
  line-height: 1;
  letter-spacing: 0.14em;
}

.home_page .idx-title p {
  font-size: 18px;
  line-height: 1;
  position: relative;
  padding-left: 26px;
  margin-top: 17px;
  text-transform: uppercase;
  display: inline-block;
}

.home_page .idx-title p::first-letter {
  color: var(--main-color);
}

.home_page .idx-title p span {
  color: var(--main-color);
}

.home_page .idx-title p::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 19px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/home-h3-icon.png);
}

@media screen and (min-width: 1921px) {
  .home_page .key {
    --max-height: 1300px;
    --height: 50vw;
  }
}

@media only screen and (max-width: 1560px) and (min-width: 769px) and (orientation: landscape) {
  .home_page .key {
    font-size: min(0.625em, 0.75vw);
  }
}

@media (769px <=width <=1560px) {
  .home_page .key {
    min-height: 100vh;
    --max-height: 100vh;
  }
}

@media (769px <=width <=1440px) {
  .home_page .key .scroll {
    left: 20px;
  }
}

@media (769px <=width <=1366px) {

  .home_page .key .key-circle,
  .home_page .key .catch {
    font-size: 8px;
  }

  .home_page .key .scroll {
    left: 10px;
  }

  .home_page .key .inner {
    width: 85%;
  }

  .home_page .key .key_text .item {
    padding-top: 0;
  }

  .home_page .key .key-circle {
    margin-top: 3em;
  }
}

@media only screen and (max-width: 1170px) and (min-width: 769px) {
  .home_page .key {
    font-size: min(0.8vw, 1vh);
  }
}

section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.idx-news {
  background-color: rgb(254, 243, 247);
  padding-top: 120px;
  padding-bottom: 110px;
}

.idx-news .idx-title {
  margin-bottom: 43px;
}

.idx-news .idx-title h3 {
  font-size: 2.8em;
}

.idx-news .left {
  max-width: 280px;
  width: 25%;
}

.idx-news .new-btn button {
  cursor: pointer;
  max-width: 280px;
  width: 100%;
  display: block;
  background-color: #fff;
  border: 0;
  margin: 12px 0;
  min-height: 70px;
  color: var(--main-color);
  border-radius: 35px;
  font-family: var(--f-zen-gothic);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 18px;
  transition: all 0.3s;
}

.idx-news .new-btn button.active {
  background-color: var(--main-color);
  color: #fff;
}

.idx-news .new-btn button.active:hover {
  background-color: var(--main-color);
}

.idx-news .new-btn button:hover {
  background-color: #f1e3e5;
}

.idx-news .right {
  max-width: 920px;
  width: 72%;
  background-color: #fff;
  padding-top: 27px;
  padding-bottom: 61px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 769px) {
  .idx-news .right::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100vw;
    height: 100%;
    border-radius: 30px;
  }
}

.idx-news .new-content {
  display: none;
}

.idx-news .new-content.active {
  display: block;
}

.idx-news .list {
  width: 100%;
  max-width: 860px;
  margin-right: 0;
  margin-left: auto;
  padding-left: 20px;
}

.idx-news .list li:last-child a {
  border-bottom: 0;
}

.idx-news .list a {
  text-decoration: none;
  display: flex;
  border-bottom: 1px solid #e4e4e4;
  padding: 43px 0 33px;
}

.idx-news .list a span {
  display: block;
}

.idx-news .list .date {
  width: 160px;
  height: 42px;
  font-size: 1.125em;
  color: var(--main-color);
  background-color: #fdf5f7;
  border-radius: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.idx-news .list .date.column {
  color: var(--clr2);
  background-color: #c3e9f7;
}

.idx-news .list .info {
  width: calc(100% - 160px);
  padding-left: 39px;
  padding-top: 6px;
}

.idx-news .list .info span {
  letter-spacing: 0.1em;
}

.idx-news .list .title {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.125em;
  color: #3d3d3d;
  line-height: 1.6;
  padding-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.idx-news .list .txt {
  font-weight: 400;
  color: var(--clr1);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
}

.idx-news .btn-group {
  margin-top: 18px;
}

.idx-news .btn-group.flex {
  justify-content: center;
  gap: 11px;
}

.idx-news .btn-group .btn {
  max-width: 228px;
  margin-bottom: 0;
}

.idx-news .btn-group .btn a {
  border-radius: 22px;
  min-height: 45px;
  font-size: 16px;
}

.idx-news .news-banner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  position: relative;
  margin-top: 8em;
  font-size: min(10px, 0.72vw);
  padding-top: 6em;
  padding-left: 4em;
  padding-right: 4em;
  padding-bottom: 6.4em;
}

.idx-news .news-banner::before {
  position: absolute;
  content: "";
  inset: 8px;
  background-image: url(../images/news-bg-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.idx-news .news-banner .banner-inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.idx-news .news-banner .bn-left p {
  color: #fff;
  font-size: 2.4em;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: bold;
}

.idx-news .news-banner .bn-left p span {
  display: inline-block;
}

.idx-news .news-banner .bn-right {
  display: flex;
}

.idx-news .news-banner .bn_tel {
  display: table;
  margin-bottom: 0;
  font-size: 1em;
}

@media (min-width: 1281px) {
  .idx-news .news-banner .bn_tel {
    position: relative;
    left: 1px;
    top: 9px;
  }
}

.idx-news .news-banner .bn_tel a {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
  padding-left: 4.9em;
}

.idx-news .news-banner .bn_tel a::before {
  position: absolute;
  content: "";
  top: 1.8em;
  left: 0;
  width: 3.7em;
  height: 3.7em;
  background-color: #fff;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='74px' height='74px'%3E%3Cpath fill-rule='evenodd' fill='rgb(255, 255, 255)' d='M73.297,55.125 L73.297,69.526 C73.298,71.668 71.643,73.442 69.509,73.589 C67.729,73.712 66.276,73.780 65.151,73.780 C29.161,73.780 -0.012,44.605 -0.012,8.610 C-0.012,7.489 0.048,6.031 0.175,4.252 C0.324,2.122 2.100,0.466 4.239,0.466 L18.640,0.466 C19.687,0.466 20.564,1.256 20.669,2.297 C20.763,3.235 20.848,3.982 20.930,4.548 C21.739,10.195 23.398,15.688 25.849,20.842 C26.236,21.658 25.983,22.631 25.251,23.149 L16.462,29.434 C21.835,41.952 31.814,51.932 44.336,57.310 L50.608,48.536 C51.137,47.795 52.119,47.540 52.941,47.927 C58.093,50.376 63.586,52.028 69.232,52.838 C69.799,52.915 70.544,53.008 71.472,53.097 C72.512,53.203 73.302,54.080 73.301,55.125 L73.297,55.125 Z'/%3E%3C/svg%3E");
}

.idx-news .news-banner .bn_tel a span {
  display: block;
  line-height: 1;
}

.idx-news .news-banner .bn_tel .t1 {
  font-size: 1.9em;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.idx-news .news-banner .bn_tel .num {
  font-size: 3.2em;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 0.1875em;
  white-space: nowrap;
}

.idx-news .news-banner .bn-left {
  position: relative;
  padding-right: 3.3em;
  margin-right: 4.7em;
}

.idx-news .news-banner .bn-left::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 2px;
  height: 7em;
  opacity: 10%;
  background-color: white;
}

.idx-news .news-banner .btn-group {
  margin-left: 11.84em;
  margin-top: 0;
  width: 36.16em;
}

.idx-news .news-banner .btn-group .btn {
  max-width: 226px;
  width: 100%;
}

.idx-news .news-banner .btn-group .btn a {
  background: unset;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--main-color);
  min-height: 3.8888888889em;
  border-radius: 35px;
}

@media only screen and (min-width: 769px) {
  .idx-news .news-banner .btn-group .btn a {
    font-size: 2.88em;
  }
}

.idx-news .news-banner .btn-group .btn a::after {
  background-color: var(--main-color);
}

@media (min-width: 1281px) {
  .idx-news .left {
    padding-top: 11px;
  }
}

@media (769px <=width <=1280px) {
  .idx-news .new-btn button {
    font-size: 16px;
  }

  .idx-news .right {
    padding: 30px 0;
  }

  .idx-news .list a {
    padding: 20px 0;
  }

  .idx-news .list .info {
    padding-left: 20px;
    padding-top: 0;
  }

  .idx-news .list .title {
    padding-bottom: 5px;
  }
}

@media (769px <=width <=1024px) {
  .idx-news .idx-title h3 {
    font-size: 2.6em;
  }
}

@media (769px <=width <=991px) {
  .idx-news {
    padding: 80px 0;
  }

  .idx-news .btn-group {
    margin-top: 0;
  }

  .idx-news .btn-group .btn {
    width: 45%;
  }

  .idx-news .left {
    width: 33%;
  }

  .idx-news .right {
    width: 65%;
  }

  .idx-news .list .date {
    width: 130px;
  }

  .idx-news .list .info {
    width: calc(100% - 130px);
  }
}

.idx01 {
  position: relative;
  padding-top: 381px;
  padding-bottom: 86px;
}

.idx01::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: min(578px, 40vw);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx01-bg.jpg);
}

.idx01 .inner_big {
  position: relative;
}

.idx01-left {
  max-width: 640px;
  width: 50%;
  padding-top: 279px;
}

.idx01-right {
  max-width: 560px;
  width: 50%;
  background-color: #fff;
  padding-top: 102px;
  position: relative;
  z-index: 1;
  border-radius: 80px 0 0 0;
}

.idx01-right::before {
  position: absolute;
  content: "";
  border-radius: 80px 0 0 0;
  z-index: -1;
  top: 0;
  left: -80px;
  width: 100vw;
  height: 100%;
  background-color: #fff;
}

.idx01-banner {
  margin-top: 55px;
}

.idx01 .btn-group {
  margin-top: 54px;
}

.idx01 .btn-group .btn {
  margin-left: auto;
  margin-right: auto;
}

.idx01-logo {
  max-width: 539px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 33px;
}

.idx01-logo:hover a {
  opacity: 1;
}

.idx01 .idx-tel {
  background-color: #fdf3f6;
  width: 39.4em;
  height: 9em;
}

.idx01 .idx-tel .txt {
  font-size: 3.2em;
}

.idx01 .idx-tel .txt::before {
  margin-right: 2.125em;
}

.idx01 .des {
  text-align: center;
  font-weight: 500;
  margin-top: 20px;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx01 .des {
    font-size: 16px;
  }
}

.idx01-map {
  margin-top: 35px;
  height: 410px;
  border: 1px solid #d6d2d3;
  border-radius: 20px;
}

.idx01-map iframe {
  border-radius: 20px;
}

.idx01-list {
  margin-top: 48px;
}

.idx01-list li {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 19px;
  margin-bottom: 13px;
  padding-left: 7px;
}

.idx01-list li:first-child .text {
  padding-top: 3px;
}

.idx01-list li:last-child {
  border-bottom: 0;
}

.idx01-list li:last-child .icon {
  margin-top: 6px;
}

.idx01-list .icon {
  width: 40px;
}

.idx01-list .text {
  width: calc(100% - 40px);
  padding-left: 23px;
  line-height: 1.9444444444;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx01-list .text {
    font-size: 16px;
  }
}

.idx01 .flex {
  position: relative;
}

.idx01 .flex::before {
  position: absolute;
  content: "Satoko Clinic";
  text-transform: uppercase;
  line-height: 1;
  top: 0.31875em;
  left: calc(50% - 6.06875em);
  color: #fff;
  font-size: 160px;
  letter-spacing: 0.05em;
  font-weight: 200;
}

@media (769px <=width <=1560px) {
  .idx01 .flex::before {
    left: calc(50% - 6.2em);
    font-size: 8vw;
    top: 0.65em;
  }
}

@media (769px <=width <=1440px) {
  .idx01 {
    padding-top: 27.5vw;
  }
}

@media (769px <=width <=1280px) {
  .idx01-right::before {
    left: -50px;
  }

  .idx01-left {
    padding-top: 200px;
  }

  .idx01 .idx01-logo {
    width: 85%;
  }
}

@media (769px <=width <=1024px) {
  .idx01-right {
    padding-left: 20px;
    padding-top: 60px;
  }

  .idx01-right::before {
    left: 0;
  }

  .idx01-banner {
    margin-top: 20px;
  }

  .idx01 .btn-group {
    margin-top: 30px;
  }

  .idx01 .des {
    letter-spacing: 0;
  }

  .idx01-map {
    margin-top: 20px;
  }

  .idx01-list {
    margin-top: 30px;
  }

  .idx01-list .text {
    letter-spacing: 0;
  }

  .idx01-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

@media (769px <=width <=991px) {
  .idx01 {
    padding-bottom: 0;
  }

  .idx01-left {
    padding-top: 150px;
  }
}

.idx02 {
  position: relative;
  z-index: 1;
  padding-top: 79px;
  padding-bottom: 154px;
}

.idx02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx02-bg.png);
}

.idx02 .inner_big {
  position: relative;
}

.idx02 .idx-title {
  margin-bottom: 50px;
  padding-top: 78px;
}

.idx02 .idx-title::before {
  position: absolute;
  content: "Greeting";
  left: -110px;
  top: 0;
  font-size: 14em;
  letter-spacing: 0;
  line-height: 0.85;
  color: #fff;
  opacity: 0.1;
}

.idx02 .idx-title p {
  padding-left: 28px;
}

.idx02 .idx-title p::before {
  background-image: url(../images/idx02-h3-icon.png);
  top: 2px;
  width: 18px;
  height: 15px;
  filter: none !important;
}

.idx02-content {
  max-width: 555px;
  width: 50%;
}

.idx02 .box-txt p {
  color: #fff;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx02 .box-txt p {
    font-size: 16px;
  }
}

.idx02 .btn-group {
  margin-top: 40px;
}

.idx02 .btn-group .btn a {
  background: unset;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--main-color);
}

.idx02 .btn-group .btn a::after {
  background-color: var(--main-color);
}

.idx02-img {
  font-size: 10px;
  width: 64.3em;
  height: 68.9em;
  position: absolute;
  top: 0.2em;
  right: 1.7em;
}

.idx02-doctor {
  position: relative;
}

.idx02-doctor::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 2em solid rgba(255, 255, 255, 0.43);
}

.idx02-doctor img {
  border-radius: 50%;
}

.idx02-name {
  width: 24em;
  height: 24em;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 7px;
  left: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx02-line-border.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.idx02-name::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: -7px;
  left: -7px;
  background-color: #fff;
  opacity: 0.32;
  border-radius: 50%;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
}

.idx02-name .t1 {
  text-align: center;
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #dc4f8e;
  margin-bottom: 0;
}

.idx02-name .t1::after {
  display: block;
  content: "";
  width: 7.9em;
  height: 1px;
  margin-top: 0.6em;
  margin-left: auto;
  margin-right: auto;
  background-image: -moz-linear-gradient(0deg, rgb(255, 212, 227) 0%, rgb(0, 173, 231) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(255, 212, 227) 0%, rgb(0, 173, 231) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(255, 212, 227) 0%, rgb(0, 173, 231) 100%);
}

.idx02-name .t2 {
  text-align: center;
  font-size: 2.5em;
}

.idx02-name .t2 span {
  letter-spacing: 0.05em;
}

.idx02-name .t2 .sm {
  color: #555555;
  font-size: 0.64em;
}

.idx02-name .t2 .jp {
  color: #00ade7;
  font-weight: 500;
  padding-left: 0.2em;
}

.idx02-name .t2 .kan {
  display: block;
  font-size: 0.56em;
  text-transform: uppercase;
  line-height: 1;
  color: #00ade7;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .idx02-content p {
    line-height: 2.2222222222;
  }
}

@media (min-width: 1281px) {
  .idx02 .idx-title h3 {
    margin-left: -8px;
  }

  .idx02 .btn-group .btn {
    margin-bottom: 12px;
  }
}

@media (769px <=width <=1440px) {
  .idx02 .idx-title {
    margin-bottom: 20px;
  }

  .idx02 .idx-title::before {
    left: -60px;
  }
}

@media (769px <=width <=1366px) {
  .idx02 .idx-title::before {
    left: -30px;
  }
}

@media (769px <=width <=1280px) {
  .idx02 {
    padding-bottom: 90px;
  }

  .idx02 .idx-title::before {
    left: 0;
    font-size: min(14em, 12vw);
  }

  .idx02-img {
    font-size: min(9px, 0.7vw);
    top: -8em;
    right: 8em;
  }
}

@media (769px <=width <=1024px) {
  .idx02-img {
    right: 3em;
    top: 0;
  }
}

@media (769px <=width <=991px) {
  .idx02 .btn-group {
    margin-top: 20px;
  }
}

.idx03 {
  padding-top: 109px;
  padding-bottom: 120px;
  background-image: -moz-linear-gradient(90deg, rgb(193, 233, 247) 0%, rgb(220, 240, 247) 25%, rgb(247, 247, 247) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(193, 233, 247) 0%, rgb(220, 240, 247) 25%, rgb(247, 247, 247) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(193, 233, 247) 0%, rgb(220, 240, 247) 25%, rgb(247, 247, 247) 100%);
}

.idx03 .inner_big {
  position: relative;
}

.idx03 .inner_big::before {
  font-size: min(10px, 0.75vw);
  position: absolute;
  content: "";
  top: -35.3em;
  left: calc(50% - 0.4em);
  transform: translateX(-50%);
  width: 128em;
  height: 128em;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx03-circle.png);
}

.idx03-title {
  font-size: 28px;
}

.idx03-title p {
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 0.2em;
}

@media (min-width: 640px) {
  .idx03-title p>span {
    background-color: #dc4f8e;
    padding-top: 0.25em;
    padding-bottom: 0.321428571em;
    padding-left: 0.678571em;
    padding-right: 0.607142857em;
    border-radius: 5px;
  }
}

@media (max-width: 639px) {
  .idx03-title p .sp {
    background-color: #dc4f8e;
    padding-top: 0.25em;
    padding-bottom: 0.321428571em;
    padding-left: 0.678571em;
    padding-right: 0.607142857em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    display: inline-block;
  }
}

.idx03-title p span span {}

.idx03-img {
  max-width: 600px;
  margin-top: 47px;
  margin-left: auto;
  margin-right: auto;
}

.idx03-img img {
  border-radius: 150px;
}

.idx03-txt {
  margin-top: 43px;
}

.idx03-txt p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .idx03-txt p {
    font-size: 16px;
    line-height: 2.2222222222;
  }
}

.idx03-content {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.idx03 .btn-group {
  margin-top: 47px;
}

.idx03 .btn-group .btn {
  margin-left: auto;
  margin-right: auto;
}

.idx03-inner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx03-bg-button.jpg);
  border-radius: 65px;
  height: 100%;
  height: 100%;
  padding-top: 3.8em;
  padding-bottom: 3.8em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.idx03-according {
  margin-top: 85px;
  width: 100%;
  font-size: 10px;
}

.idx03-according .button {
  padding: 10px;
  border-radius: 75px;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  background-color: #fff;
  cursor: pointer;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

.idx03-according .button::before,
.idx03-according .button::after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  background-color: #00ade7;
}

.idx03-according .button::before {
  width: 5em;
  height: 4px;
  top: calc(50% - 0.1em);
  right: 6.8em;
}

.idx03-according .button::after {
  top: calc(50% - 2.4em);
  right: 9.1em;
  width: 4px;
  height: 5em;
}

.idx03-according .button.rotate p {
  color: #fff;
}

.idx03-according .button.rotate::before,
.idx03-according .button.rotate::after {
  background-color: #fff;
}

.idx03-according .button.rotate::after {
  transform: rotate(90deg);
}

.idx03-according .button.rotate .idx03-inner {
  background: unset;
  background-color: #00ade7;
}

.idx03-according .button.rotate:hover .idx03-inner {
  background: unset;
  background-color: #00ade7;
}

@media only screen and (min-width: 769px) {
  .idx03-according .button:hover .idx03-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 173, 231, 0.2) 48%);
  }
}

.idx03-according p {
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
}

.idx03-according .jp {
  color: #00ade7;
  font-size: 2.6em;
  font-weight: 500;
  margin-bottom: 12px;
}

.idx03-according .jp span {
  display: inline-block;
}

.idx03-according .sm {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 0;
}

.idx03-according .content {
  background-color: #fff;
  border-radius: 40px;
  margin-top: -74px;
  border: 1px solid #c1e9f7;
  padding-bottom: 58px;
  padding-top: 113px;
}

.idx03-according .content .in {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.idx03-according .btn-group {
  margin-top: 40px;
}

.idx03-flex .item {
  position: relative;
  max-width: 260px;
  width: calc(20% - 0.8em);
  margin-bottom: 1em;
}

.idx03-flex .item .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.idx03-flex .item img {}


@media only screen and (min-width: 769px) {
  .idx03-flex.flex {
    justify-content: center;
    gap: 1em;
    font-size: min(1em, calc((100vw - 40px)/132))
  }

  .idx03-flex .item:last-child .num::before {
    display: none;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx03-flex.flex {
    font-size: min(1em, calc((100vw - 40px)/12))
  }

  .idx03-flex .item {
    width: calc(50% - 1em);
  }
}

.idx03-flex .num {
  font-size: 36px;
  margin-bottom: 21px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #00ade7;
  position: relative;
}

.idx03-flex .num::after {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #386574;
  width: 13px;
  height: 13px;
  margin-top: 0.41666667em;
  margin-left: auto;
  margin-right: auto;
}

.idx03-flex .num::before {
  position: absolute;
  content: "";
  bottom: 6px;
  left: 3.8055555556em;
  height: 1px;
  background-color: #d9d9da;
  width: calc(50% + 4em);
}

.idx03-flex .title {
  position: absolute;
  left: 0px;
  bottom: 0px;

  margin-bottom: 0;
  padding: 4em 1em 2em;
  min-height: 24em;
  background: linear-gradient(0deg, rgba(56, 101, 116, 0.5) 0%, rgba(56, 101, 116, 0.3) 70%, rgba(56, 101, 116, 0) 100%);
}

.idx03-flex .title>p {
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.idx03-flex .title .t1 {
  font-size: 2.8em;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.idx03-flex .title .t1::after {
  display: block;
  content: "";
  background-color: #fff;
  width: 2.8571428571em;
  height: 2px;
  margin-top: 0.57142857em;
}

.idx03-flex .title .t2 {
  font-size: 1.6em;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 1281px) {
  .idx03-title p {
    margin-bottom: -2px;
  }
}

@media (max-width: 1280px) {
  .idx03 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .idx03-txt {
    margin-top: 20px;
  }

  .idx03 .btn-group {
    margin-top: 20px;
  }

  .idx03-according {
    margin-top: 40px;
  }

  .idx03-img {
    margin-top: 30px;
  }

  .idx03-title p {
    margin-bottom: 10px;
  }
}

@media (769px <=width <=1024px) {
  .idx03-according .content {
    max-width: 810px;
    margin-left: auto;
    margin-right: auto;
  }

  .idx03-flex .num {
    font-size: 30px;
  }

  .idx03-flex .num::before {
    left: calc(50% + 6px);
    width: calc(50% + 4.5em);
  }

  .idx03-flex .item:nth-child(2n) .num::before {
    display: none;

  }

  .idx03-according .button {
    max-width: 600px;
  }
}

@media (769px <=width <=991px) {
  .idx03-according .button::after {
    height: 3.5em;
    top: calc(50% - 1.7em);
    right: 6.6em;
  }

  .idx03-according .button::before {
    width: 3.5em;
    right: 5em;
  }
}

.idx04 {
  background-color: #faeef2;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  position: relative;
}

.idx04 .inner_big {
  max-width: 100%;
  padding-left: 0;
}

.idx04-grTab {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 62%;
  max-width: 1157px;
}

.idx04-tabImg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.3s;
}

.idx04-tabImg.active {
  opacity: 1;
}

.idx04-tabImg.tab1 {
  background-image: url(../images/idx04-tab1-img01.png);
}

.idx04-tabImg.tab2 {
  background-image: url(../images/idx04-tab2-img01.png);
}

.idx04-tabImg.tab3 {
  background-image: url(../images/idx04-tab3-img03.png);
}

.idx04-tabImg.tab4 {
  background-image: url(../images/idx04-tab4-img04.png);
}

.idx04-title {
  font-size: 140px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-left: calc(50% - 18vw);
  margin-left: 222px;
}

.idx04-title h3 {
  line-height: 0.9;
  font-weight: 500;
}

.idx04-tabs {
  margin-top: 16px;
}

.idx04-tabs .TabContainer .TabContent .content {
  border-top-right-radius: 40px;
}

.idx04-tabs .TabContainer .TabPager {
  width: 95%;
  gap: 5px;
}

.idx04-tabs .TabContainer .TabPager>div {
  max-width: 240px;
  height: 80px;
  width: calc(25% - 10px);
  top: 40px;
}

.idx04-tabs .TabContainer .TabPager>div p {
  font-size: 18px;
}

.idx04-content {
  max-width: 1135px;
  width: 70%;
}

.idx04-inner {
  max-width: 836px;
  margin-right: 0;
  margin-left: auto;
  padding-top: 112px;
  padding-left: 20px;
  padding-right: 170px;
  padding-bottom: 120px;
}

.idx04-inner .title {
  font-size: 10px;
  margin-bottom: 35px;
}

.idx04-inner .title p {
  line-height: 1;
  margin-bottom: 0;
  font-weight: 500;
}

.idx04-inner .title .jp {
  font-size: 3.6em;
  letter-spacing: 0.14em;
  margin-bottom: 17px;
}

.idx04-inner .title .jp span {
  display: inline-block;
}

.idx04-inner .title .sm {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-left: 26px;
}

.idx04-inner .title .sm::first-letter {
  color: var(--main-color);
}

.idx04-inner .title .sm::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 19px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/home-h3-icon.png);
}

.idx04 .box-txt p {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx04 .box-txt p {
    font-size: 16px;
  }
}

.idx04 .btn-group {
  margin-top: 37px;
}

.idx04 .btn-group.w360 .btn {
  max-width: 360px;
}

@media (769px <=width <=1440px) {
  .idx04-title {
    margin-left: 5%;
    font-size: min(120px, 10vw);
  }

  .idx04-tabs {
    margin-top: 0;
  }

  .idx04-grTab {
    width: 60%;
  }
}

@media (769px <=width <=1366px) {
  .idx04-content {
    max-width: 870px;
  }

  .idx04-inner {
    padding-top: 90px;
    padding-bottom: 60px;
    padding-right: 40px;
    padding-left: 15%;
  }

  .idx04 .title {
    margin-bottom: 20px;
  }

  .idx04-tabs .TabContainer .TabPager>div p {
    font-size: 16px;
  }
}

@media (769px <=width <=1280px) {
  .idx04-inner {
    padding-left: 20px;
  }

  .idx04-inner .title {
    font-size: 8px;
  }

  .idx04-inner .title .sm {
    font-size: 16px;
  }

  .idx04-inner .title .sm::before {
    top: 1px;
  }

  .idx04 .btn-group .btn a::after {
    right: 10px;
  }
}

@media (769px <=width <=1024px) {
  .idx04-inner {
    padding-right: 20px;
  }

  .idx04-tabs .TabContainer .TabPager>div p {
    line-height: 1.4;
  }

  .idx04-content {
    width: 70%;
  }

  .idx04 .btn-group {
    margin-top: 20px;
  }

  .idx04-grTab {
    width: 55%;
  }

  .idx04-tabImg {
    background-position: left 50% center;
  }
}

.idx05 {
  background-image: url(../images/idx05-bg.jpg);
  padding-top: 163px;
  padding-bottom: 118px;
}

.idx05 .inner_big {
  max-width: 1480px;
}

.idx05-tabs {
  margin-top: 64px;
}

.idx05-inner {
  padding-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 769px) {
  .idx05-inner.st2 {
    padding-top: 91px;
  }
}

@media (min-width: 1367px) {
  .idx05-inner.st2 {
    padding-bottom: 107px;
  }
}

.idx05-btnGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.idx05-btn {
  width: calc(25% - 8px);
  max-width: 314px;
  font-size: 10px;
  margin-bottom: 0;
}

.idx05-btn a {
  text-decoration: none;
  min-height: 80px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding-left: 2.3em;
  padding-right: 4em;
  transition: all 0.3s;
}

.idx05-btn a::after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  top: calc(50% - 6px);
  right: 20px;
  width: 20px;
  height: 13px;
  background-color: #203424;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='13px'%3E%3Cpath fill-rule='evenodd' fill='rgb(32, 52, 36)' d='M13.250,-0.003 L12.000,-0.003 C12.000,2.705 13.625,4.765 15.750,5.958 L0.000,5.958 L0.000,7.040 L15.750,7.040 L15.750,7.040 C13.625,8.232 12.000,10.292 12.000,13.003 L13.250,13.003 C13.250,9.317 16.750,7.040 20.000,7.040 L20.000,5.958 C16.750,5.958 13.250,3.681 13.250,-0.003 '/%3E%3C/svg%3E");
}

.idx05-btn a .txt {
  font-size: 1.8em;
  letter-spacing: 0.05em;
  font-family: var(--f-notosans);
  color: var(--clr1);
  padding-left: 0.388889em;
  line-height: 1.5;
}

.idx05-btn a .txt img {
  transition: all 0.3s;
}

.idx05-btn a .txt span {
  display: inline-block;
}

.idx05-tabButton {
  display: flex;
  justify-content: center;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  gap: 13px;
}

.idx05-tabButton li {
  background-color: #fbdbdf;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 25px 0 19px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--main-color);
  border-radius: var(--border-radius);
  z-index: 2;
  max-width: 418px;
  width: calc(33.33% - 13px);
}

.idx05-tabButton li::after {
  position: absolute;
  content: "";
  transition: all 0.3s ease;
  bottom: -14px;
  left: calc(50% - 16px);
  background-color: var(--main-color);
  width: 32px;
  height: 30px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
}

.idx05-tabButton li p {
  margin: 0;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.idx05-tabButton li p span {
  display: block;
  transition: all 0.3s;
}

.idx05-tabButton li p .jp {
  font-size: 2.2em;
  letter-spacing: 0.1em;
  line-height: 1;
}

.idx05-tabButton li p .sm {
  font-size: 1.6em;
  letter-spacing: 0.02em;
  padding-top: 0.3125em;
  color: #d5b2c2;
}

.idx05-tabButton li.active {
  background-color: var(--main-color);
  color: #fff;
}

.idx05-tabButton li.active .sm {
  color: #fff;
}

.idx05-tabButton li.active:hover {
  background-color: var(--main-color);
}

.idx05-tabButton li.active::after {
  opacity: 1;
}

@media only screen and (min-width: 769px) {
  .idx05-tabButton li:hover {
    background-color: #e5c0c4;
  }
}

.idx05-tabContent {
  background-color: #fceef3;
  border-radius: 40px;
  margin-top: -50px;
}

.idx05-tabContent .active {
  display: block;
}

.idx05-tabContent>div {
  display: none;
}

.idx05 .TabContainer.st2 .TabPager {
  gap: 8px;
}

.idx05 .TabContainer.st2 .TabPager>div {
  max-width: 270px;
  width: calc(33.33% - 8px);
  padding-top: 13px;
  padding-bottom: 15px;
  background-color: #fff;
}

.idx05 .TabContainer.st2 .TabPager>div::after {
  display: none;
}

.idx05 .TabContainer.st2 .TabPager>div p {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #5a5a5a;
  font-weight: 400;
}

.idx05 .TabContainer.st2 .TabPager>div.active {
  background-color: #00ade7;
}

.idx05 .TabContainer.st2 .TabPager>div.active p {
  color: #fff;
}

.idx05 .TabContainer.st2 .TabPager>div.active:hover {
  background-color: #00ade7;
}

.idx05 .TabContainer.st2 .TabPager>div.active:hover p {
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .idx05 .TabContainer.st2 .TabPager>div:hover {
    background-color: #2590b3;
  }

  .idx05 .TabContainer.st2 .TabPager>div:hover p {
    color: #fff;
  }
}

.idx05 .TabContainer.st2 .TabContent .content {
  background-color: unset;
}

.idx05 .TabContainer.st2 .TabContent .content>div {
  padding-top: 40px;
}

@media only screen and (min-width: 769px) {
  .idx05-btn a:hover {
    opacity: 1;
    background-color: unset;
    background: linear-gradient(270deg, #ffffff -90%, #ffffff -100%, #ec75aa 35%);
  }

  .idx05-btn a:hover .icon img {
    filter: brightness(0) invert(1);
  }

  .idx05-btn a:hover .txt {
    color: #fff;
  }

  .idx05-btn a:hover::after {
    background-color: #fff;
  }
}

@media (769px <=width <=1280px) {
  .idx05 {
    padding: 80px 0;
  }
}

@media (769px <=width <=1024px) {
  .idx05-inner {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .idx05-btn {
    width: calc(33.33% - 8px);
  }
}

@media (769px <=width <=991px) {
  .idx05-btn {
    font-size: 7px;
  }

  .idx05-btn a {
    padding-left: 1em;
  }

  .idx05-btn a::after {
    right: 10px;
  }
}

.idx06 {
  background-color: #fef3f7;
  position: relative;
  padding-top: 121px;
  padding-bottom: 120px;
}

.idx06 .inner_big {
  max-width: 1680px;
  border: 1px solid var(--main-color);
  border-radius: 80px;
  padding: 19px;
  width: calc(100% - 30px);
}

.idx06 .idx-title h3 {
  line-height: 1.3888888889;
}

.idx06 .idx-title .sm {
  margin-top: 10px;
}

.idx06 .flex {
  justify-content: flex-start;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.idx06-content {
  background-color: #fff;
  border-radius: 60px;
  padding-top: 190px;
  padding-bottom: 191px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.idx06-left {
  max-width: 320px;
  width: 30%;
}

.idx06-right {
  max-width: 512px;
  width: 70%;
  padding-left: 72px;
}

.idx06 .box-txt {
  position: relative;
}

.idx06 .box-txt p {
  font-weight: 500;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx06 .box-txt p {
    font-size: 16px;
  }
}

.idx06 .btn-group .btn:last-child {
  margin-bottom: 0;
}

.idx06-txt {
  position: absolute;
  bottom: -0.253846em;
  left: calc(50% - 2.8538461em);
  font-size: 130px;
  letter-spacing: 0;
  line-height: 1.1538461538;
  font-weight: 400;
  text-transform: uppercase;
  color: #f8edf2;
  opacity: 50%;
  width: 100%;
}

.idx06-img {
  position: absolute;
  top: -141px;
  right: -18.4em;
  width: 74.2em;
  height: 82.1em;
  font-size: min(10px, 0.6vw);
}

.idx06-img figure {
  position: absolute;
}

.idx06-img .img01 {
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  width: 34.4em;
  height: 60em;
}

.idx06-img .img01::before {
  position: absolute;
  content: "";
  border-radius: 20px;
  border: 1em solid #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.idx06-img .img02 {
  top: 0;
  right: 0;
  z-index: 1;
  width: 52.6em;
  height: 68.1em;
}

.idx06-img .img02::before {
  position: absolute;
  content: "";
  z-index: -1;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.4em;
  background-color: var(--main-color);
  width: 42.4em;
  height: 53.7em;
}

@media only screen and (min-width: 769px) {
  .idx06 .idx-title {
    margin-bottom: 4.9em;
  }

  .idx06 .box-txt p {
    line-height: 2.2222222222;
  }
}

@media (min-width: 1281px) {
  .idx06 .btn-group .btn {
    margin-bottom: 15px;
  }

  .idx06-left {
    padding-top: 5px;
  }
}

@media (769px <=width <=1440px) {
  .idx06-right {
    padding-left: 40px;
  }
}

@media (769px <=width <=1366px) {
  .idx06-right {
    padding-left: 30px;
    width: 40%;
  }

  .idx06-img {
    font-size: 0.56vw;
    top: -132px;
  }

  .idx06-txt {
    font-size: min(120px, 8vw);
  }

  .idx06-content {
    padding-top: 12%;
    padding-bottom: 12%;
  }
}

@media (769px <=width <=1280px) {
  .idx06 .inner_big {
    padding: 10px;
    border-radius: 60px;
  }

  .idx06 .idx-title {
    margin-bottom: 3em;
  }

  .idx06-left {
    width: 25%;
  }
}

@media (769px <=width <=1024px) {
  .idx06 .btn-group .btn a::after {
    right: 10px;
  }
}

@media (max-width: 991px) {
  .idx06 {
    padding: 80px 0;
  }

  .idx06-img {
    position: relative;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: min(5px, 1vw);
  }

  .idx06-left,
  .idx06-right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .idx06-left {
    order: 2;
  }

  .idx06-right {
    order: 1;
    padding-left: 0;
  }

  .idx06 .idx-title {
    text-align: center;
  }

  .idx06 .idx-title h3 {
    line-height: 1.2;
  }

  .idx06 .box-txt {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .idx06-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .idx06-txt {
    left: 40px;
  }
}

.idx07 {
  position: relative;
  background-color: #fef3f7;
  padding-top: 257px;
  padding-bottom: 91px;
}

.idx07::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx07-bg.png);
}

.idx07 .idx-title {
  margin-bottom: 10em;
}

.idx07 .inner_big {
  position: relative;
  max-width: 1694px;
  padding-left: 0;
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 1921px) {
  .idx07 .inner_big {
    margin-left: auto;
    margin-right: auto;
  }
}

.idx07-right {
  max-width: 534px;
  width: 35%;
}

.idx07-btn {
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  font-size: 10px;
  padding: 33px 0 37px;
  padding-left: 23px;
  padding-right: 20px;
  transition: all 0.3s;
  cursor: pointer;
}

.idx07-btn.active {
  background-color: rgba(197, 99, 143, 0.53);
}

.idx07-btn.active .num {
  opacity: 1;
}

.idx07-btn:first-child {
  border-top: 1px solid #fff;
}

.idx07-btn p {
  color: #fff;
  margin-bottom: 0;
}

.idx07-btn .num {
  font-size: 6em;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
  opacity: 27%;
  white-space: nowrap;
}

.idx07-btn .txt {
  font-size: 2.2em;
  letter-spacing: 0.1em;
  line-height: 1.8181818182;
  font-weight: 500;
  padding-left: 0.7272727273em;
}

.idx07-btn .txt span {
  display: inline-block;
}

.idx07-tabContent {
  max-width: 1059px;
  width: 65%;
  position: relative;
  counter-reset: section;
}

.idx07-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.idx07-content.active {
  opacity: 1;
  visibility: visible;
}

.idx07-inner {
  position: relative;
  padding-top: 15.4%;
}

.idx07-contenbox {
  background-color: #fff;
  max-width: 477px;
  border-radius: 80px;
  margin-right: 0;
  margin-left: auto;
  padding: 81px 46px;
  position: relative;
}

.idx07-contenbox .ttl {
  font-size: 28px;
  letter-spacing: 0.14em;
  font-weight: 500;
  line-height: 1.4285714286;
  color: var(--clr2);
  margin-bottom: 26px;
  text-align: center;
}

.idx07-contenbox .ttl span {
  display: inline-block;
}

.idx07-contenbox .ttl::after {
  display: block;
  content: "";
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 80px;
  height: 2px;
  background-color: var(--main-color);
}

.idx07-contenbox .txt {
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx07-contenbox .txt {
    font-size: 16px;
  }
}

.idx07-img {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 80%;
  max-width: 830px;
}

.idx07-img.sp {
  display: none;
}

.idx07-img img {
  border-radius: 0 80px 80px 0;
}

.idx07-img::before {
  position: absolute;
  counter-increment: section;
  content: "0" counter(section);
  line-height: 0.8;
  top: -0.4833333em;
  left: 0.75833333em;
  color: #fff;
  font-size: 120px;
  letter-spacing: 0;
}

.idx07 .btn-group {
  margin-top: 40px;
}

.idx07 .btn-group .btn {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 769px) {
  .idx07-btn:hover {
    background-color: rgba(197, 99, 143, 0.53);
  }

  .idx07-contenbox .txt {
    line-height: 2.2222222222;
  }
}

@media (min-width: 1281px) {
  .idx07-tabContent {
    position: relative;
    left: -5px;
  }

  .idx07-right {
    padding-top: 9px;
  }
}

@media (769px <=width <=1560px) {
  .idx07-tabContent {
    width: 60%;
  }

  .idx07-btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .idx07-right {
    width: 40%;
  }
}

@media (769px <=width <=1366px) {
  .idx07 .idx-title {
    margin-bottom: 8em;
  }

  .idx07-contenbox {
    padding: 40px 20px;
    width: 65%;
  }

  .idx07 .btn-group {
    margin-top: 20px;
  }

  .idx07-tabContent {
    width: 58%;
  }

  .idx07-btn {
    padding: 5% 10px;
  }

  .idx07-inner {
    padding-top: 10%;
  }

  .idx07-img::before {
    font-size: 100px;
    left: 30px;
  }
}

@media (769px <=width <=1280px) {
  .idx07-contenbox {
    border-radius: 60px;
  }

  .idx07-contenbox .ttl {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .idx07-contenbox .ttl::after {
    margin-top: 10px;
  }

  .idx07-btn {
    font-size: 9px;
  }
}

@media (769px <=width <=1024px) {
  .idx07 .idx-title {
    margin-bottom: 6em;
  }

  .idx07-btn {
    font-size: 8px;
  }
}

@media (max-width: 991px) {
  .idx07 {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .idx07 .inner_big {
    padding-left: 20px;
  }

  .idx07 .anm_scroll {
    top: 100px;
  }

  .idx07 .idx-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .idx07 .flex {
    flex-direction: column-reverse;
  }

  .idx07 .flex>div {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .idx07-btn {
    padding: 3% 10px;
  }

  .idx07-img {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .idx07-img::before {
    top: auto;
    bottom: 20px;
    left: 20px;
  }

  .idx07-img.pc {
    display: none;
  }

  .idx07-img.sp {
    display: block;
  }

  .idx07-img img {
    border-radius: 40px;
  }

  .idx07-inner {
    padding-top: 0;
  }

  .idx07-contenbox {
    margin-left: auto;
    margin-right: auto;
  }

  .idx07-contenbox .txt {
    padding-top: 20px;
  }

  .idx07-content {
    margin-top: 30px;
  }
}

.idx08 {
  padding-top: 120px;
  padding-bottom: 89px;
}

.idx08 .inner_big {
  position: relative;
  padding-top: 111px;
  padding-bottom: 114px;
}

.idx08 .inner_big::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc(50% - 43.75vw);
  max-width: 1920px;
  width: 100vw;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/idx08-bg.jpg);
  border-radius: 80px;
}

@media (min-width: 1921px) {
  .idx08 .inner_big::before {
    left: calc(50% - 25vw);
  }
}

.idx08 .idx-title {
  margin-bottom: 45px;
}

.idx08-content {
  max-width: 460px;
  width: 50%;
}

.idx08-content .txt {
  color: #fff;
  position: relative;
  font-size: 18px;
}

@media (max-width: 1280px) {
  .idx08-content .txt {
    font-size: 16px;
  }
}

.idx08 .btn-group {
  margin-top: 40px;
}

.idx08-img {
  position: absolute;
  top: -56px;
  right: -6em;
  font-size: min(10px, 0.7vw);
  width: 82.6em;
  height: 75.7em;
}

.idx08-img figure {
  position: absolute;
}

.idx08-img figure img {
  border-radius: 40px;
}

.idx08-img .img01 {
  top: 0;
  left: 0;
  width: 69.4em;
}

.idx08-img .img02 {
  bottom: 0;
  right: 0;
  width: 42.6em;
}

.idx08-img .img02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 10px solid #fff;
  border-radius: 40px;
}

.idx08 .btn-group .btn a {
  background: unset;
  background-color: #fff;
  color: var(--clr2);
}

.idx08 .btn-group .btn a::after {
  background-color: var(--clr2);
}

.idx08-text {
  position: absolute;
  left: 10px;
  bottom: 0;
  line-height: 0.85;
  font-size: 130px;
  letter-spacing: 0;
  color: #f8edf2;
  opacity: 20%;
  text-transform: uppercase;
  margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
  .idx08-content .txt {
    line-height: 2.2222222222;
  }
}

@media (769px <=width <=1440px) {
  .idx08 .inner_big::before {
    left: calc(50% - 47vw);
  }

  .idx08-img {
    right: -3em;
  }
}

@media (769px <=width <=1366px) {
  .idx08 .inner_big {
    padding-left: 40px;
  }

  .idx08 .inner_big::before {
    left: 0;
  }

  .idx08-img {
    right: 20px;
    font-size: min(10px, 0.67vw);
  }

  .idx08-text {
    left: 40px;
  }
}

@media (769px <=width <=1280px) {
  .idx08 {
    padding-top: 100px;
  }

  .idx08 .inner_big::before {
    left: 20px;
  }

  .idx08 .btn-group {
    margin-top: 20px;
  }

  .idx08-img {
    right: 20px;
  }

  .idx08-text {
    font-size: min(120px, 11vw);
  }

  .idx08 .inner_big {
    padding-top: 80px;
  }

  .idx08 .idx-title {
    margin-bottom: 30px;
  }
}

@media (769px <=width <=1024px) {
  .idx08-img {
    font-size: 0.56vw;
  }
}

@media (769px <=width <=991px) {
  .idx08 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .idx08 .inner_big {
    padding-bottom: 90px;
  }

  .idx08 .idx-title {
    text-align: center;
  }

  .idx08-img {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .idx08-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .idx08-content .txt {
    margin-top: 20px;
  }

  .idx08 .btn-group .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .idx08-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
  }
}

.idx_map {
  height: 450px;
}

.idx_map iframe {
  height: 100%;
}