@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #4B4B36;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.inner--size-l {
  max-width: 1240px;
  margin: 0 auto;
  width: 86.11%;
}

/*
*{
  outline: 2px red solid;
}*/
.oneSide-margin {
  width: min(89.58vw, 1290px + (100vw - 1290px) / 2);
}
@media screen and (max-width: 1024px) {
  .oneSide-margin {
    width: 89.333vw;
    margin: 0 auto;
  }
}

.textCenter {
  text-align: center;
}

.enFont {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.enFont--bold {
  font-weight: 700;
}

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

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
  .inner {
    width: 89.333%;
  }
}
@media screen and (max-width: 768px) {
  .sp-inner-size-l {
    width: 89.33vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .tab-inner-size-l {
    width: 89.33vw;
    margin: 0 auto;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

/*=================================
  ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLoadTrigger,
.zoomOutLoadTrigger {
  opacity: 0;
}

/*==================================
  じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .l-left {
    margin-left: auto;
  }
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-right {
    margin-right: auto;
  }
}

/*--------------------------
ボタン
--------------------------*/
.bl-btn a {
  padding: 11.5px 0;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  border: 1px solid #4B4B36;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  color: #4B4B36;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .bl-btn a {
    padding: 17px 0;
  }
}
@media screen and (min-width: 1279.9px) {
  .bl-btn a:hover {
    background-color: #4B4B36;
    color: #FFFFFF;
    transition: all 0.5s;
  }
}

.bl-btn--size173 {
  width: 173px;
}
@media screen and (max-width: 768px) {
  .bl-btn--size173 {
    width: 89.33vw;
  }
}

.bl-btn--size192 {
  width: 192px;
}
@media screen and (max-width: 768px) {
  .bl-btn--size192 {
    width: 89.33vw;
  }
}

.bl-btn--size145 {
  width: 145px;
}
@media screen and (max-width: 768px) {
  .bl-btn--size145 {
    width: 89.33vw;
  }
}

.bl-btn--center {
  margin-left: auto;
  margin-right: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/*--------------------------
タイトル
--------------------------*/
.bl-largeTtl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bl-largeTtl--center {
  margin-left: auto;
  margin-right: auto;
}

.bl-largeTtl__ja {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__ja {
    font-size: 14px;
  }
}

.bl-largeTtl__ja--center {
  text-align: center;
}

.bl-largeTtl__en {
  margin-top: 17px;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  position: relative;
  line-height: 1;
  padding-bottom: 15px;
  color: #62ACFF;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__en {
    font-size: 40px;
    margin-top: 0;
    padding-bottom: 8px;
  }
}
.bl-largeTtl__en::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: #7BB9FF;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__en::after {
    width: 57px;
    height: 1;
  }
}

.bl-largeTtl__en--center {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.bl-largeTtl__en--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/*---------------------------
ページ共通
---------------------------*/
/*----- インタビュー共通 -----*/
.interviewNum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.interviewNum::after {
  content: "";
  position: absolute;
  width: calc(100% - 225px);
  height: 1px;
  background-color: #62ACFF;
  top: 50%;
  left: 175.5px;
  transform: translateY(-50%);
}

.interviewNum__txt {
  color: #62ACFF;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.interviewNum__num {
  color: #62ACFF;
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}

/*-------- 下層ページ FV ------*/
.underFv {
  padding-top: 290px;
  width: 100%;
  aspect-ratio: 1/0.478;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .underFv {
    padding-top: 220px;
  }
}
@media screen and (max-width: 768px) {
  .underFv {
    padding-top: 204px;
  }
}
.underFv img {
  width: 100%;
  height: 100%;
}

.underFv__pageTtl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(290px - 3.3%);
  left: 6.94vw;
}
@media screen and (max-width: 1280px) {
  .underFv__pageTtl {
    top: 290px;
  }
}
@media screen and (max-width: 1024px) {
  .underFv__pageTtl {
    top: 190px;
  }
}
@media screen and (max-width: 768px) {
  .underFv__pageTtl {
    top: 160px;
  }
}

.underFv__pageTtl__en {
  position: absolute;
  left: 0;
  z-index: -1;
}

.underFv__pageTtl__ja {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1280px) {
  .underFv__pageTtl__ja {
    font-size: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .underFv__pageTtl__ja {
    font-size: 25px;
  }
}

.underFv__img {
  width: 100%;
  height: auto;
}
.underFv__img img {
  height: auto;
}

.underFv__pageTxt {
  position: absolute;
  bottom: 5.8%;
  right: 6.94vw;
  font-size: 25px;
  line-height: 1.44;
  font-weight: 400;
  letter-spacing: 0.1em;
  display: none;
}
.underFv__pageTxt::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1.2px;
  background-color: #7BB9FF;
  left: -30.5px;
  top: 15px;
  transform: translateX(-100%);
}

/*------- サイドバー -------*/
.stickyContainer {
  position: relative;
  padding-left: 45px;
  padding-top: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1280px) {
  .stickyContainer {
    padding-left: 5.33vw;
  }
}
@media screen and (max-width: 1024px) {
  .stickyContainer {
    width: 89.33vw;
    margin: 60px auto 0;
    padding: 0;
  }
}

.stickyItem {
  position: -webkit-sticky;
  position: sticky;
  width: 340px;
  top: 190px;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .stickyItem {
    width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .stickyItem {
    display: none;
  }
}

.stickyContent {
  width: calc(100% - 340px);
}
@media screen and (max-width: 1280px) {
  .stickyContent {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 1024px) {
  .stickyContent {
    width: 100%;
  }
}

.sticky__inner {
  width: 90.9%;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sticky__inner {
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .sticky__inner--sp-sizeMax {
    width: 100%;
  }
  .sticky__inner--sp-noMargin {
    margin: 0 auto;
  }
}
.pageLink {
  width: 100%;
}
.pageLink .pageLink__item:not(:last-child) {
  margin-bottom: 20px;
}
.pageLink .pageLink__item a {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.1em;
  display: block;
  padding-left: 30px;
  position: relative;
  color: #A8A8A8;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .pageLink .pageLink__item a {
    font-size: 14px;
  }
}
.pageLink .pageLink__item a::before {
  width: 19px;
  height: 19px;
  content: "";
  position: absolute;
  border: 1px solid #62ACFF;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s;
}
.pageLink .pageLink__item a::after {
  width: 7.58px;
  height: 7.58px;
  background-color: #A8A8A8;
  content: "";
  position: absolute;
  top: 50%;
  left: 5.7px;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: all 0.5s;
}
@media screen and (min-width: 1279.9px) {
  .pageLink .pageLink__item a:hover {
    color: #62ACFF;
    transition: all 0.5s;
  }
}
.pageLink .pageLink__item.current a {
  color: #62ACFF;
  transition: all 0.5s;
}
.pageLink .pageLink__item.current a::before {
  opacity: 1;
  transition: all 0.5s;
}
.pageLink .pageLink__item.current a::after {
  background-color: #62ACFF;
  transition: all 0.5s;
}

/*-------- 無限ループ ------*/
@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item > img {
  width: 100%;
}

/*----- エントリー -----*/
.entry-onFooter {
  width: 100%;
  aspect-ratio: 1/0.458;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter {
    aspect-ratio: 1/0.85;
  }
}

.entry-onFooter__main {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__main {
    height: auto;
  }
}

.entry-onFooter__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__img {
    position: relative;
    height: auto;
  }
}
.entry-onFooter__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__img img {
    height: auto;
  }
}

.entry-onFooter__txt {
  position: absolute;
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #FFFFFF;
  top: 50%;
  left: 50%;
  line-height: 1.57;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__txt {
    font-size: 18px;
    width: 100%;
    line-height: 1.55;
    font-weight: 900;
  }
}

.entryTxt-img {
  width: 26.11%;
  height: auto;
  position: absolute;
  left: 10.41%;
  top: -8.9%;
}
@media screen and (max-width: 1024px) {
  .entryTxt-img {
    width: 56.11%;
    height: auto;
    position: absolute;
    left: 5.3vw;
    top: -60px;
    max-width: 300px;
  }
}

.entry-onFooter__btn {
  width: 26.6%;
  position: absolute;
  bottom: -25.1px;
  right: 10.4%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__btn {
    width: 78.66vw;
    position: relative;
    bottom: unset;
    right: unset;
    margin: -10% auto 0;
  }
}

.entry-onFooter__link {
  width: 100%;
  aspect-ratio: 1/0.57;
  position: relative;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(75, 75, 54, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__link {
    aspect-ratio: 1/0.39;
    border-radius: 10px;
  }
}
.entry-onFooter__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  top: 0;
  left: 0;
  border-radius: 30px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__link::before {
    border-radius: 10px;
  }
}
.entry-onFooter__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  background: linear-gradient(to left, #3494ff 0%, #92c6ff 60%, #b4daff 100%);
  z-index: 0;
  opacity: 0;
  transform-origin: top left;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__link::after {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1279.9px) {
  .entry-onFooter__link:hover::after {
    opacity: 1;
    transition: all 0.5s;
  }
  .entry-onFooter__link:hover .entry-onFooter__btnTxt__en {
    background: unset;
    color: #FFFFFF;
    transition: all 0.5s;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
  }
  .entry-onFooter__link:hover .entry-onFooter__btnTxt__ja {
    color: #FFFFFF;
    transition: all 0.5s;
  }
}

.entry-onFooter__btnTxt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.entry-onFooter__btnTxt__en {
  font-size: 60px;
  text-transform: uppercase;
  display: inline-block;
  background: linear-gradient(130deg, #3494FF, #92C6FF 50%, #B4DAFF);
  background: -webkit-linear-gradient(130deg, #3494FF, #92C6FF 50%, #B4DAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .entry-onFooter__btnTxt__en {
    font-size: 40px;
  }
}

.entry-onFooter__btnTxt__ja {
  margin-top: 24px;
  line-height: 1;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .entry-onFooter__btnTxt__ja {
    margin-top: 5px;
  }
}

/*------- ページトップへ戻るボタン -------*/
.pageTop-btn {
  position: fixed;
  bottom: 27px;
  right: 22px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.pageTop-btn.js-appear {
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
}
.pageTop-btn a {
  display: block;
  width: 43.37px;
  height: 43.68px;
  /*background-color: s.$white;*/
  transition: all 0.5s;
}
.pageTop-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/common/pageTop.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
  pointer-events: none;
  opacity: 1;
}
.pageTop-btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/common/pageTop-hover.svg);
  background-size: cover;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  transition: all 0.5s;
  pointer-events: none;
}
@media screen and (min-width: 1279.9px) {
  .pageTop-btn a:hover::before {
    opacity: 0;
    transition: all 0.5s;
  }
  .pageTop-btn a:hover::after {
    opacity: 1;
    transition: all 0.5s;
  }
}

/*-------- 下層ページ セクションサブタイトル ------*/
.section-underPage-subTtl {
  margin-top: 45.5px;
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.47;
  margin-bottom: 35px;
  font-weight: 600;
  color: #4B4B36;
}
@media screen and (max-width: 1280px) {
  .section-underPage-subTtl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section-underPage-subTtl {
    margin: 26px 0 19px;
    font-size: 23px;
    font-weight: 700;
  }
}

.under-sectionTxt {
  font-weight: 400;
  letter-spacing: 0;
}

.under-sectionTxt--bold {
  font-weight: 700;
}

.under-sectionTxt__block {
  font-weight: 400;
  margin-bottom: 10px;
}

/*------ テーブル -----*/
.narita-table {
  display: block;
}

tbody {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  .narita-table__tr {
    width: 100%;
    display: block;
  }
}

.narita-table__th {
  color: #62ACFF;
  border-bottom: 1px solid #62ACFF;
}
@media screen and (max-width: 1024px) {
  .narita-table__th {
    border-bottom: unset;
    display: block;
  }
}

.narita-table__td {
  border-bottom: 1px solid #A8A8A8;
}
@media screen and (max-width: 1024px) {
  .narita-table__td {
    display: block;
  }
}

/*----- スクロールバー -----*/
.scrollbar {
  width: 100%;
  position: relative;
}
.scrollbar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  position: relative;
  top: 0;
  left: 0;
}

.scrollbar-btn {
  height: 33px;
  border-radius: 50px;
  background-color: #62ACFF;
  position: relative;
  width: 68px;
  z-index: 99;
}
.scrollbar-btn::before {
  position: absolute;
  content: "";
  border-radius: unset;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transition: opacity 0.2s 0.5s linear;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
  background-color: unset;
  opacity: 1;
}
.scrollbar-btn::after {
  position: absolute;
  content: "";
  border-radius: unset;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: opacity 0.2s 0.5s linear;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
}

.slider__scrollbar {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__scrollbar::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #A8A8A8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.slider__btn {
  aspect-ratio: 2.06/1;
  background-color: #62ACFF;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}
.slider__btn::before {
  position: absolute;
  content: "";
  border-radius: unset;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transition: opacity 0.2s 0.5s linear;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(45deg);
  background-color: unset;
  opacity: 1;
}
.slider__btn::after {
  position: absolute;
  content: "";
  border-radius: unset;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: opacity 0.2s 0.5s linear;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
}

/*---------------------------
ヘッダー
---------------------------*/
.header {
  position: fixed;
  width: 96.73%;
  height: 78px;
  top: 27px;
  left: 50%;
  padding: 16px 23px 16px 19px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .header {
    width: 93.33%;
    height: 56px;
    padding: 11.5px 16.5px;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
  }
}

.header--topPage {
  /*animation-name: headerAnime;
  animation-delay: 4.5s;
  animation-duration: 1s;
  opacity: 0;
  animation-fill-mode: forwards;*/
}

/*
@keyframes headerAnime{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
*/
.header___side-l {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__list {
  margin-left: 31px;
  display: flex;
  align-content: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1280px) {
  .header__list {
    margin-left: 20px;
  }
}
.header__list .header__item:not(:last-child) {
  margin-right: 23px;
}
@media screen and (max-width: 1280px) {
  .header__list .header__item:not(:last-child) {
    margin-right: 10px;
  }
}
.header__list .header__item a {
  font-size: 12px;
  font-weight: 700;
  display: block;
  line-height: 1;
  position: relative;
  padding-bottom: 6px;
  padding-top: 4px;
}
@media screen and (max-width: 1280px) {
  .header__list .header__item a {
    font-size: 11px;
  }
}
.header__list .header__item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #4B4B36;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: top left;
  transition: all 0.5s;
}
@media screen and (min-width: 1279.9px) {
  .header__list .header__item a:hover::after {
    transition: all 0.5s;
    transform: scale(1, 1);
  }
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 47px;
  width: auto;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    height: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo {
    height: 33px;
    left: 4.74%;
    transform: translate(0, -50%);
  }
}
.header__logo img {
  width: auto;
  height: 100%;
}

.header__entry {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  padding: 11px 56px;
  border: 1px solid #4B4B36;
  color: #4B4B36;
  transition: all 0.5s;
  border-radius: 5px;
}
@media screen and (max-width: 1280px) {
  .header__entry {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header__entry {
    font-weight: 700;
    font-size: 14px;
    padding: 9px 19px;
    margin-right: 7px;
  }
}
@media screen and (min-width: 1279.9px) {
  .header__entry:hover {
    color: #FFFFFF;
    transition: all 0.5s;
    background-color: #4B4B36;
    font-weight: 700;
  }
}

/*----- ハンバーガーメニューボタン -----*/
.openbtn1 {
  position: relative;
  z-index: 9999;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 33px;
  height: 33px;
  background-color: #000000;
  border-radius: 5px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  position: absolute;
  left: 50%;
  height: 1px;
  background-color: #FFFFFF;
  width: 16.68px;
  transform: translateX(-50%);
}

.openbtn1 span:nth-of-type(1) {
  top: 9.8px;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 9.8px;
}

.openbtn1.active {
  opacity: 0;
  pointer-events: none;
}

/*----- ハンバーガーメニュー閉じるボタン -----*/
.burger-closeBtn {
  position: absolute;
  width: 96.73%;
  height: 78px;
  top: 27px;
  left: 50%;
  border: 1.3px solid #707070;
  border-radius: 10px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  cursor: pointer;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  z-index: 999;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .burger-closeBtn {
    height: 56px;
    width: 93.33%;
  }
}
.burger-closeBtn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: -2;
}
.burger-closeBtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #707070;
  z-index: -1;
  transform: scale(0, 1);
  transform-origin: top left;
  transition: all 0.5s;
}
@media screen and (min-width: 1279.9px) {
  .burger-closeBtn:hover::after {
    transform: scale(1, 1);
    transition: all 0.5s;
  }
  .burger-closeBtn:hover .burger-closeBtn__txt {
    color: #FFFFFF;
    transition: all 0.5s;
  }
  .burger-closeBtn:hover .burger-closeBtn__txt::before {
    background-color: #FFFFFF;
    transition: all 0.5s;
  }
  .burger-closeBtn:hover .burger-closeBtn__txt::after {
    background-color: #FFFFFF;
    transition: all 0.5s;
  }
}

.burger-closeBtn__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  font-size: 15px;
  padding-right: 45px;
  position: relative;
  letter-spacing: 0.1em;
  vertical-align: middle;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .burger-closeBtn__txt {
    margin: 12px auto;
  }
}
.burger-closeBtn__txt::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 25px;
  height: 1.3px;
  background-color: #707070;
  transition: all 0.5s;
}
.burger-closeBtn__txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 25px;
  height: 1.3px;
  background-color: #707070;
  transition: all 0.5s;
}
/*----- ハンバーガーメニュー -----*/
.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: -27px;
  left: 0;
  transform: translate(-100%, 0);
  width: 100vw;
  height: 100vh;
  background: rgba(247, 251, 255, 0.9);
  transition: all 0.3s;
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 998;
  left: 50%;
  transform: translate(-50%, 0);
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
  .burger-nav.panelactive .burger-nav__listWrap {
    position: absolute;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-overflow-scrolling: touch;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*ナビゲーション*/
.burger-nav .burger-nav__list {
  display: none;
  max-width: 1140px;
  margin: 30vh auto 0;
  width: 79.16%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .burger-nav .burger-nav__list {
    display: block;
    margin: 0 auto;
  }
}

/*リストのレイアウト設定*/
.burger-nav .burger-nav__item {
  width: 33%;
  margin-bottom: 58px;
}
@media screen and (max-width: 1024px) {
  .burger-nav .burger-nav__item {
    width: 100%;
    margin-bottom: 35px;
  }
}

.burger-nav .burger-nav__item a .burger-nav__en {
  font-size: 45px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
  color: #62ACFF;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .burger-nav .burger-nav__item a .burger-nav__en {
    font-size: 34px;
  }
}
@media screen and (max-width: 1024px) {
  .burger-nav .burger-nav__item a .burger-nav__en {
    font-size: 27px;
  }
}
.burger-nav .burger-nav__item a .burger-nav__en::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.5);
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  transform: scale(0, 1);
  transform-origin: top left;
}
.burger-nav .burger-nav__item a .burger-nav__ja {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .burger-nav .burger-nav__item a .burger-nav__ja {
    font-size: 15px;
    line-height: 1;
  }
}
@media screen and (max-width: 1024px) {
  .burger-nav .burger-nav__item a .burger-nav__ja {
    font-size: 12px;
  }
}
@media screen and (min-width: 1279.9px) {
  .burger-nav .burger-nav__item a:hover .burger-nav__en::after {
    transition: all 0.5s;
    transform: scale(1, 1);
  }
}

/*----- 無限ループロゴ ------*/
.scroll-infinity--inBurger {
  position: absolute;
  bottom: 156px;
  pointer-events: none;
}
.scroll-infinity--inBurger .scroll-infinity__item {
  width: 21vw;
  margin-right: 10vw;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .scroll-infinity--inBurger .scroll-infinity__item {
    width: 69vw;
  }
}
.scroll-infinity--inBurger .scroll-infinity__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
    object-fit: contain;
}

.burger__botomWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}
.burger__botomWrap::after {
  content: "";
  position: absolute;
  width: 89.33%;
  height: 1px;
  background-color: #707070;
  opacity: 0.32;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.burger__smallLink {
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .burger__smallLink {
    padding-top: 28px;
  }
}

.burger__smallItem {
  padding-right: 10.4vw;
}
.burger__smallItem:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .burger__smallItem:not(:last-child) {
    margin-bottom: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .burger__smallItem {
    padding-right: 0;
    padding-left: 9.33vw;
  }
}
.burger__smallItem a {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .burger__smallItem a {
    justify-content: flex-start;
    margin-left: 0;
    line-height: 1;
  }
}
.burger__smallItem a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #4B4B36;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: all 0.5s;
  transform-origin: top left;
}
@media screen and (min-width: 1279.9px) {
  .burger__smallItem a:hover::after {
    transform: scale(1, 1);
    transition: all 0.5s;
  }
}

.linkIcon {
  display: block;
  width: 10px;
  margin-left: 11.5px;
}

.burger__copyRight {
  font-size: 10px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  text-align: center;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .burger__copyRight {
    margin-top: 35px;
  }
}

.burger__facebookIcon {
  width: 27px;
  height: auto;
  position: absolute;
  bottom: 56px;
  right: 40px;
}

/*---------------------------
フッター
---------------------------*/
.footer {
  margin-top: 143px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}
.footer.footer--pageEntry {
  margin-top: 76px;
}

.footer__inner {
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    display: block;
    width: 89.33vw;
    margin: 0 auto;
  }
}

.footer__logo {
  width: 25%;
  max-width: 400px;
}
@media screen and (max-width: 1280px) {
  .footer__logo {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    max-width: 300px;
    width: 49%;
    margin-bottom: 25px;
  }
}
.footer__logo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.footer__side-r {
  width: 770px;
  margin-top: 19px;
}
@media screen and (max-width: 1024px) {
  .footer__side-r {
    width: 100%;
  }
}

.footer__companyInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #6E9EC7;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__companyInfo {
    width: 100%;
    display: block;
    padding-bottom: 0;
    margin: 0 auto 27px;
    position: relative;
  }
}

.footer__companyWrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .footer__companyWrap {
    display: block;
  }
}

.footer__companyName {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .footer__companyName {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer__companyName {
    font-size: 14px;
  }
}

.footer__companyAddress {
  margin-left: 45px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .footer__companyAddress {
    margin-left: 0;
    line-height: 1.75;
  }
}
@media screen and (max-width: 768px) {
  .footer__companyAddress {
    font-size: 12px;
  }
}

.footer__facebookLogo {
  display: block;
  width: 23px;
  margin-right: 25px;
  position: relative;
  transform: rotate(0);
  transition: all 0.5s;
  transform-origin: center center;
}
@media screen and (min-width: 1279.9px) {
  .footer__facebookLogo:hover {
    transform: rotate(25deg);
    transition: all 0.5s;
  }
}
@media screen and (max-width: 1024px) {
  .footer__facebookLogo {
    position: absolute;
    bottom: 15px;
    right: 5.33vw;
    margin-right: 0;
  }
}

.foooter__navList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .foooter__navList {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .foooter__navList .footer__navItem {
    width: 33%;
    margin-bottom: 20px;
  }
}
.foooter__navList .footer__navItem a {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding: 5px 8px;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .foooter__navList .footer__navItem a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .foooter__navList .footer__navItem a {
    padding: 0;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .foooter__navList .footer__navItem a {
    font-size: 12px;
  }
}
@media screen and (min-width: 1279.9px) {
  .foooter__navList .footer__navItem a:hover {
    background-color: #4B4B36;
    color: #FFFFFF;
    transition: all 0.5s;
  }
}
.foooter__navList .footer__navItem:not(:last-of-type) {
  margin-right: 35px;
}
@media screen and (max-width: 1024px) {
  .foooter__navList .footer__navItem:not(:last-of-type) {
    margin-right: 0;
  }
}

.footer__underNav {
  margin-top: 25px;
}
.footer__underNav .footer__underNav-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer__underNav .footer__underNav-item a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 5.5px;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .footer__underNav .footer__underNav-item a {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__underNav .footer__underNav-item a {
    font-size: 11px;
    justify-content: flex-start;
    margin-right: auto;
    margin-left: 0;
  }
}
.footer__underNav .footer__underNav-item a img {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 11px;
}
.footer__underNav .footer__underNav-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #4B4B36;
  bottom: 0;
  left: 0;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .footer__underNav .footer__underNav-item a::after {
    display: none;
  }
}
@media screen and (min-width: 1279.9px) {
  .footer__underNav .footer__underNav-item a:hover::after {
    transition: all 0.5s;
    transform: scale(1, 1);
  }
}

.footer__copy {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px auto 0;
  font-size: 10px;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    width: 100%;
    margin: 18px auto 0;
    padding-left: 5.33vw;
  }
}

/*---------------------------
TOPページ
---------------------------*/
.topPage-container {
  width: 100vw;
  overflow-x: hidden;
}

/*------- セクションタイトル ------*/
.topPage-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.topPage-ttl__en {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #62ACFF;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .topPage-ttl__en {
    font-size: 15px;
  }
}

.topPage-ttl__ja {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #4B4B36;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .topPage-ttl__ja {
    font-size: 30px;
    margin-top: 8px;
  }
}

.section-subTtl {
  font-size: 35px;
  letter-spacing: 0.1em;
  line-height: 1.45;
  margin-bottom: 40px;
  font-weight: 500;
  color: #4B4B36;
}
@media screen and (max-width: 768px) {
  .section-subTtl {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

.txtImg {
  z-index: -1;
}

/*----- ローディング -----*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #FFFFFF;
  text-align: center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13.33%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  #splash_logo {
    width: 48vw;
  }
}

#splash_logo img {
  width: 100%;
  height: auto;
}
#splash_logo img img {
  width: 100%;
  height: auto;
}

.loadingUp {
  -webkit-animation-name: loadingUpAnime;
          animation-name: loadingUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes loadingUpAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loadingUpAnime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----- fv -----*/
.fv {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.fvTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 1;
  transform: translate(-50%, -50%);
  z-index: 1;
  /*animation-name: fvTxtAnime;
  animation-duration: 2s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
  z-index: 3;*/
}
@media screen and (max-width: 1024px) {
  .fvTxt {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    text-align: center;
  }
}

/*
@keyframes fvTxtAnime{
    0% {
        opacity: 0;
        transform: translate(-50% , calc(-50% + 50px));
    }

    100% {
        opacity: 1;
        transform: translate(-50% , -50%);
    }
}
*/
.fvTxt__en {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .fvTxt__en {
    display: block;
    line-height: 1.47;
  }
}

.fvTxt__en__name {
  font-size: 64px;
  color: #FFFFFF;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 17px;
}
@media screen and (max-width: 1024px) {
  .fvTxt__en__name {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .fvTxt__en__name {
    font-size: 42px;
  }
}

.fvTxt__en__emphasis {
  font-size: 64px;
  letter-spacing: 0;
  line-height: 1;
  color: #62ACFF;
}
@media screen and (max-width: 768px) {
  .fvTxt__en__emphasis {
    font-size: 47px;
    text-align: center;
    padding-left: 6px;
  }
}

.fvTxt__ja {
  font-size: 20px;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .fvTxt__ja {
    font-size: 16px;
  }
}

.fvMovie {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.fvMovie video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fvMovie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: hsla(0deg, 0%, 100%, 0);
  background-image: radial-gradient(at 33% 24%, hsl(343deg, 0%, 84%) 0px, transparent 50%), radial-gradient(at 51% 100%, hsla(255deg, 0%, 9%, 0.62) 0px, transparent 50%), radial-gradient(at 99% 0%, hsl(354deg, 0%, 9%) 0px, transparent 50%), radial-gradient(at 2% 2%, hsl(268deg, 0%, 9%) 0px, transparent 50%), radial-gradient(at 1% 98%, hsl(242deg, 0%, 9%) 0px, transparent 50%), radial-gradient(at 99% 98%, hsl(240deg, 0%, 9%) 0px, transparent 50%);
}

.lottie {
  width: 88px;
  height: 88px;
  content: "";
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.lottie dotlottie-player {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lottie {
    width: 74px;
    height: 74px;
  }
}

.lottie-play {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 32px;
  right: 20px;
}
.lottie-play dotlottie-player {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lottie-play {
    width: 50px;
    height: 50px;
    right: 20px;
    top: 100px;
  }
}

/*----- メッセージ -----*/
.top-message {
  position: relative;
  padding-top: 153px;
  padding-bottom: 98px;
}
@media screen and (max-width: 768px) {
  .top-message {
    padding-top: 150px;
    padding-bottom: 59px;
  }
}

.message__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2.33;
  margin: 0 auto;
  color: #4B4B36;
}
@media screen and (max-width: 768px) {
  .message__txt {
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 14px;
  }
}

.bl-btn--topMessage {
  margin-top: 68px;
}
@media screen and (max-width: 1024px) {
  .bl-btn--topMessage {
    margin-top: 35px;
  }
}

.message__bgImg {
  width: 100%;
  height: calc(100% - 136px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .message__bgImg {
    height: 100%;
  }
}
.message__bgImg img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.message__txtImg {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 6.94vw;
  width: 40.7%;
  height: auto;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .message__txtImg {
    width: 90%;
    left: 50%;
    top: 91px;
    transform: translateX(-50%);
    max-width: 350px;
  }
}

/*----- 仕事を知る -----*/
.top-jobs {
  margin-top: 213px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-jobs {
    width: 100%;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  .top-jobs {
    margin-top: 91px;
  }
}

.topJobs__txtImg {
  width: 38.4%;
  top: 0;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .topJobs__txtImg {
    width: 74%;
    top: -1%;
    right: -5%;
    position: absolute;
  }
}

.topPage-ttl--jobs {
  margin-left: 10.4vw;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .topPage-ttl--jobs {
    margin-left: 0;
    margin-bottom: 18px;
  }
}

.top-jobs__flexWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-jobs__flexWrap {
    flex-direction: column-reverse;
  }
}

.top-jobs__side-l {
  width: 53%;
}
@media screen and (max-width: 1024px) {
  .top-jobs__side-l {
    width: 100%;
    margin: 0 auto;
  }
}

.top-jobs__images {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .top-jobs__images {
    margin: 61px auto 0;
  }
}
.top-jobs__images .top-jobs__imagesItem {
  width: calc(33% - 6px);
}
@media screen and (max-width: 1024px) {
  .top-jobs__images .top-jobs__imagesItem:first-of-type {
    transition: all 1s;
    position: relative;
    opacity: 0;
    transform: translate(0, 50px);
  }
}
.top-jobs__images .top-jobs__imagesItem:nth-of-type(2) {
  transition: all 1.5s;
  position: relative;
  transform: translateX(calc(-100% - 6px));
}
@media screen and (max-width: 1024px) {
  .top-jobs__images .top-jobs__imagesItem:nth-of-type(2) {
    transition: all 1s;
    opacity: 0;
    transform: translate(0, 30px);
  }
}
.top-jobs__images .top-jobs__imagesItem:nth-of-type(3) {
  transition: all 1.5s;
  position: relative;
  transform: translateX(calc(-200% - 12px));
}
@media screen and (max-width: 1024px) {
  .top-jobs__images .top-jobs__imagesItem:nth-of-type(3) {
    transition: all 1s;
    opacity: 0;
    transform: translate(0, 50px);
  }
}
.top-jobs__images .top-jobs__imagesItem:not(:last-of-type) {
  margin-right: 9px;
}
@media screen and (max-width: 1024px) {
  .top-jobs__images.js-move .top-jobs__imagesItem:first-of-type {
    transition: all 1s;
    transform: translate(0, 0);
    opacity: 1;
  }
}
.top-jobs__images.js-move .top-jobs__imagesItem:nth-of-type(2) {
  transition: all 1.5s;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .top-jobs__images.js-move .top-jobs__imagesItem:nth-of-type(2) {
    transition: all 1s;
    transform: translate(0, 0);
    opacity: 1;
  }
}
.top-jobs__images.js-move .top-jobs__imagesItem:nth-of-type(3) {
  transition: all 1.5s;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .top-jobs__images.js-move .top-jobs__imagesItem:nth-of-type(3) {
    transition: all 1s;
    transform: translate(0, 0);
    opacity: 1;
  }
}

.top-jobs__side-r {
  width: 39.2%;
}
@media screen and (max-width: 1024px) {
  .top-jobs__side-r {
    width: 100%;
    margin: 0 auto;
  }
}

.top-jobs__txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .top-jobs__txt {
    margin-bottom: 24px;
  }
}

/*----- 働く環境を知る -----*/
.top-culture {
  margin-top: 178px;
}
@media screen and (max-width: 768px) {
  .top-culture {
    margin-top: 100px;
  }
}

.top-culture__flexWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top-culture__flexWrap {
    display: block;
  }
}

.top-culture__side-l {
  width: 39.2%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-culture__side-l {
    width: 100%;
  }
}

.section-subTtl--culture {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .section-subTtl--culture {
    margin-top: 19px;
  }
}

.top-jobs__txt {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .top-jobs__txt {
    margin-bottom: 24px;
  }
}

.top-culture__txtImg {
  position: absolute;
  width: 153%;
  top: 41px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-culture__txtImg {
    width: 83.88%;
    right: 0;
    left: unset;
    top: -5%;
  }
}

.top-culture__side-r {
  width: 45.96%;
}
@media screen and (max-width: 1024px) {
  .top-culture__side-r {
    width: 100%;
  }
}

.top-culture__images {
  width: 100%;
  aspect-ratio: 1/0.917;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-culture__images {
    width: 94.66vw;
    margin-right: 5.33vw;
    margin-top: 61px;
    aspect-ratio: 1/0.779;
  }
}

.top-culture__image__size-l {
  width: 69.9%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-culture__image__size-l {
    width: 81.4%;
  }
}
.top-culture__image__size-l img {
  height: auto;
}

.top-culture__image__size-s {
  width: 48.22%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-culture__image__size-s {
    width: 40%;
  }
}
.top-culture__image__size-s img {
  height: auto;
}

/*----- 働く環境を知る -----*/
.top-interview {
  margin-top: 154px;
  padding-bottom: 85px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-interview {
    margin-top: 86px;
    padding-bottom: 71px;
  }
}
.top-interview::after {
  position: absolute;
  content: "";
  width: 93.05%;
  height: calc(100% - 154px);
  background-color: rgba(98, 172, 255, 0.05);
  bottom: 0;
  right: 0;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 1024px) {
  .top-interview::after {
    width: 100%;
    height: 85%;
  }
}

.section-subTtl--interview {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .section-subTtl--interview {
    margin-top: 19px;
  }
}

.top-interview__txt {
  margin-bottom: 54px;
}
@media screen and (max-width: 1024px) {
  .top-interview__txt {
    margin-bottom: 35px;
  }
}

.topInterview__txtImg {
  position: absolute;
  top: 30px;
  right: 0;
  width: 44.3%;
  max-width: 680px;
}
@media screen and (max-width: 1024px) {
  .topInterview__txtImg {
    width: 94.66%;
    right: 0;
    top: 15px;
    max-width: unset;
  }
}

.top-interview__List {
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .top-interview__List {
    margin-bottom: 8px;
  }
}

.interviewNum-manager {
  position: relative;
}
.interviewNum-manager::after {
  content: "";
  position: absolute;
  width: calc(100% - 310px);
  height: 1px;
  background-color: #62ACFF;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .interviewNum-manager::after {
    width: calc(100% - 189px);
    right: 20px;
  }
}

.interviewNum-staff {
  position: relative;
}
.interviewNum-staff::after {
  content: "";
  position: absolute;
  width: calc(100% - 235px);
  height: 1px;
  background-color: #62ACFF;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .interviewNum-staff::after {
    width: calc(100% - 155px);
    right: 29px;
  }
}

.top-interview__item {
  margin-right: 65px;
}
@media screen and (max-width: 768px) {
  .top-interview__item {
    margin-right: 20px;
  }
}

.top-interview__txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.top-interview__jobName {
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-interview__jobName {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .top-interview__num {
    font-size: 15px;
  }
}

.bl-btn--interview {
  position: relative;
  z-index: 3;
}

.bl-btn--interview a {
  margin-left: -25%;
}
@media screen and (max-width: 768px) {
  .bl-btn--interview a {
    margin-left: auto;
  }
}

/*----- 募集要項 -----*/
.top-guideLine {
  margin-top: 187px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-guideLine {
    margin-top: 86px;
  }
}

.topPage-ttl--guideline {
  padding-left: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .topPage-ttl--guideline {
    padding-left: 5.33vw;
    position: static;
    top: unset;
  }
}

.top-guideLine__table {
  margin: 41px 0 116px auto;
  padding: 100px 87px 105px;
  width: 64.91%;
  min-width: 805px;
  display: block;
  background-color: rgba(98, 172, 255, 0.05);
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .top-guideLine__table {
    width: 100%;
    padding: 58px 5.33vw 67px;
    min-width: unset;
    margin: 33px 0 70px;
  }
}

.top-guideLine__th {
  width: 138px;
  padding: 30px 13px 27px;
}
@media screen and (max-width: 1024px) {
  .top-guideLine__th {
    width: 100%;
    padding: 20px 5.33vw 7px 0;
  }
}

.top-guideLine__td {
  padding: 30px 35px 27px;
}
@media screen and (max-width: 1024px) {
  .top-guideLine__td {
    padding: 0 5.33vw 15px 0;
  }
}

.guideLine-block {
  margin-bottom: 10px;
}

.topGuideline__txtImg {
  position: absolute;
  width: 46.53%;
  top: 0;
  right: 6vw;
  height: auto;
  max-width: 490px;
}
.topGuideline__txtImg img {
  height: auto;
}
@media screen and (max-width: 1024px) {
  .topGuideline__txtImg {
    width: 94.66%;
    top: 20px;
    right: 0;
    max-width: 660px;
  }
}

@media screen and (max-width: 1024px) {
  .top-guideLine .inner--size-l {
    width: 100%;
  }
}
/*---------------------------
ABOUTページ
---------------------------*/
.underFv__pageTtl__en--about {
  width: 43.4vw;
  top: 35px;
  transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  .underFv__pageTtl__en--about {
    width: 133%;
    bottom: 17px;
    top: unset;
    transform: unset;
  }
}

/*----- 選ばれる理由 -----*/
.reason-flexBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .reason-flexBox {
    display: block;
  }
}

.reasonImg {
  width: 28.118%;
  margin-top: 50px;
  position: relative;
  aspect-ratio: 1/1.85;
}
@media screen and (max-width: 1024px) {
  .reasonImg {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/0.48;
    margin: 28px auto 0;
  }
}

.reasonImg__item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.reasonImg__item.active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .sticky__inner--reason {
    width: 100%;
  }
}
.accordion-container {
  margin: 50px auto 0;
  width: 71.882%;
}
@media screen and (max-width: 1024px) {
  .accordion-container {
    width: 100%;
    margin: 25.5px auto 0;
  }
}

.accordion-list {
  border-bottom: 1px solid #A8A8A8;
}

.accordion-list:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .accordion-list:not(:first-child) {
    margin-top: 0;
  }
}

.accordion-title {
  cursor: pointer;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: 39.5px 60px;
  position: relative;
  transition: all 0.3s ease-in-out;
  color: #4B4B36;
}
@media screen and (max-width: 1280px) {
  .accordion-title {
    font-size: 20px;
    line-height: 1.3;
    padding: 25px 60px 25px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .accordion-title {
    padding: 25px 80px;
  }
}
@media screen and (max-width: 768px) {
  .accordion-title {
    padding: 14px 50px 14px 72px;
  }
}

.accordionNum {
  position: absolute;
  font-size: 102px;
  color: rgba(98, 187, 255, 0.1);
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
  .accordionNum {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .accordionNum {
    font-size: 40px;
  }
}

.accordion-title:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #3C3C3C;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .accordion-title:before {
    right: 15px;
  }
}

.accordion-title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #3C3C3C;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .accordion-title:after {
    right: 15px;
  }
}

.accordion-title.open {
  background: rgba(98, 187, 255, 0.05);
  transition: all 0.3s ease-in-out;
}

.accordion-title.open:before {
  transform: rotate(180deg);
}

.accordion-title.open:after {
  opacity: 0;
}

.accordion-text {
  display: none;
  padding: 30px 50px;
}
@media screen and (max-width: 1280px) {
  .accordion-text {
    padding: 20px 35px;
  }
}

/*----- 大切にしていること -----*/
.value {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .value {
    margin-top: 115px;
  }
}

.value-flexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .value-flexBox {
    display: block;
  }
}

.bl-largeTtl--value {
  margin-bottom: 45.5px;
}

.value__side-l {
  width: 37.72%;
}
@media screen and (max-width: 1280px) {
  .value__side-l {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .value__side-l {
    width: 100%;
  }
}

/*
.section-underPage-subTtl{
    margin-top: 45.5px;
}*/
.value__side-r {
  width: 47.72%;
}
@media screen and (max-width: 768px) {
  .value__side-r {
    width: 94.66vw;
    margin-right: -5.33vw;
  }
}

/*----- 経営理念 -----*/
.philosophy {
  margin-top: 153px;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 70px;
  }
}

.philosophy__imgList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 94.45%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .philosophy__imgList {
    width: 94.6vw;
    margin-right: -5.3vw;
  }
}
.philosophy__imgList .philosophy__imgItem {
  width: calc(25% - 6.75px);
}
@media screen and (max-width: 768px) {
  .philosophy__imgList .philosophy__imgItem {
    width: calc(50% - 4px);
  }
}
.philosophy__imgList .philosophy__imgItem:nth-of-type(even) {
  margin-bottom: -14.9%;
}
@media screen and (max-width: 768px) {
  .philosophy__imgList .philosophy__imgItem:nth-of-type(even) {
    margin-bottom: -13.8%;
  }
}
.philosophy__imgList .philosophy__imgItem img {
  width: 100%;
  aspect-ratio: 1/1.54;
}
@media screen and (max-width: 768px) {
  .philosophy__imgList .philosophy__imgItem img {
    aspect-ratio: 1/1.41;
  }
}
.philosophy__imgList .philosophy__imgItem:not(:last-of-type) {
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  .philosophy__imgList .philosophy__imgItem:not(:last-of-type) {
    margin-right: 8px;
  }
}

.philosophyBlock {
  padding: 240px 6.94vw 73px 6.9%;
  background: rgba(98, 187, 255, 0.05);
  border-radius: 30px 0 0 30px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .philosophyBlock {
    margin-top: -143px;
    padding: 232px 5.33vw 56px;
    border-radius: 0;
    width: 100vw;
    margin-left: -5.33vw;
  }
}

.bl-largeTtl--philosophy {
  margin-bottom: 46px;
}

/*----- 代表挨拶 -----*/
.message {
  margin-top: 127px;
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 73px;
  }
}

.bl-largeTtl--message {
  margin-bottom: 45.5px;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl--message {
    margin-bottom: 30px;
  }
}

.message__img {
  position: relative;
  width: 100%;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .message__img {
    margin-bottom: 31px;
    width: 100vw;
    margin-left: -5.33vw;
  }
}

.message__ttl {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.47;
  margin-bottom: 13%;
}
@media screen and (max-width: 1280px) {
  .message__ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .message__ttl {
    font-size: 18px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

.message__position {
  text-align: right;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 1280px) {
  .message__position {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .message__position {
    font-size: 14px;
  }
}

.message__name {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .message__name {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .message__name {
    font-size: 18px;
  }
}

/*----- グループホテル -----*/
.group {
  margin-top: 182px;
}
@media screen and (max-width: 768px) {
  .group {
    margin-top: 100px;
  }
}

.bl-largeTtl--group {
  margin-bottom: 38.5px;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl--group {
    margin-bottom: 32px;
  }
}

.group-introTxt {
  font-weight: 400;
}

.group-introTxt--group {
  text-align: center;
  font-weight: 400;
}

.group__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .group__list {
    margin-top: 25px;
    display: block;
  }
}
.group__list .group__item {
  width: calc(33% - 12px);
}
@media screen and (max-width: 1280px) {
  .group__list .group__item {
    width: calc(33% - 3px);
  }
}
@media screen and (max-width: 768px) {
  .group__list .group__item {
    width: 100%;
  }
  .group__list .group__item:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
.group__list .group__item:first-of-type .group__logo img {
  width: 70.7%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .group__list .group__item:first-of-type .group__logo img {
    width: 87.8%;
  }
}
.group__list .group__item:nth-of-type(2) .group__logo img {
  width: 70.7%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .group__list .group__item:nth-of-type(2) .group__logo img {
    width: 87.8%;
  }
}
.group__list .group__item:last-of-type .group__logo img {
  width: 85%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .group__list .group__item:last-of-type .group__logo img {
    width: 100%;
  }
}

.groupImg {
  width: 100%;
  aspect-ratio: 1/0.647;
}
.groupImg .groupImg__item {
  width: 100%;
  height: 100%;
}
.groupImg .slick-list {
  height: 100%;
}
.groupImg .slick-track {
  height: 100%;
}

.group-borderBox {
  border: 3px solid rgba(98, 187, 255, 0.2);
  padding: 25px;
}
@media screen and (max-width: 1280px) {
  .group-borderBox {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 768px) {
  .group-borderBox {
    padding: 13px 5.33vw 54px;
  }
}

.group__logo {
  width: 90%;
  aspect-ratio: 1/0.249;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .group__logo {
    aspect-ratio: 1/0.372;
  }
}
.group__logo img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.group__name {
  font-size: 25px;
  letter-spacing: 0em;
  line-height: 1.4;
  text-align: center;
  margin-top: 24px;
  color: #4B4B36;
}
@media screen and (max-width: 1280px) {
  .group__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .group__name {
    font-size: 18px;
    margin-top: 12px;
  }
}

.group__explain {
  margin-top: 22px;
  letter-spacing: 0;
  line-height: 1.86;
  font-weight: 400;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .group__explain {
    margin: 24px auto 32px;
  }
}

.bl-btn--group a {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .bl-btn--group {
    width: 100%;
  }
}

/*----- 会社概要 -----*/
.overview-history-bgWrap {
  margin-top: 195px;
  padding: 54px 0 134px;
  background-color: rgba(98, 172, 255, 0.05);
  border-radius: 30px 0 0 30px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .overview-history-bgWrap {
    margin-top: 97px;
    padding: 48px 5.33vw 0;
    border-radius: 0;
    margin-bottom: 0;
    width: 100vw;
    margin-left: -5.3vw;
    margin-bottom: 74px;
  }
}

.overview__table {
  margin: 50px auto 0;
  padding-right: 0;
  padding-left: 6.9%;
  display: block;
}
@media screen and (max-width: 768px) {
  .overview__table {
    margin: 40px auto 0;
    padding-left: 0;
  }
}

.overview__tr {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .overview__tr {
    display: block;
  }
}

.overview__th {
  width: 297px;
  padding: 30px 67px;
  color: #4B4B36;
}
@media screen and (max-width: 1280px) {
  .overview__th {
    width: 200px;
    padding: 30px 25px;
  }
}
@media screen and (max-width: 768px) {
  .overview__th {
    width: 100%;
    padding: 19px 5.33vw 5px 0;
  }
}

.overview__td {
  width: calc(100% - 297px);
  padding: 30px 61px;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .overview__td {
    width: calc(100% - 200px);
    padding: 30px 25px;
  }
}
@media screen and (max-width: 768px) {
  .overview__td {
    width: 100%;
    padding: 0 5.33vw 19px 0;
  }
}

.overview__td__flexBlock{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.overview__td__flexBlock__side-l{
    width: 220px;
}

@media screen and (max-width: 768px) {

  .overview__td__flexBlock__side-l{
    width: 180px;
}

}

.overview__td__flexBlock__side-r{
  width: max-content;
}


/*----- 沿革 -----*/
.history {
  margin-top: 224px;
  padding-left: 6.9%;
}
@media screen and (max-width: 768px) {
  .history {
    margin-top: 112px;
    padding-left: 0;
    padding-bottom: 50px;
  }
}

.history__listWrap {
  padding-bottom: 50px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .history__listWrap {
    margin-left: 5.33vw;
    padding-right: 46px;
    padding-bottom: 0;
  }
}

.history__list {
  margin-top: 58px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .history__list {
    margin-top: 50px;
  }
}
.history__list .history__item {
  padding-top: 31px;
  width: 231px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history__list .history__item {
    padding-top: 30px;
  }
}
.history__list .history__item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #62ACFF;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .history__list .history__item::before {
    width: 22px;
    height: 22px;
  }
}
.history__list .history__item::after {
  content: "";
  position: absolute;
  width: calc(100% + 100px);
  height: 1px;
  background-color: #A8A8A8;
  top: 10px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .history__list .history__item::after {
    width: 180%;
  }
}

.history__year {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .history__year {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.history__month {
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .history__month {
    font-size: 14px;
  }
}

.history__txt {
  letter-spacing: 0em;
  margin-top: 25px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .history__txt {
    margin-top: 15px;
  }
}
.history__txt .history__txtBlock {
  letter-spacing: 0em;
  line-height: 1.866;
  margin-bottom: 8px;
}

.simplebar-track {
  overflow: visible;
}

/*---------------------------
JOBSページ
---------------------------*/
.underFv__pageTtl__en--jobs {
  width: 38.4vw;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .underFv__pageTtl__en--jobs {
    width: 162%;
    bottom: 0;
  }
}

/*------- 導入 ------*/
.jobsIntro {
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .jobsIntro {
    padding-top: 59px;
  }
}

.jobsIntro__ttl {
  font-size: 34px;
  line-height: 1.47;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  color: #4B4B36;
}
@media screen and (max-width: 768px) {
  .jobsIntro__ttl {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
  }
}

.jobsIntro__txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .jobsIntro__txt {
    font-weight: 400;
    text-align: left;
  }
}
.jobsIntro__txt .jobsIntro__txtBlock:first-of-type {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .jobsIntro__txt .jobsIntro__txtBlock:first-of-type {
    margin-bottom: 10px;
  }
}

.jobs-mainImg {
  margin-top: 77px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .jobs-mainImg {
    margin-top: 62px;
    width: 89.33vw;
    margin: 62px auto 0;
  }
}

/*------- フロントスタッフ ------*/
.staff {
  margin-top: -62px;
}
@media screen and (max-width: 768px) {
  .staff {
    margin-top: -18px;
  }
}

.bl-largeTtl--staff {
  margin-left: auto;
  margin-right: auto;
}

.bl-largeTtl__en--staff {
  font-size: 100px;
  padding-bottom: 0;
  line-height: 1;
  text-align: center;
  margin-bottom: 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bl-largeTtl__en--staff::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__en--staff {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.bl-largeTtl__ja--staff {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #4B4B36;
}
@media screen and (max-width: 768px) {
  .bl-largeTtl__ja--staff {
    font-size: 14px;
  }
}

.staffTxt {
  width: 86.5%;
  margin: 52px auto 63px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .staffTxt {
    margin: 25px auto 45px;
    width: 100%;
    text-align: left;
  }
}

.staff__jobList {
  width: 86.5%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .staff__jobList {
    width: 100%;
  }
}
.staff__jobList .staff__jobItem {
  width: calc(33% - 12.66px);
  margin-bottom: 22px;
  padding: 32px 21px 30px;
  background: rgba(98, 187, 255, 0.05);
}
.staff__jobList .staff__jobItem:not(:nth-of-type(3n)) {
  margin-right: 22px;
}

@media screen and (max-width: 1024px) {
  .staff__jobList {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .staff__jobList .staff__jobItem:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}

.staff__jobList .staff__jobItem{
  width: calc(33% - 12.66px);
  margin-bottom: 22px;
  padding: 32px 21px 30px;
  background: rgba(98, 187, 255, 0.05);
}
@media screen and (max-width: 1024px) {
  .staff__jobList .staff__jobItem {
    padding: 32px 15px 30px;
  }
}
@media screen and (max-width: 768px) {
  .staff__jobList .staff__jobItem {
    width: 100%;
    margin-bottom: 20px;
    padding: 35px 5.33vw 20px;
  }
}
.staff__jobList .staff__jobItem:first-of-type .jobIcon img {
  width: 76.3%;
}
.staff__jobList .staff__jobItem:nth-of-type(2) .jobIcon img {
  width: 76.3%;
}
.staff__jobList .staff__jobItem:nth-of-type(3) .jobIcon img {
  width: 77.19%;
}
.staff__jobList .staff__jobItem:nth-of-type(4) .jobIcon img {
  width: 77.19%;
}
.staff__jobList .staff__jobItem:nth-of-type(5) .jobIcon img {
  width: 76.3%;
}
.staff__jobList .staff__jobItem:nth-of-type(6) .jobIcon img {
  width: 100%;
}
.staff__jobList .staff__jobItem:nth-of-type(7) .jobIcon img {
  width: 76.3%;
}
.staff__jobList .staff__jobItem:nth-of-type(8) .jobIcon img {
  width: 77.19%;
}
.staff__jobList .staff__jobItem:last-of-type .jobIcon img {
  width: 76.3%;
}

.jobTtl {
  font-size: 24px;
  letter-spacing: 0;
  margin-bottom: 31px;
  text-align: center;
  color: #4B4B36;
}
@media screen and (max-width: 1280px) {
  .jobTtl {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .jobTtl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .jobTtl {
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }
}

.jobIcon {
  width: 36.2%;
  aspect-ratio: 1/0.76;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .jobIcon {
    width: 25.8%;
  }
}
.jobIcon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}

.jobExplain {
  margin-top: 38px;
  font-weight: 400;
  line-height: 1.86;
}
@media screen and (max-width: 768px) {
  .jobExplain {
    margin-top: 23px;
  }
}

.job-note{
  margin-top: 8px;
  font-weight: 400;
  font-size: 11px;
}

.skill {
  margin-top: 72px;
  margin-bottom: 161px;
  width: 86.5%;
  min-width: 1140px;
}
@media screen and (max-width: 1280px) {
  .skill {
    min-width: unset;
    margin: 72px auto 161px;
  }
}
@media screen and (max-width: 1024px) {
  .skill {
    width: 100%;
  }
}

.skill__ttl {
  min-width: 687px;
  width: 86.5%;
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  text-align: center;
  margin: 0 auto 41.5px;
}
@media screen and (max-width: 1024px) {
  .skill__ttl {
    min-width: unset;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .skill__ttl {
    width: 100%;
    font-size: 18px;
  }
}
.skill__ttl::before {
  content: "";
  position: absolute;
  width: calc((100% - 237px) / 2);
  height: 1px;
  background-color: rgba(168, 168, 168, 0.3);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .skill__ttl::before {
    width: calc((100% - 150px) / 2);
  }
}
.skill__ttl::after {
  content: "";
  position: absolute;
  width: calc((100% - 237px) / 2);
  height: 1px;
  background-color: rgba(168, 168, 168, 0.3);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .skill__ttl::after {
    width: calc((100% - 150px) / 2);
  }
}

.skillList-wrap {
  min-width: 687px;
  margin: 0 auto;
  padding-bottom: 35px;
  position: relative;
  width: 86.5%;
}
@media screen and (max-width: 1024px) {
  .skillList-wrap {
    min-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .skillList-wrap {
    padding: 0 5.3vw 25px;
    width: 100%;
  }
}
.skillList-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(168, 168, 168, 0.3);
  bottom: -35px;
  left: 0;
}
.skillList-wrap .skill__list {
  width: 69.95%;
  min-width: 687px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .skillList-wrap .skill__list {
    min-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .skillList-wrap .skill__list {
    width: 100%;
    min-width: unset;
    max-width: 350px;
  }
}
.skillList-wrap .skill__list:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .skillList-wrap .skill__list:not(:last-child) {
    margin-bottom: 17.5px;
  }
}
.skillList-wrap .skill__list:last-child {
  position: relative;
}

.skill__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.skill__item {
  font-size: 20px;
  line-height: 1;
  color: #4B4B36;
  letter-spacing: 0.1em;
  padding: 20px 30px;
  background-color: #62ACFF;
  color: #FFFFFF;
  border-radius: 30px;
}
@media screen and (max-width: 1024px) {
  .skill__item {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .skill__item {
    font-size: 13px;
    padding: 9.5px 17.5px;
  }
}

/*---------------------------
CULTUREページ
---------------------------*/
.stickyContainer--culture {
  margin-top: 93px;
}
@media screen and (max-width: 1024px) {
  .stickyContainer--culture {
    width: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .stickyContainer--culture {
    margin-top: 58px;
  }
}

.culture-bgWrap {
  padding: 62.5px 0 148px;
  /*width: 76.338vw;*/
  background-color: rgba(98, 187, 255, 0.05);
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 1024px) {
  .culture-bgWrap {
    width: 100vw;
  }
  .culture-bgWrap .sticky__inner {
    width: 89.33vw;
    margin: 0 auto;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .culture-bgWrap {
    padding: 50px 0 78px;
    border-radius: 0;
    background-color: rgba(98, 187, 255, 0.05);
  }
}

.underFv__pageTtl__en--culture {
  width: 255%;
  bottom: 0;
  transform: translateY(-29%);
}
@media screen and (max-width: 768px) {
  .underFv__pageTtl__en--culture {
    width: 145%;
    bottom: 17px;
    top: unset;
    transform: unset;
  }
}

/*----- 数字で見る強み -----*/
.infograph {
  padding-left: 6.9%;
}

.supplement{
  font-size: 1.38vw;
  top: -1em;
  position: relative;
}

.supplement02{
    font-size: 0.97vw;
    text-align: center;
    margin: -2.45em 0 0.45em ;
    color: #fff;
}

.supplement03{
  font-size: 0.97vw;
  margin-top: 0.3em;
}
@media screen and (max-width: 1024px) {
  .infograph {
    padding-left: 0;
  }
}

.infograph__txt {
  margin-top: 45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .infograph__txt {
    margin-top: 30px;
    margin-bottom: 42px;
  }

  .supplement{
    font-size: 12px;
  }
  
  .supplement02{
      font-size: 12px;
      margin-top: -10px;
  }
  
  .supplement03{
    font-size: 12px;
  }
}

.infograph-listWrap .infograph__list:first-of-type {
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .infograph-listWrap .infograph__list:first-of-type {
    margin-bottom: 0;
  }
}

.infograph__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.infograph__list .infograph__item {
  width: calc(33% - 8px);
  aspect-ratio: 1/0.916;
  padding: 22px 0;
  background-color: #62ACFF;
  border-radius: 10px;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .infograph__list .infograph__item {
    width: calc(50% - 8px);
    aspect-ratio: 1/1.018;
    border-radius: 8px;
    margin-bottom: 15px;
  }
}
.infograph__list .infograph__item:first-of-type .infograph-icon img {
  width: 57.3%;
}
.infograph__list .infograph__item:nth-of-type(2) .infograph-icon img {
  width: 94.1%;
}
.infograph__list .infograph__item:nth-of-type(3) .infograph-icon img {
  width: 36%;
}
.infograph__list .infograph__item:nth-of-type(4) .infograph-icon img {
  width: 41.9%;
}
.infograph__list .infograph__item:nth-of-type(5) .infograph-icon img {
  width: 41.9%;
}
.infograph__list .infograph__item:last-of-type .infograph-icon img {
  width: 41.9%;
}

.infograph__ttl {
  font-size: 1.38vw;
  letter-spacing: 0;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .infograph__ttl {
    font-size: 3.73vw;
  }
}

.infograph-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 5.55vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #FFFFFF;
  margin: 0.45em auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .infograph-num-wrap {
    font-size: 13.33vw;
    margin: 0.3em auto;
  }
}

.infograph-num {
  display: block;
}

.unit {
  font-size: 1.38vw;
  line-height: 1;
  letter-spacing: 0;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .unit {
    font-size: 12px;
  }
}

.infograph-icon {
  width: 49.45%;
  aspect-ratio: 1/0.419;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .infograph-icon {
    width: 51.45%;
  }
}
.infograph-icon img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.infograph-listUnder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .infograph-listUnder {
    flex-direction: column-reverse;
  }
}
.infograph-listUnder .infograph__list:first-of-type {
  width: 66%;
  position: relative;
}
.infograph-listUnder .infograph__list:first-of-type .infograph__item {
  aspect-ratio: 1/0.921;
}
@media screen and (max-width: 768px) {
  .infograph-listUnder .infograph__list:first-of-type {
    width: 100%;
  }
}
.infograph-listUnder .infograph__list:nth-of-type(2) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(33% - 8px);
}
@media screen and (max-width: 768px) {
  .infograph-listUnder .infograph__list:nth-of-type(2) {
    flex-direction: row;
    width: 100%;
  }
}
.infograph-listUnder .infograph__list .infograph__item {
  width: 100%;
}

.ageList {
  margin-top: 1%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.ageList.js-count .ageGraph-paint {
  transform: scale(1, 1);
  transition: all 2s;
}
.ageList .ageList__item:not(:last-child) {
  margin-bottom: 5px;
}
.ageList .ageList__item:first-of-type .ageGraph-paint {
  width: 40%;
}
.ageList .ageList__item:nth-of-type(2) .ageGraph-paint {
  width: 70%;
}
.ageList .ageList__item:nth-of-type(3) .ageGraph-paint {
  width: 100%;
}
.ageList .ageList__item:last-of-type .ageGraph-paint {
  width: 55%;
}

.ageList__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ageNum {
  font-size: 19px;
  margin-right: 34px;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .ageNum {
    font-size: 5.06vw;
    margin-right: 12px;
  }
}

.ageGraph {
  width: 35.6%;
  aspect-ratio: 1/0.3656;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ageGraph {
    aspect-ratio: 1/0.3;
  }
}

.ageGraph-paint {
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: top left;
  transition: all 3s;
}

.infograph-num-wrap--age {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 0 48px;
  width: 27%;
}
@media screen and (max-width: 768px) {
  .infograph-num-wrap--age {
    font-size: 8vw;
    margin: 0 0 0 11%;
    width: 15%;
  }
}

.infograph__list.infograph__list--column .infograph-num-wrap {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .infograph__list.infograph__list--column .infograph__item {
    width: calc(50% - 8px);
    aspect-ratio: 1/1.018;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .infograph__list.infograph__list--column .infograph__item:first-of-type {
    margin-right: 16px;
  }
}
.infograph__list.infograph__list--column .infograph__item .infograph-icon {
  margin: 21px auto;
}
.infograph-listUnder .infograph__list:nth-of-type(2) .infograph__item:first-of-type .infograph-icon img {
  width: 108.6%;
}
.infograph-listUnder .infograph__list:nth-of-type(2) .infograph__item:last-of-type .infograph-icon{
  margin: 21px auto 0;
}
.infograph-listUnder .infograph__list:nth-of-type(2) .infograph__item:last-of-type .infograph-icon img {
  width: 40.6%;
}

@media screen and (max-width: 768px) {
  .infograph__list.infograph__list--column .infograph__item .infograph-icon {
    margin: 10% auto;
  }
}

/*----- 福利厚生 -----*/
.benefit {
  margin-top: 180px;
  padding-left: 6.9%;
}
@media screen and (max-width: 1024px) {
  .benefit {
    margin-top: 150px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .benefit {
    margin-top: 90px;
  }
}

.benefit__mainImg {
  margin-top: 75px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .benefit__mainImg {
    padding-left: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .benefit__mainImg {
    margin-top: 34px;
  }
}

@media screen and (max-width: 1024px) {
  .benefit__mainTxt {
    width: 89.33vw;
    margin: 0 auto;
  }
}
.benefit__mainTtl {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.47;
  margin: 74px 0 35px;
  color: #4B4B36;
}
@media screen and (max-width: 1024px) {
  .benefit__mainTtl {
    margin: 37px auto 15px;
  }
}
@media screen and (max-width: 768px) {
  .benefit__mainTtl {
    font-size: 23px;
    font-weight: 700;
  }
}

.benefitList {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .benefitList {
    width: 89.33%;
    margin: 75px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .benefitList {
    margin-top: 37px;
  }
}
.benefitList .benefitList__item {
  padding: 45px 5.4% 56px 9.95%;
  background-color: #FFFFFF;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .benefitList .benefitList__item {
    display: block;
    padding: 35px 5.33vw 46px;
  }
}
.benefitList .benefitList__item:first-of-type .benefit-ttl__img {
  width: 42.16%;
}
@media screen and (max-width: 768px) {
  .benefitList .benefitList__item:first-of-type .benefit-ttl__img {
    width: 41.3%;
  }
}
.benefitList .benefitList__item:nth-of-type(2) .benefit-ttl__img {
  width: 46.3%;
}
@media screen and (max-width: 768px) {
  .benefitList .benefitList__item:nth-of-type(2) .benefit-ttl__img {
    width: 45%;
  }
}
.benefitList .benefitList__item:nth-of-type(3) .benefit-ttl__img {
  width: 44.2%;
}
@media screen and (max-width: 768px) {
  .benefitList .benefitList__item:nth-of-type(3) .benefit-ttl__img {
    width: 43%;
  }
}
.benefitList .benefitList__item:not(:last-child) {
  margin-bottom: 54px;
}

.benefitList__side-l {
  width: 46.9%;
  min-width: 436px;
  margin-right: 7.9%;
}
@media screen and (max-width: 1024px) {
  .benefitList__side-l {
    min-width: 361px;
  }
}
@media screen and (max-width: 768px) {
  .benefitList__side-l {
    width: 100%;
    min-width: unset;
    margin-right: 0;
  }
}

.benefit-ttl {
  position: relative;
  width: 100%;
  font-size: 27px;
  letter-spacing: 0;
  line-height: 1;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(98, 187, 255, 0.28);
  margin-bottom: 35px;
  color: #4B4B36;
}
@media screen and (max-width: 1024px) {
  .benefit-ttl {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .benefit-ttl {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid rgba(98, 187, 255, 0.28);
    margin-bottom: 28px;
  }
}

.benefit-ttl__img {
  position: absolute;
  right: 0;
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  .benefit-ttl__img {
    bottom: 0;
  }
}

.benefitDetail-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .benefitDetail-wrap {
    display: block;
  }
}
.benefitDetail-wrap .benefitDetail:first-of-type {
  width: 186px;
}
@media screen and (max-width: 1024px) {
  .benefitDetail-wrap .benefitDetail:first-of-type {
    width: 168px;
  }
}
@media screen and (max-width: 768px) {
  .benefitDetail-wrap .benefitDetail:first-of-type {
    width: 100%;
  }
}
.benefitDetail-wrap .benefitDetail:last-of-type {
  width: 250px;
}
@media screen and (max-width: 1024px) {
  .benefitDetail-wrap .benefitDetail:last-of-type {
    width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .benefitDetail-wrap .benefitDetail:last-of-type {
    width: 100%;
    margin-top: 10px;
  }
}
.benefitDetail-wrap .benefitDetail .benefitDetail__item:not(:last-child) {
  margin-bottom: 10px;
}

.benefitDetail__item {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.benefitDetail-checkIcon {
  width: 19px;
  height: auto;
  margin-right: 14px;
}
.benefitDetail-checkIcon img {
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .benefitDetail-checkIcon {
    width: 15px;
    margin-right: 18px;
  }
}

.benefitDetail__ttl {
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .benefitDetail__ttl {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .benefitDetail__ttl {
    font-size: 14px;
  }
}

.benefitList__side-r {
  width: auto;
}
@media screen and (max-width: 768px) {
  .benefitList__side-r {
    margin-bottom: 30px;
    width: 100%;
  }
}

.benefit-item-txt {
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
}

/*----- センターホテル成田の風景 -----*/
.gallery {
  margin-top: 140px;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-top: 86px;
  }
}

.bl-largeTtl--gallery {
  padding-left: 6.9%;
}
@media screen and (max-width: 1024px) {
  .bl-largeTtl--gallery {
    padding-left: 10.66vw;
  }
}

.gallery-wrap__listWrap {
  width: 100%;
  margin-top: 50px;
  padding-right: 100px;
}
@media screen and (max-width: 1024px) {
  .gallery-wrap__listWrap {
    padding-left: 10.66vw;
    padding-right: 10.66vw;
    margin-top: 32px;
  }
}

.gallery-img {
  width: 274%;
}
@media screen and (max-width: 768px) {
  .gallery-img {
    width: 513%;
    padding-bottom: 54px;
  }
}

@media screen and (max-width: 1024px) {
  .simplebar-track.simplebar-horizontal {
    width: 80vw;
  }
}
.slider__scrollbar--gallery {
  margin-top: 50px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 1024px) {
  .slider__scrollbar--gallery {
    width: calc(100% - 10.66vw - 100px);
    margin-left: 10.66vw;
  }
}
@media screen and (max-width: 768px) {
  .slider__scrollbar--gallery {
    width: calc(100% - 21.36vw);
    margin-left: 10.66vw;
  }
}

/*---------------------------
INTERVIEWページ
---------------------------*/
.underFv__pageTtl__en--interview {
  width: 162%;
  bottom: 46px;
}
@media screen and (max-width: 768px) {
  .underFv__pageTtl__en--interview {
    width: 141%;
    bottom: 0;
    transform: translateY(-50%);
  }
}

/*----- 導入 -----*/
.interview__introTtl {
  font-size: 34px;
  letter-spacing: 0.1em;
  line-height: 1.47;
  color: #4B4B36;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .interview__introTtl {
    font-size: 23px;
    margin-bottom: 15px;
    font-weight: 700;
  }
}

@media screen and (min-width: 1023.9px) {
  .interview__introduction {
    margin-top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .interview__introTxt {
    font-weight: 400;
  }
}
.interview__introTxt .interview__introTxt__block:not(:last-of-type) {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .interview__introTxt .interview__introTxt__block:not(:last-of-type) {
    margin-bottom: 8px;
  }
}

/*----- インタビュー内容 -----*/
.interviewContainer {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 130px 6.94vw 161px 1.8%;
}
@media screen and (max-width: 768px) {
  .interviewContainer {
    display: block;
    padding: 72px 0 54px;
  }
}

.interview__stickyImg {
  position: -webkit-sticky;
  position: sticky;
  top: 148px;
  left: 0;
  width: 33.9%;
}
@media screen and (max-width: 768px) {
  .interview__stickyImg {
    position: static;
    top: unset;
    left: unset;
    width: 100%;
    margin: 16px 0 30px;
  }
}

.interview__content {
  width: 52%;
}
@media screen and (max-width: 768px) {
  .interview__content {
    width: 100%;
  }
}

.interview__ttl {
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: 0.1em;
  margin: 27px 0 42px;
  color: #4B4B36;
}
@media screen and (max-width: 768px) {
  .interview__ttl {
    font-size: 23px;
    margin: 0 0 30px;
  }
}

.interview__personalInfo {
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview__personalInfo {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
  }
}

.interview__staffName {
  font-size: 25px;
  line-height: 1;
  position: relative;
  padding-bottom: 27px;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .interview__staffName {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 14px;
    margin-bottom: 0;
    border-bottom: 1px solid #62ACFF;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .interview__staffName::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #3C3C3C;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
  }
}
.interview__staffName::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background-color: #62ACFF;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .interview__staffName::after {
    position: absolute;
    content: "";
    top: 50%;
    left: unset;
    bottom: unset;
    right: 25px;
    height: 2px;
    width: 15px;
    background: #3C3C3C;
    transition: all 0.3s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .interview__staffName.open:before {
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
  }
  .interview__staffName.open:after {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
}
.interview__question {
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1.44;
  margin-bottom: 27px;
  color: #4B4B36;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .interview__question {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}

.interview__answer {
  margin-bottom: 40px;
}
.interview__answer.interview__answer--onImg {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .interview__answer.interview__answer--onImg {
    margin-bottom: 20px;
  }
}
.interview__answer .interview__answer__block {
  letter-spacing: 0;
  font-weight: 400;
}
.interview__answer .interview__answer__block:not(:last-child) {
  margin-bottom: 15px;
}
.interview__answer.interview__answer--noMargin {
  margin-bottom: 0;
}

.interviewImg {
  width: 100%;
  aspect-ratio: 1/0.57;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .interviewImg {
    aspect-ratio: 1/0.73;
    margin-bottom: 36px;
  }
}

.interview02 .interviewContainer,
.interview04 .interviewContainer {
  background: rgba(98, 187, 255, 0.05);
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .interview02 .interviewContainer,
.interview04 .interviewContainer {
    padding: 55px 5.33vw 67px;
    width: 100vw;
    margin-left: -5.33vw;
    border-radius: 0;
  }
}

.interview04 {
  margin-bottom: 100px;
}

/*-----  spアコーディオン -----*/
@media screen and (max-width: 768px) {
  .sp-interview__accordionBox {
    padding: 46px 0;
    display: none;
  }
}
/*---------------------------
ENTRYページ
---------------------------*/
.bl-largeTtl--faq {
  padding-left: 7.1%;
}
@media screen and (max-width: 1024px) {
  .bl-largeTtl--faq {
    padding-left: 0;
  }
}

/*----- よくあるご質問 -----*/
.accordion-container--entry {
  margin: 50px auto 140px 0;
  width: calc(100% - 6.9vw);
}
@media screen and (max-width: 1024px) {
  .accordion-container--entry {
    width: 100%;
    margin: 46.4px auto 70px;
  }
}
.accordion-container--entry .accordion-list--entry:not(:first-child) {
  margin-top: 59px;
}
@media screen and (max-width: 768px) {
  .accordion-container--entry .accordion-list--entry:not(:first-child) {
    margin-top: 35px;
  }
}

.accordion-list--entry {
  position: relative;
  border-bottom: unset;
}
.accordion-list--entry::before {
  position: absolute;
  content: "";
  width: 7.58px;
  height: 7.58px;
  border-radius: 50%;
  top: 26.7px;
  left: 51.7px;
  background-color: #4B4B36;
  border: 1px solid #A8A8A8;
}
@media screen and (max-width: 768px) {
  .accordion-list--entry::before {
    left: 15.7px;
  }
}

.accordion-title--entry {
  padding-left: 89px;
  padding: 20px 89px;
  background: rgba(98, 187, 255, 0.05);
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .accordion-title--entry {
    font-size: 14px;
    padding: 20px 43px 20px 43px;
    background: rgba(98, 187, 255, 0.1);
    border-radius: 8px;
  }
}

.accordion-text--entry {
  font-size: 18px;
  padding-left: 89px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.66;
  border-bottom: unset;
}
@media screen and (max-width: 768px) {
  .accordion-text--entry {
    font-size: 12px;
    padding: 21px 0 0;
  }
}

/*----- エントリーフォーム -----*/
.entryForm {
  padding: 66px 0 116px;
  background-color: rgba(98, 187, 255, 0.05);
  border-radius: 30px 0 0 30px;
  margin-bottom: 140px;
}
@media screen and (max-width: 1024px) {
  .entryForm {
    padding: 66px 50px 116px;
  }
}
@media screen and (max-width: 768px) {
  .entryForm {
    margin: 0 0 110px;
    padding: 58px 5.33vw 75px;
    width: 100vw;
    margin-left: -5.33vw;
    border-radius: 0;
  }
}

.entryExplain {
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .entryExplain {
    font-size: 12px;
    margin-top: 28.5px;
  }
}

.contactForm {
  margin: 89.5px auto 0;
  width: 67%;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 34px 0;
    margin-top: 0;
  }
}

.formDl {
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .formDl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .formDl {
    margin-bottom: 25px;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .formDt {
    margin-bottom: 10px;
  }
}

.formTtl {
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .formTtl {
    margin-right: 0;
  }
}

.formRequired {
  font-size: 20px;
  line-height: 1;
  color: #FF0303;
  font-weight: 400;
}

.formDd {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
  }
}

.radioBtn-wrap {
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .radioBtn-wrap {
    padding-left: 0;
  }
}

.radioBtn {
  margin-bottom: 0;
}

input[type=radio] {
  position: relative;
  width: 19px;
  height: 19px;
  background-color: #FFFFFF;
  border: 1px solid #62ACFF;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input[type=radio] {
    vertical-align: -5px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.58px;
  height: 7.58px;
  border-radius: 50%;
  background: #62ACFF;
  content: "";
}

.radioBtn {
  margin-right: 25px;
  color: #4B4B36;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 420px) {
  .radioBtn {
    margin-right: 13px;
  }
  .radioBtn:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
input[type=text],
input[type=email],
input[type=date],
textarea {
  font-weight: 400;
  padding: 17px 30px;
  background-color: #FFFFFF;
  color: #4B4B36;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
input[type=date],
textarea {
    padding: 5.3px 18px;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  input[type=date] {
    height: 34.6px;
  }
}
textarea {
  height: 335px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
}

::placeholder {
  color: #A3AFAC;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 11px;
  }
  ::placeholder {
    font-size: 11px;
  }
}

input[type=text].postCode {
  width: 165px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

.prefectures {
  padding: 13px 30px;
  background-color: #FFFFFF;
  border-radius: 30px;
  color: #4B4B36;
  width: 165px;
}
@media screen and (max-width: 1024px) {
  .prefectures {
    padding: 5.3px 18px;
    font-size: 11px;
    width: 120px;
  }
}

.selectbox {
  position: relative;
}
.selectbox::after {
  content: "";
  position: absolute;
  width: 9.4px;
  height: 9.4px;
  border-bottom: 2px solid #9B9A9A;
  border-right: 2px solid #9B9A9A;
  top: 50%;
  right: 17.5px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 12px;
}

.formDl--addressWrap {
  align-items: flex-start;
}
.formDl--addressWrap .formTtl {
  margin-top: 15px;
}

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #4B4B36;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #4B4B36;
  border-bottom: 2px solid #4B4B36;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 58px auto 54px;
  color: #4B4B36;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .privacy-wrap {
    margin: 25px auto 60px;
    teext-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.form--policyLink {
  text-decoration: underline;
  font-weight: 400;
}

.bl-btn .submitBtn {
  padding: 11.5px 0;
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  border: 1px solid #4B4B36;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .bl-btn .submitBtn {
    padding: 17.5px 0;
  }
}
@media screen and (min-width: 1279.9px) {
  .bl-btn .submitBtn:hover {
    background-color: #4B4B36;
    color: #FFFFFF;
    transition: all 0.5s;
  }
}

.img-onFooter {
  width: 100%;
  height: auto;
}
.img-onFooter img {
  height: auto;
}

.submitWrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .submitWrap {
    display: block;
  }
}
.submitWrap .bl-btn:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .submitWrap .bl-btn:first-of-type {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.entryForm--thanks,
.entryForm--confirm {
  margin-top: -50px;
}
@media screen and (max-width: 1024px) {
  .entryForm--thanks,
.entryForm--confirm {
    margin-top: 0;
  }
}

.entryExplain--confirm {
  margin: 68.5px auto;
}
@media screen and (max-width: 768px) {
  .entryExplain--confirm {
    margin: 45px 0;
  }
}

@media screen and (max-width: 768px) {
  .entryForm--thanks,
.entryForm--confirm {
    padding-bottom: 69px;
    margin-bottom: 51px;
  }
}
.errorPage {
  margin: 300px auto 100px;
}

/*----------------------
PRIVACY POLICYページ
-----------------------*/
.policy {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .policy {
    width: 100vw;
    margin-left: -5.33vw;
  }
}

.underFv__pageTtl__en--policy {
  width: 174%;
  bottom: 30%;
}
@media screen and (max-width: 768px) {
  .underFv__pageTtl__en--policy {
    width: 124%;
  }
}

.policy-content {
  padding: 89px 9.09% 55px;
  background-color: rgba(98, 187, 255, 0.05);
  border-radius: 30px 0 0 30px;
  margin-top: -50px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .policy-content {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .policy-content {
    padding: 45px 5.33vw;
    border-radius: 0;
    margin-top: 0;
  }
}
/*# sourceMappingURL=style.css.map */