@charset "UTF-8";
/* =======================================
  font
======================================= */
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100..700&display=swap');

.courgette-regular {
  font-family: "Courgette", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-light {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}

.josefin-sans-regular {
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.josefin-sans-semibold {
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.font-style-ital {
  font-style: italic;
}

/* =======================================
  root color 
======================================= */
:root {
  --color-white01: #ffffff;
  --color-black01: #000000;
  --color-black02: #333333;
  --color-black03: #1A1A1A;
  --color-black04: #3D3E43;
  --color-black05: #3B4043;
  --color-gray01: #F2F2F2;
  --color-gray02: #C7C7C7;
  --color-gray03: #D9D9D9;
  --color-gray04: #7B8083;
  --color-gray05: #E0E0E0;
  --color-gray06: #CDD6DD;
  --color-gray07: #F8F8F8;
  --color-gray08: #D6D6D6;
  --color-gray09: #D5D5D5;
  --color-gray10: #67747C;
  --color-gray11: #B9B9B9;
  --color-gray12: #707070;
  --color-red01: #ff0000;
  --color-red02: rgba(255, 44, 44, 0.75);
  --color-red03: #FF2C2C;
  --color-pink01: #E04588;
  --color-pink02: #FADCE9;
  --color-pink03: #FFF1F6;
  --color-pink04: #FCEAF2;
  --color-pink05: #E14C8D;
  --color-pink06: #F3E7EC;
  --color-pink07: #E189B8;
  --color-blue01: #D9EEF5;
  --color-blue02: #BFD4D6;
  --color-blue03: #5FB3E0;
  --color-blue04: #E9F7FE;
  --color-blue05: rgba(183, 217, 255, 0.20);
  --color-blue06: #D5DDE3;
  --color-blue07: #E7EBEE;
  --color-purple01: #CDC9F4;
  --color-purple02: rgba(205, 201, 244, 0.25);
  --color-purple03: rgba(190, 185, 239, 0.4);
  --color-green01: #06C755;
}

/* =======================================
 common
======================================= */
html {
  overflow-y: auto;
}

html._modal, html._modal body {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "HiraKakuPro-W3", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  min-width: 1280px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black01);
  scrollbar-gutter: stable;
}

/* sp html body */
@media screen and (max-width:560px) {
  body {
    min-width: auto;
    min-width: initial;
    /* font-size: 3.21vw; */
    font-size: 3.57vw;
  }

  html.spMenuOpen,
  html.spMenuOpen body {
    height: 100%;
    min-height: auto;
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

._fix {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

._searchModalFix {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* vue */
[v-cloak] {
  display: none !important;
}

/* pageAnchor */
._pageAnchorBase {
  position: relative;
}

._pageAnchor {
  position: absolute;
}

/* display */
.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp {
  display: none;
}

.sp-inline {
  display: none;
}

.br {
  display: block;
}

.br-pc {
  display: block;
}

.br-tablet {}

.br-sp {}

/* sp display */
@media screen and (max-width:560px) {
  .pc {
    display: none;
  }

  .pc-inline {
    display: none;
  }

  .sp {
    display: block;
  }

  .sp-inline {
    display: inline;
  }

  .br-pc {
    display: inline;
  }

  .br-sp {
    display: block;
  }
}

._no-display {
  display: none !important;
}

/* text */
.text-pc {
  display: inline;
}

.text-block {
  display: block;
}

.text-align--pc-center-sp-left {
  text-align: center;
}

.text-note {
  font-size: 14px;
  line-height: 1.71;
}

*+.text-note {
  margin-top: 10px;
}
.text-filter {
  -ms-filter: blur(6px);
  filter: blur(6px);
}

/* sp text */
@media screen and (max-width:560px) {
  .text-pc {
    display: none;
  }

  .text-align--pc-center-sp-left {
    text-align: left;
  }

  .text-note {
    font-size: 2.85vw;
    line-height: 1.5;
  }

  *+.text-note {
    margin-top: 1.78vw;
  }
}

.bold {
  font-weight: 700;
}

/* text link */
.text-link {
  color: #3a92c8;
  text-decoration: underline;
}

.text-link--color-pink {
  color: #EC60B8;
}

/* text dot */
.text-dot {
  display: block;
  position: relative;
  padding-left: 1em;
}

.text-dot::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* text kome */
.text-kome {
  position: relative;
  padding-left: 1em;
}

.text-kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* text square */
.text-square {
  position: relative;
  padding-left: 1em;
}

.text-square::before {
  content: "■";
  position: absolute;
  left: 0;
}

/* text double circle */
.text-double-circle {
  position: relative;
  padding-left: 1em;
}

.text-double-circle::before {
  content: "◎";
  position: absolute;
  left: 0;
}

/* a */
a {
  color: inherit;
  cursor: pointer;
}

a:hover,
button:hover {
  opacity: 0.5;
}

.link {
  text-decoration: underline;
}

.link--center {
  text-align: center;
}

.link--wedge-left-black {
  padding-left: 20px;
  background-image: url("../img/wedge_left_black.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px auto;
}

.link--wedge-right-black {
  padding-left: 20px;
  background-image: url("../img/wedge_right_black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
}

.link--wedge-right-black-left-position {
  padding-left: 20px;
  background-image: url("../img/wedge_right_black.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 6px auto;
}

/* sp a */
@media screen and (max-width:560px) {
  .link--wedge-left-black {
    padding-left: 3.57vw;
    background-size: 1.07vw auto;
  }

  .link--wedge-right-black {
    padding-left: 3.57vw;
    background-size: 1.07vw auto;
  }

  .link--wedge-right-black-left-position {
    padding-left: 3.57vw;
    background-size: 1.07vw auto;
  }
}

/* color */
.color-red01 {
  color: var(--color-red01);
}

.color-pink01 {
  color: var(--color-pink01);
}

/* background color */
.bg-color-pink01 {
  background-color: var(--color-pink01);
}

.bg-color-pink03 {
  background-color: var(--color-pink03);
}

.bg-color-pink04 {
  background-color: var(--color-pink04);
}

.bg-color-blue03 {
  background-color: var(--color-blue03);
}

.bg-color-blue04 {
  background-color: var(--color-blue04);
}

.bg-color-purple01 {
  background-color: var(--color-purple01);
}

.bg-color-purple03 {
  background-color: var(--color-purple03);
}

/* youbute movie */
.movie {
  position: relative;
  height: 100%;
  width: 100%;
}

.movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* google map */
.map-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.map-wrap .map {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
} */

/* mask */
.mask-global {
  display: none;
}

.mask-global--open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 23, 49, 0.73);
  z-index: 10;
}

/* shadow */
.box-shadow01 {
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
}

.box-shadow02 {
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.16);
}

.box-shadow03 {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.08);
}

.box-shadow04 {
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.16);
}

.box-shadow05 {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.18);
}

/* sp shadow */
@media screen and (max-width:560px) {
  .box-shadow01 {
    box-shadow: 1.42vw 1.42vw 1.42vw rgba(0, 0, 0, 0.04);
  }

  .box-shadow02 {
    box-shadow: 0vw 0vw 1.96vw 0vw rgba(0, 0, 0, 0.16);
  }

  .box-shadow03 {
    box-shadow: 0vw 0vw 2.67vw 0vw rgba(0, 0, 0, 0.08);
  }

  .box-shadow04 {
    box-shadow: 0.35vw 0.35vw 1.07vw 0vw rgba(0, 0, 0, 0.16);
  }

  .box-shadow05 {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.18);
  }
}

/* placeholder */
input::placeholder {
  color: rgba(0, 0, 0, 0.30);
}

textarea::placeholder {
  color: rgba(0, 0, 0, 0.30);
}

/* 旧Edge対応 */
input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.30);
}

textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.30);
}

/* =======================================
 burger
======================================= */
._burgerBtn {
  cursor: pointer;
}

._burgerList {
  display: none;
}

/* =======================================
 tab
======================================= */
._tab {
  cursor: pointer;
}
._tab-container {
  display: none;
}

/* =======================================
 logo
======================================= */
.logo {}

.logo__text {
  margin-bottom: 3px;
  display: block;
  /* width: 163px; */
  width: 150px;
}

.logo__text-img {
  width: 100%;
}

.logo__link {
  display: block;
  /* width: 170px; */
  width: 150px;
}

.logo__img {
  width: 100%;
}

/* sp logo */
@media screen and (max-width:560px) {
  .logo {}

  .logo__text {
    margin-bottom: 0.53vw;
    width: 26.78vw;
  }

  .logo__link {
    width: 27.67vw;
  }
}

/* =======================================
  button list
======================================= */
.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.button-wrap--mask-over {
  position: relative;
  z-index: 10;
}

.button-wrap--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.button-wrap--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.button-wrap--between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.button-wrap--column {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button-wrap--center>.button:nth-child(n+2) {
  margin-left: 20px;
}

.button-wrap--column>.button:nth-child(n+2) {
  margin-top: 20px;
}

.button-wrap--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.button-wrap--reverse>.button:nth-child(n+2) {
  margin-top: 20px;
}

.button-wrap--sp-reverse {}

/* sp button list */
@media screen and (max-width:560px) {
  .button-wrap--center>.button:nth-child(n+2) {
    margin-left: 2%;
  }

  .button-wrap--column>.button:nth-child(n+2) {
    /* margin-top: 1.78vw; */
    margin-top: 3.57vw;
  }

  .button-wrap--sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-wrap--reverse>.button:nth-child(n+2) {
    /* margin-top: 1.78vw; */
    margin-top: 3.57vw;
  }
}

/* =======================================
  button
======================================= */
.button {
  position: relative;
  text-align: center;
  border-radius: 33px;
  border: 2px solid var(--color-white01);
  background-color: var(--color-white01);
  cursor: pointer;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.button--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button--no-click {
  cursor: default;
}

.button--no-click:hover {
  opacity: 1 !important;
}

.button--no-hover:hover {
  opacity: 1 !important;
}

.button--tel {
  pointer-events: none;
}

.button--width-auto {
  width: auto;
  padding: 10px;
}

.button--width-mini {
  min-width: 220px;
  padding: 10px 20px;
}

.button--width-short {
  /* width: 300px; */
  width: 280px;
  padding: 10px 30px;
}

.button--width-normal {
  /* width: 340px; */
  min-width: 340px;
  padding: 15px 30px;
}

.button--width-sp-small {
  width: 340px;
  padding: 15px 30px;
}

.button--width-pc-short {
  min-width: 220px;
  max-width: 340px;
  padding: 10px 30px;
}

.button--width-midlle {
  width: 400px;
  padding: 15px 30px;
}

.button--width-large {}

.button--color-black01 {
  border-color: var(--color-black01);
  background-color: var(--color-black01);
}

.button--color-gray01 {
  border-color: var(--color-gray01);
  background-color: var(--color-gray01);
}

.button--color-gray02 {
  border-color: var(--color-gray02);
  background-color: var(--color-gray02);
}

.button--color-gray03 {
  border-color: var(--color-gray03);
  background-color: var(--color-gray03);
}

.button--color-gray09 {
  border-color: var(--color-gray09);
  background-color: var(--color-gray09);
}

.button--color-red01 {
  border-color: var(--color-red01);
  background-color: var(--color-red01);
}

.button--color-pink01 {
  border-color: var(--color-pink01);
  background-color: var(--color-pink01);
}

.button--frame-color-pink01 {
  border: 2px solid var(--color-pink01);
  border-color: var(--color-pink01);
}

.button--color-grad01 {
  border: none;
  background: linear-gradient(135deg, #e04588 0%, #ed96bf 74.39%, #b6b1e0 100%);
}

.button--bg-wedge-left-white {
  padding-left: 40px;
  background-image: url("../img/wedge_left_white.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 6px auto;
}

.button--bg-wedge-left-black {
  padding-left: 40px;
  background-image: url("../img/wedge_left_black.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 6px auto;
}

.button--bg-wedge-left-pink {
  padding-left: 40px;
  background-image: url("../img/wedge_left_pink.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 6px auto;
}

.button--bg-wedge-right-pink {
  padding-right: 40px;
  background-image: url("../img/wedge_right_pink.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 6px auto;
}

.button--bg-wedge-right-white {
  padding-right: 40px;
  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 6px auto;
}

.button--bg-grad-wedge-right-white {
  padding-right: 40px;
}

.button--bg-grad-wedge-right-white::before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px auto;
}

.button--process {
  background-color: var(--color-gray09);
  background-image: none;
  cursor: default;
}

.button--process:hover {
  opacity: 1;
}

.button--line-login-img {
  width: 340px;
}

.button__text {
  font-size: 22px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white01);
}

.button__text--small {
  font-size: 18px;
}

.button__text--mini {
  font-size: 16px;
}

.button__text--mini-pc {
  font-size: 16px;
}

.button__text--color-black01 {
  color: var(--color-black01);
}

.button__text--color-red01 {
  color: var(--color-red01);
}

.button__text--color-pink01 {
  color: var(--color-pink01);
}

.button__text--save {
  padding-right: 30px;

  background-image: url("../img/icon_bookmark_pink.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 15px auto;
}

.button__text--favorite {
  padding-left: 30px;

  background-image: url("../img/icon_heart_pink.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 15px auto;
}

.button__balloon {
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.button__balloon.is-show  {
  opacity: 1;
}
.button__balloon-text {
  line-height: 1;
  display: block;
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  background-color: var(--color-pink01);
  font-size: 14px;
  text-align: center;
  color: var(--color-white01);
}

.button__img {
  width: 100%;
  object-fit: cover;
}

/* sp button */
@media screen and (max-width:560px) {
  .button {
    border-radius: 5.89vw;
    border-width: 0.35vw;
  }

  .button--width-auto {
    width: auto;
    padding: 2.67vw 5.35vw;
  }

  .button--width-mini {
    min-width: auto;
    min-width: inherit;
    width: 48%;
    padding: 2.67vw 5.35vw;
  }
  
  .button--width-short {
    max-width: 49%;
    width: 43.21vw;
    padding: 2.67vw 5.35vw;
  }

  .button--width-normal {
    /* width: 60.71vw; */
    min-width: 60.71vw;
    padding: 2.67vw 5.35vw;
  }

  .button--width-sp-small {
    width: 42.85vw;
    padding: 2.67vw 5.35vw;
  }

  .button--width-pc-short {
    min-width: 60.71vw;
    max-width: inherit;
    max-width: auto;
    padding: 2.67vw 5.35vw;
  }

  .button--width-midlle {
    width: 73.21vw;
    padding: 2.67vw 5.35vw;
  }

  .button--width-full {
    width: 100%;
    padding: 2.67vw 5.35vw;
  }

  .button--frame-color-pink01 {
    border-width: 0.35vw;
  }

  .button--bg-wedge-left-white {
    padding-left: 7.14vw;
    background-position: 3.57vw center;
    background-size: 1.07vw auto;
  }

  .button--bg-wedge-left-black {
    padding-left: 7.14vw;
    background-position: 3.57vw center;
    background-size: 1.07vw auto;
  }

  .button--bg-wedge-left-pink {
    padding-left: 7.14vw;
    background-position: 3.57vw center;
    background-size: 1.07vw auto;
  }

  .button--bg-wedge-right-pink {
    padding-right: 7.14vw;
    background-position: calc(100% - 3.57vw) center;
    background-size: 1.07vw auto;
  }

  .button--bg-wedge-right-white {
    padding-right: 7.14vw;
    background-position: calc(100% - 3.57vw) center;
    background-size: 1.07vw auto;
  }

  .button--bg-grad-wedge-right-white {
    padding-right: 7.14vw;
  }

  .button--bg-grad-wedge-right-white::before {
    right: 3.57vw;
    margin-top: -0.89vw;
    width: 1.07vw;
    height: 1.78vw;
    background-size: 1.07vw auto;
  }

  .button--line-login-img {
    width: 60.71vw;
  }

  .button__text {
    font-size: 3.92vw;
  }

  .button__text--small {
    font-size: 3.21vw;
  }
  .button__text--mini {
    font-size: 3.21vw;
  }
  .button__text--mini-pc {
    font-size: 3.92vw;
  }

  .button__text--save {
    padding-right: 5.35vw;
    background-size: 2.67vw auto;
  }

  .button__text--favorite {
    padding-left: 5.35vw;
    background-size: 2.67vw auto;
  }

  .button__balloon {
    top: 10.71vw;
  }
  .button__balloon-text {
    padding: 0.89vw;
    border-radius: 1.78vw;
    font-size: 2.85vw;
  }
}

/* =======================================
			list
======================================= */
/* num list */
.num-list {
  counter-reset: num01Cnt;
}

.num-list__item {
  position: relative;
  padding-left: 1.5em;
}

.num-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: num01Cnt;
  content: counter(num01Cnt)".";
}

.num-brackets-list {
  counter-reset: num02Cnt;
}

.num-brackets-list__item {
  position: relative;
  padding-left: 2em;
}

.num-brackets-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: num02Cnt;
  content: "("counter(num02Cnt)")";
}

/* =======================================
  icon list
======================================= */
.icon-list {
  margin-top: -10px;
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.icon-list__item {
  margin-top: 10px;
  margin-left: 10px;
  border-radius: 5px;
  border: 1px solid var(--color-white01);
  padding: 2px 10px;
  font-weight: 400;
}

.icon-list__item--purple01 {
  border-color: var(--color-purple01);
  color: var(--color-white01);
  background-color: var(--color-purple01);
}

.icon-list__item--gray11 {
  border-color: var(--color-gray11);
  color: var(--color-white01);
  background-color: var(--color-gray11);
}

.icon-list__item--frame-pink {
  border-color: var(--color-pink01);
  color: var(--color-pink01);
  background-color: var(--color-white01);
}

/* sp icon list */
@media screen and (max-width:560px) {
  .icon-list {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
  }

  .icon-list__item {
    margin-top: 1.78vw;
    margin-left: 1.78vw;
    border-radius: 0.89vw;
    border-width: 0.17vw;
    padding: 0.35vw 1.78vw;
    font-weight: 500;
  }
}

/* =======================================
  tag list
======================================= */
.tag-list {
  margin-top: -5px;
  margin-left: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag-list__item {
  margin-top: 5px;
  margin-left: 5px;
  border-radius: 30px;
  border: 1px solid var(--color-white01);
  padding: 1px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  background-color: var(--color-white01);
}

.tag-list__item--blue {
  border-color: var(--color-blue03);
  color: var(--color-white01);
  background-color: var(--color-blue03);
}

.tag-list__item--pink {
  border-color: var(--color-pink01);
  color: var(--color-white01);
  background-color: var(--color-pink01);
}

.tag-list__item--frame-pink {
  border-color: var(--color-pink01);
  color: var(--color-pink01);
  background-color: var(--color-white01);
}

/* sp tag list */
@media screen and (max-width:560px) {
  .tag-list {
    margin-top: -0.89vw;
    margin-left: -0.89vw;
  }

  .tag-list__item {
    margin-top: 0.89vw;
    margin-left: 0.89vw;
    border-radius: 5.35vw;
    border-width: 0.17vw;
    padding: 0.53vw 1.78vw;
    font-size: 3.57vw;
    line-height: 1.15;
  }
}

/* =======================================
  square tag list
======================================= */
.square-tag-list {
  margin-top: -10px;
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.square-tag-list__item {
  margin-top: 10px;
  margin-left: 10px;
  border: 1px solid var(--color-white01);
  padding: 3px 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  background-color: var(--color-white01);
}

.square-tag-list__item--frame-blue {
  border-color: var(--color-blue03);
  color: var(--color-blue03);
}

/* sp square tag list */
@media screen and (max-width:560px) {
  .square-tag-list {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
  }

  .square-tag-list__item {
    margin-top: 1.78vw;
    margin-left: 1.78vw;
    border-width: 0.17vw;
    padding: 0.53vw 1.78vw;
    font-size: 3.57vw;
    line-height: 1.15;
  }
}

/* =======================================
  tag-link
======================================= */
.tag-link {
  margin-top: -10px;
  margin-left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag-link__item {
  margin-top: 10px;
  margin-left: 10px;
}

.tag-link__link {
  min-width: 160px;
  display: block;
  border-radius: 45px;
  border: 1px solid var(--color-gray04);
  padding: 4px 16px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--color-white01);
  background-color: var(--color-gray04);
}

.active.tag-link__link {
  border-color: var(--color-pink01);
  background-color: var(--color-pink01);
}

/* sp tag-link */
@media screen and (max-width:560px) {
  .tag-link {
    margin-top: -1.78vw;
    margin-left: -1.78vw;
  }

  .tag-link__item {
    margin-top: 1.78vw;
    margin-left: 1.78vw;
  }

  .tag-link__link {
    min-width: 35.71vw;
    border-radius: 8.03vw;
    border-width: 0.17vw;
    padding: 1.42vw 2.85vw;
  }
}

/* =======================================
  square swhitch tag list
======================================= */
.square-swhitch-tag-list {
  margin-top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.square-swhitch-tag-list__item {
  position: relative;
  margin-top: 20px;
  width: 120px;
  border: 2px solid var(--color-white01);
  padding: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  background-color: var(--color-white01);
}

.square-swhitch-tag-list__item--frame-blue {
  border-color: var(--color-blue03);
  color: var(--color-blue03);
}

.active.square-swhitch-tag-list__item--frame-blue {
  background-color: var(--color-blue03);
  color: var(--color-white01);
}

.active.square-swhitch-tag-list__item--frame-blue::before {
  position: absolute;
  left: calc(50% - 17px);
  bottom: -20px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 20px 0 20px;
  border-color: var(--color-blue03) transparent transparent transparent;
}

/* sp square swhitch tag list */
@media screen and (max-width:560px) {
  .square-swhitch-tag-list {
    margin-top: -3.57vw;
  }
  .square-swhitch-tag-list__item {
    margin-top: 3.57vw;
    width: 21.42vw;
    border-color: var(--color-white01);
    padding: 1.07vw;
    font-size: 3.21vw;
  }
  .square-swhitch-tag-list__item--frame-blue {
    border-color: var(--color-blue03);
    color: var(--color-blue03);
  }

  .active.square-swhitch-tag-list__item--frame-blue {
    background-color: var(--color-blue03);
    color: var(--color-white01);
  }

  .active.square-swhitch-tag-list__item--frame-blue::before {
    left: calc(50% - 3.03vw);
    bottom: -3.57vw;
    border-width: 3.92vw 3.57vw 0 3.57vw;
  }
}

/* =======================================
  innner
======================================= */
.inner01 {
  position: relative;
  margin: 0 auto;
  width: 960px;
}

.inner02 {
  position: relative;
  margin: 0 auto;
  width: 1160px;
}

.inner03 {
  position: relative;
  margin: 0 auto;
  width: 800px;
}

.inner04 {
  position: relative;
  margin: 0 auto;
  width: 500px;
}

.inner05 {
  position: relative;
  margin: 0 auto;
  width: 800px;
}

.inner06 {
  position: relative;
  margin: 0 auto;
  width: 1070px;
}

.inner07 {
  position: relative;
  margin: 0 auto;
  width: 1100px;
}

.inner08 {
  position: relative;
  margin: 0 auto;
  width: 990px;
}

/* sp innner */
@media screen and (max-width:560px) {
  .inner01 {
    width: 89.28vw;
  }

  .inner02 {
    width: 89.28vw;
  }

  .inner03 {
    /* width: 73.21vw; */
    width: 76.78vw;
  }

  .inner04 {
    /* width: 73.21vw; */
    width: 76.78vw;
  }

  .inner05 {
    width: 89.28vw;
  }

  .inner06 {
    width: 89.28vw;
  }

  .inner07 {
    width: 89.28vw;
  }

  .inner08 {
    width: 89.28vw;
  }

}

/* =======================================
  breadcrumb
======================================= */
.breadcrumb {}

.breadcrumb__inner {
  position: relative;
  margin: 0 auto;
  width: 1160px;
  padding: 10px 0;
}

.breadcrumb__list {
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  word-break: keep-all;
  white-space: nowrap;
  line-height: 1;
}

.breadcrumb__item {
  position: relative;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumb__item::after {
  content: ">";
  display: inline-block;
  font-size: inherit;
  margin-left: 10px;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.breadcrumb-list__link {
  text-decoration: underline;
}

/* sp breadcrumb */
@media screen and (max-width:560px) {
  .breadcrumb__inner {
    width: 89.28vw;
    padding: 0.89vw 0 1.78vw;
  }

  .breadcrumb__list {
    gap: 1.78vw;
  }

  .breadcrumb__item {
    font-size: 2.5vw;
  }

  .breadcrumb__item::after {
    margin-left: 1.78vw;
  }
}

/* =======================================
  frame box
======================================= */
.frame-box {
  border-radius: 12px;
  border: 1px solid var(--color-gray06);
  padding: 40px;
  background-color: var(--color-white01);
}

.frame-box--small-padding {
  padding: 30px;
}

.frame-box--no-top-padding {
  padding: 0px 20px 20px;
}

.frame-box--simple {
  border: none;
  background-color: var(--color-purple02);
}

*+.frame-box {
  margin-top: 30px;
}

.frame-box__title-en {
  display: block;
  font-family: "Courgette", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-pink01);
  text-align: center;
}

.frame-box__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.frame-box__title--text-left {
  text-align: left;
}

.frame-box__border-title {
  border-left: 6px solid;
  padding-left: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.36;
}

.frame-box__border-title--pink {
  border-color: var(--color-pink01);
}

.frame-box__border-title--blue {
  border-color: var(--color-blue03);
}

*+.frame-box__border-title {
  margin-top: 30px;
}

*+.frame-box__desc {
  margin-top: 40px;
}

.frame-box__text {
  font-weight: 400;
  line-height: 2;
}

.frame-box__text--large {
  font-size: 20px;
  font-weight: 700;
}

.frame-box__text-tel {
  display: inline-block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--color-pink01);
}

*+.frame-box__text {
  margin-top: 1em;
}

.frame-box__text--no-margin {
  margin-top: 0px !important;
}

.frame-box__text--text-center {
  text-align: center;
}

.frame-box__button {
  margin-top: 40px;
}

/* sp frame box */
@media screen and (max-width:560px) {
  .frame-box {
    border-radius: 2.14vw;
    border-width: 0.17vw;
    padding: 7.14vw 3.57vw;
  }

  .frame-box--small-padding {
    padding: 5.35vw;
  }

  .frame-box--no-top-padding {
    padding: 0px 3.57vw 3.57vw;
  }

  .frame-box--simple {
    border: none;
    background-color: var(--color-purple02);
  }

  *+.frame-box {
    margin-top: 5.35vw;
  }

  .frame-box__title {
    /* font-size: 5vw;
    line-height: 1.5; */
    font-size: 4.64vw;
    line-height: 1.5;
    letter-spacing: -0.05em;
  }

  .frame-box__border-title {
    border-width: 1.07vw;
    padding-left: 1.78vw;
    font-size: 4.46vw;
    line-height: 1.2;
  }
  
  *+.frame-box__border-title {
    margin-top: 5.35vw;
  }

  *+.frame-box__desc {
    margin-top: 7.14vw;
  }

  .frame-box__text {
    font-size: 3.21vw;
    line-height: 1.77;
  }

  .frame-box__text--large {
    font-size: 3.57vw;
  }

  .frame-box__button {
    margin-top: 7.14vw;
  }
}

/* =======================================
  main wrap
======================================= */
.main {
  margin-top: 120px;
}
.main--no-margin-top {
  margin-top: 0;
}

/* sp main wrap */
@media screen and (max-width:560px) {
  .main {
    /* margin-top: 20.89vw; */
    margin-top: 20.89vw;
  }
  .main--no-margin-top {
    margin-top: 0;
  }
}

/* =======================================
  contents column
======================================= */
.contents {}

.contents__header {
  padding: 50px;
  background-color: var(--color-blue01);

  background-image: url("../img/bg_circle_red.svg"), url("../img/bg_circle_blue.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: -60px -30px, calc(100% + 90px) -60px;
  background-size: 240px 219px, 243px 229px;
}

.contents__title {
  text-align: center;
}

.contents__title-en {
  display: block;
  font-family: "Courgette", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-pink01);
}

.contents__title-jp {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.contents__block {}

/* sp contents column */
@media screen and (max-width:560px) {
  .contents__header {
    padding: 8.92vw;
    background-position: -8.92vw 7.14vw, calc(100% + 10.71vw) -5.35vw;
    background-size: 30vw 27.32vw, 28.74vw 27.14vw;
  }

  .contents__title-en {
    font-size: 3.21vw;
  }

  .contents__title-jp {
    font-size: 5.35vw;
  }
}

/* =======================================
  contents part
======================================= */
.contents-part {
  /* padding: 50px 0 150px; */
  /* padding: 50px 0; */
  padding: 40px 0;
}

.contents-part--padding-large {
  padding: 70px 0;
}

.contents-part--padding-bpttp-large {
  padding-bottom: 100px;
}

.contents-part--no-top-padding {
  padding-top: 0;
}

.contents-part__header {}

*+.contents-part__header-desc {
  margin-top: 10px;
}

.contents-part__sub-title+.contents-part__header-desc {
  margin-top: 20px;
}

/* contents-part title */
.contents-part__title {
  position: relative;
  display: block;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contents-part__title-en {
  display: block;
  width: 100%;
  font-family: "Courgette", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: var(--color-pink01);
}

.contents-part__title-jp {
  display: block;
  width: 100%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}

.contents-part__title-jp-small {
  padding-top: 5px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.contents-part__border-title {
  border-left: 6px solid;
  padding-left: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.36;
}

.contents-part__border-title--pink {
  border-color: var(--color-pink01);
}

.contents-part__border-title--blue {
  border-color: var(--color-blue03);
}

.contents-part__sub-title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.46;
  text-align: center;
}

*+.contents-part__sub-title {
  margin-top: 25px;
}

.contents-part__contents-title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--color-pink01);
}

.contents-part__border-bottom-title {
  border-bottom: 2px solid var(--color-pink01);
  padding-bottom: 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.75;
}

.contents-part__border-bottom-title--margin-buttom {
  margin-bottom: 30px;
}

.contents-part__title-simple {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.66;
  letter-spacing: 0.03em;
}

.contents-part__title-simple--text-center {
  text-align: center;
}

.contents-part__title-simple-text {
  position: relative;
  padding: 0 30px;
}

.contents-part__title-simple-text::before {
  position: absolute;
  left: 0;
  content: "";
  transform: rotate(145deg);
  width: 2px;
  height: 2em;
  background-color: var(--color-pink01);
}

.contents-part__title-simple-text::after {
  position: absolute;
  right: 0;
  content: "";
  transform: rotate(35deg);
  width: 2px;
  height: 2em;
  background-color: var(--color-pink01);
}

/* contents-part text */
.contents-part__text {
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.contents-part__text--left {
  text-align: left;
}

*+.contents-part__text {
  margin-top: 25px;
}

/* contents-part body */
*+.contents-part__body {
  margin-top: 25px;
}

*+.contents-part__body--margin-middle {
  margin-top: 50px;
}

*+.contents-part__body--margin-large {
  margin-top: 85px;
}

*+.contents-part__body--top-margin {
  margin-top: 60px;
}

/* contents-part block */
*+.contents-part__block {
  margin-top: 10px;
}

/* contents-part footer */
*+.contents-part__footer {
  margin-top: 40px;
}

*+.contents-part__footer--top-margin-small {
  margin-top: 15px;
}

.contents-part__form-job-box {}


/* body-two-column */
.contents-part__body-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contents-part__body-left {
  width: calc(100% - 478px);
  padding-right: 60px;
}

.contents-part__body-left-title {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}

.contents-part__body-right {
  width: 478px;
}

.contents-part__body-left--feature {
  width: calc(100% - 450px);
  padding-right: 20px;
}
.contents-part__body-right--feature {
  width: 450px;
}

.contents-part__body-right-thum {
  width: 100%;
  border-radius: 12px;
}

.contents-part__body-right-thum-img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.58;
  object-fit: cover;
}

.contents-part__body-right-thum--feature {
  border-radius: 0;
}

.contents-part__body-right-thum-img--feature {
  border-radius: 0;
  aspect-ratio: 1/0.33;
}

/* body-two-column mypage */
.contents-part__body-left-mypage {
  width: 275px;
}

.contents-part__body-right-mypage {
  width: calc(100% - 360px);
}

/* body-two-column wp */
.contents-part__body-left-wp {
  width: 830px;
}

.contents-part__body-left-wp--small {
  width: 690px;
}

.contents-part__body-right-wp {
  width: 300px;
}

/* sp contents part */
@media screen and (max-width:560px) {
  .contents-part {
    /* padding: 8.92vw 0 17.85vw; */
    /* padding: 8.92vw 0; */
    padding: 7.14vw 0;
  }

  .contents-part--padding-large {
    padding: 12.5vw 0;
  }

  .contents-part--padding-bpttp-large {
    padding-bottom: 12.5vw;
  }

  .contents-part--no-top-padding {
    padding-top: 0;
  }

  *+.contents-part__header-desc {
    margin-top: 1.78vw;
  }

  .contents-part__sub-title+.contents-part__header-desc {
    margin-top: 3.57vw;
  }

  /* contents-part title */
  .contents-part__title-en {
    font-size: 3.21vw;
  }

  .contents-part__title-jp {
    font-size: 5.35vw;
  }

  .contents-part__title-jp-small {
    padding-top: 0.89vw;
    font-size: 3.57vw;
  }

  .contents-part__border-title {
    border-width: 1.07vw;
    padding-left: 1.78vw;
    font-size: 4.46vw;
    line-height: 1.2;
  }

  .contents-part__sub-title {
    font-size: 4.82vw;
    line-height: 1.4;
  }

  *+.contents-part__sub-title {
    margin-top: 4.46vw;
  }

  .contents-part__contents-title {
    font-size: 4.64vw;
  }

  .contents-part__border-bottom-title {
    border-width: 0.35vw;
    padding-bottom: 2.67vw;
    font-size: 5vw;
    line-height: 1.5;
    text-align: center;
  }

  .contents-part__border-bottom-title--margin-buttom {
    margin-bottom: 4.46vw;
  }

  .contents-part__title-simple {
    font-size: 3.57vw;
    line-height: 1.65;
  }

  .contents-part__title-simple-text {
    padding: 0 5.35vw;
  }

  .contents-part__title-simple-text::before {
    width: 0.35vw;
  }

  .contents-part__title-simple-text::after {
    width: 0.35vw;
  }

  /* contents-part text */
  .contents-part__text {
    line-height: 1.85;
    text-align: left;
  }

  *+.contents-part__text {
    margin-top: 5.35vw;
  }

  /* contents-part body */
  *+.contents-part__body {
    margin-top: 5.35vw;
  }

  *+.contents-part__body--margin-middle {
    margin-top: 8.92vw;
  }

  *+.contents-part__body--margin-large {
    /* margin-top: 10.71vw; */
    margin-top: 14.28vw;
  }

  /* contents-part block */
  *+.contents-part__block {
    margin-top: 1.78vw;
  }

  /* contents-part footer */
  *+.contents-part__footer {
    margin-top: 7.14vw;
  }

  *+.contents-part__footer--top-margin-small {
    margin-top: 2.67vw;
  }

  /* body-two-column */
  .contents-part__body-left {
    width: 100%;
    padding-right: 0;
  }
  .contents-part__body-left--feature {
    width: 100%;
    padding-right: 0;
  }

  .contents-part__body-left-title {
    font-size: 4.82vw;
  }

  .contents-part__body-right {
    margin-top: 7.14vw;
    width: 100%;
  }
  .contents-part__body-right--feature {
    margin-top: 7.14vw;
    width: 100%;
  }

  .contents-part__body-right-thum {
    width: 100%;
    border-radius: 2.14vw;
  }

  .contents-part__body-right-thum-img {
    border-radius: 2.14vw;
  }

  .contents-part__body-right-thum--feature {
    border-radius: 0;
  }

  .contents-part__body-right-thum-img--feature {
    border-radius: 0;
  }

  /* body-two-column mypage */
  .contents-part__body-left-mypage {
    display: none;
    width: 100%;
  }

  .contents-part__body-right-mypage {
    width: 100%;
  }

  /* body-two-column wp */
  .contents-part__body-left-wp {
    width: 100%;
  }

  .contents-part__body-right-wp {
    margin-top: 10.71vw;
    /* display: none; */
    width: 100%;
  }
}

/*
.contents-part__body-left-mypage-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.56;
}

.contents-part__body-left-mypage-text {
  line-height: 1.68;
}

*+.contents-part__body-left-mypage-text {
  margin-top: 16px;
}

.contents-part__body-right-mypage-thum01 {
  width: 100%;
}

.contents-part__body-right-mypage-thum01 img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
*/

/* =======================================
  cv support
======================================= */
.webp .cv-support {
  background-image: url("../img/bg_cv_support_pc.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.no-webp .cv-support {
  background-image: url("../img/bg_cv_support_pc.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* =======================================
  cv contact
======================================= */

/* =======================================
  cv note
======================================= */
.cv-note {
  background-color: #67c3ae;
}

/* =======================================
  header global
======================================= */
.header-global {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background-color: var(--color-white01);
}

.header-global::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: -moz-linear-gradient(50% 0% -90deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%);
  background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgba(0, 0, 0, 1)), color-stop(1, rgba(0, 0, 0, 0.16)));
  background: -o-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  background: -ms-linear-gradient(-90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#333333' ,GradientType=0)";
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.16) 100%);
  opacity: 0.05;
  filter: alpha(opacity=3) progid:DXImageTransform.Microsoft.Alpha(opacity=3) progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#333333', GradientType=0);
}

.header-global__inner {
  position: relative;
  width: 1280px;
  min-height: 100px;
  margin: 0 auto;
  padding: 0 20px 10px 25px;
  background-color: var(--color-white01);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  z-index: 1;
}

.header-global__left {
  /* width: 170px; */
  width: 150px;
}

.header-global__logo {
  padding-top: 15px;
}

.header-global__right {
  /* width: calc(100% - 170px); */
  width: calc(100% - 150px);
}

.header-global__right-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global__right-up+.header-global__right-down {
  margin-top: 15px;
}

.header-global__right-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global__sns {
  margin-right: 20px;
}

.header-global__navi01 {
  /* margin-right: 10px;
  max-width: calc(100% - 350px); */
  max-width: calc(100% - 270px);
}

.header-global__navi02 {
  /* width: 340px; */
  width: 270px;
}

/* sp header global */
@media screen and (max-width:560px) {
  .header-global {
    min-width: 100%;
  }

  .header-global::after {
    height: 0.89vw;
    bottom: -0.89vw;
  }

  .header-global__inner {
    /* width: 100%; */
    width: 89.28vw;
    min-height: 17.85vw;
    /* padding: 2.67vw 5.35vw 2.67vw 4.46vw; */
    padding: 2.67vw 0;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-global__left {
    width: 27.67vw;
  }

  .header-global__logo {
    padding-top: 0;
  }

  .header-global__right {
    width: calc(100% - 27.67vw);
  }

  .header-global__right-up {
    display: none;
  }

  .header-global__right-up+.header-global__right-down {
    margin-top: 0;
  }

  .header-global__sns {
    margin-right: 0.57vw;
  }
  .header-global__navi01 {
    width: auto;
    width: initial;
    display: none;
  }

  .header-global__navi02 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/* navi btn */
.header-global-navi-btn {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* padding: 2px 15px 8px; */
  padding: 15px 15px 8px;
  line-height: 1;
  background-color: var(--color-pink02);
}

.header-global-navi-btn__text {
  font-family: "Zen Maru Gothic", serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-pink01);
}

/* sp navi btn */
@media screen and (max-width:560px) {
  .header-global-navi-btn {
    display: none;
  }
}

/* navi01-sp */
.header-global-navi-sp {
  display: none;
}

.header-global-navi01-sp {
  display: none;
}

/* sp navi01-sp */
@media screen and (max-width:560px) {
  .header-global-navi-sp {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 17.85vw;
    left: 0;
    z-index: 15;
    background-color: var(--color-white01);
  }

  .header-global-navi-sp__inner {
    margin: 0 auto;
    width: 82.14vw;
  }

  .header-global-navi-sp__navi01 {
    height: 100%;
    max-height: calc(100% - 61.6vw);
    /* padding: 6.25vw 0; */
    padding: 3.25vw 0;
    overflow-y: scroll;
  }

  .header-global-navi-sp__sns {
    margin-bottom: 3.25vw;
  }

}

/* navi01 */
.header-global-navi01 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi01__item {
  border-right: 1px solid var(--color-gray02);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi01__item:last-child {
  border-right: none;
}

.header-global-navi01__link {
  display: block;
  /* padding: 0 25px; */
  /* padding: 0 15px; */
  padding: 0 10px;
  cursor: pointer;
}

.header-global-navi01__text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-global-navi01__link--current .header-global-navi01__text {
  color: var(--color-pink01);
}

/* sp navi01 */
@media screen and (max-width:560px) {
  .header-global-navi01 {
    display: none;
  }

  /* header-global-navi01-sp */
  .header-global-navi01-sp {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-global-navi01-sp__item {
    width: 100%;
    border-top: 0.17vw solid var(--color-gray03);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-global-navi01-sp__item:last-child {
    border-bottom: 0.17vw solid var(--color-gray03);
  }

  .header-global-navi01-sp__link {
    display: block;
    width: 100%;
    padding: 3.57vw 0;
    text-align: left;
  }

  .header-global-navi01-sp__text {
    font-size: 3.57vw;
    font-weight: 700;
    line-height: 1.5;
  }

  .header-global-navi01-sp__link--current .header-global-navi01-sp__text {
    color: var(--color-pink01);
  }

  .header-global-navi-sp__text-link-list {
    margin-top: 3.57vw;
    padding-left: 3.57vw;
  }

  .header-global-navi-sp__text-link {
    font-size: 3.57vw;
    color: var(--color-pink01);
  }

  .header-global-navi-sp__text-link--factory {
    padding-left: 4.46vw;
    padding-right: 7.46vw;
    background-image: url("../img/icon_factory_pink.svg"), url("../img/wedge_right_pink.svg");
    background-repeat: no-repeat, no-repeat;
    background-position: left center, calc(100% - 3.57vw) center;
    background-size: 2.67vw auto, 1.42vw auto;
  }

  /* header-global-navi-sp-footer */
  .header-global-navi-sp__footer {
    padding: 8.92vw;
    background-color: var(--color-blue01);
  }

  .header-global-navi-sp-footer {}

  .header-global-navi-sp-footer__button:nth-child(n+2) {
    margin-top: 3.57vw;
  }

  .header-global-navi-sp-footer__button {
    display: block;
    width: 100%;
    border-radius: 5.89vw;
    border: 0.35vw solid var(--color-pink01);
    padding: 2.5vw 12.5vw;

    text-align: center;
  }

  .header-global-navi-sp-footer__button--frame-pink {
    background-color: var(--color-white01);
  }

  .header-global-navi-sp-footer__button--grad01 {
    border: none;
    background: linear-gradient(135deg, #e04588 0%, #ed96bf 74.39%, #b6b1e0 100%);
  }

  .header-global-navi-sp-footer__button-text {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-size: 3.92vw;
    letter-spacing: 0.04em;
  }

  .header-global-navi-sp-footer__button-text--color-white {
    color: var(--color-white01);
  }

  .header-global-navi-sp-footer__button-text--color-pink {
    color: var(--color-pink01);
  }
}

/* navi02 */
.header-global-navi02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-global-navi02__item {
  /* min-width: 165px; */
  min-width: 130px;
}

.header-global-navi02__item:nth-child(n+2) {
  margin-left: 10px;
}

.header-global-navi02__item--sp {
  display: none;
}

.header-global-navi02__link {
  display: block;
  border-radius: 22px;
  border: 1px solid var(--color-pink01);
  /* padding: 8px 30px; */
  padding: 8px 20px;
  text-align: center;
  background-color: var(--color-white01);
}

.header-global-navi02__link--pink {
  border-color: var(--color-pink01);
  background-color: var(--color-pink01);
}

.header-global-navi02__link--wedge-right-white {
  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-size: 6px auto;
}

.header-global-navi02__text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}

.header-global-navi02__text--white {
  color: var(--color-white01);
}

.header-global-navi02__text--pink {
  color: var(--color-pink01);
}

/* sp navi02 */
@media screen and (max-width:560px) {
  .header-global-navi02 {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-global-navi02__item {
    min-width: 21.42vw;
  }

  .header-global-navi02__item:nth-child(n+2) {
    margin-left: 1.78vw;
  }

  /* .header-global-navi02__item:last-child {
    margin-left: 5.35vw;
  } */

  .header-global-navi02__item--pc {
    display: none;
  }

  .header-global-navi02__item--sp {
    display: block;
    min-width: auto;
    min-width: inherit;
  }

  .header-global-navi02__link {
    border-radius: 10.71vw;
    border-width: 0.17vw;
    padding: 1.42vw 3.57vw;
  }

  .header-global-navi02__link--wedge-right-white {
    background-image: none;
  }

  .header-global-navi02__text {
    font-size: 3.57vw;
    letter-spacing: -0.06em;
  }

  .header-global-navi02__button {
    width: 5.35vw;
    height: 3.57vw;
    background-image: url("../img/btn_menu_open.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
  }

  .header-global-navi02__button--open {
    width: 4.46vw;
    height: 4.46vw;
    background-image: url("../img/btn_menu_close.svg");
  }

}

/* =======================================
  number-block-list
======================================= */
.number-block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.number-block-list__item {
  width: 310px;
}

.number-block-list__item:nth-child(n+2) {
  margin-left: 15px;
}

.number-block-list__block {
  height: 100%;
  position: relative;
  border-radius: 10px;
  background-color: var(--color-white01);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.number-block-list__block-up {
  padding: 50px 15px 20px;
}

.number-block-list__num {
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 70px;

  border-radius: 50%;

  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 31px;
  line-height: 70px;

  color: var(--color-pink01);
  text-align: center;
  background-color: var(--color-pink02);
}

.number-block-list__title {
  min-height: 3em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.42;
  text-align: center;
}

.number-block-list__text {
  margin-top: 5px;
  line-height: 1.68;
}

.number-block-list__text--close-up {
  letter-spacing: -0.1em;
}

.number-block-list__thum {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.number-block-list__thum-img {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.46;
  object-fit: cover;
}

/* sp number-block-list */
@media screen and (max-width:560px) {
  .number-block-list__item {
    width: 100%;
  }

  .number-block-list__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 12.5vw;
  }

  .number-block-list__block {
    border-radius: 1.78vw;
  }

  .number-block-list__block-up {
    padding: 7.14vw 5.35vw 3.57vw;
  }

  .number-block-list__num {
    top: -6.25vw;
    margin-left: -6.25vw;
    width: 12.5vw;
    height: 12.5vw;

    font-size: 5.53vw;
    line-height: 12.5vw;
  }

  .number-block-list__title {
    min-height: auto;
    min-height: initial;
    font-size: 4.82vw;
    line-height: 1.4;
  }

  .number-block-list__text {
    margin-top: 1.78vw;
    line-height: 1.55;
  }

  .number-block-list__text--close-up {
    letter-spacing: 0;
  }

  .number-block-list__thum {
    border-bottom-left-radius: 1.78vw;
    border-bottom-right-radius: 1.78vw;
  }

  .number-block-list__thum-img {
    border-bottom-left-radius: 1.78vw;
    border-bottom-right-radius: 1.78vw;
    aspect-ratio: 1/0.29;
  }
}

/* =======================================
  flow box
======================================= */
.flow-box {
  border-radius: 10px;
  /* padding: 65px 50px 40px; */
  padding: 65px 20px 40px;
  background-color: var(--color-white01);
}

/* sp flow box */
@media screen and (max-width:560px) {
  .flow-box {
    border-radius: 1.78vw;
    padding: 11.6vw 3.57vw 5.35vw;
  }
}

/* =======================================
  flow list
======================================= */
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flow-list__item {
  position: relative;
  /* width: 170px; */
  width: 176px;
}

.flow-list__item:nth-child(n+2) {
  margin-left: 60px;
}

.flow-list__item:nth-child(n+2)::before {
  position: absolute;
  top: 50%;
  left: -39px;
  margin-top: -19px;
  content: "";

  width: 18px;
  height: 38px;
  background-image: url("../img/triangle_right_pink.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.flow-list__block {
  position: relative;
  border-radius: 10px;
  padding-top: 40px;
  background-color: var(--color-white01);
}

.flow-list__num {
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  height: 70px;

  border-radius: 50%;

  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 31px;
  line-height: 70px;

  color: var(--color-pink01);
  text-align: center;
  background-color: var(--color-pink02);
}

.flow-list__thum {
  border-radius: 10px;
}

.flow-list__thum-img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.56;
  object-fit: cover;
}

.flow-list__title {
  margin-top: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.05em;
  text-align: center;
}

.flow-list__text {
  margin-top: 5px;
  line-height: 1.68;
}
.flow-list__button {
  margin-top: 10px;
}

/* sp flow list */
@media screen and (max-width:560px) {
  .flow-list__item {
    width: 100%;
  }

  .flow-list__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 21.42vw;
  }

  .flow-list__item:nth-child(n+2)::before {
    position: absolute;
    top: -14.28vw;
    left: 50%;
    margin-top: 0;
    margin-left: -3.92vw;
    width: 7.85vw;
    height: 3.75vw;
    background-image: url("../img/triangle_down_pink.svg");
  }

  .flow-list__block {
    border-radius: 1.78vw;
    padding-top: 7.14vw;
  }

  .flow-list__num {
    top: -6.25vw;
    margin-left: -6.25vw;
    width: 12.5vw;
    height: 12.5vw;

    font-size: 5.53vw;
    line-height: 12.5vw;
  }

  .flow-list__thum {
    border-radius: 1.78vw;
  }

  .flow-list__thum-img {
    border-radius: 1.78vw;
  }

  .flow-list__title {
    margin-top: 3.57vw;
    font-size: 4.82vw;
    line-height: 1.4;
  }

  .flow-list__text {
    margin-top: 1.78vw;
    font-size: 3.21vw;
    line-height: 1.55;
  }
  .flow-list__button {
    margin-top: 1.78vw;
  }
}

/* =======================================
  faq list
======================================= */
.faq-list {}

.faq-list__item {}

.faq-list__item:nth-child(n+2) {
  margin-top: 10px;
}

.faq-list__item--margin-large:nth-child(n+2) {
  margin-top: 30px;
}

.faq-list__q {
  border-radius: 31px;
  padding: 15px 25px;
  background-color: var(--color-blue04);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._burgerBtn.faq-list__q {
  padding: 15px 50px 15px 25px;
  background-image: url("../img/wedge_down_blue.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 25px) center;
  background-size: 16px;
}

.openList._burgerBtn.faq-list__q {
  background-image: url("../img/wedge_up_blue.svg");
}

.faq-list__q-icon {
  width: 35px;
  padding-right: 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-blue03);
}

.faq-list__q-text {
  width: calc(100% - 35px);
  line-height: 2;
}

.faq-list__a {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq-list__a-icon {
  width: 35px;
  padding-right: 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-pink01);
}

.faq-list__a-text {
  width: calc(100% - 35px);
  line-height: 2;
}

/* sp faq list */
@media screen and (max-width:560px) {
  .faq-list__item:nth-child(n+2) {
    margin-top: 4.46vw;
  }

  .faq-list__q {
    border-radius: 3.57vw;
    padding: 2.67vw 3.57vw;
  }

  ._burgerBtn.faq-list__q {
    padding: 2.67vw 7.14vw 2.67vw 3.57vw;
    background-position: calc(100% - 3.57vw) center;
    background-size: 2.85vw;
  }

  .faq-list__q-icon {
    width: 6.25vw;
    padding-right: 2.67vw;
    font-size: 5vw;
    line-height: 1.28;
  }

  .faq-list__q-text {
    width: calc(100% - 6.25vw);
    line-height: 1.65;
  }

  .faq-list__a {
    padding: 3.57vw;
  }

  .faq-list__a-icon {
    width: 6.25vw;
    padding-right: 2.67vw;
    font-size: 5vw;
    line-height: 1.28;
  }

  .faq-list__a-text {
    width: calc(100% - 6.25vw);
    line-height: 1.65;
  }
}

/* =======================================
  table-list
======================================= */
.table-list {}

.table-list__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.table-list__title {
  width: 120px;
  border-top: 1px solid var(--color-blue03);
  padding: 20px 10px;

  font-weight: 700;
  line-height: 1.31;
}

.table-list__line:last-child .table-list__title {
  border-bottom: 1px solid var(--color-blue03);
}

.table-list__desc {
  width: calc(100% - 120px);
  border-top: 1px solid var(--color-gray06);
  padding: 20px 10px;
}

.table-list__line:last-child .table-list__desc {
  border-bottom: 1px solid var(--color-gray06);
}

.table-list__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
}

.table-list__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  text-decoration: underline;
}

.table-list--line-pink .table-list__title {
  border-color: var(--color-pink01);
}

.table-list--line-pink .table-list__line:last-child .table-list__title {
  border-color: var(--color-pink01);
}

/* sp table-list */
@media screen and (max-width:560px) {
  .table-list__line {
    position: relative;
    border-top: 0.17vw solid var(--color-gray06);
    padding: 3.57vw 0;
  }

  .table-list__line::before {
    content: "";
    position: absolute;
    top: -0.17vw;
    left: 0;
    width: 21.42vw;
    height: 0.17vw;
    background-color: var(--color-blue03);
  }

  .table-list__line:last-child {
    border-bottom: 0.17vw solid var(--color-gray06);
  }

  .table-list__line:last-child:after {
    content: "";
    position: absolute;
    bottom: -0.17vw;
    left: 0;
    width: 21.42vw;
    height: 0.17vw;
    background-color: var(--color-blue03);
  }

  .table-list__title {
    width: 100%;
    border: none;
    padding: 0;

    font-size: 3.21vw;
    font-weight: 700;
    line-height: 1.16;
  }

  .table-list__line:last-child .table-list__title {
    border: none;
  }

  .table-list__desc {
    margin-top: 0.89vw;
    width: 100%;
    border: none;
    padding: 0;
  }

  .table-list__line:last-child .table-list__desc {
    border: none;
  }

  .table-list__text {
    font-size: 3.21vw;
    line-height: 1.33;
  }

  .table-list__link {
    font-size: 3.21vw;
    line-height: 1.33;
  }

  .table-list--line-pink .table-list__line::before {
    background-color: var(--color-pink01);
  }

  .table-list--line-pink .table-list__line::after {
    background-color: var(--color-pink01);
  }
}

/* =======================================
  line-link-list
======================================= */
.line-link-list {}

.line-link-list__item {
  border-top: 1px solid var(--color-gray06);
}

.line-link-list__item:last-child {
  border-bottom: 1px solid var(--color-gray06);
}

.line-link-list__link {
  padding: 15px 40px 15px 0;

  background-image: url("../img/circle_right_pink_white.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 30px auto;


  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.line-link-list__title {
  width: 230px;
  padding-right: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
}

.line-link-list__text {
  font-size: 14px;
}

.line-link-list__text--large {
  font-size: 16px;
}

.line-link-list__title+.line-link-list__text {
  width: calc(100% - 230px);
}

/* sp line-link-list */
@media screen and (max-width:560px) {
  .line-link-list__item {
    border-width: 0.17vw;
  }

  .line-link-list__item:last-child {
    border-width: 0.17vw;
  }

  .line-link-list__link {
    padding: 2.67vw 7.14vw 2.67vw 0;
    background-size: 5.35vw auto;
  }

  .line-link-list__title {
    width: 100%;
    padding-right: 0;
    font-size: 3.92vw;
    line-height: 1.09;
  }

  .line-link-list__text {
    width: 100%;
    font-size: 3.21vw;
    line-height: 1.18;
  }

  .line-link-list__text--large {
    font-size: 3.57vw;
    line-height: 1.2;
  }

  .line-link-list__title+.line-link-list__text {
    margin-top: 2.67vw;
    width: 100%;
  }
}

/* =======================================
  sitemap-list
======================================= */
.sitemap-list {}

.sitemap-list__item {}

.sitemap-list__item:nth-child(n+2) {
  margin-top: 60px;
}

.sitemap-list__title {
  border-radius: 3px;
  padding: 10px 15px;
}

.sitemap-list__title-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white01);
}

.sitemap-list__body {
  margin-top: 40px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sitemap-list__body .line-link-list {
  width: 460px;
}

.sitemap-list__body .line-link-list__link {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* sp sitemap-list */
@media screen and (max-width:560px) {
  .sitemap-list__item:nth-child(n+2) {
    margin-top: 10.71vw;
  }

  .sitemap-list__title {
    border-radius: 0.53vw;
    padding: 1.78vw 2.67vw;
  }

  .sitemap-list__title-text {
    font-size: 5vw;
  }

  .sitemap-list__body {
    margin-top: 7.14vw;
  }

  .sitemap-list__body .line-link-list {
    width: 100%;
  }

  .sitemap-list__body .line-link-list:nth-child(n+2) .line-link-list__item:first-child {
    border-top: none;
  }

  .sitemap-list__body .line-link-list__link {
    padding-top: 3.57vw;
    padding-bottom: 3.57vw;
  }
}

/* =======================================
  footer global
======================================= */
.footer-global {
  background-color: var(--color-blue01);
}

.footer-global__inner {
  width: 960px;
  margin: 0 auto;
  padding: 70px 0 40px;
}
.footer-global__inner--small {
  padding: 15px 0;
}

.footer-global__up {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global__navi {}

.footer-global__navi-title {
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-pink01);
}

.footer-global__footer-global-navi01-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global__footer-global-navi01 {
  min-width: 200px;
  padding-left: 0.5em;
}

.footer-global__down {
  border-top: 1px solid var(--color-blue02);
  padding: 30px 0 40px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global__copy {
  font-size: 12px;
  text-align: center;
}

/* sp footer global */
@media screen and (max-width:560px) {
  .footer-global__inner {
    width: 89.28vw;
    padding: 8.92vw 0 14.28vw;
  }

  .footer-global__inner--small {
    padding: 2.67vw 0;
  }

  .footer-global__up {
    padding-bottom: 5.35vw;
  }

  .footer-global__navi:nth-child(n+2) {
    margin-top: 5.35vw;
  }

  .footer-global__navi-title {
    margin-bottom: 1.78vw;
    font-size: 3.92vw;
    line-height: 1.36;
  }

  .footer-global__footer-global-navi01 {
    min-width: 44.64vw;
  }

  .footer-global__down {
    border-width: 0.17vw;
    padding: 7.14vw 0 3.57vw;
  }

  .footer-global__copy {
    font-size: 2.85vw;
    font-weight: 400;
    line-height: 1.125;
  }
}

/* footer global navi01 */
.footer-global-navi01 {}

.footer-global-navi01__item {}

.footer-global-navi01__item:nth-child(n+2) {
  margin-top: 10px;
}

.footer-global-navi01__link {
  position: relative;
}

.footer-global-navi01__link::before {
  content: "-";
}

.footer-global-navi01__text {
  padding-left: 0.5em;
  font-weight: 700;
  color: var(--color-black04);
}

/* sp footer global navi01 */
@media screen and (max-width:560px) {
  .footer-global-navi01__item:nth-child(n+2) {
    margin-top: 1.78vw;
  }
}

/* footer global tel */
.footer-global-tel {
  width: 380px;
}

.footer-global-tel__number {
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: var(--color-pink01);
}

.footer-global-tel__number--small {
  font-size: 30px;
}

.footer-global-tel__note {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
}

/* sp footer global tel */
@media screen and (max-width:560px) {
  .footer-global-tel {
    width: 100%;
    text-align: center;
  }

  .footer-global-tel__number {
    font-size: 8.92vw;
  }

  .footer-global-tel__number--small {
    font-size: 5.35vw;
  }

  .footer-global-tel__note {
    margin-top: 0;
    font-size: 3.57vw;
  }
}

/* footer global contact */
.footer-global-contact {
  width: calc(100% - 380px);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-global-contact__button {
  width: 267px;
  border-radius: 39px;
  padding: 10px 30px;
  text-align: center;

  background-color: var(--color-pink01);

  background-image: url("../img/wedge_right_white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 6px auto;
}

.footer-global-contact__button:nth-child(n+2) {
  margin-left: 16px;
}

.footer-global-contact__button-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white01);
}

/* sp footer global contact */
@media screen and (max-width:560px) {
  .footer-global-contact {
    margin-top: 2.67vw;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-global-contact__button {
    width: 47.67vw;
    border-radius: 6.96vw;
    padding: 1.78vw 5.35vw;
    background-position: calc(100% - 3.57vw) center;
    background-size: 1.07vw auto;
  }

  .footer-global-contact__button:nth-child(n+2) {
    margin-top: 1.78vw;
    margin-left: 0;
  }

  .footer-global-contact__button-text {
    font-size: 3.57vw;
  }
}

/* anchor top */
.button-anchor-top {}

.button-anchor-top__button {
  bottom: 10%;
  position: fixed;
  right: 5%;
  display: none;
  z-index: 10;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.button-anchor-top__img {
  width: 100%;
}

/* sp anchor top */
@media screen and (max-width:560px) {
  .button-anchor-top__button {
    width: 8.92vw;
    height: 8.92vw;
  }
}

/* =======================================
  slider
======================================= */
/* slick-slider */
.slick-slider {
  width: 100%;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /* -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; */
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.slick-slider._slider-on {
  display: block !important;
}

.slick-slider--full {
  margin: 0 auto;
  width: 990px;
}

.slick-slider--full._slider-on {
  width: 100%;
}

.slide-arrow {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  width: 52px;
  height: 52px;
  font-size: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 6;
  /* opacity: 0.8; */
}

.prev-arrow {
  left: -10%;
}

.next-arrow {
  right: -10%;
}

.slick-dots {
  bottom: -30px;
  text-align: center;
}

.slick-track {
  margin: 15px 0;
  display: flex;
}

.slick-slide {
  height: auto !important;
}

/* sp slider */
@media screen and (max-width:560px) {
  .slick-slider--full {
    width: 100%;
  }

  .slide-arrow {
    /* margin-top: -3.64vw;
    width: 7.28vw;
    height: 7.28vw; */
    margin-top: -4.46vw;
    width: 8.92vw;
    height: 8.92vw;
  }

  .prev-arrow {
    /* left: -3.64vw; */
    left: -1.79vw;
  }

  .next-arrow {
    /* right: -3.64vw; */
    right: -1.79vw;
  }

  .slick-slider--full .prev-arrow {
    left: 0;
  }

  .slick-slider--full .next-arrow {
    right: 0;
  }

  .slick-track {
    margin: 2.67vw 0;
  }
}

/* =======================================
  list-sort
======================================= */
.list-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list-sort__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: right;
}

.list-sort__form {
  margin-top: 5px;
}

.list-sort__select {
  border-radius: 5px;
  border: 1px solid var(--color-black01);
  padding: 8px 30px 8px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.26;

  background-image: url("../img/wedge_down_black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
  background-size: 10px auto;
}

/* sp list-sort */
@media screen and (max-width:560px) {
  .list-sort__title {
    font-size: 3.21vw;
  }

  .list-sort__form {
    margin-top: 0.89vw;
  }

  .list-sort__select {
    border-radius: 0.89vw;
    border-width: 0.17vw;
    padding: 1.42vw 5.35vw 1.42vw 1.78vw;
    font-size: 3.21vw;
    background-position: calc(100% - 1.78vw);
    background-size: 1.78vw auto;
  }
}

/* =======================================
  page count pager wrap
======================================= */
.page-count-pager-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* sp list-sort */
@media screen and (max-width:560px) {
  .page-count-pager-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* =======================================
  page count
======================================= */
.page-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-count__total {
  padding-left: 5px;
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 26px;
  /* line-height: 1; */
  color: var(--color-black05);
}

.page-count__unit {
  padding-left: 5px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-black05);
}

.page-count__text {
  font-size: 14px;
  line-height: 1;
  color: var(--color-black05);
}

/* sp page count */
@media screen and (max-width:560px) {
  .page-count__total {
    padding-left: 0.89vw;
    font-size: 5.35vw;
  }

  .page-count__unit {
    padding-left: 0.89vw;
    font-size: 3.21vw;
  }

  .page-count__text {
    font-size: 3.21vw;
  }
}

/* =======================================
  pager
======================================= */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.pager--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pager-list {
  margin-top: -17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager-item {
  margin-top: 17px;
}

.pager-prev__link {
  margin-right: 20px;
  border-right: 1px solid var(--color-gray06);
  padding-right: 30px;
  background-color: var(--color-white01);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager-next__link {
  margin-left: 20px;
  border-left: 1px solid var(--color-gray06);
  padding-left: 30px;
  background-color: var(--color-white01);

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager-item__link {
  background-color: var(--color-white01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager-item__link--current {}

.pager-item__text {
  padding: 0 10px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.pager-item__link--current .pager-item__text {
  color: var(--color-pink01);
}

.pager-item__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pager-item__text-points {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

/* sp pager */
@media screen and (max-width:560px) {
  *+.pager {
    margin-top: 3.03vw;
    width: 100%;
  }

  .pager-list {
    margin-top: -3.03vw;
  }

  .pager-item {
    margin-top: 3.03vw;
  }

  .pager-prev__link {
    margin-right: 1.57vw;
    border-width: 0.17vw;
    padding-right: 1.57vw;
  }

  .pager-next__link {
    margin-left: 1.57vw;
    border-width: 0.17vw;
    padding-left: 1.57vw;
  }

  .pager-item__text {
    padding: 0 1.78vw;
    font-size: 3.21vw;
  }

  .pager-item__text-points {
    font-size: 3.21vw;
  }
}

/* =======================================
  sticky
======================================= */
._stickyUnitlBlock {}

.is-sticky._stickyUnitlBlock {
  position: fixed;
  min-width: 1280px;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(248, 248, 248, 0.2);
}

/* sp pager */
@media screen and (max-width:560px) {
  .is-sticky._stickyUnitlBlock {
    min-width: auto;
    min-width: initial;
  }
}

/* =======================================
  sns-list
======================================= */
.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sns-list__item {}

.sns-list__item:nth-child(n+2) {
  margin-left: 10px;
}

.sns-list__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sns-list__icon {
  object-fit: cover;
}

.sns-list__icon--instagram {
  width: 26px;
}

.sns-list__icon--x {
  width: 22px;
}

.sns-list__icon--line {
  width: 27px;
}

.sns-list__icon--tiktok {
  width: 34px;
}

/* sp sns-list */
@media screen and (max-width:560px) {
  .sns-list__item:nth-child(n+2) {
    margin-left: 3.57vw;
  }

  .sns-list__link {
    width: 15.35vw;
    height: 15.35vw;
  }

  .sns-list__icon--instagram {
    width: 7.85vw;
  }

  .sns-list__icon--x {
    width: 6.6vw;
  }

  .sns-list__icon--line {
    width: 8.03vw;
  }

  .sns-list__icon--tiktok {
    width: 8.03vw;
  }

  .sns-list__link--sp-small {
    width: 12.35vw;
    height: 12.35vw;
  }
  
  .sns-list__link--sp-small .sns-list__icon--instagram {
    width: 6.85vw;
  }
  
  .sns-list__link--sp-small .sns-list__icon--x {
    width: 5.6vw;
  }
  
  .sns-list__link--sp-small .sns-list__icon--line {
    width: 7.03vw;
  }
}