@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:root {
  --color-primary: #009fb3;
  --color-secondary: #80c5e5;
  --color-yellow: #f2da45;
  --color-point-1: #e3b577;
  --color-point-2: #7682be;
  --color-male: #008fd9;
  --color-female: #bd0066;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #222;
  --color-bg: #efebef;
  --font-kaku: "Zen Kaku Gothic New", sans-serif;
  --font-maru: "Zen Maru Gothic", sans-serif;
}

html {
  scroll-behavior: auto;
  font-family: var(--font-kaku);
  color: var(--color-text);
}

@media (769px <= width) {
  .dp_sp {
    display: none;
  }
}

@media (width <= 768px) {
  .dp_pc {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  padding: 0 2%;
  box-sizing: border-box;
  z-index: 2;
  transition: 0.6s;
}
.header__logo {
  max-width: min(184px, 24.5333333333vw);
  width: 100%;
  height: auto;
  z-index: 1;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: min(60px, 8vw);
  z-index: 1;
}
.header__nav__main {
  display: none;
  align-items: center;
  flex-direction: column;
  position: fixed;
  justify-content: center;
  left: 0;
  top: 100px;
  background: rgba(var(--color-primary), 0.9);
  background: color-mix(in srgb, var(--color-primary) 90%, transparent);
  width: 100%;
  height: calc(100vh - 100px);
  gap: min(40px, 5.3333333333vw);
  transition: 0.3s;
}
.header__nav__main a {
  font-size: min(26px, 3.4666666667vw);
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--font-kaku);
  letter-spacing: 0.075em;
  display: inline-block;
  padding: 10px 0;
  position: relative;
}
.header__nav__main a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  background: var(--color-white);
  display: block;
}
.header__nav__main.open {
  display: flex;
}
.header__nav__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  text-decoration: none;
  width: min(190px, 25.3333333333vw);
  height: min(44px, 5.8666666667vw);
  border-radius: 44px;
  transition: 0.4s;
}
@media (768px <= width) {
  .header__nav__contact a:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
}
.header__nav__toggle {
  border: 1px solid var(--color-primary);
  background: var(--color-white);
  width: min(74px, 9.8666666667vw);
  height: min(74px, 9.8666666667vw);
  border-radius: 74px;
  position: relative;
  cursor: pointer;
}
.header__nav__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: min(4px, 0.5333333333vw);
  width: 48%;
  background: var(--color-primary);
  display: block;
  transition: 0.3s;
  transform-origin: center;
}
.header__nav__toggle span:nth-child(1) {
  top: 33%;
}
.header__nav__toggle span:nth-child(2) {
  top: 50%;
}
.header__nav__toggle span:nth-child(3) {
  top: 66%;
}
.header__nav__toggle:hover span {
  width: 48%;
}
.header__nav__toggle:hover span:nth-child(1) {
  top: 30%;
}
.header__nav__toggle:hover span:nth-child(2) {
  width: 35%;
}
.header__nav__toggle:hover span:nth-child(3) {
  top: 69%;
}
.header__nav__toggle.open span:nth-child(1) {
  top: 46%;
  transform: rotate(45deg);
  left: 26%;
}
.header__nav__toggle.open span:nth-child(2) {
  width: 0;
}
.header__nav__toggle.open span:nth-child(3) {
  top: 46%;
  transform: rotate(-45deg);
  left: 26%;
}
.header::before {
  position: absolute;
  content: "";
  display: block;
  background: var(--color-white);
  width: 0;
  height: 100%;
  left: 0;
  z-index: 1;
  transition: 0.6s;
}
.header.scroll {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}
.header.scroll::before {
  width: 100%;
}

@media (width <= 767px) {
  .header {
    height: min(120px, 16vw);
  }
  .header__logo {
    max-width: min(218px, 29.0666666667vw);
  }
  .header__nav {
    gap: min(30px, 4vw);
  }
  .header__nav__main {
    top: min(120px, 16vw);
    height: calc(100vh - min(120px, 16vw));
  }
  .header__nav__main a {
    font-size: min(36px, 4.8vw);
    padding: min(10px, 1.3333333333vw) 0;
  }
  .header__nav__contact a {
    width: min(220px, 29.3333333333vw);
    height: min(52px, 6.9333333333vw);
    font-size: min(24px, 3.2vw);
  }
}
#main {
  margin-top: 100px;
}
@media (width <= 767px) {
  #main {
    margin-top: min(120px, 16vw);
  }
}

#mv {
  position: relative;
  height: 100vh;
  min-height: 900px;
  display: flex;
  overflow: hidden;
}
#mv .mv__bg__left {
  position: relative;
  width: 30%;
  display: flex;
  align-items: center;
}
#mv .mv__bg__left img {
  position: absolute;
  top: calc(50% - 100px);
  max-width: 922px;
  width: 200%;
  transform: translateX(-50%) translateY(-50%) scale(1.2) rotate(15deg);
  transition: 1.5s;
  opacity: 0;
}
#mv .mv__bg__right {
  position: relative;
  width: 30%;
  display: flex;
  align-items: center;
  margin-right: auto;
}
#mv .mv__bg__right img {
  position: absolute;
  top: calc(50% - 100px);
  right: 0;
  max-width: 922px;
  width: 200%;
  transform: translateX(50%) translateY(-50%) scale(1.2) rotate(-15deg);
  transition: 1.5s;
  opacity: 0;
}
#mv .mv__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  gap: min(100px, 13.3333333333vh);
}
#mv .mv__main__logo img {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: 1s;
  transition-delay: 1s;
  opacity: 0;
}
#mv .mv__main__txt img {
  width: 495px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: 1s;
  transition-delay: 1.2s;
  opacity: 0;
}
#mv .mv__main__cursor {
  padding-top: min(60px, 8vh);
}
#mv .mv__main__cursor img {
  width: 174px;
  height: auto;
  display: block;
  margin: 0 auto;
}
#mv.loaded .mv__bg__left img {
  transform: translateX(-50%) translateY(-50%) scale(1);
  opacity: 1;
}
#mv.loaded .mv__bg__right img {
  transform: translateX(50%) translateY(-50%) scale(1);
  opacity: 1;
}
#mv.loaded .mv__main__logo img {
  opacity: 1;
}
#mv.loaded .mv__main__txt img {
  opacity: 1;
}
@media (width <= 767px) {
  #mv {
    height: 80vh;
    min-height: auto;
  }
  #mv .mv__bg__left {
    width: 21.333%;
  }
  #mv .mv__bg__left img {
    top: calc(50% - min(120px, 16vw));
    max-width: auto;
    width: min(697px, 92.9333333333vw);
    transform: translateX(-78.666%) translateY(-50%) scale(1.2) rotate(15deg);
  }
  #mv .mv__bg__right {
    width: 21.333%;
  }
  #mv .mv__bg__right img {
    top: calc(50% - min(120px, 16vw));
    max-width: auto;
    width: min(697px, 92.9333333333vw);
    right: 0;
    transform: translateX(78.666%) translateY(-50%) scale(1.2) rotate(15deg);
  }
  #mv .mv__main {
    width: 57.333%;
    gap: min(80px, 10.6666666667vh);
  }
  #mv .mv__main__logo img {
    width: min(330px, 44vw);
  }
  #mv .mv__main__txt img {
    width: min(400px, 53.3333333333vw);
  }
  #mv .mv__main__cursor {
    padding-top: 0;
  }
  #mv .mv__main__cursor img {
    width: min(180px, 24vw);
  }
  #mv.loaded .mv__bg__left img {
    transform: translateX(-78.666%) translateY(-50%) scale(1);
    opacity: 1;
  }
  #mv.loaded .mv__bg__right img {
    transform: translateX(78.666%) translateY(-50%) scale(1);
    opacity: 1;
  }
}
.contents_section {
  padding: min(100px, 8.3333333333vw) 4%;
}

@media (width <= 767px) {
  .contents_section {
    padding-left: 9%;
    padding-right: 9%;
  }
}
.news {
  background: #f2f7fa url("../img/news_bg.png") 5% 99%/min(461px, 38.4166666667vw) auto no-repeat;
}
.news__wrap {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.news__wrap h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.news__wrap h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(280px, 23.3333333333vw);
}
.news__wrap__block ul li {
  letter-spacing: 0.075em;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: min(40px, 3.3333333333vw);
  margin-bottom: min(64px, 5.3333333333vw);
}
.news__wrap__block ul li time {
  font-size: min(28px, 2.3333333333vw);
  margin-bottom: min(16px, 1.3333333333vw);
  display: block;
}
.news__wrap__block ul li a,
.news__wrap__block ul li p {
  font-size: min(32px, 2.6666666667vw);
  text-decoration: none;
  color: var(--color-text);
}
.news__wrap__block__btn {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  padding-left: 3%;
  width: min(260px, 21.6666666667vw);
  height: min(91px, 7.5833333333vw);
  font-size: min(28px, 2.3333333333vw);
  border-radius: min(28px, 2.3333333333vw);
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: 1px solid var(--color-primary);
  transition: 0.4s;
}
.news__wrap__block__btn svg {
  position: absolute;
  right: 10%;
  width: min(27.5px, 2.2916666667vw);
  height: auto;
  stroke: #fff;
  stroke-width: 2px;
  transition: 0.4s;
}
@media (768px <= width) {
  .news__wrap__block__btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
  .news__wrap__block__btn:hover svg {
    right: 6%;
    stroke: var(--color-primary);
    transition: 0.4s;
    transition-delay: 0.1s;
  }
}

@media (width <= 767px) {
  .news {
    padding: min(100px, 13.3333333333vw) 8% min(200px, 26.6666666667vw);
  }
  .news__wrap h2 {
    font-size: min(36px, 4.8vw);
  }
  .news__wrap h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .news__wrap__block ul li {
    padding-bottom: min(40px, 5.3333333333vw);
    margin-bottom: min(40px, 5.3333333333vw);
  }
  .news__wrap__block ul li time {
    font-size: min(28px, 3.7333333333vw);
    margin-bottom: min(16px, 2.1333333333vw);
  }
  .news__wrap__block ul li a,
  .news__wrap__block ul li p {
    font-size: min(28px, 3.7333333333vw);
  }
  .news__wrap__block__btn {
    width: min(280px, 37.3333333333vw);
    height: min(91px, 12.1333333333vw);
    font-size: min(28px, 3.7333333333vw);
    border-radius: min(28px, 3.7333333333vw);
  }
  .news__wrap__block__btn svg {
    width: min(27.5px, 3.6666666667vw);
  }
}
.diary {
  padding: min(360px, 30vw) 0 0;
}
.diary__wrap {
  width: 100%;
  margin-inline: auto;
}
.diary__wrap h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.diary__wrap h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(180px, 15vw);
}
.diary__wrap .swiper-slide {
  padding: 0 4%;
}
.diary__wrap .swiper-slide a {
  width: min(516px, 43vw);
  display: block;
  border: 1px solid var(--color-primary);
  border-radius: min(16px, 1.3333333333vw);
  padding: min(35px, 2.9166666667vw);
  margin-inline: auto;
  font-size: min(21px, 1.75vw);
  color: var(--color-text);
  text-decoration: none;
  line-height: 1.9047619048;
  letter-spacing: 0.015em;
}
.diary__wrap .swiper-slide a img {
  padding-bottom: min(32px, 2.6666666667vw);
}
.diary__wrap .swiper-slide a time {
  margin-top: min(96px, 8vw);
  display: block;
  position: relative;
}
.diary__wrap .swiper-slide a time span {
  display: inline-block;
  background: #fff;
  padding: 0 8px 0 0;
  position: relative;
}
.diary__wrap .swiper-slide a time::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}
.diary__wrap .swiper-slide a time::after {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--color-primary);
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  transform: rotate(45deg);
}
.diary__wrap__block__btn {
  margin-top: min(100px, 8.3333333333vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(370px, 30.8333333333vw);
  height: min(91px, 7.5833333333vw);
  background: var(--color-primary);
  font-size: min(28px, 2.3333333333vw);
  border-radius: min(28px, 2.3333333333vw);
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: 1px solid var(--color-primary);
  transition: 0.4s;
}
.diary__wrap__block__btn svg {
  position: absolute;
  right: 10%;
  width: min(27.5px, 2.2916666667vw);
  height: auto;
  stroke: #fff;
  stroke-width: 2px;
  transition: 0.4s;
}
@media (768px <= width) {
  .diary__wrap__block__btn:hover {
    background: var(--color-white);
    color: var(--color-primary);
  }
  .diary__wrap__block__btn:hover svg {
    right: 6%;
    stroke: var(--color-primary);
    transition: 0.4s;
    transition-delay: 0.1s;
  }
}

@media (width <= 767px) {
  .diary {
    padding: min(100px, 13.3333333333vw) 0 min(200px, 26.6666666667vw);
  }
  .diary__wrap h2 {
    font-size: min(36px, 4.8vw);
  }
  .diary__wrap h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .diary__wrap .swiper-slide {
    padding: 0;
  }
  .diary__wrap .swiper-slide a {
    width: min(600px, 80vw);
    border-radius: min(16px, 2.1333333333vw);
    padding: min(35px, 4.6666666667vw);
    font-size: min(28px, 3.7333333333vw);
  }
  .diary__wrap .swiper-slide a img {
    padding-bottom: min(40px, 5.3333333333vw);
  }
  .diary__wrap .swiper-slide a time {
    margin-top: min(80px, 10.6666666667vw);
  }
  .diary__wrap__block__btn {
    margin-top: 0;
    width: min(450px, 60vw);
    height: min(120px, 16vw);
    font-size: min(32px, 4.2666666667vw);
    border-radius: min(28px, 3.7333333333vw);
  }
  .diary__wrap__block__btn svg {
    width: min(36px, 4.8vw);
  }
}
.character {
  padding: min(360px, 30vw) 0 0;
}
.character h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.character h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(180px, 15vw);
}
.character__frame {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
.character__frame::before, .character__frame::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -2;
}
.character__frame::before {
  left: 0;
  background: #bee2f1;
}
.character__frame::after {
  right: 0;
  background: #fae869;
}
.character__frame__title {
  text-align: center;
  margin-bottom: 120px;
}
.character__frame__title h3 {
  color: var(--color-white);
  display: inline-block;
  font-size: min(112px, 9.3333333333vw);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  padding: 16px 0 32px;
  font-family: var(--font-maru);
  margin-right: -0.15em;
}
.character__frame__title h3::before, .character__frame__title h3::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  border-top: 16px double #fff;
}
.character__frame__title h3::before {
  top: 0;
}
.character__frame__title h3::after {
  bottom: 0;
}
.character__frame__main__profile {
  display: flex;
  background: #fff;
  border-radius: 16px;
  width: 90%;
  padding: min(64px, 5.3333333333vw);
  position: relative;
  margin-left: -16px;
  border: 4px solid var(--color-secondary);
}
.character__frame__main__profile__img {
  position: absolute;
  top: -12%;
  left: min(64px, 5.3333333333vw);
  width: 26%;
}
.character__frame__main__profile__img img {
  width: 100%;
}
.character__frame__main__profile__detail {
  width: 68%;
  margin-left: 32%;
  font-family: var(--font-maru);
}
.character__frame__main__profile__detail h4 {
  background: url("../img/character/charcter_01_title.png") center/contain no-repeat;
  width: min(387px, 32.25vw);
  height: min(132px, 11vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: min(50px, 4.1666666667vw);
  line-height: 1;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  margin-bottom: min(40px, 3.3333333333vw);
}
.character__frame__main__profile__detail h4 span {
  font-size: min(27px, 2.25vw);
  margin-top: 4px;
}
.character__frame__main__profile__detail dl {
  display: flex;
  flex-wrap: wrap;
  gap: min(40px, 3.3333333333vw) 0;
}
.character__frame__main__profile__detail dl dt {
  width: 20%;
  padding-right: 4%;
  color: var(--color-secondary);
  font-size: min(40px, 3.3333333333vw);
  letter-spacing: 0.1em;
  text-align: right;
}
.character__frame__main__profile__detail dl dd {
  width: 80%;
  padding-left: 4%;
  background: url("../img/character/charcter_partition.png") left top/auto repeat-y;
}
.character__frame__main__profile__detail dl dd p {
  font-size: min(28px, 2.3333333333vw);
  color: var(--color-text);
}
.character__frame__main__profile__detail dl dd p strong {
  font-size: min(38px, 3.1666666667vw);
  font-weight: 400;
  display: block;
  color: var(--color-secondary);
}
.character__frame__main__profile::after {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: url("../img/character/charcter_01_bg.png");
  border-radius: 0 0 20px 0;
}
.character__frame__main__profile.character_02 {
  margin-left: 0;
  margin-right: -16px;
  margin-inline-start: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  border: 4px solid #f7d700;
}
.character__frame__main__profile.character_02 .character__frame__main__profile__img {
  position: absolute;
  top: -24%;
  width: 24%;
}
.character__frame__main__profile.character_02 .character__frame__main__profile__detail {
  width: 60%;
  margin-left: 40%;
}
.character__frame__main__profile.character_02 .character__frame__main__profile__detail h4 {
  background: url("../img/character/charcter_02_title.png") center/contain no-repeat;
  color: #f7d700;
}
.character__frame__main__profile.character_02 .character__frame__main__profile__detail dl dt {
  color: #f7d700;
}
.character__frame__main__profile.character_02 .character__frame__main__profile__detail dl dd p strong {
  color: #f7d700;
}
.character__frame__main__profile.character_02::after {
  bottom: -24px;
  left: 20px;
  background: url("../img/character/charcter_02_bg.png");
  border-radius: 0 0 0 20px;
}

@media (width <= 767px) {
  .character {
    padding: 0;
  }
  .character h2 {
    font-size: min(36px, 4.8vw);
  }
  .character h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .character__frame__head img {
    width: 100vw;
    height: 70vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .character__frame__title {
    text-align: center;
    margin-bottom: 20.8333333333vw;
  }
  .character__frame__title h3 {
    font-size: 11.71875vw;
    padding: 2.0833333333vw 0 4.1666666667vw;
  }
  .character__frame__title h3::before, .character__frame__title h3::after {
    border-top: 2.0833333333vw double #fff;
  }
  .character__frame__main__profile {
    border-radius: 2.0833333333vw;
    padding: min(64px, 5.3333333333vw);
    margin-left: 5%;
    border: min(6px, 0.5vw) solid var(--color-secondary);
    display: block;
  }
  .character__frame__main__profile__img {
    position: relative;
    top: auto;
    left: auto;
    width: 40%;
    margin-inline: auto;
    margin: -18vw auto 5vw;
  }
  .character__frame__main__profile__detail {
    width: 100%;
    margin-left: 0;
  }
  .character__frame__main__profile__detail h4 {
    width: min(387px, 50.390625vw);
    height: min(132px, 17.1875vw);
    font-size: min(46px, 5.9895833333vw);
    padding-bottom: min(10px, 1.3020833333vw);
    margin-bottom: min(72px, 9.375vw);
    margin-inline: auto;
  }
  .character__frame__main__profile__detail h4 span {
    font-size: min(27px, 3.515625vw);
    margin-top: 4px;
  }
  .character__frame__main__profile__detail dl {
    gap: min(50px, 6.5104166667vw) 0;
    padding-bottom: min(32px, 4.1666666667vw);
  }
  .character__frame__main__profile__detail dl dt {
    width: 28%;
    padding-right: 4%;
    font-size: min(42px, 5.46875vw);
  }
  .character__frame__main__profile__detail dl dd {
    width: 72%;
    background: url("../img/character/charcter_partition.png") left top/auto repeat-y;
  }
  .character__frame__main__profile__detail dl dd p {
    font-size: min(28px, 3.6458333333vw);
  }
  .character__frame__main__profile__detail dl dd p strong {
    font-size: min(38px, 4.9479166667vw);
    margin-top: 2px;
    margin-bottom: 8px;
  }
  .character__frame__main__profile::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: -2vw;
    left: -2vw;
    background: url("../img/character/charcter_01_bg.png") top left/16px auto;
    border-radius: 2vw;
    z-index: -1;
  }
  .character__frame__main__profile.character_02 {
    margin-left: 0;
    margin-right: 5%;
    margin-inline-start: auto;
    margin-top: min(112px, 14.5833333333vw);
    margin-bottom: min(112px, 14.5833333333vw);
    border: min(6px, 0.5vw) solid #f7d700;
  }
  .character__frame__main__profile.character_02 .character__frame__main__profile__img {
    position: relative;
    top: auto;
    left: auto;
    width: 34%;
    margin-inline: auto;
    margin: -24vw auto 5vw;
  }
  .character__frame__main__profile.character_02 .character__frame__main__profile__detail {
    width: 100%;
    margin-left: 0;
  }
  .character__frame__main__profile.character_02::after {
    display: block;
    position: absolute;
    bottom: -2vw;
    left: 2vw;
    background: url("../img/character/charcter_02_bg.png") top left/16px auto;
    border-radius: 2vw;
    z-index: -1;
  }
}
.cancer {
  padding-left: 0;
  padding-right: 0;
}
.cancer h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.cancer h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(180px, 15vw);
}
.cancer__block {
  display: flex;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.cancer__block__left {
  width: 215px;
}
.cancer__block__right {
  width: 215px;
}
.cancer__block__wrap {
  width: calc(100% - 430px);
  background: url("../img/cancer/cancer_line_center.png") top center/3840px 1000px no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cancer__block__wrap__item {
  display: block;
  width: 310px;
  height: 140px;
  border: 2px solid var(--color-primary);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
}
.cancer__block__wrap__item .kind {
  position: absolute;
  top: 0;
  left: 5%;
  background: var(--color-white);
  width: 90%;
  margin-inline: auto;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  font-weight: 500;
}
.cancer__block__wrap__item .kind span {
  display: inline-block;
  padding: 3px;
  border-bottom: 1px solid var(--color-primary);
}
.cancer__block__wrap__item .detail {
  font-size: 21px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cancer__block__wrap__item .detail::before {
  content: "●";
  margin-right: 4px;
  font-size: 6px;
  color: var(--color-primary);
}
.cancer__block__wrap__item p {
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  font-feature-settings: "palt";
}
.cancer__block__wrap__item p small {
  font-size: 16px;
}
.cancer__block__wrap__item:nth-child(1) {
  top: 13%;
  transform: translateX(-220px);
}
.cancer__block__wrap__item:nth-child(2) {
  top: 9%;
  transform: translateX(220px);
}
.cancer__block__wrap__item:nth-child(3) {
  top: 5.3%;
  transform: translateX(-220px);
}
.cancer__block__wrap__item:nth-child(4) {
  top: 1%;
  transform: translateX(220px);
}
.cancer__block__wrap__item:nth-child(5) {
  top: -2%;
  transform: translateX(-220px);
  border: 2px solid var(--color-point-1);
}
.cancer__block__wrap__item:nth-child(5) .kind span {
  border-bottom: 1px solid var(--color-point-1);
}
.cancer__block__wrap__item:nth-child(5) .detail::before {
  color: var(--color-point-1);
}
.cancer__block::before {
  content: "";
  background: url("../img/cancer/canter_man_bg.png") center/auto no-repeat;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 360px;
  height: 1000px;
  transform: translateX(-50%);
  z-index: -1;
}
.cancer__block::after {
  content: "";
  background: url("../img/cancer/canter_woman_bg.png") center/auto no-repeat;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 590px;
  height: 1000px;
  transform: translateX(50%);
  z-index: -1;
}

@media (width <= 1200px) {
  .cancer__block {
    background: none;
  }
  .cancer__block__left {
    width: 21.333%;
    display: flex;
    align-items: center;
    padding-top: 5%;
  }
  .cancer__block__right {
    width: 21.333%;
    display: flex;
    align-items: center;
    padding-top: 5%;
  }
  .cancer__block__wrap {
    width: 57.333%;
    background: none;
    padding: min(16px, 1.3333333333vw) 0;
  }
  .cancer__block__wrap__item {
    width: 100%;
    height: auto;
    aspect-ratio: 420/150;
    border: 1px solid var(--color-primary);
    padding-top: min(20px, 1.6666666667vw);
  }
  .cancer__block__wrap__item .kind {
    font-size: min(28px, 2.3333333333vw);
    left: 8%;
    width: 84%;
  }
  .cancer__block__wrap__item .detail {
    font-size: min(28px, 2.3333333333vw);
  }
  .cancer__block__wrap__item p {
    font-size: min(23px, 1.9166666667vw);
    padding-top: min(16px, 1.3333333333vw);
  }
  .cancer__block__wrap__item p small {
    font-size: min(21px, 1.75vw);
  }
  .cancer__block__wrap__item:nth-child(1), .cancer__block__wrap__item:nth-child(2), .cancer__block__wrap__item:nth-child(3), .cancer__block__wrap__item:nth-child(4), .cancer__block__wrap__item:nth-child(5) {
    top: auto;
    transform: translateX(0);
  }
  .cancer__block__wrap__item:nth-child(5) {
    border: 1px solid var(--color-point-1);
  }
  .cancer__block__wrap__item + .cancer__block__wrap__item {
    margin-top: min(70px, 5.8333333333vw);
  }
  .cancer__block::before {
    background: url("../img/cancer/canter_man_bg.png") center/contain no-repeat;
    top: 50%;
    width: min(310px, 25.8333333333vw);
    height: min(977px, 81.4166666667vw);
    transform: translateX(-50%) translateY(-50%);
  }
  .cancer__block::after {
    content: "";
    background: url("../img/cancer/canter_woman_bg.png") center/contain no-repeat;
    top: 50%;
    width: min(572px, 47.6666666667vw);
    height: min(977px, 81.4166666667vw);
    transform: translateX(50%) translateY(-50%);
  }
}
@media (width <= 767px) {
  .cancer h2 {
    font-size: min(36px, 4.8vw);
  }
  .cancer h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .cancer__block__wrap {
    padding: min(16px, 2.1333333333vw) 0;
  }
  .cancer__block__wrap__item {
    padding-top: min(20px, 2.6666666667vw);
  }
  .cancer__block__wrap__item .kind {
    font-size: min(28px, 3.7333333333vw);
  }
  .cancer__block__wrap__item .detail {
    font-size: min(28px, 3.7333333333vw);
  }
  .cancer__block__wrap__item p {
    font-size: min(23px, 3.0666666667vw);
    padding-top: min(16px, 2.1333333333vw);
  }
  .cancer__block__wrap__item p small {
    font-size: min(21px, 2.8vw);
  }
  .cancer__block__wrap__item + .cancer__block__wrap__item {
    margin-top: min(45px, 6vw);
  }
  .cancer__block::before {
    width: min(218px, 29.0666666667vw);
    height: min(614px, 81.8666666667vw);
  }
  .cancer__block::after {
    width: min(360px, 48vw);
    height: min(614px, 81.8666666667vw);
  }
}
.prediction {
  overflow-x: hidden;
}
.prediction h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.prediction h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(160px, 13.3333333333vw);
}
.prediction__block {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
.prediction__block__item {
  width: min(620px, 51.6666666667vw);
  height: min(500px, 41.6666666667vw);
  position: relative;
  display: flex;
  align-items: center;
}
.prediction__block__item ul li {
  color: var(--color-white);
  font-size: min(21px, 1.75vw);
  letter-spacing: 0.075em;
}
.prediction__block__item ul li span {
  display: inline-block;
  line-height: 21px;
}
.prediction__block__item ul li span::after {
  content: "";
  width: 100%;
  height: 6px;
  border-top: 1px solid #fff;
  display: inline-block;
}
.prediction__block__item ul li + li {
  margin-top: min(24px, 2vw);
}
.prediction__block__item ul li.large {
  font-size: min(35px, 2.9166666667vw);
  font-weight: 500;
}
.prediction__block__item ul li.large span::after {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.prediction__block__item img {
  position: absolute;
  top: 0;
  height: 100%;
}
.prediction__block__item.male {
  background: rgba(0, 143, 217, 0.5);
  transform: translateX(8px);
}
.prediction__block__item.male ul {
  margin-left: min(180px, 15vw);
}
.prediction__block__item.male img {
  left: 0;
  transform: translateX(-50%);
}
.prediction__block__item.female {
  background: rgba(189, 0, 102, 0.5);
  transform: translateX(-8px);
}
.prediction__block__item.female ul {
  margin-left: min(120px, 10vw);
}
.prediction__block__item.female img {
  right: 0;
  transform: translateX(50%);
}
.prediction__cursor {
  margin-inline: auto;
  display: block;
  margin: min(56px, 4.6666666667vw) auto min(24px, 2vw);
  width: 175px;
  height: auto;
}
.prediction__result {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: var(--color-point-2);
}
.prediction__result h3 {
  font-size: min(32px, 2.6666666667vw);
  font-weight: 400;
  letter-spacing: 0.075em;
  border-left: 2px solid var(--color-point-2);
  padding-left: 8px;
  margin-bottom: 16px;
}
.prediction__result__wrap {
  border: 1px solid var(--color-point-2);
  padding: min(32px, 2.6666666667vw);
  display: flex;
  justify-content: center;
}
.prediction__result__wrap__item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 min(32px, 2.6666666667vw);
}
.prediction__result__wrap__item:first-child {
  border-right: 1px solid var(--color-point-2);
}
.prediction__result__wrap__item ul li {
  font-size: min(21px, 1.75vw);
  letter-spacing: 0.075em;
}
.prediction__result__wrap__item ul li span {
  display: inline-block;
  line-height: 21px;
}
.prediction__result__wrap__item ul li span::after {
  content: "";
  width: 100%;
  height: 6px;
  border-top: 1px solid var(--color-point-2);
  display: block;
  margin-top: 12px;
}
.prediction__result__wrap__item ul li + li {
  margin-top: min(24px, 2vw);
}
.prediction__result__wrap__item ul li.large {
  font-size: min(35px, 2.9166666667vw);
  font-weight: 500;
}
.prediction__result__wrap__item ul li.large span::after {
  border-top: 1px solid var(--color-point-2);
  border-bottom: 1px solid var(--color-point-2);
}
.prediction__result small {
  display: block;
  text-align: right;
  font-size: min(14px, 1.1666666667vw);
  margin-top: 8px;
}

@media (width <= 767px) {
  .prediction h2 {
    font-size: min(36px, 4.8vw);
  }
  .prediction h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .prediction__block {
    display: flex;
    flex-direction: column-reverse;
  }
  .prediction__block__item {
    width: 100%;
    height: auto;
    padding: min(50px, 6.6666666667vw) min(50px, 6.6666666667vw) min(50px, 6.6666666667vw) min(100px, 13.3333333333vw);
  }
  .prediction__block__item ul li {
    font-size: min(32px, 4.2666666667vw);
  }
  .prediction__block__item ul li span {
    line-height: 1;
  }
  .prediction__block__item ul li span::after {
    height: 4px;
  }
  .prediction__block__item ul li + li {
    margin-top: min(24px, 3.2vw);
  }
  .prediction__block__item ul li.large {
    font-size: min(46px, 6.1333333333vw);
  }
  .prediction__block__item img {
    position: absolute;
    top: 0;
    height: 60%;
  }
  .prediction__block__item.male {
    transform: translateX(0) translateY(1%);
  }
  .prediction__block__item.male ul {
    margin-left: 0;
  }
  .prediction__block__item.male img {
    left: 0;
    transform: translateX(-50%);
  }
  .prediction__block__item.female {
    transform: translateX(0) translateY(-1%);
  }
  .prediction__block__item.female img {
    top: auto;
    bottom: 0;
  }
  .prediction__block__item.female ul {
    margin-left: 0;
  }
  .prediction__cursor {
    margin: min(56px, 7.4666666667vw) auto min(24px, 3.2vw);
    width: min(130px, 17.3333333333vw);
    height: auto;
  }
  .prediction__result h3 {
    font-size: min(32px, 4.2666666667vw);
    margin-bottom: min(16px, 2.1333333333vw);
  }
  .prediction__result__wrap {
    padding: min(64px, 8.5333333333vw) min(32px, 4.2666666667vw);
    display: block;
  }
  .prediction__result__wrap__item {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0;
  }
  .prediction__result__wrap__item:first-child {
    border-right: none;
  }
  .prediction__result__wrap__item ul li {
    font-size: min(32px, 4.2666666667vw);
  }
  .prediction__result__wrap__item ul li span {
    display: inline-block;
    line-height: 1.3;
  }
  .prediction__result__wrap__item ul li span::after {
    height: 4px;
    margin-top: 6px;
  }
  .prediction__result__wrap__item ul li + li {
    margin-top: min(40px, 5.3333333333vw);
  }
  .prediction__result__wrap__item ul li.large {
    font-size: min(46px, 6.1333333333vw);
  }
  .prediction__result__wrap__item ul li.large span::after {
    border-top: 1px solid var(--color-point-2);
    border-bottom: 1px solid var(--color-point-2);
  }
  .prediction__result__wrap__item + .prediction__result__wrap__item {
    margin-top: min(40px, 5.3333333333vw);
  }
  .prediction__result small {
    font-size: min(14px, 1.8666666667vw);
  }
}
.series {
  margin-inline: auto;
}
.series h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.series h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(160px, 13.3333333333vw);
}
.series__head {
  width: min(570px, 47.5vw);
  margin-inline: auto;
  position: relative;
}
.series__head a {
  position: relative;
  transition: 0.3s;
}
.series__head a .cursor {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(0.9);
  transition: 0.3s cubic-bezier(0.5, 1.18, 0.65, 1.22);
}
.series__head a:hover {
  opacity: 0.9;
}
.series__head a:hover .cursor {
  transform: translateX(-50%) translateY(-50%) scale(1);
}
.series__head small {
  font-size: min(18px, 1.5vw);
  margin-top: min(16px, 1.3333333333vw);
  display: block;
}
.series__item {
  max-width: 1200px;
  margin-inline: auto;
}
.series__item ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2.222%;
}
.series__item ul li {
  margin-top: min(60px, 5vw);
  width: 23.333%;
}
.series__item ul li h3 {
  font-size: min(18px, 1.5vw);
  font-weight: 400;
  letter-spacing: 0.075em;
}
.series__item ul li a {
  display: block;
  margin: min(8px, 0.6666666667vw) 0;
  transition: 0.3s;
}
.series__item ul li a:hover {
  opacity: 0.9;
}
.series__item ul li small {
  font-size: min(18px, 1.5vw);
  letter-spacing: 0.025em;
}

@media (width <= 767px) {
  .series {
    margin-inline: auto;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .series h2 {
    font-size: min(36px, 4.8vw);
  }
  .series h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .series__head {
    width: 100%;
    padding: 0 10%;
  }
  .series__head a .cursor {
    width: min(140px, 18.6666666667vw);
    height: min(140px, 18.6666666667vw);
  }
  .series__head small {
    font-size: min(24px, 3.2vw);
    margin-top: min(16px, 2.1333333333vw);
  }
  .series__item {
    padding: 0 10%;
  }
  .series__item ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: min(24px, 3.2vw) 5%;
    margin-top: min(16px, 2.1333333333vw);
  }
  .series__item ul li {
    width: 47.5%;
    line-height: 1.3;
  }
  .series__item ul li h3 {
    font-size: min(24px, 3.2vw);
  }
  .series__item ul li a {
    margin: min(16px, 2.1333333333vw) 0 min(8px, 1.0666666667vw);
  }
  .series__item ul li small {
    font-size: min(21px, 2.8vw);
    letter-spacing: 0.025em;
  }
}
.request {
  margin-inline: auto;
}
.request h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.request h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(160px, 13.3333333333vw);
}
.request__frame {
  border: 1px solid var(--color-primary);
  max-width: 1200px;
  margin-inline: auto;
  padding: min(240px, 20vw) min(120px, 10vw) min(120px, 10vw);
  border-radius: min(32px, 2.6666666667vw);
  position: relative;
  margin-top: min(390px, 32.5vw);
}
.request__frame__img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: min(575px, 47.9166666667vw);
  height: min(390px, 32.5vw);
  background: #fff;
  width: 80%;
}
.request__frame__img img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.request__frame__img img.map {
  width: min(503px, 41.9166666667vw);
  height: min(349px, 29.0833333333vw);
}
.request__frame__img img.unchikun {
  width: min(241px, 20.0833333333vw);
  height: min(390px, 32.5vw);
}
.request__frame__head .head {
  font-size: min(28px, 2.3333333333vw);
  line-height: 2.3571428571;
  text-align: center;
  font-weight: 400;
}
.request__frame__head h3 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-secondary);
  font-weight: 400;
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  padding: min(32px, 2.6666666667vw);
  margin: min(200px, 16.6666666667vw) 0 min(100px, 8.3333333333vw);
}
.request__frame__head .point {
  font-size: min(23px, 1.9166666667vw);
  text-align: center;
  color: var(--color-secondary);
  line-height: 3.347826087;
  border-bottom: 1px solid var(--color-secondary);
  margin-bottom: min(100px, 8.3333333333vw);
  padding-bottom: min(100px, 8.3333333333vw);
}
.request__frame__detail {
  display: none;
}
.request__frame__detail ul li {
  min-height: min(150px, 12.5vw);
  padding-left: min(250px, 20.8333333333vw);
  position: relative;
}
.request__frame__detail ul li .num {
  position: absolute;
  left: 0;
  top: 0;
  width: min(150px, 12.5vw);
  height: min(150px, 12.5vw);
  border-radius: 150px;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-secondary);
}
.request__frame__detail ul li .num::after {
  content: "";
  background: var(--color-secondary);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 150px;
  opacity: 0.2;
  transform: translateX();
  left: min(10px, 1vw);
  top: min(6px, 0.6666666667vw);
}
.request__frame__detail ul li .num span {
  display: flex;
  font-size: min(23px, 1.9166666667vw);
  align-items: center;
  line-height: 1;
}
.request__frame__detail ul li .num span::before {
  content: "";
  width: 24px;
  height: 1px;
  display: block;
  background: var(--color-secondary);
  margin-right: 4px;
}
.request__frame__detail ul li .num span::after {
  content: "";
  width: 24px;
  height: 1px;
  display: block;
  background: var(--color-secondary);
  margin-left: 4px;
}
.request__frame__detail ul li .num strong {
  font-size: min(55px, 4.5833333333vw);
  font-weight: 500;
  line-height: 1;
}
.request__frame__detail ul li .num strong small {
  font-size: min(21px, 1.75vw);
}
.request__frame__detail ul li h3 {
  color: var(--color-secondary);
  font-size: min(55px, 4.5833333333vw);
  letter-spacing: 0.16em;
  font-weight: 400;
  background: url("../img/request/request_border.png") bottom left/auto repeat-x;
  margin-bottom: min(40px, 3.3333333333vw);
  padding-bottom: min(24px, 2vw);
}
.request__frame__detail ul li p {
  font-size: min(21px, 1.75vw);
  line-height: 2.1428571429;
}
.request__frame__detail ul li + li {
  margin-top: min(96px, 8vw);
}
.request__frame__detail time {
  display: block;
  text-align: right;
  font-size: min(21px, 1.75vw);
  line-height: 2.1428571429;
  margin-top: min(120px, 10vw);
  margin-bottom: min(160px, 13.3333333333vw);
}
.request__frame__detail__btn {
  display: flex;
  margin-top: min(80px, 6.6666666667vw);
  width: min(800px, 66.6666666667vw);
  height: min(160px, 13.3333333333vw);
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: min(28px, 2.3333333333vw);
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  border-radius: min(8px, 0.6666666667vw);
  background: var(--color-secondary) url("../img/icn_download.png") 95% center/min(48px, 4vw) no-repeat;
  transition: 0.4s;
}
@media (768px <= width) {
  .request__frame__detail__btn:hover {
    opacity: 0.8;
    background-position: 95% 60%;
  }
}
.request__frame__togglebtn {
  display: flex;
  width: min(360px, 30vw);
  height: min(90px, 7.5vw);
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: min(28px, 2.3333333333vw);
  line-height: 1.5;
  color: var(--color-white);
  border-radius: 90px;
  background: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  cursor: pointer;
}
.request__frame__togglebtn::before, .request__frame__togglebtn::after {
  position: absolute;
  top: 50%;
  right: 8%;
  content: "";
  width: min(24px, 2vw);
  height: 2px;
  display: block;
  background: var(--color-white);
  transition: 0.3s;
}
.request__frame__togglebtn::before {
  transform: translateY(-4px);
}
.request__frame__togglebtn::after {
  transform: translateY(4px);
}
.request__frame__togglebtn.close::before {
  transform: translateY(0px) rotate(45deg);
}
.request__frame__togglebtn.close::after {
  transform: translateY(0px) rotate(-45deg);
}

@media (width <= 767px) {
  .request {
    margin-inline: auto;
    margin: 0;
  }
  .request h2 {
    font-size: min(36px, 4.8vw);
  }
  .request h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .request__frame {
    padding: min(240px, 32vw) min(40px, 5.3333333333vw) min(72px, 9.6vw);
    border-radius: min(32px, 4.2666666667vw);
    margin-top: min(320px, 42.6666666667vw);
  }
  .request__frame__img {
    width: min(575px, 76.6666666667vw);
    height: min(390px, 52vw);
    width: 80%;
  }
  .request__frame__img img.map {
    width: min(503px, 67.0666666667vw);
    height: min(349px, 46.5333333333vw);
  }
  .request__frame__img img.unchikun {
    width: min(241px, 32.1333333333vw);
    height: min(390px, 52vw);
  }
  .request__frame__head .head {
    font-size: min(28px, 3.7333333333vw);
  }
  .request__frame__head h3 {
    font-size: min(32px, 4.2666666667vw);
    padding: min(32px, 4.2666666667vw) 0;
    letter-spacing: 0.2em;
    margin: min(120px, 16vw) 0 min(40px, 5.3333333333vw);
  }
  .request__frame__head .point {
    font-size: min(26px, 3.4666666667vw);
    line-height: 2.4642857143;
    margin-bottom: min(48px, 6.4vw);
    padding-bottom: min(48px, 6.4vw);
  }
  .request__frame__detail {
    display: none;
  }
  .request__frame__detail ul li {
    min-height: auto;
    padding-left: 0;
  }
  .request__frame__detail ul li h3 {
    font-size: min(36px, 4.8vw);
    min-height: min(120px, 16vw);
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: min(150px, 20vw);
    letter-spacing: 0;
    background: none;
  }
  .request__frame__detail ul li .num {
    width: min(120px, 16vw);
    height: min(120px, 16vw);
  }
  .request__frame__detail ul li .num::after {
    left: min(10px, 1.3333333333vw);
    top: min(6px, 0.8vw);
  }
  .request__frame__detail ul li .num span {
    font-size: min(18px, 2.4vw);
  }
  .request__frame__detail ul li .num span::before {
    width: min(16px, 2.1333333333vw);
  }
  .request__frame__detail ul li .num span::after {
    width: min(16px, 2.1333333333vw);
  }
  .request__frame__detail ul li .num strong {
    font-size: min(46px, 6.1333333333vw);
  }
  .request__frame__detail ul li .num strong small {
    font-size: min(18px, 2.4vw);
  }
  .request__frame__detail ul li p {
    font-size: min(23px, 3.0666666667vw);
    background: url("../img/request/request_border.png") top left/auto repeat-x;
    margin-top: min(24px, 3.2vw);
    padding-top: min(32px, 4.2666666667vw);
  }
  .request__frame__detail ul li + li {
    margin-top: min(72px, 9.6vw);
  }
  .request__frame__detail time {
    font-size: min(19px, 2.5333333333vw);
    margin: min(40px, 5.3333333333vw) 0;
  }
  .request__frame__detail__btn {
    margin-top: min(80px, 10.6666666667vw);
    width: min(520px, 69.3333333333vw);
    height: auto;
    padding: min(80px, 10.6666666667vw) 0 min(32px, 4.2666666667vw);
    font-size: min(28px, 3.7333333333vw);
    border-radius: min(8px, 1.0666666667vw);
    background: var(--color-secondary) url("../img/icn_download.png") center 15%/min(48px, 6.4vw) no-repeat;
  }
  .request__frame__togglebtn {
    width: min(330px, 44vw);
    height: min(80px, 10.6666666667vw);
    font-size: min(28px, 3.7333333333vw);
  }
  .request__frame__togglebtn::before, .request__frame__togglebtn::after {
    width: min(24px, 3.2vw);
  }
  .request__frame__togglebtn::before {
    transform: translateY(-100%);
  }
  .request__frame__togglebtn::after {
    transform: translateY(100%);
  }
}
.dr {
  margin-inline: auto;
}
.dr h2 {
  font-size: min(28px, 2.3333333333vw);
  text-align: center;
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.dr h2::after {
  content: "";
  width: 160px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin-inline: auto;
  margin: min(64px, 5.3333333333vw) auto min(160px, 13.3333333333vw);
}
.dr__btn {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 4%;
  justify-content: space-between;
}
.dr__btn__block {
  width: 48%;
}
.dr__btn__block h3 {
  font-size: min(21px, 1.75vw);
  padding-bottom: min(21px, 1.75vw);
  font-weight: 500;
  letter-spacing: 0.075em;
}
.dr__btn__block a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2/1;
  background: #dfeef0 url("../img/dr/btn_bg.png") no-repeat center;
  background-size: cover;
  cursor: pointer;
  transition: 0.3s;
}
.dr__btn__block a img {
  width: 35%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: translateY(5%);
  transition: 0.3s;
}
.dr__btn__block a .name {
  position: absolute;
  display: block;
  right: min(15px, 1.25vw);
  bottom: min(15px, 1.25vw);
  line-height: 1;
  background: #fff;
  padding: min(10px, 0.8333333333vw);
  color: var(--color-primary);
  font-size: min(15px, 1.25vw);
  transition: 0.3s;
  border-radius: min(5px, 0.4166666667vw);
}
.dr__btn__block a .name strong {
  font-size: min(18px, 1.5vw);
  font-weight: 500;
}
.dr__btn__block a:hover {
  background-position: center 40%;
}
.dr__btn__block a:hover img {
  transform: translateY(2%);
}
.dr__btn__block a:hover .name {
  background: #00a8bc;
  color: #fff;
}
.dr__btn__block p {
  font-size: min(18px, 1.5vw);
  letter-spacing: 0.075em;
  padding-top: min(16px, 1.3333333333vw);
}

@media (width <= 767px) {
  .dr {
    margin-top: min(170px, 22.6666666667vw);
  }
  .dr h2 {
    font-size: min(36px, 4.8vw);
  }
  .dr h2::after {
    width: min(170px, 22.6666666667vw);
    margin: min(48px, 6.4vw) auto min(80px, 10.6666666667vw);
  }
  .dr__btn {
    display: flex;
    flex-wrap: wrap;
    gap: min(80px, 10.6666666667vw);
  }
  .dr__btn__block {
    width: 100%;
  }
  .dr__btn__block h3 {
    font-size: min(28px, 3.7333333333vw);
    padding-bottom: min(21px, 2.8vw);
  }
  .dr__btn__block a .name {
    right: min(15px, 2vw);
    bottom: min(15px, 2vw);
    padding: min(12px, 1.6vw);
    font-size: min(15px, 2vw);
    border-radius: min(5px, 0.6666666667vw);
  }
  .dr__btn__block a .name strong {
    font-size: min(21px, 2.8vw);
  }
  .dr__btn__block p {
    font-size: min(23px, 3.0666666667vw);
    padding-top: min(16px, 2.1333333333vw);
  }
}
.about {
  background: url("../img/about/about_bg.png") top center/min(1920px, 160vw) auto;
  padding: min(48px, 4vw) 4%;
}
.about__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.about__wrap__block {
  width: 50%;
}
.about__wrap__block:first-child {
  border-right: 1px solid var(--color-primary);
  padding-right: min(48px, 4vw);
  width: 48%;
}
.about__wrap__block:nth-child(2) {
  padding-left: min(72px, 6vw);
  width: 52%;
}
.about__wrap__block h2 {
  font-size: min(28px, 2.3333333333vw);
  line-height: 1.8928571429;
  color: var(--color-primary);
  font-weight: 500;
}
.about__wrap__block h3 {
  font-size: min(28px, 2.3333333333vw);
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-bottom: min(16px, 1.3333333333vw);
}
.about__wrap__block p {
  margin-top: min(40px, 3.3333333333vw);
  font-size: min(21px, 1.75vw);
  line-height: 1.9523809524;
}
.about__wrap__block .logo {
  background: #fff;
  width: 100%;
  display: flex;
  padding: min(40px, 3.3333333333vw);
  align-items: center;
  justify-content: center;
  border-radius: min(16px, 1.3333333333vw);
  box-shadow: 10px 10px rgba(0, 159, 179, 0.2);
}
.about__wrap__block .logo img {
  width: min(150px, 12.5vw);
}

@media (width <= 767px) {
  .about {
    background: none;
    padding: min(120px, 21.3333333333vw) 0;
  }
  .about__wrap {
    display: block;
  }
  .about__wrap__block {
    width: 100%;
  }
  .about__wrap__block__image {
    display: flex;
    flex-direction: column-reverse;
  }
  .about__wrap__block:first-child {
    border-right: none;
    padding-right: 0;
    width: 100%;
    padding: 0 10% min(96px, 12.8vw);
  }
  .about__wrap__block:nth-child(2) {
    padding: min(96px, 12.8vw) 10%;
    width: 100%;
    background: url("../img/about/about_bg.png") top center/min(1920px, 160vw) auto;
  }
  .about__wrap__block h2 {
    font-size: min(38px, 5.0666666667vw);
    text-align: center;
    margin-bottom: min(40px, 5.3333333333vw);
  }
  .about__wrap__block p {
    text-align: center;
    font-size: min(23px, 3.0666666667vw);
    margin-top: min(24px, 3.2vw);
  }
  .about__wrap__block h3 {
    margin-top: min(48px, 6.4vw);
    font-size: min(36px, 4.8vw);
    text-align: center;
  }
  .about__wrap__block .logo {
    padding: min(56px, 7.4666666667vw);
    border-radius: min(16px, 2.1333333333vw);
    box-shadow: min(10px, 1.3333333333vw) min(10px, 1.3333333333vw) rgba(0, 159, 179, 0.2);
  }
  .about__wrap__block .logo img {
    width: min(240px, 32vw);
    height: auto;
  }
}
.link {
  width: 100%;
}
.link__instagram {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
}
.link__instagram a {
  width: 47%;
  aspect-ratio: 560/200;
  position: relative;
  padding: min(12px, 1.8461538462vw) min(24px, 1.8461538462vw);
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  align-items: center;
  font-size: min(41px, 3.1538461538vw);
  font-family: var(--font-maru);
  line-height: 1.2;
  box-sizing: border-box;
}
.link__instagram a .title {
  letter-spacing: 0.025em;
}
.link__instagram a .sub {
  font-size: min(17px, 1.3076923077vw);
  letter-spacing: -0.05em;
  padding: min(8px, 0.6153846154vw) 0;
  color: var(--color-white);
}
.link__instagram a .img img {
  position: absolute;
  bottom: 0;
  width: min(145px, 11.1538461538vw);
  height: auto;
  transition: 0.3s;
}
.link__instagram a .img img.shadow {
  right: 5%;
}
.link__instagram a .img img.main {
  right: 3%;
}
.link__instagram a.drmabe {
  border: 4px solid #f5993b;
  overflow: hidden;
}
.link__instagram a.drmabe .title {
  color: #f5993b;
}
.link__instagram a.drmabe .sub {
  background-color: #f5993b;
}
.link__instagram a.drmabe::after {
  content: "";
  display: block;
  width: min(600px, 46.1538461538vw);
  height: min(600px, 46.1538461538vw);
  background: #ffc490;
  transform: rotate(-60deg);
  position: absolute;
  z-index: -1;
  top: -240%;
  right: -50%;
  transition: 0.4s;
}
.link__instagram a.drmomoko {
  border: 4px solid #ef7eb1;
  overflow: hidden;
}
.link__instagram a.drmomoko .title {
  color: #ef7eb1;
}
.link__instagram a.drmomoko .sub {
  background-color: #ef7eb1;
}
.link__instagram a.drmomoko::after {
  content: "";
  display: block;
  width: min(600px, 46.1538461538vw);
  height: min(600px, 46.1538461538vw);
  border-radius: 600px;
  background: #ffc0d8;
  transform: rotate(-60deg);
  position: absolute;
  z-index: -1;
  top: -200%;
  right: -50%;
  transition: 0.4s;
}
.link__instagram a:hover .img img.shadow {
  right: 2%;
}
.link__instagram a:hover .img img.main {
  right: 4%;
}
.link__instagram a:hover.drmabe::after {
  transform: rotate(-50deg) scale(1);
}
.link__instagram a:hover.drmomoko::after {
  transform: scale(1.1);
}
.link__bravecircle {
  max-width: 560px;
  width: 100%;
  margin: min(120px, 10vw) auto;
}
.link__bravecircle a {
  border: 4px solid #005ca7;
  background: #e8f0f7;
  display: block;
  padding: min(32px, 2.6666666667vw);
  text-align: center;
  transition: 0.3s;
}
.link__bravecircle a img {
  max-width: 295px;
  width: auto;
  display: block;
  margin-inline: auto;
}
.link__bravecircle a:hover {
  opacity: 0.8;
}
.link__linestamp {
  display: flex;
  justify-content: center;
}
.link__linestamp a {
  transition: 0.3s;
}
.link__linestamp a:hover {
  opacity: 0.8;
}

@media (width <= 767px) {
  .link {
    padding: 0 10% min(80px, 10.6666666667vw);
  }
  .link__instagram {
    display: flex;
    flex-direction: column;
  }
  .link__instagram a {
    width: 100%;
    padding: min(12px, 3.2vw) min(24px, 3.2vw);
    font-size: min(41px, 5.4666666667vw);
  }
  .link__instagram a .sub {
    font-size: min(17px, 2.2666666667vw);
    letter-spacing: -0.05em;
    padding: min(8px, 1.0666666667vw) 0;
  }
  .link__instagram a .img img {
    width: min(145px, 19.3333333333vw);
  }
  .link__instagram a.drmabe::after {
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    top: -220%;
  }
  .link__instagram a.drmomoko {
    margin-top: min(60px, 8vw);
  }
  .link__instagram a.drmomoko::after {
    width: min(600px, 80vw);
    height: min(600px, 80vw);
    top: -180%;
  }
  .link__bravecircle {
    margin: min(60px, 8vw) auto;
  }
  .link__bravecircle a {
    padding: min(32px, 4.2666666667vw);
  }
  .link__bravecircle a img {
    width: min(320px, 42.6666666667vw);
  }
  .link__linestamp {
    display: flex;
    justify-content: center;
  }
  .link__linestamp a {
    transition: 0.3s;
  }
  .link__linestamp a:hover {
    opacity: 0.8;
  }
}
#footer {
  font-size: min(18px, 1.5vw);
  height: min(120px, 10vw);
  background: #dcedef;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #80858a;
  letter-spacing: 0.07em;
}

@media (width <= 767px) {
  #footer {
    font-size: min(24px, 3.2vw);
    height: min(120px, 16vw);
  }
}
.contents_diary {
  padding: min(160px, 13.3333333333vw) 0;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
}
.contents_diary h1 {
  font-size: min(28px, 2.3333333333vw);
  color: var(--color-primary);
  letter-spacing: 0.11em;
  font-weight: 500;
}
.contents_diary h1::after {
  content: "";
  width: 80px;
  height: 1px;
  display: block;
  background: var(--color-primary);
  margin: min(64px, 5.3333333333vw) 0 min(160px, 13.3333333333vw);
}
.contents_diary__block {
  border: 1px solid var(--color-primary);
  border-radius: min(16px, 1.3333333333vw);
  padding: min(48px, 4vw);
}
.contents_diary__block__name {
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: min(8px, 0.6666666667vw);
  margin-bottom: min(48px, 4vw);
  display: flex;
}
.contents_diary__block__name div {
  margin-right: min(24px, 2vw);
}
.contents_diary__block__name div span {
  font-size: min(21px, 1.75vw);
  color: var(--color-primary);
}
.contents_diary__block__name div strong {
  font-size: min(28px, 2.3333333333vw);
  font-weight: 400;
}
.contents_diary__block__title h2 {
  font-size: min(32px, 2.6666666667vw);
  font-weight: 500;
  line-height: 1.65625;
}
.contents_diary__block__title p {
  font-size: min(24px, 2vw);
  padding: min(16px, 1.3333333333vw) 0 min(48px, 4vw);
}
.contents_diary__block__head {
  border: 1px solid var(--color-primary);
  border-radius: min(16px, 1.3333333333vw);
  padding: min(20px, 1.6666666667vw);
}
.contents_diary__block__head img {
  border-radius: min(8px, 0.6666666667vw);
}
.contents_diary__block__txt {
  padding: min(40px, 3.3333333333vw) 0 0;
}
.contents_diary__block__txt p {
  font-size: min(24px, 2vw);
  line-height: 2.2083333333;
  display: block;
  background-size: 100% 2.2083333333em;
  background-image: linear-gradient(180deg, #fff 0%, #fff calc(100% - 2px), var(--color-primary) 100%);
}
.contents_diary__block__img ul {
  max-width: 1020px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: min(60px, 5vw) 6%;
  margin-top: min(80px, 6.6666666667vw);
}
.contents_diary__block__img ul li {
  width: 47%;
}
.contents_diary__block__img ul li .img {
  position: relative;
}
.contents_diary__block__img ul li .img .num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: min(36px, 3vw);
  color: var(--color-white);
  background: rgba(255, 192, 197, 0.75);
  border-radius: min(6px, 0.5vw);
}
.contents_diary__block__img ul li .img img {
  border-radius: min(8px, 0.6666666667vw);
  border: 4px solid #ffc0c5;
  box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #ffc0c5;
}
.contents_diary__block__img ul li p {
  margin-top: min(36px, 3vw);
  padding-left: min(36px, 3vw);
  font-size: min(27px, 2.25vw);
  position: relative;
}
.contents_diary__block__img ul li p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: min(8px, 0.6666666667vw);
  height: min(36px, 3vw);
  display: block;
  background: #ffc0c5;
}
.contents_diary__block__img ul li:nth-child(2n) .img .num {
  background: rgba(231, 198, 254, 0.75);
}
.contents_diary__block__img ul li:nth-child(2n) .img img {
  border: 4px solid #e7c6fe;
  box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #e7c6fe;
}
.contents_diary__block__img ul li:nth-child(2n) p::before {
  background: #e7c6fe;
}
.contents_diary__block__img ul li:nth-child(3) .img .num, .contents_diary__block__img ul li:nth-child(7) .img .num, .contents_diary__block__img ul li:nth-child(11) .img .num {
  background: rgba(191, 242, 213, 0.75);
}
.contents_diary__block__img ul li:nth-child(3) .img img, .contents_diary__block__img ul li:nth-child(7) .img img, .contents_diary__block__img ul li:nth-child(11) .img img {
  border: 4px solid #bff2d5;
  box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #bff2d5;
}
.contents_diary__block__img ul li:nth-child(3) p::before, .contents_diary__block__img ul li:nth-child(7) p::before, .contents_diary__block__img ul li:nth-child(11) p::before {
  background: #bff2d5;
}
.contents_diary__block__img ul li:nth-child(4n) .img .num {
  background: rgba(198, 238, 245, 0.75);
}
.contents_diary__block__img ul li:nth-child(4n) .img img {
  border: 4px solid #c6eef5;
  box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #c6eef5;
}
.contents_diary__block__img ul li:nth-child(4n) p::before {
  background: #c6eef5;
}
.contents_diary__btn {
  margin-top: min(160px, 13.3333333333vw);
}
.contents_diary__btn a {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3%;
  width: min(360px, 30vw);
  height: min(95px, 7.9166666667vw);
  background: var(--color-white);
  font-size: min(28px, 2.3333333333vw);
  border-radius: min(28px, 2.3333333333vw);
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1;
  position: relative;
  border: 1px solid var(--color-primary);
}
.contents_diary__btn a svg {
  position: absolute;
  left: 8%;
  width: min(27.5px, 2.2916666667vw);
  height: auto;
  stroke: var(--color-primary);
  transform: rotate(180deg);
}

@media (width <= 767px) {
  .contents_diary {
    padding: 0 0 min(80px, 10.6666666667vw);
  }
  .contents_diary h1 {
    font-size: min(36px, 4.8vw);
  }
  .contents_diary h1::after {
    content: "";
    width: min(100px, 13.3333333333vw);
    margin: min(40px, 8.5333333333vw) 0 min(80px, 10.6666666667vw);
  }
  .contents_diary__block {
    border-radius: min(16px, 2.1333333333vw);
    padding: min(40px, 5.3333333333vw);
  }
  .contents_diary__block__name {
    padding-bottom: min(8px, 1.0666666667vw);
    margin-bottom: min(48px, 6.4vw);
    display: flex;
  }
  .contents_diary__block__name div {
    margin-right: min(24px, 3.2vw);
  }
  .contents_diary__block__name div span {
    font-size: min(25px, 3.3333333333vw);
  }
  .contents_diary__block__name div strong {
    font-size: min(33px, 4.4vw);
  }
  .contents_diary__block__name div:nth-child(3) {
    margin: 0 0 0 auto;
  }
  .contents_diary__block__title h2 {
    font-size: min(32px, 4.2666666667vw);
  }
  .contents_diary__block__title p {
    font-size: min(23px, 3.0666666667vw);
    padding: min(16px, 2.1333333333vw) 0 min(64px, 8.5333333333vw);
  }
  .contents_diary__block__head {
    border-radius: min(16px, 2.1333333333vw);
    padding: min(20px, 2.6666666667vw);
  }
  .contents_diary__block__head img {
    border-radius: min(8px, 1.0666666667vw);
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1/1;
  }
  .contents_diary__block__txt {
    padding: min(80px, 10.6666666667vw) 0 0;
  }
  .contents_diary__block__txt p {
    font-size: min(28px, 3.7333333333vw);
    background-image: linear-gradient(180deg, #fff 0%, #fff calc(100% - 2px), var(--color-primary) 100%);
  }
  .contents_diary__block__img ul {
    margin-top: min(120px, 10vw);
    gap: min(80px, 10.6666666667vw);
  }
  .contents_diary__block__img ul li {
    width: 100%;
  }
  .contents_diary__block__img ul li .img .num {
    width: min(64px, 8.5333333333vw);
    height: min(64px, 8.5333333333vw);
    font-size: min(36px, 4.8vw);
    border-radius: min(6px, 0.8vw);
  }
  .contents_diary__block__img ul li .img img {
    border-radius: min(8px, 1.0666666667vw);
    border: 2px solid #ffc0c5;
    box-shadow: min(20px, 2.6666666667vw) min(20px, 2.6666666667vw) 0 #ffc0c5;
  }
  .contents_diary__block__img ul li p {
    margin-top: min(48px, 6.4vw);
    padding-left: min(36px, 4.8vw);
    font-size: min(27px, 3.6vw);
  }
  .contents_diary__block__img ul li p::before {
    top: 1px;
    width: min(8px, 1.0666666667vw);
    height: min(36px, 4.8vw);
    display: block;
    background: #ffc0c5;
  }
  .contents_diary__block__img ul li:nth-child(2n) .img .num {
    background: rgba(231, 198, 254, 0.75);
  }
  .contents_diary__block__img ul li:nth-child(2n) .img img {
    border: 4px solid #e7c6fe;
    box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #e7c6fe;
  }
  .contents_diary__block__img ul li:nth-child(2n) p::before {
    background: #e7c6fe;
  }
  .contents_diary__block__img ul li:nth-child(3) .img .num, .contents_diary__block__img ul li:nth-child(7) .img .num, .contents_diary__block__img ul li:nth-child(11) .img .num {
    background: rgba(191, 242, 213, 0.75);
  }
  .contents_diary__block__img ul li:nth-child(3) .img img, .contents_diary__block__img ul li:nth-child(7) .img img, .contents_diary__block__img ul li:nth-child(11) .img img {
    border: 4px solid #bff2d5;
    box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #bff2d5;
  }
  .contents_diary__block__img ul li:nth-child(3) p::before, .contents_diary__block__img ul li:nth-child(7) p::before, .contents_diary__block__img ul li:nth-child(11) p::before {
    background: #bff2d5;
  }
  .contents_diary__block__img ul li:nth-child(4n) .img .num {
    background: rgba(198, 238, 245, 0.75);
  }
  .contents_diary__block__img ul li:nth-child(4n) .img img {
    border: 4px solid #c6eef5;
    box-shadow: min(20px, 1.6666666667vw) min(20px, 1.6666666667vw) 0 #c6eef5;
  }
  .contents_diary__block__img ul li:nth-child(4n) p::before {
    background: #c6eef5;
  }
  .contents_diary__btn {
    margin-top: min(160px, 21.3333333333vw);
  }
  .contents_diary__btn a {
    width: min(360px, 48vw);
    height: min(95px, 12.6666666667vw);
    font-size: min(28px, 3.7333333333vw);
    border-radius: min(28px, 3.7333333333vw);
  }
  .contents_diary__btn a svg {
    width: min(27.5px, 3.6666666667vw);
  }
}
.js-slideup {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(20px);
}
.js-slideup.slideup {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 168, 188, 0.9);
  z-index: 120;
  transition: 0.3s;
  display: flex;
}

#modal-content {
  position: relative;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  text-align: right;
}

#modal-content video {
  max-width: 1200px;
  width: 100%;
  height: auto;
}

#modal-content .close {
  color: #fff;
  cursor: pointer;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  margin-left: auto;
  top: 5%;
  right: 5%;
}

#modal-content .close span {
  width: 80px;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  top: 40px;
}

#modal-content .close span:nth-child(1) {
  transform: rotate(45deg);
}

#modal-content .close span:nth-child(2) {
  transform: rotate(-45deg);
}

@media screen and (max-width: 400px) {
  .modal-content {
    width: 100%;
  }
}