@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;
}

.font-YuMincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* =======================================
  root color 
======================================= */
:root {
  --color-white01: #ffffff;
  --color-black01: #000000;
  --color-black02: #2E2E2E;
  --color-black03: #010711;
  --color-gray01: #707070;
  --color-gray02: #B5B5B5;
  --color-gray03: #BBBBBB;
  --color-gray04: #ECECEC;
  --color-gray05: #E2E2E2;
  --color-navy01: #133E7C;
  --color-navy02: #0E3C61;
  --color-navy03: #072254;
  --color-blue01: #1860AC;
  --color-blue02: #F8FEFF;
  --color-blue03: #003564;
  --color-blue04: #9FC1FF;

  --color-red01: #D60000;
  --color-red02: #A70303;
  --color-orange01: #F9652D;
}

/* =======================================
 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);
}

/* 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;
  }
}

.bold {
  font-weight: 700;
}

/* text link */
.text-link {
  color: var(--color-navy01);
  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-red01 {
  color: var(--color-red01);
}

/* background color */


/* 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;
}

.spMenuOpen .mask-global,
.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: 100%;
}

/* sp logo */
@media screen and (max-width:560px) {}

/* =======================================
  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-normal {
  min-width: 340px;
  padding: 20px 30px;
}

.button--width-shot {
  min-width: 180px;
  padding: 15px 30px;
}

.button--square {
  min-width: 430px;
  border-radius: 5px;
  padding: 30px;
}

.button--arrow-right {
  position: relative;
  border: 1px solid var(--color-navy03);
}

.button--arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 7.5px;
  margin-top: -3.75px;
  background-image: url("../images/arrow_right_navy.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.button--circle_right_white_navy {
  background-image: url("../images/circle_right_white_navy.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px);
  background-size: 20px auto;
}

.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: var(--color-orange01);
  background: linear-gradient(180deg, rgba(249, 101, 45, 1) 0%, rgba(255, 71, 0, 1) 100%);
}

.button--color-gra01 {
  border: none;
  background: var(--color-orange01);
  background: linear-gradient(180deg, rgba(241, 107, 80, 1) 0%, rgba(238, 91, 60, 1) 100%);
}

.button--color-navy01 {
  border-color: var(--color-navy01);
  background-color: var(--color-navy01);
}

.button__text {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white01);
}

.button__text--small {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.button__text--middle {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.button__text--color-black01 {
  color: var(--color-black01);
}

.button__text--color-red01 {
  color: var(--color-red01);
}

.button__text--color-navy03 {
  color: var(--color-navy03);
}

.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;
}

.button--circle_right_white_navy .button__text {
  padding-right: 40px;
}

.button__link {
  margin-top: 30px;
  cursor: pointer;
}

.button__link-text {
  font-size: 23px;
  font-weight: 500;
}

/* sp button */
@media screen and (max-width:560px) {
  .button {
    border-radius: 17.85vw;
    border-width: 0.35vw;
  }

  .button--width-normal {
    min-width: 60.71vw;
    padding: 5.35vw;
  }

  .button--width-shot {
    min-width: 32.14vw;
    padding: 2.67vw 5.35vw;
  }

  .button--square {
    min-width: 78.57vw;
    border-radius: 0.89vw;
    padding: 5.35vw;
  }

  .button--arrow-right {
    border-width: 0.17vw;
  }

  .button--arrow-right::after {
    right: -3.57vw;
    width: 7.14vw;
    height: 1.33vw;
    margin-top: -0.66vw;
  }

  .button--circle_right_white_navy {
    background-position: calc(100% - 5.35vw);
    background-size: 3.57vw auto;
  }

  .button__text {
    font-size: 4.46vw;
  }

  .button__text--small {
    font-size: 2.85vw;
  }

  .button__text--middle {
    font-size: 3.21vw;
  }

  .button__text--arrow {
    padding: 0 9.82vw;
    background-size: 1.78vw auto;
  }

  .button__text--icon-email-arrow {
    padding: 0 9.82vw;
    background-size: 4.46vw auto, 1.78vw auto;
  }

  .button--circle_right_white_navy .button__text {
    padding-right: 3.57vw;
  }
}

/* =======================================
  innner
======================================= */
.inner00 {
  position: relative;
  margin: 0 auto;
  width: 1280px;
}

.inner01 {
  position: relative;
  margin: 0 auto;
  width: 1080px;
}

.inner02 {
  position: relative;
  margin: 0 auto;
  width: 810px;
}

/* sp innner */
@media screen and (max-width:560px) {
  .inner00 {
    width: 100%;
  }

  .inner01 {
    width: 89.28vw;
  }

  .inner02 {
    width: 82.14vw;
  }
}

/* =======================================
  main wrap
======================================= */
.main {
  margin-top: 80px;
}

/* sp main wrap */
@media screen and (max-width:560px) {
  .main {
    margin-top: 17.85vw;
  }
}

/* =======================================
  contents part
======================================= */
.contents-part {
  padding: 120px 0;
}

.contents-part__header {}

/* contents-part title */
.contents-part__title {
  position: relative;

  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--left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.contents-part__title--border-en::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 940px;
  height: 2px;
  margin-top: -1px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.contents-part__title--border-en-color-blue04::before {
  background-color: var(--color-blue04);
}

.contents-part__title--border-en-color-navy03::before {
  background-color: var(--color-navy03);
}

.contents-part__title-text {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.45;
}


.contents-part__title-text--center {
  display: inline-block;
  width: auto;
}

.contents-part__title-text--small {
  font-size: 28px;
  line-height: 1.42;
}

.contents-part__title-text--border {
  position: relative;
  width: auto;
  padding: 0 130px;
}

.contents-part__title-text--border::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: var(--color-gray01);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.contents-part__title-text--border::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 80px;
  height: 1px;
  background-color: var(--color-gray01);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.contents-part__title-text--en {
  display: block;
  position: relative;
  padding-right: 10px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-white01);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.contents-part__sub-title {
  display: block;
  margin-top: 8px;
  color: var(--color-gray03);
}

.contents-part__title-sub-text {
  font-size: 18px;
  text-align: center;
}

*+.contents-part__title-sub-text {
  margin-top: 8px;
  width: 100%;
}

/* contents-part text */
.contents-part__text {
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
}

.contents-part__text--left {
  text-align: left;
}

*+.contents-part__text {
  margin-top: 25px;
}

/* contents-part body */
*+.contents-part__body {
  margin-top: 80px;
}

*+.contents-part__body--small-top-margin {
  margin-top: 50px;
}

*+.contents-part__body--large-top-margen {
  margin-top: 200px;
}

/* sp contents part */
@media screen and (max-width:560px) {
  .contents-part {
    padding: 21.42vw 0;
  }

  .contents-part--sp-no-bottom-padding {
    padding-bottom: 0;
  }

  /* contents-part title */
  .contents-part__title--border-en::before {
    width: 64.28vw;
    height: 0.35vw;
    margin-top: -0.17vw;
    box-shadow: 0vw 0.53vw 1.07vw rgba(0, 0, 0, 0.16);
  }

  .contents-part__title-text {
    font-size: 8.03vw;
    line-height: 1.2;
  }

  .contents-part__title-text--small {
    font-size: 5vw;
  }

  .contents-part__title-text--border {
    padding: 0 26.78vw;
  }

  .contents-part__title-text--border::before {
    width: 130x;
    height: 0.17vw;
    box-shadow: 0vw 0.53vw 1.07vw rgba(0, 0, 0, 0.16);
  }

  .contents-part__title-text--border::after {
    width: 130x;
    height: 0.17vw;
    box-shadow: 0vw 0.53vw 1.07vw rgba(0, 0, 0, 0.16);
  }

  .contents-part__title-text--en {
    padding-right: 1.78vw;
    font-size: 6.25vw;
    text-shadow: 0 0.53vw 1.07vw rgba(0, 0, 0, 0.16);
  }

  .contents-part__sub-title {
    margin-top: 1.42vw;
  }

  .contents-part__title-sub-text {
    font-size: 2.85vw;
  }

  *+.contents-part__title-sub-text {
    margin-top: 1.42vw;
  }

  /* contents-part body */
  *+.contents-part__body {
    margin-top: 17.85vw;
  }

  *+.contents-part__body--small-top-margin {
    margin-top: 7.14vw;
  }

  *+.contents-part__body--large-top-margen {
    margin-top: 17.85vw;
  }

}

/* =======================================
  cv contact
======================================= */
.contact-parts {
  padding: 100px 0;
  background-image: url("../images/bg_contact_01.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  text-align: center;
}

.contact-parts__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.44;
}

.contact-parts__text01 {
  margin-top: 60px;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.2em;
}

.contact-parts__text02 {
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.contact-parts__tel-list {
  margin-top: 20px;
}

.contact-parts__fotter {
  margin-top: 60px;
}

.contact-parts__btn-text {
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.2em;
}

.contact-parts__btn {
  margin-top: 15px;
}

/* sp cv contact */
@media screen and (max-width:560px) {
  .contact-parts {
    padding: 17.85vw 0;
  }

  .contact-parts__title {
    font-size: 7.32vw;
    line-height: 1.46;
  }

  .contact-parts__text01 {
    margin-top: 10.71vw;
    font-size: 3.21vw;
  }

  .contact-parts__text02 {
    margin-top: 2.85vw;
  }

  .contact-parts__tel-list {
    margin-top: 3.57vw;
  }

  .contact-parts__fotter {
    margin-top: 10.71vw;
  }

  .contact-parts__btn-text {
    font-size: 3.21vw;
  }

  .contact-parts__btn {
    margin-top: 2.67vw;
  }
}

/* tel-list */
.tel-list {
  width: 100%;
  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;
}

.tel-list__item {
  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;
}

.tel-list__item:nth-child(n+2) {
  margin-left: 50px;
}

.tel-list__icon {
  border-radius: 100px;
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.1em;

  text-align: center;
  color: var(--color-white01);
  background-color: var(--color-navy01);
}

.tel-list__tel-number {
  padding-left: 10px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

/* sp tel-list */
@media screen and (max-width:560px) {
  .tel-list__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tel-list__item:nth-child(n+2) {
    margin-top: 1.78vw;
    margin-left: 0;
  }

  .tel-list__icon {
    border-radius: 17.85vw;
    padding: 0.71vw 2.67vw;
    font-size: 2.5vw;
  }

  .tel-list__tel-number {
    padding-left: 3.57vw;
    font-size: 6.25vw;
  }
}

/* =======================================
  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: 1080px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0;
  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: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  z-index: 1;
}

.header-global__left {
  width: 200px;
}

.header-global__logo {
  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__right {
  width: calc(100% - 200px);
}

.header-global__right-warp {
  height: 100%;
  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;
}

.header-global__navi01 {
  margin-right: 35px;
  max-width: calc(100% - 175px);
}

.header-global__navi02 {
  width: 175px;
}

/* 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%;
    min-height: 17.85vw;
    padding: 0 0 0 5.35vw;
  }

  .header-global__left {
    width: 32.14vw;
  }

  .header-global__logo {}

  .header-global__right {
    width: calc(100% - 32.14vw);
  }

  .header-global__navi01 {
    width: auto;
    width: initial;
    display: none;
  }

  .header-global__navi02 {
    width: 37.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; */
    -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;
  }
}

/* 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: block;
    width: 89.28vw;
    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: 60.71vw;
  }

  .header-global-navi-sp__navi01 {
    height: 100%;
    max-height: calc(100% - 17.85vw);
    padding: 6.25vw 0;
    overflow-y: scroll;
  }
}

/* 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 {
  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:nth-child(n+2) {
  margin-left: 30px;
}

.header-global-navi01__link {
  display: block;
  padding: 28px 0;
}

.header-global-navi01__link--hoverBtn {
  padding-right: 25px;
  background-image: url("../images/wedge_down_blue.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px auto;
  cursor: pointer;
}

.header-global-navi01__text {
  font-size: 16px;
  line-height: 1.5;
}

.header-global-navi01__sub-navi {
  position: relative;
  display: none;
}

/* sp navi01 */
@media screen and (max-width:560px) {
  .header-global-navi01 {
    display: none;
  }

  /* header-global-navi01-sp */
  .header-global-navi01-sp {
    padding: 7.14vw 0;
    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%;
    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;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-global-navi01-sp__item:nth-child(n+2) {
    margin-top: 10.71vw;
  }

  .header-global-navi01-sp__link {
    display: inline-block;
    width: 100%;

    background-image: url("../images/wedge_right_black.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.78vw auto;
  }

  .header-global-navi01-sp__link--burger {
    background-image: none;
  }


  .header-global-navi01-sp__link--burger>.header-global-navi01-sp__text {
    background-image: url("../images/icon_plus_black.svg");
    background-repeat: no-repeat;
    background-position: right 2.67vw;
    background-size: 3.57vw auto;
  }

  .header-global-navi01-sp__link--burger>.openList.header-global-navi01-sp__text {
    background-image: url("../images/icon_minus_black.svg");
    background-position: right 4.46vw;
  }

  .header-global-navi01-sp__text {
    padding-right: 3.57vw;
    font-size: 5.89vw;
    font-weight: 500;
    line-height: 1.45;
  }
}

/* sub-navi */
.sub-navi {
  width: 245px;
  position: absolute;
  top: 18px;
  left: 0;
  padding: 40px;
  background-color: var(--color-white01);
}

.sub-navi__item:nth-child(n+2) {
  margin-top: 30px;
}

.sub-navi__link {
  position: relative;
  padding-left: 30px;
}

.sub-navi__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: var(--color-blue01);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.sub-navi__text {
  padding-right: 15px;

  background-image: url("../images/icon_windows_black.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px auto;
}

/* sp sub-navi */
@media screen and (max-width:560px) {
  .sub-navi {
    margin-top: 10.71vw;
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    background-color: var(--color-white01);
  }

  .sub-navi__item:nth-child(n+2) {
    margin-top: 10.71vw;
  }

  .sub-navi__link {
    display: block;
    position: relative;
    padding-left: 5.35vw;
  }

  .sub-navi__link::before {
    width: 3.57vw;
    height: 0.17vw;
    box-shadow: 0vw 0.53vw 1.07vw rgba(0, 0, 0, 0.16);
  }

  .sub-navi__text {
    display: block;
    padding-right: 3.57vw;
    font-size: 5.89vw;
    font-weight: 500;
    line-height: 1.45;

    background-size: 3.57vw auto;
  }
}


/* 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: 175px;
}

.header-global-navi02__item--sp {
  display: none;
}

.header-global-navi02__link {
  display: block;
  border-radius: 100px;
  border: 2px solid var(--color-white01);
  padding: 11px 20px;
  text-align: center;
  background-color: var(--color-white01);
}

.header-global-navi02__link--orange01 {
  border-color: var(--color-orange01);
  background-color: var(--color-orange01);
}

.header-global-navi02__text {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.header-global-navi02__text--white {
  color: var(--color-white01);
}

/* .header-global-navi02__link--orange01:hover {
  background-color: var(--color-white01);
  opacity: 1 !important;
}

.header-global-navi02__link--orange01:hover .header-global-navi02__text--white {
  color: var(--color-orange01);
  opacity: 1 !important;
} */

/* 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: 17.85vw;

    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;
  }

  .header-global-navi02__item:nth-child(n+2) {
    min-width: 19.64vw;
  }

  .header-global-navi02__item--pc {
    display: none;
  }

  .header-global-navi02__item--sp {
    display: inherit;
    min-width: auto;
    min-width: inherit;
  }

  .header-global-navi02__item:nth-child(1) .header-global-navi02__link {
    border-radius: 0;
    border: none;
    padding: 9.82vw 1.78vw 3.57vw;

    background-image: url("../images/icon_email_white.svg");
    background-repeat: no-repeat;
    background-position: center 3.57vw;
    background-size: 5.71vw auto;
  }


  .header-global-navi02__text {
    font-size: 2.5vw;
    letter-spacing: 0.1em;
  }

  .header-global-navi02__button {
    width: 8.92vw;
    height: 6.42vw;
    background-image: url("../images/btn_menu_open.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
  }

  .spMenuOpen .header-global-navi02__button,
  .header-global-navi02__button--open {
    width: 6.25vw;
    height: 6.25vw;
    background-image: url("../images/btn_menu_close.svg");
  }
}

/* =======================================
  footer global
======================================= */
.footer-global {
  background-color: var(--color-navy01);
}

.footer-global__inner {
  width: 1280px;
  margin: 0 auto;
  padding: 20px 0 20px 100px;
}

.footer-global__navi {}

.footer-global__copy {
  margin-top: 50px;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-white01);
}

/* sp footer global */
@media screen and (max-width:560px) {
  .footer-global__inner {
    width: 89.28vw;
    padding: 3.57vw 0 8.92vw;
  }

  .footer-global__navi:nth-child(n+2) {
    margin-top: 5.35vw;
  }

  .footer-global__copy {
    margin-top: 8.92vw;
    font-size: 2.67vw;
  }
}

/* footer global navi01 */
.footer-global-navi01 {
  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;
}

.footer-global-navi01__item {
  margin-top: 30px;
  padding: 0 20px;
}

.footer-global-navi01__item:nth-child(n+2) {
  border-left: 2px solid var(--color-white01);
}

.footer-global-navi01__text {
  color: var(--color-white01);
}

/* sp footer global navi01 */
@media screen and (max-width:560px) {
  .footer-global-navi01__item {
    margin-top: 5.35vw;
    padding: 0 3.57vw;
  }

  .footer-global-navi01__item:nth-child(n+2) {
    border-width: 0.35vw;
  }
}

/* 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;
  }
}

/* =======================================
			frame-box
======================================= */
.frame-box {
  border-radius: 50px;
  padding: 40px;
  background-color: var(--color-white01);
}

.frame-box:nth-child(n+2) {
  margin-top: 30px;
}

/* sp frame-box */
@media screen and (max-width:560px) {
  .frame-box {
    border-radius: 8.92vw;
    padding: 7.14vw;
  }

  .frame-box:nth-child(n+2) {
    margin-top: 5.35vw;
  }
}