@charset "UTF-8";

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

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

/* =======================================
  root color 
======================================= */
:root {
  --color-white01: #ffffff;
  --color-black01: #000000;
  --color-black02: #1C1818;
  --color-black03: #414349;

  --color-gray01: #C5C5C5;
  --color-gray02: #EBEBEB;
  --color-gray03: #ECECEC;
  --color-gray04: #E4E4E4;

  --color-orange01: #E85400;
  --color-orange02: #F57B36;
  --color-orange03: rgba(232, 84, 0, 0.1);
  --color-orange04: #FFDBA1;
  --color-orange05: #FF5C00;
  --color-orange06: #FFC9AA;
  --color-orange07: #EA884F;

  --color-yellow01: #FFFBE5;
  --color-yellow02: #FFF4E2;

  --color-blue01: #004697;
  --color-red01: #FF0000;
  --color-red02: #CF0000;
}

/* =======================================
 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-black02);
  scrollbar-gutter: stable;
}

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

  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;
}

.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;
  }

  .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);
}

.text-marker {
  position: relative;
  display: inline-block;
}

.text-marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background-color: var(--color-yellow01);
}

.text-shadow {
  text-shadow: 2px 2px 2px var(--color-white01), -2px -2px 2px var(--color-white01), -2px 2px 2px var(--color-white01), 2px -2px 2px var(--color-white01), 2px 0px 2px var(--color-white01), -2px -0px 2px var(--color-white01), 0px 2px 2px var(--color-white01), 0px -2px 2px var(--color-white01);
}

.text-cancel {
  text-decoration: line-through;
}

/* 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;
  }

  .text-marker::after {
    height: 1.42vw;
    border-radius: 0.89vw;
  }

  .text-sp-padding-top {
    padding-top: 0.5em;
  }

  .text-shadow {
    text-shadow: 0.35vw 0.35vw 0.35vw var(--color-white01), -0.35vw -0.35vw 0.35vw var(--color-white01), -0.35vw 0.35vw 0.35vw var(--color-white01), 0.35vw -0.35vw 0.35vw var(--color-white01), 0.35vw 0vw 0.35vw var(--color-white01), -0.35vw -0vw 0.35vw var(--color-white01), 0vw 0.35vw 0.35vw var(--color-white01), 0vw -0.35vw 0.35vw var(--color-white01);
  }
}

.bold {
  font-weight: 700;
}

/* text link */
.text-link {
  color: var(--color-orange01);
  text-decoration: underline;
}

/* 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;
}

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

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

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

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

/* background color */
.bg-gra-orange {
  background-image: linear-gradient(180deg, rgba(255, 34, 87, 1), rgba(154, 39, 238, 1) 0%, rgba(247, 166, 12, 1) 0%, rgba(245, 123, 54, 1) 0%, rgba(232, 84, 0, 1));
}


/* 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%;
}

/* 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: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

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

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

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

/* 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;
}

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

.logo__link {
  display: block;
  width: 144px;
}

.logo__img {
  width: 100%;
}

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

  .logo__link {
    width: 25.71vw;
  }
}

/* =======================================
  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--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: 100px;
  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--width-mini {
  min-width: 250px;
  padding: 20px 30px;
}

.button--width-normal {
  min-width: 300px;
  padding: 20px 30px;
}

.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-orange01 {
  border-color: var(--color-orange01);
  background-color: var(--color-orange01);
}

.button--color-grad-orange01 {
  border: none;
  background-image: linear-gradient(180deg, rgba(255, 34, 87, 1), rgba(154, 39, 238, 1) 0%, rgba(247, 166, 12, 1) 0%, rgba(245, 123, 54, 1) 0%, rgba(232, 84, 0, 1));
}

.button__text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white01);
}

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

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

.button--color-orange01:hover {
  background-color: var(--color-white01);
  opacity: 1 !important;
}

.button--color-orange01:hover .button__text {
  color: var(--color-orange01);
  opacity: 1 !important;
}

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

  .button--width-mini {
    min-width: 44.64vw;
    padding: 2.67vw 5.35vw;
  }

  .button--width-normal {
    min-width: 44.64vw;
    padding: 2.67vw 5.35vw;
  }

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

  .button__text {
    font-size: 3.92vw;
  }
}

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

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

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

  .inner02 {
    width: 94.64vw;
  }
}

/* =======================================
  main wrap
======================================= */
.main {}

/* frame column wrap */
.main__frame-column-wrap {
  padding: 60px 0 100px;
}

/* sp main wrap */
@media screen and (max-width:560px) {
  /* frame column wrap */
  .main__frame-column-wrap {
    padding: 8.92vw 0 12.5vw;
  }
}

/* =======================================
  contents part
======================================= */
.contents-part {
  padding: 100px 0;
}

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

.contents-part__header {}

*+.contents-part__header-desc {
  margin: 50px auto 0;
  width: 720px;
}

/* 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--border {
  padding-bottom: 25px;
}

.contents-part__title--border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -55px;
  width: 110px;
  height: 0px;
  border-radius: 4px;
  border-bottom: 4px solid var(--color-orange01);
}

.contents-part__title-jp {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 29px;
  line-height: 1.45;
  text-align: center;
}

.contents-part__title-line_double {
  position: relative;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.45;
  text-align: center;
}

.contents-part__title-line_double::before {
  content: "";
  position: absolute;
  left: -70px;
  width: 39px;
  height: 27px;
  background-image: url("../images/line_double_left_orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contents-part__title-line_double::after {
  content: "";
  position: absolute;
  right: -70px;
  width: 39px;
  height: 27px;
  background-image: url("../images/line_double_right_orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* contents-part text */
.contents-part__text {
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

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

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

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

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

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

  .contents-part--sp-padding-top-large {
    padding-top: 21.42vw;
  }

  *+.contents-part__header-desc {
    margin: 8.92vw auto 0;
    width: 100%;
  }

  .contents-part__title--border {
    padding-bottom: 3.57vw;
  }

  .contents-part__title--border::after {
    margin-left: -9.82vw;
    width: 19.64vw;
    height: 0.71vw;
    border-width: 0.71vw;
  }

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

  .contents-part__title-line_double {
    font-size: 4.46vw;
  }

  .contents-part__title-line_double::before {
    left: -12.5vw;
    width: 6.96vw;
    height: 4.82vw;
  }

  .contents-part__title-line_double::after {
    right: -12.5vw;
    width: 6.96vw;
    height: 4.82vw;
  }

  .contents-part__text {
    font-size: 3.21vw;
  }

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

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

/* =======================================
  cv contact
======================================= */
.contact-parts {
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.webp .contact-parts {
  background-image: url("../images/bg_contact_01-pc.webp");
}

.no-webp .contact-parts {
  background-image: url("../images/bg_contact_01-pc.png");
}


.contact-parts__title {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-parts__text01 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-parts__fotter {
  margin-top: 50px;
}

.contact-parts__btn {}

/* sp cv contact */
@media screen and (max-width:560px) {
  .contact-parts {
    padding: 17.85vw 0;
  }

  .webp .contact-parts {
    background-image: url("../images/bg_contact_01-sp.webp");
  }

  .no-webp .contact-parts {
    background-image: url("../images/bg_contact_01-sp.png");
  }

  .contact-parts__title {
    font-size: 7.14vw;
  }

  .contact-parts__text01 {
    margin-top: 14.28vw;
    font-size: 5.89vw;
  }

  .contact-parts__text02 {
    margin-top: 5.35vw;
    font-size: 4.46vw;
  }

  .contact-parts__fotter {
    margin-top: 14.28vw;
  }

  .contact-parts__btn-text {
    font-size: 3.92vw;
  }

  .contact-parts__btn {
    margin-top: 2.67vw;
  }
}

/* =======================================
  header global
======================================= */
.header-global {
  width: 100%;
}

/* .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;
  margin: 0 auto;
  width: 1080px;
  min-height: 110px;
  padding: 30px 0;

  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: 144px;
}

.header-global__logo {}


/* 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: 89.28vw;
    min-height: 19.64vw;
    padding: 5.35vw 0;
  }

  .header-global__left {
    width: 25.71vw;
  }
}

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

.footer-global__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 30px 0;

  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;
}

.footer-global__left {
  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;
}

.footer-global__logo {
  width: 148px;
  height: 50px;
}

.footer-global__navi {
  margin-left: 70px;
}

.footer-global__right {}

.footer-global__copy {}

.footer-global__copy-text {
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-white01);
}

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

/* footer-global-navi */
.footer-global-navi {
  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;
}

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

.footer-global-navi__link {
  display: block;
  text-decoration: none;
}

.footer-global-navi__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white01);
}

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

  .footer-global__inner {
    width: 89.28vw;
    padding: 5.35vw 0;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-global__left {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-global__logo {
    width: 31.42vw;
    height: 10.71vw;
  }

  .footer-global__navi {
    width: 100%;
    margin-left: 0;
    margin-top: 5.35vw;
  }

  .footer-global__right {
    margin-top: 17.85vw;
  }

  .footer-global__copy {}

  .footer-global__copy-text {
    font-size: max(1.96vw, 11px);
    line-height: 1.7;
    color: var(--color-white01);
  }

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

  /* footer-global-navi */
  .footer-global-navi {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-global-navi__item:nth-child(n+2) {
    margin-left: 5.35vw;
  }

  .footer-global-navi__text {
    font-size: 2.85vw;
    line-height: 1.4;
  }

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

  .button-anchor-top__button {
    bottom: 3%;
    position: fixed;
    right: 5%;
    display: none;
    z-index: 10;
    width: 8.92vw;
    height: 8.92vw;
  }
}

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

.button-anchor-top__button {
  bottom: 3%;
  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: 1000px;
}

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

.slide-arrow {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 6;
  background-color: var(--color-white01);
  /* 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: -4.46vw;
    width: 8.92vw;
    height: 8.92vw;
  }

  .prev-arrow {
    left: -1.79vw;
  }

  .next-arrow {
    right: -1.79vw;
  }

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

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

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


/* =======================================
			frame box
======================================= */
.frame-box {

}
.frame-box__inner {

}
.frame-box__wrap {
  padding: 50px 40px;
  background-color: var(--color-white01);
}
.frame-box__wrap--border-orange {
  border-radius: 10px;
  border: 2px solid var(--color-orange01);
}
.frame-box__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.frame-box__title-middle {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.frame-box__title + * {
  margin-top: 30px;
}
.frame-box__title-middle + * {
  margin-top: 30px;
}
.frame-box__desc {
  
}
.frame-box__text {
  line-height: 1.4;
}
.frame-box__text--align-center {
  text-align: center;
}
.frame-box__text--margin-bottom {
  margin-bottom: 30px;
}
.frame-box__text-box {
  margin: 10px auto 30px;
  width: 350px;
}
.frame-box__button {
  margin-top: 60px;
	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;
}
.frame-box__button .button:nth-child(n+2) {
  margin-left: 30px;
}
.frame-box__link {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.31;
}

/* sp frame box */
@media screen and (max-width:560px) {
  .frame-box__wrap {
    padding: 8.92vw 4.14vw;
  }
  .frame-box__wrap--border-orange {
    border-radius: 1.78vw;
    border: 0.34vw solid var(--color-orange01);
  }
  .frame-box__title {
    font-size: 4.28vw;
    line-height: 1.5;
  }
  .frame-box__title-middle {
    font-size: 3.57vw;
  }
  .frame-box__title + * {
    margin-top: 5.35vw;
  }
  .frame-box__title-middle + * {
    margin-top: 5.35vw;
  }
  .frame-box__desc {

  }
  .frame-box__text {
    line-height: 1.685;
  }
  .frame-box__text--margin-bottom {
    margin-bottom: 5.35vw;
  }
  .frame-box__text-box {
    margin: 1.78vw auto 5.35vw;
    width: 100%;
  }
  .frame-box__button {
    margin-top: 5.35vw;
  }
  .frame-box__button .button:nth-child(n+2) {
    margin-left: 5.35vw;
  }
  .frame-box__link {
    margin-top: 2.67vw;
    font-size: 2.5vw;
    line-height: 1.5;
  }
}