@charset "UTF-8";
/* 下線が右から左へ消える
---------------------------------------------------------- */
/* 下線が左から右へ消える
---------------------------------------------------------- */
/* リセット・共通スタイル
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

@media all and (max-width: 1000px) {
  :root {
    --header_height: 80px;
  }
}

body {
  margin: 0;
  padding: 0;
  background: url(../images/common/bg.webp) repeat center top/contain fixed;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  background-color: #033C84;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  body {
    font-size: 14px;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #fff;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

/* btn
---------------------------------------------------------- */
.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 750px) {
  .btn_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.common_btn {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  background: #B21E1E;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid #B21E1E;
  width: 146px;
  text-align: center;
}
@media all and (min-width: 751px) {
  .common_btn {
    font-size: 16px;
    padding: 15px 20px;
    width: 200px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .common_btn:hover span::after {
    background-image: url(../images/icon/arrow_hov.svg);
  }
}
.common_btn span {
  position: relative;
  display: inline-block;
  padding: 0 22px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.common_btn span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 16px;
  height: 16px;
  background: url(../images/icon/arrow.svg) no-repeat right center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .common_btn span::after {
    top: 4px;
  }
}
@media all and (min-width: 751px) {
  .common_btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .common_btn:hover {
    background-color: #fff;
    color: #B21E1E;
  }
}

/* list
---------------------------------------------------------- */
.common_list li {
  margin-bottom: 5px;
  color: #222;
  font-size: 14px;
  padding-left: 14px;
  text-indent: -14px;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .common_list li {
    font-size: 15px;
    padding-left: 15px;
    text-indent: -15px;
  }
}
.common_list li::before {
  content: "・";
}
.common_list li:last-child {
  margin-bottom: 0;
}

/* header
---------------------------------------------------------- */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 20px 23px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media all and (max-width: 1000px) {
  .header {
    height: var(--header_height);
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg.webp) no-repeat center/cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.header.fixed::before {
  opacity: 1;
}
.header .logo {
  width: 85px;
}
@media all and (min-width: 751px) {
  .header .logo {
    width: 99px;
  }
}
.header .header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media all and (max-width: 750px) {
  .header .header_right {
    padding-top: 5px;
  }
}
@media all and (min-width: 751px) {
  .header .header_right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.nav_open .header {
  background: url(../images/common/bg.webp) no-repeat center/cover;
}

/* inner
---------------------------------------------------------- */
.inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

/* kv
---------------------------------------------------------- */
.kv {
  position: relative;
}
.kv .kv_img img {
  width: 100%;
  height: 100%;
}
.kv .sec_title {
  position: absolute;
  left: 20px;
  bottom: 10px;
}
@media all and (min-width: 751px) {
  .kv .sec_title {
    left: 45px;
  }
}
.kv .sec_title .ja_title {
  font-size: 9px;
  background-position: left 1px;
  margin: 0 0 5px 3px;
}
@media all and (min-width: 751px) {
  .kv .sec_title .ja_title {
    font-size: 19px;
    margin: 0 0 5px 5px;
  }
}
.kv .sec_title .en_title {
  font-size: 52px;
}
@media all and (min-width: 751px) {
  .kv .sec_title .en_title {
    font-size: 115px;
  }
}
@media all and (max-width: 750px) {
  .kv .scroll_ico {
    display: none;
  }
}
@media all and (min-width: 751px) {
  .kv .scroll_ico {
    position: absolute;
    right: 56px;
    bottom: -62px;
    background-color: #222;
    width: 125px;
    height: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    font-family: "Roboto", sans-serif;
    -webkit-animation: scroll-animation 1.5s infinite;
            animation: scroll-animation 1.5s infinite;
  }
}
@media all and (min-width: 751px) {
  .kv .scroll_ico span {
    display: inline-block;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
    position: relative;
  }
}
@media all and (min-width: 751px) {
  .kv .scroll_ico span::after {
    content: "";
    background: url(../images/icon/arrow_white.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 25px;
    -webkit-transform: translateX(-10px) translateY(12px) rotate(90deg);
            transform: translateX(-10px) translateY(12px) rotate(90deg);
  }
}

@-webkit-keyframes scroll-animation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scroll-animation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* contents
---------------------------------------------------------- */
.title_wrap {
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .title_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 45px;
    gap: 0 10px;
  }
}

.sec_title .ja_title {
  font-size: 13px;
  font-weight: bold;
  padding: 6px 0 0 30px;
  background: url(../images/common/title_bg.svg) no-repeat left 5px/31px 12px;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .sec_title .ja_title {
    font-size: 18px;
    padding: 4px 0 0 53px;
    background: url(../images/common/title_bg.svg) no-repeat left 2px/61px 25px;
    margin-bottom: 5px;
  }
}
.sec_title .en_title {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
@media all and (min-width: 751px) {
  .sec_title .en_title {
    font-size: 85px;
  }
}

.title_center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .title_center {
    margin-bottom: 50px;
  }
}
@media all and (max-width: 750px) {
  .title_center .sec_title {
    margin-bottom: 0;
  }
}
.title_center .sec_title .ja_title {
  text-align: center;
  background: none;
  padding-left: 0;
  margin-bottom: 0;
}
@media all and (min-width: 751px) {
  .title_center .sec_title .ja_title {
    margin-bottom: 10px;
  }
}
.title_center .sec_title .ja_title span {
  display: inline-block;
  padding: 6px 30px 0 30px;
  background: url(../images/common/title_bg.svg) no-repeat left 5px/31px 12px;
}
@media all and (max-width: 750px) {
  .title_center .sec_title .ja_title span {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 751px) {
  .title_center .sec_title .ja_title span {
    font-size: 18px;
    padding: 4px 54px 0;
    background: url(../images/common/title_bg.svg) no-repeat left top/61px 25px;
  }
}

.sec_copy {
  font-size: 15px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  .sec_copy {
    font-size: 17px;
    margin: 0 0 25px;
    line-height: 1.6;
  }
}

.sec_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 750px) {
  .sec_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (min-width: 751px) {
  .sec_flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 40px;
  }
}
.sec_flex .read {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 27px;
}
@media all and (min-width: 751px) {
  .sec_flex .read {
    font-size: 17px;
    margin-bottom: 38px;
  }
}
.sec_flex .read p:last-of-type {
  margin-bottom: 0;
}
.sec_flex .read p:not(:first-child) {
  margin-top: 14px;
}
@media all and (min-width: 751px) {
  .sec_flex .read p:not(:first-child) {
    margin-top: 20px;
  }
}

/* interview
---------------------------------------------------------- */
.interview {
  padding: 50px 0;
  background: url(../images/top/interview_bg_sp.webp) no-repeat center top/cover;
}
@media all and (min-width: 751px) {
  .interview {
    background-image: url(../images/top/interview_bg.webp);
    padding: 118px 0 129px;
  }
}
.interview .sec_copy {
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .interview .interviews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden;
    position: relative;
  }
}
@media all and (min-width: 751px) {
  .interview .interviews::after {
    content: "";
    position: absolute;
    width: 5.86%;
    height: 10px;
    top: calc(43% - 5px);
    left: 47.07%;
    background: #fff;
  }
}
@media all and (max-width: 750px) {
  .interview .interviews li {
    margin-bottom: 25px;
  }
}
@media all and (min-width: 751px) {
  .interview .interviews li {
    width: 47.07%;
  }
}
.interview .interviews li:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 751px) {
  .interview .interviews li a {
    position: relative;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .interview .interviews li a:hover .interviews_figure img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.interview .interviews li .interviews_figure {
  position: relative;
  display: block;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .interview .interviews li .interviews_figure img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.interview .interviews li .interviewer {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
.interview .interviews li .interviewer .interviewer_job {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 13px;
  padding: 7px;
}
@media all and (min-width: 751px) {
  .interview .interviews li .interviewer .interviewer_job {
    font-size: 11px;
    padding: 6px 10px;
  }
}
.interview .interviews li .interviewer .interviewer_name {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  .interview .interviews li .interviewer .interviewer_name {
    font-size: 20px;
  }
}
.interview .interviews li .interview_title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .interview .interviews li .interview_title {
    font-size: 21px;
  }
}

/* crosstalk
---------------------------------------------------------- */
.crosstalk {
  padding: 40px 0 50px;
}
@media all and (min-width: 751px) {
  .crosstalk {
    padding: 118px 0 132px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .crosstalk .title_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.crosstalk .sec_copy {
  margin-bottom: 15px;
}
.crosstalk .crosstalk_item a {
  position: relative;
}
@media (min-width: 751px) and (hover: hover) {
  .crosstalk .crosstalk_item a:hover .crosstalk_figure img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media all and (min-width: 751px) {
  .crosstalk .crosstalk_item .crosstalk_figure {
    overflow: hidden;
    display: block;
  }
}
.crosstalk .crosstalk_item .crosstalk_figure img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.crosstalk .crosstalk_item .crosstalk_info {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 0 10px 15px;
}
@media all and (min-width: 751px) {
  .crosstalk .crosstalk_item .crosstalk_info {
    padding: 0 0 17px 17px;
  }
}
.crosstalk .crosstalk_item .crosstalk_info .crosstalk_cat {
  background-color: #B21E1E;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 7px;
  border-radius: 4px;
  margin-bottom: 7px;
}
@media all and (min-width: 751px) {
  .crosstalk .crosstalk_item .crosstalk_info .crosstalk_cat {
    font-size: 16px;
    padding: 6px 12px;
  }
}
.crosstalk .crosstalk_item .crosstalk_info .crosstalk_title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  .crosstalk .crosstalk_item .crosstalk_info .crosstalk_title {
    font-size: 24px;
    line-height: 1.6;
  }
}

/* 事業紹介・仕事を知る　共通
---------------------------------------------------------- */
.lead_sec {
  padding: 35px 0 50px;
}
@media all and (min-width: 751px) {
  .lead_sec {
    padding: 107px 0 70px;
  }
}
@media all and (min-width: 751px) {
  .lead_sec .title_wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
  }
}
.lead_sec .sec_copy {
  text-align: center;
  font-size: 22px;
  margin: 0;
}
@media all and (min-width: 751px) {
  .lead_sec .sec_copy {
    line-height: 1.8;
    font-size: 32px;
    margin-bottom: 0;
  }
}
@media all and (min-width: 751px) {
  .lead_sec .lead_img {
    max-width: 930px;
    margin: 0 auto;
  }
}
@media all and (min-width: 751px) {
  .lead_sec .lead_read {
    max-width: 720px;
    margin: 45px auto 0;
  }
}
.lead_sec .lead_read p {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
@media all and (max-width: 750px) {
  .lead_sec .lead_read p {
    margin-top: 15px;
  }
}
@media all and (min-width: 751px) {
  .lead_sec .lead_read p {
    font-size: 17px;
    line-height: 2;
  }
}

.contents_area {
  padding: 45px 0 35px;
}
@media all and (min-width: 751px) {
  .contents_area {
    padding: 128px 0 140px;
  }
}
.contents_area .contents_item {
  background-color: #F0F2F5;
  margin-bottom: 40px;
  padding: 35px 20px;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item {
    padding: 63px 80px 74px;
    margin-bottom: 80px;
  }
}
.contents_area .contents_item:last-child {
  margin-bottom: 0;
}
.contents_area .contents_item .contents_header {
  margin-bottom: 17px;
}
@media all and (max-width: 750px) {
  .contents_area .contents_item .contents_header {
    text-align: center;
  }
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_header {
    margin-bottom: 38px;
  }
}
.contents_area .contents_item .contents_header .contents_cat {
  display: inline-block;
  background: #033C84;
  color: #fff;
  font-size: 16px;
  padding: 4px 8px;
  margin-bottom: 9px;
  font-weight: bold;
  border-radius: 2px;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_header .contents_cat {
    font-size: 24px;
    padding: 5px 11px;
    margin-bottom: 14px;
  }
}
.contents_area .contents_item .contents_header .contents_title {
  color: #222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_header .contents_title {
    font-size: 32px;
  }
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 40px;
  }
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_detail .contents_img {
    width: 52.3%;
  }
}
.contents_area .contents_item .contents_detail .contents_read {
  color: #222;
}
@media all and (max-width: 750px) {
  .contents_area .contents_item .contents_detail .contents_read {
    margin-top: 25px;
  }
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_detail .contents_read {
    width: 43.2%;
    padding-top: 15px;
  }
}
.contents_area .contents_item .contents_detail .contents_read p {
  font-size: 14px;
  line-height: 1.8;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_detail .contents_read p {
    font-size: 16px;
    line-height: 2;
  }
}
.contents_area .contents_item .contents_note {
  padding: 16px 17px;
  margin-top: 25px;
  background: #fff;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note {
    margin-top: 40px;
    padding: 35px 40px;
  }
}
.contents_area .contents_item .contents_note.blue_note {
  background-color: #dbe2eb;
}
.contents_area .contents_item .contents_note.blue_note ul li {
  border-bottom-color: #6E85A2;
}
.contents_area .contents_item .contents_note .note_title {
  color: #222;
  font-size: 16px;
  font-weight: bold;
  padding-left: 8px;
  position: relative;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note .note_title {
    font-size: 22px;
    padding-left: 10px;
    margin-bottom: 5px;
  }
}
.contents_area .contents_item .contents_note .note_title::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #033C84;
  width: 3px;
  height: 18px;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note .note_title::before {
    width: 4px;
    height: 25px;
    top: 5px;
  }
}
.contents_area .contents_item .contents_note .note_copy {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin: 10px 0 0;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note .note_copy {
    font-size: 18px;
    margin: 20px 0 5px;
  }
}
.contents_area .contents_item .contents_note ul li {
  color: #222;
  border-bottom: 1px dashed #C1BBB5;
  position: relative;
  padding: 15px 0 15px 15px;
  font-size: 13px;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note ul li {
    font-size: 17px;
    line-height: 2;
  }
}
.contents_area .contents_item .contents_note ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contents_area .contents_item .contents_note ul li::before {
  content: "";
  background-color: #222;
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  top: 21px;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note ul li::before {
    width: 6px;
    height: 6px;
    top: 28px;
  }
}
.contents_area .contents_item .contents_note .note_detail {
  background-color: #F7F7F7;
  border-radius: 10px;
  margin-top: 17px;
  padding: 20px 15px;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note .note_detail {
    margin-top: 45px;
    padding: 42px 40px;
  }
}
.contents_area .contents_item .contents_note .note_detail p {
  color: #222;
  font-size: 12px;
  line-height: 2;
}
@media all and (min-width: 751px) {
  .contents_area .contents_item .contents_note .note_detail p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* アニメーション
---------------------------------------------------------- */
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToLT {
  0% {
    clip-path: inset(100% 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToLT {
  0% {
    clip-path: inset(100% 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToRB {
  0% {
    clip-path: inset(0 100% 100% 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToRB {
  0% {
    clip-path: inset(0 100% 100% 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.fadeUp.scroll_active {
  -webkit-animation: fadeUpAnime 0.5s forwards;
  animation: fadeUpAnime 0.5s forwards;
  opacity: 0;
}

.fadeLeft.scroll_active {
  -webkit-animation: fadeLeftAnime 0.8s forwards;
  animation: fadeLeftAnime 0.8s forwards;
  opacity: 0;
}

.fadeRight.scroll_active {
  -webkit-animation: fadeRightAnime 0.8s forwards;
  animation: fadeRightAnime 0.8s forwards;
  opacity: 0;
}

.fadeIn.scroll_active {
  -webkit-animation: fadeInAnime 0.6s forwards;
  animation: fadeInAnime 0.6s forwards;
  opacity: 0;
}

.delay02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

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

@media all and (min-width: 751px) {
  .delay02_pc {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
  .delay04_pc {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  .delay06_pc {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  .delay08_pc {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
}
.js_scroll[class*=fade] {
  opacity: 0;
}

html {
  -webkit-animation: fadeInAnime 0.8s forwards;
          animation: fadeInAnime 0.8s forwards;
  opacity: 0;
}

/* 非表示
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .for_sp {
    display: none;
  }
}

@media all and (max-width: 750px) {
  .for_pc {
    display: none;
  }
}

/* scroll hint
---------------------------------------------------------- */
@media all and (max-width: 750px) {
  .js-scrollable {
    padding-bottom: 18px;
  }
  .js-scrollable img {
    width: auto;
    height: 340px;
  }
  .js-scrollable .scroll-hint-icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
  }
}
@media all and (max-width: 1000px) {
  .no-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
}

@media all and (max-width: 1000px) {
  .gnav_scroll_container {
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media all and (min-width: 751px) {
  .gnav {
    margin-right: 45px;
  }
}
@media all and (min-width: 751px) and (max-width: 1100px) {
  .gnav {
    margin-right: 20px;
  }
}
@media all and (max-width: 1000px) {
  .gnav {
    position: fixed;
    width: 100%;
    top: var(--header_height);
    left: 100%;
    bottom: 0;
    z-index: 2000;
    background: url(../images/common/bg.webp) no-repeat center/cover;
    margin: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: env(safe-area-inset-bottom);
  }
}
@media all and (min-width: 751px) {
  .gnav .gnav_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 20px;
  }
}
@media all and (max-width: 1000px) {
  .gnav .gnav_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
  }
}
.gnav .gnav_links li a {
  font-size: 13px;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
}
.gnav .gnav_links li a .line {
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom 2px;
  background-size: 0% 1.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 751px) and (hover: hover) {
  .gnav .gnav_links li a:hover .line {
    background-size: 100% 1.2px;
  }
}
@media all and (max-width: 1100px) {
  .gnav .gnav_links li a {
    font-size: 12px;
  }
}
@media all and (max-width: 1000px) {
  .gnav .gnav_links li a {
    position: relative;
    color: #222;
    padding: 20px 30px;
    font-size: 18px;
    border-bottom: 1px solid #cad2dd;
  }
}
@media all and (max-width: 1000px) {
  .gnav .gnav_links li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg) translateX(-10px);
            transform: rotate(45deg) translateX(-10px);
  }
}
@media all and (min-width: 751px) {
  .gnav .entry, .gnav .footer {
    display: none;
  }
}
@media all and (max-width: 1000px) {
  .gnav .entry, .gnav .footer {
    display: block;
  }
}

@media all and (max-width: 1000px) {
  .nav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.nav_wrap .common_btn {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 27px;
  max-width: 100px;
}
@media all and (min-width: 751px) {
  .nav_wrap .common_btn {
    font-size: 15px;
    padding: 9px 35px 8px;
    max-width: 120px;
  }
}
.nav_wrap .navBt {
  width: 38px;
  height: 44px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 14px;
}
@media all and (min-width: 751px) {
  .nav_wrap .navBt {
    display: none;
  }
}
@media all and (max-width: 1000px) {
  .nav_wrap .navBt {
    display: block;
  }
}
.nav_wrap .navBt span {
  display: block;
  height: 2px;
  background: #fff;
  width: 25px;
  position: absolute;
  left: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_wrap .navBt span:nth-child(1) {
  top: 0;
  -webkit-transform: translateY(13px);
          transform: translateY(13px);
}
.nav_wrap .navBt span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav_wrap .navBt span:nth-child(3) {
  bottom: 0;
  -webkit-transform: translateY(-13px);
          transform: translateY(-13px);
}

@media all and (max-width: 1000px) {
  .nav_open {
    overflow: hidden;
  }
}
.nav_open .navBt span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nav_open .navBt span:nth-child(2) {
  opacity: 0;
}
.nav_open .navBt span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media all and (max-width: 1000px) {
  .nav_open .gnav {
    top: var(--header_height);
    left: 0;
    overflow-y: scroll;
  }
}

/* entry
---------------------------------------------------------- */
.entry {
  background-image: url(../images/common/entry_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 36px 20px 26px;
}
@media all and (min-width: 751px) {
  .entry {
    padding: 88px 0 72px;
  }
}
.entry .catch_img {
  max-width: 256px;
  margin: 0 auto 22px;
}
@media all and (min-width: 751px) {
  .entry .catch_img {
    max-width: 549px;
    margin: 0 auto 36px;
  }
}
.entry .btn_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.entry .common_btn {
  font-size: 16px;
  padding: 8px 10px 10px;
  font-family: "Roboto", sans-serif;
}
@media all and (max-width: 750px) {
  .entry .common_btn {
    text-align: center;
    max-width: 128px;
  }
}
@media all and (min-width: 751px) {
  .entry .common_btn {
    font-size: 20px;
    padding: 15px 60px;
  }
}
.entry .link {
  display: block;
  text-align: center;
  font-weight: bold;
  color: #C7C7C7;
  text-decoration: underline;
  letter-spacing: 0.03em;
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  .entry .link {
    font-size: 15px;
    margin-top: 20px;
  }
}

/* footer
---------------------------------------------------------- */
.footer {
  padding: 48px 0 42px;
}
@media all and (min-width: 751px) {
  .footer {
    padding: 60px 0 27px;
  }
}

.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
  margin-bottom: 20px;
}
.sns li a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 751px) and (hover: hover) {
  .sns li a:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.sns .youtube {
  width: 21px;
}
.sns .x {
  width: 15px;
}
.sns .insta {
  width: 18px;
}

.company_name {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.company_info {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.8;
}
.company_info > p:first-child {
  margin-bottom: 10px;
}

.company_privacy {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 17px;
}
.company_privacy a {
  text-decoration: underline;
}
@media (min-width: 751px) and (hover: hover) {
  .company_privacy a:hover {
    text-decoration: none;
  }
}

.copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media all and (max-width: 750px) {
  .copyright {
    width: calc(100% + 40px);
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@media all and (min-width: 751px) {
  .copyright {
    margin-top: 65px;
    padding-top: 22px;
  }
}
/*# sourceMappingURL=main.css.map */