/* アニメーション定義 */
@keyframes twinkle {

  0%,
  100% {
    opacity: .2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes contraction1 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* ===========================================================================
  adult_fv
============================================================================ */
.adult_fv .wrap01 .bgs {
  display: flex;
  width: 100%;
}

.adult_fv .wrap01 .bgs .bg {
  aspect-ratio: 427/500;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(100% / 3);
}

.adult_fv .wrap01 .bgs .bg01 {
  background-image: url(../img/adult/fv_img01.jpg);
}

.adult_fv .wrap01 .bgs .bg02 {
  background-image: url(../img/adult/fv_img02.jpg);
}

.adult_fv .wrap01 .bgs .bg03 {
  background-image: url(../img/adult/fv_img03.jpg);
}

.adult_fv .wrap02 {
  background: #fff;
}

.adult_fv .wrap02 {
  padding: 8rem 0;
  position: relative;
}

.adult_fv .wrap02 .h1 {
  align-items: flex-end;
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  display: flex;
  font-size: 3.8rem;
  font-weight: 800;
  height: 12.6rem;
  justify-content: center;
  left: 0;
  margin: auto;
  padding-bottom: 2rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: -12.6rem;
  width: 51.9rem;
}

.adult_fv .wrap02 .h1 span {
  background: linear-gradient(185deg, #e0542d 1.59%, #3f0a24 93.47%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adult_fv .wrap02 .box {
  display: flex;
}

.adult_fv .wrap02 .box .h2 {
  color: #71072c;
  font-size: 4rem;
  font-weight: 800;
  width: 42.2rem;
}

.adult_fv .wrap02 .box .texts {
  width: calc(100% - 42.2rem);
}

.adult_fv .wrap02 .box .texts .p1 {
  color: #004bb1;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.66;
}

.adult_fv .wrap02 .box .texts .p2 {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.2rem;
}

@media screen and (max-width:768px) {
  .adult_fv .wrap01 .bgs {
    aspect-ratio: 1/1;
  }

  .adult_fv .wrap01 .bgs .bg {
    aspect-ratio: auto;
  }

  .adult_fv .wrap02 {
    padding: 1rem 1.5rem 6rem;
  }

  .adult_fv .wrap02 .h1 {
    border-radius: 2rem 2rem 0 0;
    font-size: 2.5rem;
    height: 7.9rem;
    padding-bottom: 1.6rem;
    top: -7.9rem;
    width: calc(100% - 3rem);
  }

  .adult_fv .wrap02 .box {
    display: block;
  }

  .adult_fv .wrap02 .box .h2 {
    font-size: 2rem;
    text-align: center;
    width: 100%;
  }

  .adult_fv .wrap02 .box .texts {
    margin-top: 3rem;
    width: 100%;
  }

  .adult_fv .wrap02 .box .texts .p1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .adult_fv .wrap02 .box .texts .p2 {
    font-size: 1.4rem;
    margin-top: .8rem;
    text-align: center;
  }
}

/* ===========================================================================
  adult01
============================================================================ */
.adult01 {
  border-bottom: solid 1px #71072c;
}

.adult01 .wrap01 {
  padding: 8rem 0 0;
}

.adult01 .wrap01 .tabs {
  display: flex;
  gap: 5rem;
}

.adult01 .wrap01 .tabs .tab {
  width: calc((100% - 10rem) / 3);
}

.adult01 .wrap01 .tabs .tab .p1 {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #000;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  height: 8rem;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 22rem;
}

.adult01 .wrap01 .tabs .tab .p1::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 5rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -5rem;
  width: 2.7rem;
}

.adult01 .wrap01 .tabs .tab .img {
  aspect-ratio: 296/224;
  margin-top: 2.3rem;
  overflow: hidden;
}

.adult01 .wrap01 .tabs .tab .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}

.adult01 .wrap01 .tabs .tab .btn {
  align-items: center;
  background: #fff;
  border: solid 1px #71072c;
  border-bottom: none !important;
  border-radius: 1rem 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 9.4rem;
  justify-content: center;
  margin-top: .8rem;
  transition: .3s;
  width: 100%;
}

.adult01 .wrap01 .tabs .tab .btn .p2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.adult01 .wrap01 .tabs .tab .btn .p3 {
  align-items: center;
  border: solid 1px;
  border-radius: .3rem;
  display: flex;
  font-size: 1.3rem;
  font-weight: 400;
  height: 1.9rem;
  justify-content: center;
  transition: .3s;
  width: 6.4rem;
}

.adult01 .wrap01 .tabs .tab:hover .btn .p3,
.adult01 .wrap01 .tabs .tab.active .btn .p3 {
  background: transparent !important;
  color: #fff !important;
}

.adult01 .wrap01 .tabs .tab01 .p1 {
  background-image: url(../img/adult/tab01.png);
}

.adult01 .wrap01 .tabs .tab01 .p1::before {
  animation: twinkle 2s ease-in-out infinite;
  background-image: url(../img/adult/tab01_deco.png);
}

.adult01 .wrap01 .tabs .tab01:hover .btn,
.adult01 .wrap01 .tabs .tab01.active .btn {
  background: #d47c5c;
  color: #fff;
}

.adult01 .wrap01 .tabs .tab01 .btn .p3 {
  background: #c3dcbd;
}

.adult01 .wrap01 .tabs .tab02 .p1 {
  background-image: url(../img/adult/tab02.png);
}

.adult01 .wrap01 .tabs .tab02 .p1::before {
  animation: twinkle 2.5s ease-in-out infinite;
  background-image: url(../img/adult/tab02_deco.png);
}

.adult01 .wrap01 .tabs .tab02:hover .btn,
.adult01 .wrap01 .tabs .tab02.active .btn {
  background: #8e5da4;
  color: #fff;
}

.adult01 .wrap01 .tabs .tab02 .btn .p3 {
  background: #f9dbe3;
}

.adult01 .wrap01 .tabs .tab03 .p1 {
  background-image: url(../img/adult/tab03.png);
}

.adult01 .wrap01 .tabs .tab03 .p1::before {
  animation: twinkle 1.5s ease-in-out infinite;
  background-image: url(../img/adult/tab03_deco.png);
}

.adult01 .wrap01 .tabs .tab03:hover .btn,
.adult01 .wrap01 .tabs .tab03.active .btn {
  background: #7d4819;
  color: #fff;
}

.adult01 .wrap01 .tabs .tab03 .btn .p3 {
  background: #c3dcbd;
}

@media screen and (max-width:768px) {
  .adult01 .wrap01 {
    padding: 1rem 1.5rem 0;
  }

  .adult01 .wrap01 .tabs {
    display: flex;
    gap: .5rem;
  }

  .adult01 .wrap01 .tabs .tab {
    width: calc((100% - 1rem) / 3);
  }

  .adult01 .wrap01 .tabs .tab .p1 {
    aspect-ratio: 220/80;
    font-size: 1rem;
    font-weight: 500;
    height: auto;
    width: 100%;
  }

  .adult01 .wrap01 .tabs .tab .p1::before {
    height: calc(5rem * .6);
    top: -3rem;
    width: calc(2.7rem * .6);
  }

  .adult01 .wrap01 .tabs .tab .img {
    margin-top: .5rem;
  }

  .adult01 .wrap01 .tabs .tab .btn {
    border-radius: .5rem .5rem 0 0;
    gap: .2rem;
    height: 5rem;
    margin-top: .4rem;
    position: sticky;
  }

  .adult01 .wrap01 .tabs .tab .btn .p2 {
    font-size: 1.4rem;
  }

  .adult01 .wrap01 .tabs .tab .btn .p3 {
    border-radius: .15rem;
    font-size: 1rem;
    height: 1.5rem;
    width: 4rem;
  }
}

/* ===========================================================================
  fix_menu
============================================================================ */
.fix_menu {
  position: fixed;
  top: 0;
  transform: translateY(-100%);
  transition: .3s;
  width: 100%;
  z-index: 100;
}

.fix_menu.active {
  transform: translateY(0);
}

.fix_menu .tabs {
  display: flex;
  gap: 5rem;
}

.fix_menu .tabs .tab {
  width: calc((100% - 10rem) / 3);
}

.fix_menu .tabs .tab .btn {
  align-items: center;
  background: #fff;
  border: solid 1px #71072c;
  border-radius: 0 0 1rem 1rem;
  border-top: none !important;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  height: 6rem;
  justify-content: center;
  transition: .3s;
  width: 100%;
}

.fix_menu .tabs .tab .btn .p2 {
  font-size: 2.4rem;
  font-weight: 800;
}

.fix_menu .tabs .tab:hover .btn .p3,
.fix_menu .tabs .tab.active .btn .p3 {
  background: transparent !important;
  color: #fff !important;
}

.fix_menu .tabs .tab01:hover .btn,
.fix_menu .tabs .tab01.active .btn {
  background: #d47c5c;
  color: #fff;
}

.fix_menu .tabs .tab02:hover .btn,
.fix_menu .tabs .tab02.active .btn {
  background: #8e5da4;
  color: #fff;
}

.fix_menu .tabs .tab02 .btn .p3 {
  background: #f9dbe3;
}

.fix_menu .tabs .tab03:hover .btn,
.fix_menu .tabs .tab03.active .btn {
  background: #7d4819;
  color: #fff;
}

.fix_menu .tabs .tab03 .btn .p3 {
  background: #c3dcbd;
}

@media screen and (max-width:768px) {
  .fix_menu {
    padding: 0 1.5rem;
  }

  .fix_menu .tabs {
    display: flex;
    gap: .5rem;
  }

  .fix_menu .tabs .tab {
    width: calc((100% - 1rem) / 3);
  }

  .fix_menu .tabs .tab .btn {
    border-radius: 0 0 .5rem .5rem;
    gap: .2rem;
    height: 3rem;
    position: sticky;
  }

  .fix_menu .tabs .tab .btn .p2 {
    font-size: 1.4rem;
  }
}

/* ===========================================================================
  bottom_menu
============================================================================ */
.bottom_menu {
  background: #fff;
  padding: 3.6rem 0 14rem;
}

.bottom_menu .tabs {
  display: flex;
  gap: 1.3rem;
  justify-content: center;
}

.bottom_menu .tabs .tab {
  width: 20rem;
}

.bottom_menu .tabs .tab .btn {
  align-items: center;
  background: #fff;
  border: solid 1px #aeaeae;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem;
  transition: .3s;
}

.bottom_menu .tabs .tab01:hover .btn,
.bottom_menu .tabs .tab01.active .btn {
  background: #d47c5c;
  color: #fff;
}

.bottom_menu .tabs .tab02:hover .btn,
.bottom_menu .tabs .tab02.active .btn {
  background: #8e5da4;
  color: #fff;
}

.bottom_menu .tabs .tab03:hover .btn,
.bottom_menu .tabs .tab03.active .btn {
  background: #7d4819;
  color: #fff;
}

@media screen and (max-width:768px) {
  .bottom_menu {
    padding: 4rem 1.5rem 8rem;
  }

  .bottom_menu .tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bottom_menu .tabs .tab {
    width: 100%;
  }
}

/* ===========================================================================
  tab_pages
============================================================================ */
.tab_pages {
  background: #f0f1ed;
  border-top: 3px solid #71072c;
  margin-top: 4px;
}

.tab_page {
  display: none;
}

.tab_page.active {
  display: block;
}

/* ===========================================================================
  adult02_01
============================================================================ */
.adult02_01 {
  padding: 9rem 0;
}

.adult02_01 .fv {
  aspect-ratio: 1000/520;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.tab_page01 .adult02_01 .fv {
  background-image: url(../img/adult/tab01_fv.jpg);
}

.tab_page02 .adult02_01 .fv {
  background-image: url(../img/adult/tab02_fv.jpg);
}

.tab_page03 .adult02_01 .fv {
  background-image: url(../img/adult/tab03_fv.jpg);
}

.adult02_01 .fv::before {
  background: linear-gradient(0deg, #f0f1ed 0%, #f0f1ed 39.9%, rgba(240, 241, 237, .00) 100%);
  bottom: -3rem;
  content: '';
  height: 14.2rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.adult02_01 .h2 {
  align-items: center;
  border-radius: .5rem;
  color: #fff;
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  height: 5.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.tab_page01 .adult02_01 .h2 {
  background: #d16640;
}

.tab_page02 .adult02_01 .h2 {
  background: #8e5da4;
}

.tab_page03 .adult02_01 .h2 {
  background: #7d4819;
}

.adult02_01 .p1 {
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 1.8rem;
  text-align: justify;
}

.adult02_01 .head {
  margin-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

/* .adult02_01 .head::after {
  background-image: url(../img/adult/line01.svg);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100%;
  content: '';
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: .2rem;
} */
/* .adult02_01 .tri {
  align-items: center;
  aspect-ratio: 18/15;
  background-image: url(../img/adult/flow_arrow.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 3rem;
  position: relative;
  text-align: center;
  top: -.5rem;
  width: 14rem;
  z-index: 2;
} */
.adult02_01 .tri {
  color: #71072c;
  font-size: 2.6rem;
  text-align: center;
}

.adult02_01 .tri::after {
  background: #71072c;
  content: '';
  display: block;
  height: .3rem;
  margin: 0 auto;
  width: 8.3rem;
}

.adult02_01 .flows {
  /* margin-top: 6rem; */
  position: relative;
}

.adult02_01 .flows::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  position: absolute;
}

.tab_page01 .adult02_01 .flows::before {
  background-image: url(../img/adult/tab01_flow_illust.jpg);
  height: 26.4rem;
  right: 4.9rem;
  top: 3.6rem;
  width: 26.1rem;
}

.tab_page02 .adult02_01 .flows::before {
  background-image: url(../img/adult/tab02_flow_illust.jpg);
  height: 31.1rem;
  right: 6.4rem;
  top: 1.1rem;
  width: 25.9rem;
}

.tab_page03 .adult02_01 .flows::before {
  background-image: url(../img/adult/tab03_flow_illust.jpg);
  height: 34.1rem;
  right: 2.7rem;
  top: 0;
  width: 31.4rem;
}

.adult02_01 .flows::after {
  background-image: url(../img/adult/line01.svg);
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100%;
  content: '';
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: .2rem;
}

.adult02_01 .flows .flow {
  height: 29.3rem;
  position: relative;
}

.adult02_01 .flows .flow:last-of-type {
  height: 12.8rem;
}

.adult02_01 .flows .flow .circle {
  background-color: #fff;
  border: solid 5px #71072c;
  border-radius: 100%;
  color: #71072c;
  font-size: 1.8rem;
  height: 12.8rem;
  left: 0;
  line-height: 1.1;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 12.8rem;
  z-index: 1;
}

.adult02_01 .flows .flow .circle span {
  align-items: center;
  background-image: url(../img/adult/flow_arrow.svg);
  background-position: center top 2rem;
  background-repeat: no-repeat;
  background-size: 1.8rem;
  border-radius: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
  z-index: 2;
}

/* .adult02_01 .flows .flow01 .circle {
  background: #71072c!important;
  color: #fff;
  font-size: 2.6rem;
  line-height: normal;
} */
.adult02_01 .flows .flow .card {
  position: absolute;
  width: 40rem;
}

.adult02_01 .flows .flow01 .card {
  left: 0;
  top: 12.5rem;
}

.adult02_01 .flows .flow02 .card {
  right: 0;
  top: 7.3rem;
}

.adult02_01 .flows .flow03 .card {
  left: 0;
  top: -5rem;
}

.adult02_01 .flows .flow04 .card {
  right: 0;
  top: -9.8rem;
}

.adult02_01 .flows .flow05 .card {
  left: 0;
  top: -20.3rem;
}

.adult02_01 .flows .flow .card .p2 {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: .9rem;
}

@media screen and (max-width:768px) {
  .adult02_01 {
    padding: 4rem 1.5rem;
  }

  .adult02_01 .fv {
    aspect-ratio: 1000/650;
  }

  .adult02_01 .fv::before {
    bottom: -2rem;
    height: 9rem;
  }

  .adult02_01 .h2 {
    border-radius: .25rem;
    font-size: 2rem;
    height: 4.5rem;
    margin-top: 2rem;
  }

  .adult02_01 .p1 {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }

  .adult02_01 .head {
    margin-top: 26rem;
    padding-bottom: 4rem;
    position: relative;
  }

  /* .adult02_01 .head::after {
    background-image: url(../img/adult/line01.svg);
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100%;
    content: '';
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: .2rem;
  } */
  /* .adult02_01 .tri {
    align-items: center;
    aspect-ratio: 18/15;
    background-image: url(../img/adult/flow_arrow.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    display: flex;
    font-size: 1.6rem;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 2.5rem;
    position: relative;
    text-align: center;
    top: -.5rem;
    width: 12rem;
    z-index: 2;
  } */
  .adult02_01 .tri {
    color: #71072c;
    font-size: 2.6rem;
    text-align: center;
  }

  .adult02_01 .flows {
    margin-top: 0;
    padding-top: calc(35rem * .6);
    padding-top: 0;
  }

  .adult02_01 .flows::before {
    background-color: #f0f1ed;
    left: 0 !important;
    margin: auto !important;
    right: 0 !important;
    top: -31rem !important;
    z-index: 2;
  }

  .tab_page01 .adult02_01 .flows::before {
    height: calc(35rem * .6);
    width: calc(26.1rem * .6);
  }

  .tab_page02 .adult02_01 .flows::before {
    height: calc(31.1rem * .6);
    width: calc(25.9rem * .6);
  }

  .tab_page03 .adult02_01 .flows::before {
    height: calc(34.1rem * .6);
    width: calc(31.4rem * .6);
  }

  .adult02_01 .flows::after {
    background-image: url(../img/adult/line01.svg);
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100%;
    content: '';
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: .2rem;
  }

  .adult02_01 .flows .flow {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 0;
  }

  .adult02_01 .flows .flow:has(.circle) {
    margin-top: 4rem;
  }

  .adult02_01 .flows .flow:first-of-type {
    margin-top: 0 !important;
  }

  .adult02_01 .flows .flow:last-of-type {
    height: auto;
  }

  .adult02_01 .flows .flow .circle {
    /* background: linear-gradient(#fff 0,#fff 50%,rgba(255,255,255,.9) 50%,rgba(255,255,255,.5) 100%); */
    border: solid 3px #71072c;
    font-size: 1.6rem;
    height: 10rem;
    overflow: hidden;
    position: relative;
    width: 10rem;
    z-index: 3;
  }

  .adult02_01 .flows .flow .circle span {
    background-image: url(../img/adult/flow_arrow.svg);
    background-position: center top 1.3rem;
  }

  .adult02_01 .flows .flow .card {
    background: #f0f1ed;
    margin-top: 0;
    position: static;
    width: 100%;
    z-index: 2;
  }

  .adult02_01 .flows .flow:has(.circle) .card {
    margin-top: 2rem;
  }

  .adult02_01 .flows .flow .card .p2 {
    color: #000;
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }
}

/* ===========================================================================
  adult02_02
============================================================================ */
.adult02_02 {
  background: #fff;
  padding: 5rem 0;
}

.adult02_02 .wrap01 {
  position: relative;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.gallery:not(.is-slider) .item {
  width: calc((100% - 6rem) / 3);
  /* 3列（gap 3rem * 2） */
}

.gallery .item {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.gallery .item .img {
  aspect-ratio: 314/214;
  overflow: hidden;
}

.gallery .item .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}

.gallery .item span {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  height: 6rem;
  justify-content: center;
  margin-top: .9rem;
  text-align: center;
  white-space: nowrap;
}

.gallery.is-slider {
  display: block;
  overflow: hidden;
  position: relative;
}

.gallery__track {
  display: flex;
  gap: 3rem;
  transform: translateX(0);
}

.gallery__track.is-anim {
  transition: transform .35s ease;
}

.gallery__nav {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
}

.gallery__nav button {
  align-items: center;
  background: rgba(113, 7, 44, .5);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 5rem;
  justify-content: center;
  pointer-events: auto;
  width: 3rem;
}

@media (max-width: 768px) {
  .adult02_02 {
    padding: 4rem 1.5rem;
  }

  .gallery:not(.is-slider) .item {
    width: 100%;
  }

  .gallery .item {
    width: 100%;
  }

  .gallery .item span {
    font-size: 1.4rem;
    height: 4rem;
  }
}

/* ===========================================================================
  adult02_03
============================================================================ */
.adult02_03 .wrap01 {
  padding: 10rem 0 8rem;
}

.adult02_03 .wrap01 .pickup {
  align-items: center;
  display: flex;
  gap: 3.9rem;
  margin: 0 auto;
  padding: 2rem 4.4rem;
  position: relative;
  width: calc(100% - 4rem);
}

.adult02_03 .wrap01 .pickup::before {
  background: #f7f2e4;
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
}

.adult02_03 .wrap01 .pickup .deco {
  background-image: url(../img/adult/tab01_pickup_cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.6rem;
  position: absolute;
  width: 2.6rem;
}

.adult02_03 .wrap01 .pickup .deco01 {
  left: -2rem;
  top: -2rem;
}

.adult02_03 .wrap01 .pickup .deco02 {
  right: -2rem;
  top: -2rem;
}

.adult02_03 .wrap01 .pickup .deco03 {
  bottom: -2rem;
  left: -2rem;
}

.adult02_03 .wrap01 .pickup .deco04 {
  bottom: -2rem;
  right: -2rem;
}

.adult02_03 .wrap01 .pickup .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 30.2rem;
  position: relative;
  width: 30.2rem;
}

.tab_page01 .adult02_03 .wrap01 .pickup .img {
  background-image: url(../img/adult/tab01_pickup_img.png);
}

.tab_page02 .adult02_03 .wrap01 .pickup .img {
  background-image: url(../img/adult/tab02_pickup_img.png);
}

.tab_page03 .adult02_03 .wrap01 .pickup .img {
  background-image: url(../img/adult/tab03_pickup_img.png);
}

.adult02_03 .wrap01 .pickup .txts {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(100% - 30.2rem - 3.9rem);
}

.tab_page01 .adult02_03 .wrap01 .pickup .txts {
  color: #d16640;
}

.tab_page02 .adult02_03 .wrap01 .pickup .txts {
  color: #8e5da4;
}

.tab_page03 .adult02_03 .wrap01 .pickup .txts {
  color: #7d4819;
}

.adult02_03 .wrap01 .pickup .txts .h3 {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.5;
}

.adult02_03 .wrap01 .pickup .txts .h3::before,
.adult02_03 .wrap01 .pickup .txts .h3::after {
  content: '';
  height: .1rem;
  width: 4.6rem;
}

.tab_page01 .adult02_03 .wrap01 .pickup .txts .h3::before,
.tab_page01 .adult02_03 .wrap01 .pickup .txts .h3::after {
  background: #d16640;
}

.tab_page02 .adult02_03 .wrap01 .pickup .txts .h3::before,
.tab_page02 .adult02_03 .wrap01 .pickup .txts .h3::after {
  background: #8e5da4;
}

.tab_page03 .adult02_03 .wrap01 .pickup .txts .h3::before,
.tab_page03 .adult02_03 .wrap01 .pickup .txts .h3::after {
  background: #7d4819;
}

.adult02_03 .wrap01 .pickup .txts .h3::before {
  transform: rotate(-132.36deg);
}

.adult02_03 .wrap01 .pickup .txts .h3::after {
  transform: rotate(132.36deg);
}

.adult02_03 .wrap01 .pickup .txts .h4 {
  align-items: center;
  background: #fff;
  border: solid 1px;
  border-radius: .5rem;
  display: flex;
  font-size: 2.2rem;
  font-weight: 700;
  height: 4.8rem;
  justify-content: center;
  margin-top: 1.4rem;
  width: 100%;
}

.adult02_03 .wrap01 .pickup .txts .p1 {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 1.8rem;
  text-align: justify;
}

.adult02_03 .wrap01 .pickup .txts .p1+.sup {
  margin-top: .6rem;
}

.adult02_03 .wrap01 .pickup .txts .sup {
  color: #000;
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  width: 100%;
}

.adult02_03 .wrap01 .pickup .txts .sup span {
  white-space: nowrap;
}

.adult02_03 .wrap02 {
  align-items: flex-start;
  border-top: 1px solid #000;
  display: flex;
  padding: 2.7rem 0 12rem;
}

.adult02_03 .wrap02 .txts {
  width: calc(100% - 50rem);
}

.adult02_03 .wrap02 .txts .h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.3rem;
}

.adult02_03 .wrap02 .txts .dls01 dl {
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  gap: 1.7rem;
  line-height: 1.5;
}

.adult02_03 .wrap02 .txts .dls01 dl+dl {
  margin-top: 1.3rem;
}

.adult02_03 .wrap02 .txts .dls01 dl dt {
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  width: 4.8rem;
}

.adult02_03 .wrap02 .txts .dls01 dl dd {
  width: calc(100% - 1.7rem - 4.8rem);
}

.adult02_03 .wrap02 .txts .dls01 dl dd .btn {
  border: solid 1px #6f6f6f;
  border-radius: .4rem;
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: .5rem;
  margin-top: .5rem;
  padding: .2rem .6rem;
}

.adult02_03 .wrap02 .txts .dls01 dl dd .btn:hover {
  opacity: .7;
}

.adult02_03 .wrap02 .txts .dls01 dl dd .link {
  color: #0085f2;
  display: block;
  text-decoration: underline;
}

.adult02_03 .wrap02 .txts .dls01 dl dd .link:hover {
  opacity: .7;
}

.adult02_03 .wrap02 .txts .dls01 .btns {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.7rem;
}

.adult02_03 .wrap02 .txts .dls01 .btns .btn {
  align-items: center;
  background: #fff;
  border: solid #1d98f6 1px;
  border-radius: .4rem;
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  height: 2.4rem;
  justify-content: center;
  text-align: center;
  width: 13.4rem;
}

.adult02_03 .wrap02 .txts .dls01 .btns .btn:hover {
  opacity: .7;
}

.adult02_03 .wrap02 .img {
  aspect-ratio: 500/376;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50rem;
}

.tab_page01 .adult02_03 .wrap02 .img {
  background-image: url(../img/adult/tab01_company_img.jpg);
}

.tab_page02 .adult02_03 .wrap02 .img {
  background-image: url(../img/adult/tab02_company_img.jpg);
}

.tab_page03 .adult02_03 .wrap02 .img {
  background-image: url(../img/adult/tab03_company_img.jpg);
}

.adult02_03 .wrap02 .txts .dls02 {
  margin-top: 2.9rem;
}

.adult02_03 .wrap02 .txts .dls02 dl {
  display: flex;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.adult02_03 .wrap02 .txts .dls02 dl dt {
  font-weight: 500;
}

.adult02_03 .wrap02 .txts .dls02 dl dt::before {
  color: #71072c;
  content: '●';
}

@media (max-width: 768px) {
  .adult02_03 .wrap01 {
    padding: 6rem 1.5rem 4rem;
  }

  .adult02_03 .wrap01 .pickup {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    width: calc(100% - 3rem);
  }

  .adult02_03 .wrap01 .pickup .deco {
    height: 1.8rem;
    width: 1.8rem;
  }

  .adult02_03 .wrap01 .pickup .deco01 {
    left: -1.5rem;
    top: -1.5rem;
  }

  .adult02_03 .wrap01 .pickup .deco02 {
    right: -1.5rem;
    top: -1.5rem;
  }

  .adult02_03 .wrap01 .pickup .deco03 {
    bottom: -1.5rem;
    left: -1.5rem;
  }

  .adult02_03 .wrap01 .pickup .deco04 {
    bottom: -1.5rem;
    right: -1.5rem;
  }

  .adult02_03 .wrap01 .pickup .img {
    height: 20rem;
    width: 20rem;
  }

  .adult02_03 .wrap01 .pickup .txts {
    width: 100%;
  }

  .adult02_03 .wrap01 .pickup .txts .h3 {
    font-size: 1.4rem;
  }

  .adult02_03 .wrap01 .pickup .txts .h3::before,
  .adult02_03 .wrap01 .pickup .txts .h3::after {
    width: 2.5rem;
  }

  .adult02_03 .wrap01 .pickup .txts .h4 {
    font-size: 1.6rem;
    height: auto;
    margin-top: .7rem;
    padding: .5rem 1rem;
    text-align: center;
  }

  .adult02_03 .wrap01 .pickup .txts .p1 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  .adult02_03 .wrap01 .pickup .txts .sup {
    flex-direction: column;
    font-size: 1.2rem;
    margin-top: .4rem !important;
  }

  .adult02_03 .wrap02 {
    align-items: center;
    flex-direction: column;
    padding: 3rem 1.5rem 6rem;
  }

  .adult02_03 .wrap02 .txts {
    width: 100%;
  }

  .adult02_03 .wrap02 .txts .h3 {
    font-size: 1.6rem;
    margin-bottom: 1.3rem;
  }

  .adult02_03 .wrap02 .txts .dls01 dl {
    display: block;
    font-size: 1.4rem;
  }

  .adult02_03 .wrap02 .txts .dls01 dl+dl {
    margin-top: 1rem;
  }

  .adult02_03 .wrap02 .txts .dls01 dl dd {
    width: 100%;
  }

  .adult02_03 .wrap02 .txts .dls01 dl dd .btn {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .adult02_03 .wrap02 .txts .dls01 .btns {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .adult02_03 .wrap02 .txts .dls01 .btns .btn {
    width: calc((100% - 1rem) / 2);
  }

  .adult02_03 .wrap02 .img {
    margin-top: 2rem;
    width: 100%;
  }

  .adult02_03 .wrap02 .txts .dls02 {
    margin-top: 1.3rem;
  }

  .adult02_03 .wrap02 .txts .dls02 dl {
    display: block;
    font-size: 1.4rem;
  }

  .adult02_03 .wrap02 .txts .dls02 dl+dl {
    margin-top: 1rem;
  }
}

/* ===========================================================================
  adult03
============================================================================ */
.adult03 {
  border-top: 1px solid #71072c;
}

.adult03 .h2 {
  margin: 0 auto;
  position: relative;
  width: 71rem;
}

.adult03 .h2 span {
  align-items: center;
  background: #fff;
  border: solid 1px;
  color: #71072c;
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  height: 3.9rem;
  justify-content: center;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: -3.9rem;
  width: 100%;
  z-index: 2;
}

.adult03 .h2::before,
.adult03 .h2::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1.95rem;
  content: '';
  height: 3.9rem;
  position: absolute;
  width: 7.9rem;
}

.adult03 .h2::before {
  background-image: url(../img/adult/ribbon_left.svg);
  left: -3.85rem;
}

.adult03 .h2::after {
  background-image: url(../img/adult/ribbon_right.svg);
  right: -3.85rem;
}

.adult03 .wrap01 {
  padding: 10rem 0 5.5rem;
}

.adult03 .wrap01 .flows .flow {
  display: flex;
}

.adult03 .wrap01 .flows .flow+.flow {
  margin-top: 6rem;
}

.adult03 .wrap01 .flows .flow .left {
  background: #ebe0d0;
  border: solid 1px;
  border-radius: 1rem 0 0 1rem;
  padding: 3rem 1.8rem 0;
  position: relative;
  width: 33.3rem;
}

.adult03 .wrap01 .flows .flow+.flow .left::before {
  background-image: url(../img/adult/flow_arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 2.4rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -5rem;
  width: 3.7rem;
}

.adult03 .wrap01 .flows .flow .left .label {
  align-items: center;
  background: #d47c5c;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  height: 3rem;
  justify-content: center;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -1.5rem;
  width: 29.7rem;
}

.adult03 .wrap01 .flows .flow .left .h3 {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  height: 9.6rem;
  padding-left: .5rem;
}

.adult03 .wrap01 .flows .flow .left .h3::before {
  background-image: url(../img/adult/icon_food.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 100%;
  content: '';
  height: 5.8rem;
  width: 5.8rem;
}

.adult03 .wrap01 .flows .flow .left .h3.food::before {
  background-image: url(../img/adult/icon_food.svg);
}

.adult03 .wrap01 .flows .flow .left .h3.build::before {
  background-image: url(../img/adult/icon_build.svg);
}

.adult03 .wrap01 .flows .flow .left .h3.camera::before {
  background-image: url(../img/adult/icon_camera.svg);
}

.adult03 .wrap01 .flows .flow .left .h3 span {
  color: #71072c;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
  width: calc(100% - 1.5rem - 5.8rem);
}

.adult03 .wrap01 .flows .flow .left .img {
  aspect-ratio: 296/196;
  border-radius: .5rem;
  margin-top: .9rem;
  overflow: hidden;
  width: 100%;
}

.adult03 .wrap01 .flows .flow .left .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}

.adult03 .wrap01 .flows .flow .left .cap {
  align-items: center;
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  height: 2rem;
  justify-content: flex-end;
}

.adult03 .wrap01 .flows .flow .right {
  background: #fff;
  border: solid 1px;
  border-left: none;
  border-radius: 0 1rem 1rem 0;
  padding: 2.7rem 3rem 2rem;
  width: calc(100% - 33.3rem);
}

.adult03 .wrap01 .flows .flow .right .h4 {
  color: #71072c;
  font-size: 2rem;
  font-weight: 500;
  font-weight: 500;
}

.adult03 .wrap01 .flows .flow .right p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}

.adult03 .wrap01 .flows .flow .right .p1 {
  font-weight: 500;
  margin-top: 2.3rem;
}

.adult03 .wrap01 .flows .flow .right .p2 {
  margin-top: 1.7rem;
}

.adult03 .wrap01 .flows .flow .right .dls01 {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: .6rem;
}

.adult03 .wrap01 .flows .flow .right .dls01 dl:not(.col) {
  display: flex;
}

.adult03 .wrap01 .flows .flow .right .dls01 dl>dt {
  font-weight: 500;
  white-space: nowrap;
}

.adult03 .wrap01 .flows .flow .right .dls01 dl>dd>dl {
  display: flex;
}

.adult03 .wrap01 .flows .flow .right .dls01 dl>dd>dl>dt {
  font-weight: 400;
}

.adult03 .wrap01 .flows .flow .right .dls01 small {
  font-size: 1rem;
}

.adult03 .wrap01 .flows .flow .right .link {
  color: #004bb1;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: underline;
}

.adult03 .wrap01 .flows .flow .right .link:hover {
  opacity: .7;
}

.adult03 .wrap01>.sup {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.4rem;
  text-align: right;
}

.adult03 .wrap02 {
  align-items: center;
  display: flex;
  min-height: 21.4rem;
  overflow: hidden;
  padding: 4.7rem 3rem 4.7rem 21.2rem;
  position: relative;
}

.tab_page01 .adult03 .wrap02 {
  background: #d47c5c;
}

.tab_page02 .adult03 .wrap02 {
  background: #8e5da4;
}

.tab_page03 .adult03 .wrap02 {
  background: #7d4819;
}

.adult03 .wrap02 .h3 {
  background-image: url(../img/adult/hukidashi.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  font-size: 2.8rem;
  font-weight: 500;
  height: 17.2rem;
  justify-content: center;
  left: -2.8rem;
  padding-top: 2rem;
  position: absolute;
  text-align: center;
  top: 0;
  width: 23.9rem;
}

.adult03 .wrap02 .txts {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-left: auto;
  width: 100%;
}

.adult03 .wrap02 .ul li {
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  gap: .5rem;
  line-height: 2;
}

.adult03 .wrap02 .ul li::before {
  content: '★';
}

@media (max-width: 768px) {
  .adult03 {
    border-top: none;
    padding-top: 2rem;
  }

  .adult03 .h2 {
    height: 7rem;
    width: 30rem;
  }

  .adult03 .h2 span {
    align-items: center;
    background: #fff;
    border: solid 1px;
    color: #71072c;
    display: flex;
    font-size: 1.8rem;
    font-weight: 500;
    height: 7rem;
    justify-content: center;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 2;
  }

  .adult03 .h2::before,
  .adult03 .h2::after {
    bottom: auto;
    top: 3.5rem;
  }

  .adult03 .wrap01 {
    padding: 4rem 1.5rem;
  }

  .adult03 .wrap01 .flows .flow {
    display: block;
  }

  .adult03 .wrap01 .flows .flow+.flow {
    margin-top: 6rem;
  }

  .adult03 .wrap01 .flows .flow .left {
    border-bottom: none;
    border-radius: .5rem .5rem 0 0;
    padding: 3rem 1.5rem 0;
    width: 100%;
  }

  .adult03 .wrap01 .flows .flow+.flow .left::before {
    background-image: url(../img/adult/flow_arrow02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    height: 2.4rem;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: -5rem;
    width: 3.7rem;
  }

  .adult03 .wrap01 .flows .flow .left .h3 {
    padding-left: 0;
  }

  .adult03 .wrap01 .flows .flow .right {
    border: solid 1px;
    border-radius: 0 0 .5rem .5rem;
    border-top: none;
    padding: 2rem 1.5rem 2rem;
    width: 100%;
  }

  .adult03 .wrap01 .flows .flow .right .h4 {
    font-size: 1.8rem;
  }

  .adult03 .wrap01 .flows .flow .right .p1 {
    margin-top: 1rem;
  }

  .adult03 .wrap01 .flows .flow .right .p2 {
    margin-top: 1rem;
  }

  .adult03 .wrap01 .flows .flow .right .dls01 dl:not(.col) {
    display: flex;
  }

  .adult03 .wrap01 .flows .flow .right .dls01 dl {
    font-size: 1.2rem;
  }

  .adult03 .wrap02 {
    padding: 19rem 1.5rem 4rem;
  }

  .adult03 .wrap02 .h3 {
    font-size: 2.4rem;
    padding-top: 3rem;
  }

  .adult03 .wrap02 .ul li {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .adult03 .wrap02 .ul li+li {
    margin-top: 1rem;
  }
}