@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	font
------------------------------------------*/
body {
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.f-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.f-cormorant {
  font-family: "Cormorant Garamond", serif;
}

.f-cormorantIn {
  font-family: "Cormorant Infant", serif;
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #111;
  --color-red: #e50012;
  --bg--color: #f8f7f2;
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}
/*------------------------------------------
	frame
------------------------------------------*/
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 374px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	scroll action (GSAP制御)
------------------------------------------*/
.js-scroll {
  /* 初期状態のみ定義（GSAPがアニメーションを制御） */
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  /*------------------------------------------
    フェードインアップ
  ------------------------------------------*/
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll {
  /*------------------------------------------
    フェードインのみ
  ------------------------------------------*/
}
.js-scroll.is-fadeIn {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  position: relative;
  z-index: 9990;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  width: 240px;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__logo img {
  width: 100%;
}
.l-header-btns {
  width: min(100% - 300px, 170px);
  position: fixed;
  top: 0;
  right: 60px;
  z-index: 9993;
}
.l-header-btns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header-btns__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
}
.l-header-btns__item a {
  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;
  height: 60px;
  padding: 0 10px;
  color: #fff;
  border-radius: 999px;
}
.l-header-btns__item:nth-of-type(1) a {
  background: #4dbfaa;
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    position: fixed;
    top: 20px;
    left: 30px;
  }
  .l-header-btns {
    position: fixed;
    top: 20px;
  }
  .l-header-btns__item a:hover {
    opacity: 1;
  }
  .l-header-btns__item:nth-of-type(1) a:hover {
    background-color: rgb(57.3884297521, 159.6115702479, 140.7809917355);
  }
  .l-header-btns__item:nth-of-type(2) a:hover {
    background-color: rgb(50.6024096386, 132.4096385542, 159.3975903614);
  }
  .l-header-btns__item:nth-of-type(3) a:hover {
    background-color: rgb(25.5, 25.5, 25.5);
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 180px;
    position: relative;
    top: 10px;
    left: 10px;
  }
  .l-header-btns {
    width: 100%;
    height: 50px;
    top: auto;
    right: 0;
    bottom: -50px;
    -webkit-transition: bottom 0.3s;
    transition: bottom 0.3s;
  }
  .l-header-btns.is-show {
    bottom: 0;
  }
  .l-header-btns-list {
    height: 100%;
  }
  .l-header-btns__item {
    height: 100%;
    font-size: min(5vw, 15px);
  }
  .l-header-btns__item a {
    height: 100%;
    padding: 0 5px;
    border-radius: 0;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #42a3c3;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
.l-footer a,
.l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a,
.l-footer li,
.l-footer div,
.l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #fff;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 500;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.1em !important;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 20px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed #fff;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #111;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 70px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 9992;
  top: 20px;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  border-radius: 10px;
  background: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: 21px;
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: 21px;
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-225deg);
          transform: translateY(8px) rotate(-225deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.gnavBtn.is-close span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(225deg);
          transform: translateY(-8px) rotate(225deg);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    top: 0;
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 130px 50px 50px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list__item {
  border-bottom: 1px dashed #42a3c3;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  color: #42a3c3;
  font-size: 16px;
}
.l-nav-list__item-small {
  font-size: 14px;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #42a3c3;
  border-bottom: 2px solid #42a3c3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav-list__item a:hover {
  opacity: 1;
  color: #42a3c3;
}
.l-nav-list__item a:hover::after {
  top: 50%;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 70px 20px 80px;
  }
  .l-nav-list__item {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .l-nav-list__item-en {
    font-size: 11px;
  }
  .l-nav-list__item-small {
    font-size: 12px;
  }
  .l-nav-list__item a {
    padding: 10px 15px 10px 0;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  margin-top: 140px;
}
.l-mv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-top: 80px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #111;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-top: 10px;
  color: #42a3c3;
  font-weight: 400;
  font-size: 140px;
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 14px;
  }
  .c-tit01__en {
    margin-bottom: 16px;
    font-size: 44px;
  }
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
  -webkit-animation: tabFadeIn 0.6s ease forwards;
          animation: tabFadeIn 0.6s ease forwards;
}

@-webkit-keyframes tabFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.btn-modal-entry {
  margin: 56px auto 0;
  width: min(100%, 250px);
}
.btn-modal-entry__item {
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  letter-spacing: 0;
}
.btn-modal-entry__item a {
  padding: 0 70px 20px 20px;
  display: block;
  color: #000 !important;
  position: relative;
}
.btn-modal-entry__item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  position: absolute;
  top: -5px;
  right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .btn-modal-entry__item a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: var(--color-red);
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    pointer-events: none;
  }
  .btn-modal-entry__item a:hover {
    opacity: 1;
    color: var(--color-red) !important;
  }
  .btn-modal-entry__item a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media screen and (max-width: 768px) {
  .btn-modal-entry {
    display: block;
    max-width: none;
    width: min(100%, 220px);
    margin: 30px auto 0 !important;
  }
  .btn-modal-entry__item + .btn-modal-entry__item {
    margin-top: 30px;
  }
  .btn-modal-entry__item a {
    padding: 0 0 15px;
  }
}

/*	popup - js
------------------------------------------*/
body .mfp-bg {
  z-index: 9991;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  position: static;
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 20px !important;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #404040;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: min(100% - 40px, 180px);
  border: 1px solid #111;
  height: 44px;
  margin: 20px auto 0;
  padding: 0;
  border-radius: 999px;
  font-weight: 400;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    opacity: 0.7;
  }
}

.modalClose02__img {
  width: 20px;
}

/*	js - splide
------------------------------------------*/
.c-slider01-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 24px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.c-slider01-nav .my-carousel-progress {
  background: #eaeaea;
}
.c-slider01-nav .my-carousel-progress-bar {
  background: var(--color-red);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.c-slider01-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.c-slider01-nav .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-slider01-nav .splide__arrow svg {
  display: none;
}
.c-slider01-nav .splide__arrow::before {
  content: "";
  display: block;
  width: 17px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-slider01-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-slider01-nav .splide__arrow:hover {
  background: #fff;
}
.c-slider01-nav .splide__arrow:hover::before {
  background: var(--color-red);
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 180px 160px;
  background: url("../img/bg_deco01.svg") no-repeat center bottom/1160px;
}
.secMessage-inner {
  max-width: 1080px;
  display: -ms-grid;
  display: grid;
}
.secMessage__secTit {
  margin-bottom: 64px;
}
.secMessage-txtBox {
  text-align: center;
}
.secMessage-imgBox {
  grid-area: img;
  margin-top: 10px;
  position: relative;
}
.secMessage-imgBox::before {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  left: 15%;
  width: 100%;
  height: 592px;
  background: var(--bg--color);
  z-index: -1;
}
.secMessage-imgBox img {
  display: block;
}
.secMessage__txt {
  font-weight: 500;
  font-size: 18px;
  line-height: 204%;
  letter-spacing: 0;
}
.secMessage__txt span {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(229, 0, 18, 0.1)));
  background: linear-gradient(transparent 75%, rgba(229, 0, 18, 0.1) 75%);
}
.secMessage__txt + .secMessage__txt {
  margin-top: 32px;
}
.secMessage__img {
  width: 100%;
}
.secMessage-list {
  margin: 40px auto;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  width: min(100%, 680px);
}
.secMessage-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.secMessage-list__item__num {
  font-size: 70px;
  color: #4dbfaa;
  line-height: 110%;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}
.secMessage-list__item__txt {
  font-weight: 700;
  font-size: 24px;
  line-height: 185%;
  letter-spacing: 0;
}
.secMessage-list__highlight {
  background-image: linear-gradient(247deg, rgba(77, 191, 170, 0.4) 39.97%, rgba(66, 163, 195, 0.4) 73.69%);
  background-repeat: no-repeat;
  background-size: 100% 0.55em;
  background-position: 0 0.92em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMessage-point {
  margin-top: 120px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 780px;
  grid-template-columns: 300px 780px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 5%, var(--bg--color) 3%, var(--bg--color) 95%, rgb(255, 255, 255) 95%);
}
.secMessage-point__secTit {
  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;
  text-align: center;
  font-size: 24px;
  line-height: 200%;
  letter-spacing: 0;
  padding: 0 42px;
  width: 100%;
}
.secMessage-point-list {
  background: #fbfbf9;
  padding: 42px 64px;
}
.secMessage-point-list__item {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0;
  position: relative;
  padding-left: 40px;
  font-weight: 500;
}
.secMessage-point-list__item + .secMessage-point-list__item {
  margin-top: 10px;
}
.secMessage-point-list__item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/ico_check.svg") no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.2em;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 40px 60px;
    background: url("../img/bg_deco01.svg") no-repeat center bottom/390px;
    overflow: hidden;
  }
  .secMessage-inner {
    display: block;
  }
  .secMessage__secTit {
    margin-bottom: 40px;
    grid-area: secTit;
  }
  .secMessage__txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 200%;
    letter-spacing: 0;
  }
  .secMessage__txt span {
    font-weight: 700;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(229, 0, 18, 0.1)));
    background: linear-gradient(transparent 75%, rgba(229, 0, 18, 0.1) 75%);
  }
  .secMessage__txt + .secMessage__txt {
    margin-top: 32px;
  }
  .secMessage__img {
    margin-top: 40px;
    width: 100%;
  }
  .secMessage-imgBox::before {
    content: "";
    display: block;
    position: absolute;
    top: 15%;
    left: 15%;
    width: 100%;
    height: 64%;
    background: var(--bg--color);
    z-index: -1;
  }
  .secMessage-imgBox img {
    display: block;
  }
  .secMessage-list {
    margin: 28px 0 36px;
    width: 100%;
    gap: 20px;
  }
  .secMessage-list__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .secMessage-list__item__num {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 52px;
    font-size: 32px;
    line-height: 1;
    padding-top: 0.1em;
  }
  .secMessage-list__item__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
  .secMessage-list__highlight {
    background-size: 100% 0.48em;
    background-position: 0 0.88em;
  }
  .secMessage-point {
    margin-top: 80px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secMessage-point__secTit {
    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;
    text-align: center;
    font-size: 20px;
    line-height: 200%;
    letter-spacing: 0;
    padding: 24px;
    width: 100%;
  }
  .secMessage-point-list {
    background: #fbfbf9;
    padding: 24px 20px;
  }
  .secMessage-point-list__item {
    font-size: 15px;
    line-height: 185%;
    letter-spacing: 0;
    position: relative;
    padding-left: 40px;
    font-weight: 500;
  }
  .secMessage-point-list__item + .secMessage-point-list__item {
    margin-top: 16px;
  }
  .secMessage-point-list__item::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../img/ico_check.svg") no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 0.2em;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 120px 100px;
  background: url("../img/bg_deco02.png") no-repeat right calc(50% - 330px) bottom 60px/401px, -webkit-gradient(linear, left top, left bottom, from(rgba(165, 231, 239, 0.3)), to(rgba(255, 255, 255, 0.3)));
  background: url("../img/bg_deco02.png") no-repeat right calc(50% - 330px) bottom 60px/401px, linear-gradient(180deg, rgba(165, 231, 239, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.secJob__secTit {
  margin-bottom: 80px;
}
.secJob-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px 30px;
}
.secJob-list__item {
  min-width: 0;
}
.secJob-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secJob-card__img {
  aspect-ratio: 340/220;
  overflow: hidden;
}
.secJob-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secJob-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.secJob-card__tit {
  color: #42a3c3;
  margin-top: 22px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.secJob-card__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0;
  margin-bottom: 28px;
}
.secJob-card__btnWrap {
  margin-top: auto;
}
.secJob-card__btn {
  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;
  width: 100%;
  min-height: 56px;
  padding: 12px 49px;
  border: 1px solid #42a3c3;
  border-radius: 200px;
  background: #fff;
  color: #42a3c3 !important;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.secJob-card__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 17px;
  height: 12px;
  background: url("../img/ico_arrow02.svg") no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
@media screen and (min-width: 769px) {
  .secJob-card__btn:hover {
    background: #42a3c3;
    border-color: #42a3c3;
    color: #fff !important;
    opacity: 1;
  }
  .secJob-card__btn:hover::after {
    background-image: url("../img/ico_arrow01.svg");
  }
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 60px 240px;
    background: url("../img/bg_deco02.png") no-repeat center bottom 0/201px, -webkit-gradient(linear, left top, left bottom, from(rgba(165, 231, 239, 0.3)), to(rgba(255, 255, 255, 0.3)));
    background: url("../img/bg_deco02.png") no-repeat center bottom 0/201px, linear-gradient(180deg, rgba(165, 231, 239, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
  }
  .secJob-card__tit {
    margin-top: 16px;
    font-size: 18px;
  }
  .secJob-card__txt {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .secJob-card__btn {
    min-height: 52px;
    font-size: 15px;
    padding: 12px 47px;
  }
  .secJob-card__btn::after {
    right: 20px;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  padding-block: 140px;
  position: relative;
  overflow: visible;
}
.secVoice::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 60px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(100vw, 3000px);
  aspect-ratio: 1440/681;
  background: url("../img/bg_welfare.svg") no-repeat center/100% 100%;
  z-index: -1;
  pointer-events: none;
}
.secVoice__secTit {
  margin-bottom: 80px;
}
.secVoice-list {
  max-width: 1080px;
  margin: 0 auto;
}
.secVoice-listWrap {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.secVoice-list__item a {
  display: block;
}
.secVoice-list-imgBox {
  overflow: hidden;
  margin-bottom: -20px;
  border-radius: 50%;
  padding: 0 15px;
}
.secVoice-list-imgBox img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.secVoice-list-txtBox {
  position: relative;
}
.secVoice-list__at {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--bg--color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: absolute;
  left: 0;
  bottom: calc(100% + 15px);
}
.secVoice-list__tit {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 2.2;
}
.secVoice-list__tit .bg {
  padding: 6px 16px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secVoice-list__label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.secVoice-list__prof {
  font-size: 14px;
  letter-spacing: 0;
}
.secVoice-list__name {
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 24px;
}
.secVoice-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 7px;
}
.secVoice-list__btnWrap {
  position: absolute;
  right: 50px;
  bottom: 7px;
}
.secVoice-list__ico {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d9d9d9;
  color: var(--color-red);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -50px;
  bottom: -7px;
}
.secVoice-list__ico::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.secVoice-list .c-slider01-nav {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .secVoice-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .secVoice-list__item a:hover .secInterview-list-imgBox img {
    border-radius: 50%;
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  .secVoice-list__item a:hover .secInterview-list__ico {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secVoice {
    margin-bottom: 0;
    padding-block: 60px;
  }
  .secVoice::before {
    top: calc(100% + 20px);
  }
  .secVoice__secTit {
    margin-bottom: 40px;
  }
  .secVoice-list {
    max-width: auto;
  }
  .secVoice-listWrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 0;
  }
  .secVoice-list-imgBox {
    margin-bottom: -30px;
  }
  .secVoice-list__tit {
    font-size: 18px;
    bottom: calc(100% + 10px);
  }
  .secVoice-list__tit .bg {
    padding: 5px 10px;
  }
  .secVoice-list__at {
    font-size: 15px;
  }
  .secVoice-list__prof {
    font-size: 12px;
  }
  .secVoice-list__ico {
    width: 35px;
  }
  .secVoice-list .c-slider01-nav {
    margin-top: 30px;
  }
}

.js-voice-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 60px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-voice-slider .my-carousel-progress {
  background: #d8d8d8;
}
.js-voice-slider .my-carousel-progress-bar {
  background: #4dbfaa;
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-voice-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-voice-slider .splide__arrow {
  width: 100%;
  aspect-ratio: 1/1;
  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;
  padding: 0;
  background: #4dbfaa;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-voice-slider .splide__arrow svg {
  display: none;
}
.js-voice-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
}
.js-voice-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-voice-slider .splide__arrow:hover {
    background: #42a3c3;
  }
}
@media screen and (max-width: 768px) {
  .js-voice-slider-nav {
    margin-top: 30px;
  }
}

.secInterview-content {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 0 0 60px;
  background: #fff;
  position: relative;
}
.secInterview-content-top {
  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;
  gap: 36px;
  margin-bottom: 20px;
  padding: 40px 60px 40px;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 34%;
  margin-right: 60px;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  position: relative;
  z-index: 2;
}
.secInterview-content-top-profBox {
  margin-top: 20px;
}
.secInterview-content-top__at {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: var(--bg--color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  bottom: calc(100% + 15px);
}
.secInterview-content-top__tit {
  width: 100%;
  background: linear-gradient(247deg, #4dbfaa 39.97%, #42a3c3 73.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 150%;
}
.secInterview-content-top__label {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
}
.secInterview-content-top__prof {
  font-size: 16px;
  letter-spacing: 0;
}
.secInterview-content-top__name {
  font-size: 16px;
  letter-spacing: 0;
  margin-top: 24px;
}
.secInterview-content-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 7px;
}
.secInterview-content-top__btnWrap {
  position: absolute;
  right: 50px;
  bottom: 7px;
}
.secInterview-content-inner {
  width: min(100% - 60px, 680px);
  margin: 0 auto;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  position: relative;
}
.secInterview-content-q__tit::after {
  content: "Q";
  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;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(247deg, #4dbfaa 39.97%, #42a3c3 73.69%);
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q-txtBox {
  margin-bottom: 24px;
  padding: 40px;
  background: rgba(165, 231, 239, 0.1);
  font-size: 15px;
  font-weight: 400;
}
.secInterview-content-q-txtBox:last-of-type {
  margin-bottom: 0;
}
.secInterview-content-q__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 40px;
  }
  .secInterview-content-top {
    margin-bottom: 40px;
    display: block;
    padding: 20px 10px 0;
  }
  .secInterview-content-top__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    margin: 0 auto;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - 20px);
    margin: 0px auto 0;
    text-align: center;
  }
  .secInterview-content-top__at {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    line-height: 1.5;
    bottom: calc(100% + 15px);
  }
  .secInterview-content-top__tit {
    width: 100%;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0;
    line-height: 1.6;
  }
  .secInterview-content-top__tit .bg {
    padding: 6px 16px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  .secInterview-content-top__label {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
  }
  .secInterview-content-top__prof {
    font-size: 14px;
    letter-spacing: 0;
  }
  .secInterview-content-top__name {
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 16px;
  }
  .secInterview-content-top__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 7px;
  }
  .secInterview-content-top__btnWrap {
    position: absolute;
    right: 50px;
    bottom: 7px;
  }
  .secInterview-content-inner {
    width: 100%;
    padding: 0 20px;
  }
  .secInterview-content-q {
    margin-bottom: 20px;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 44px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .secInterview-content-q-txtBox {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 13px;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  position: relative;
  padding-block: 120px 100px;
  background: transparent;
}
.secWelfare__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .secWelfare {
    padding-block: 60px 50px;
  }
  .secWelfare__secTit {
    margin-bottom: 28px;
  }
  .secWelfare .welfare__tab__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .secWelfare .welfare__tab__list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 0;
    -ms-flex-line-pack: start;
        align-content: start;
    grid-auto-rows: auto;
  }
  .secWelfare .welfare__tab__item {
    width: 100%;
    min-height: 96px;
    border-radius: 12px;
    border: 2px solid #a7e7e0;
    margin-bottom: 0;
    background-color: #fff !important;
  }
  .secWelfare .welfare__tab__item.tab--active {
    border-color: #4dbfaa;
    background: rgba(77, 191, 170, 0.2) !important;
  }
  .secWelfare .welfare__tab__btn {
    padding: 10px 4px 8px;
  }
  .secWelfare .welfare__tab__icon {
    width: 44px;
    height: 44px;
  }
  .secWelfare .welfare__tab__label {
    min-height: auto;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    color: #111 !important;
  }
  .secWelfare .welfare__balloon {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .secWelfare .welfare__balloon .tab__block {
    padding: 20px;
  }
  .secWelfare .welfare__balloon .tab__block::after {
    display: none;
  }
  .secWelfare .welfare__balloon__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 100%;
    margin: 0 0 12px;
  }
  .secWelfare .welfare__balloon__icon img {
    display: block;
    width: 72px;
    height: auto;
  }
  .secWelfare .welfare__balloon__block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .secWelfare .welfare__mhd {
    font-size: 21px;
    width: 100%;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .secWelfare .welfare__txt {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    width: 100%;
    margin-top: 0;
    padding: 0;
    text-align: left;
  }
  .secWelfare .welfare__txt span {
    font-size: 12px;
  }
}

.tab__container .tab__block {
  display: none;
}
.tab__container .tab__block.tab--active {
  display: block;
}

.welfare__container {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.welfare__container::before {
  content: "";
  display: block;
  background: url(../img/welfare_img.svg) no-repeat 0 0/100%;
  width: 175px;
  height: 201px;
  position: absolute;
  top: -87px;
  right: 68px;
}

.welfare__heading {
  margin-bottom: 51px;
}

.welfare__tab__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.welfare__tab__list {
  width: min(100% - 40px, 580px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 11px;
  -ms-flex-line-pack: start;
      align-content: start;
  grid-auto-rows: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.welfare__tab__item {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border: 2px solid #a7e7e0;
  cursor: pointer;
  overflow: hidden;
}
.welfare__tab__item:nth-child(3n) {
  margin-right: 0;
}
.welfare__tab__item.tab--active {
  background: rgba(77, 191, 170, 0.2);
}
.welfare__tab__item.tab--active .welfare__tab__img--on {
  display: block;
}
.welfare__tab__item.tab--active .welfare__tab__img--off {
  display: none;
}

.welfare__tab__btn {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px 8px 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.welfare__tab__icon {
  position: relative;
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.welfare__tab__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.welfare__tab__img--on {
  display: none;
}
.welfare__tab__img--off {
  display: block;
}

.welfare__tab__label {
  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;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 46px;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.375;
  text-align: center;
}

.welfare__balloon {
  width: 410px;
  margin-left: -6px;
  position: relative;
  display: -ms-grid;
  display: grid;
  align-self: flex-start;
}
.welfare__balloon .tab__block {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  position: relative;
  padding: 40px 48px 40px 40px;
  background-color: #a7e7e0;
  background-image: none;
  overflow: visible;
  border-radius: 16px;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.welfare__balloon .tab__block.tab--active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.welfare__balloon .tab__block::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 40px;
  height: 40px;
  background: url(../img/ico_fukidashi.svg) no-repeat center/contain;
  pointer-events: none;
}

.welfare__balloon__block {
  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;
  width: 100%;
  background: transparent;
}

.welfare__balloon__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0 0 20px;
}
.welfare__balloon__icon img {
  display: block;
  width: 150px;
  height: auto;
}

.welfare__mhd {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.welfare__txt {
  width: 100%;
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
}

.welfare__txt span {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .welfare__tab__item:hover {
    opacity: 0.6;
  }
}
/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 120px 140px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(165, 231, 239, 0.3)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(0deg, rgba(165, 231, 239, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
}
.secSearch__secTit {
  margin-bottom: 80px;
}
.secSearch-areaWrap {
  margin: -70px auto auto !important;
}
.secSearch-area__tit {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 600;
  display: inline-block;
  position: relative;
  top: 10px;
  left: 120px;
}
.secSearch-area__tit::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
  width: 4px;
  height: 40px;
  background: #42a3c3;
}
.secSearch-entry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  max-width: 960px;
  margin: 40px auto 0;
}
.secSearch-entry__item--employment .secSearch-dropdown__select {
  background-color: #42a3c3;
}
.secSearch-entry__item--job .secSearch-dropdown__select {
  background-color: #4dbfaa;
}
.secSearch-dropdown {
  position: relative;
}
.secSearch-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  z-index: 1;
}
.secSearch-dropdown__select {
  display: block;
  width: 100%;
  height: 80px;
  border: none;
  border-radius: 200px;
  padding: 20px 56px 20px 40px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.secSearch-dropdown__select::-ms-expand {
  display: none;
}
.secSearch-dropdown__select:hover {
  opacity: 0.9;
}
.secSearch-dropdown__select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.secSearch-dropdown__select option {
  color: #333;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .secSearch-dropdown__select:hover {
    opacity: 0.92;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 40px 60px;
  }
  .secSearch__secTit {
    margin-bottom: 40px;
  }
  .secSearch-areaWrap {
    margin: 40px auto auto !important;
  }
  .secSearch-area__tit {
    font-size: 18px;
    left: 10px;
  }
  .secSearch-entry {
    display: block;
    max-width: none;
    width: 100%;
    margin: 40px auto 40px !important;
  }
  .secSearch-entry__item + .secSearch-entry__item {
    margin-top: 20px;
  }
  .secSearch-dropdown::after {
    right: 20px;
  }
  .secSearch-dropdown__select {
    height: auto;
    min-height: 56px;
    padding: 16px 44px 16px 20px;
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */