@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;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --cv-height: 70px;
  --color-txt: #444;
  --color-orange: #ff8030;
  --color-apricot: #f8c395;
  --color-bg: #fff9ef;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
  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.5;
}

.f-zenmaru {
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.f-ubuntu {
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    position: fixed;
    top: 26px;
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: calc(var(--header-height) + 20px);
    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-inline: 15px 90px;
  }
  .l-header__logo {
    width: 200px;
  }
}

/*	.l-header-cv
------------------------------------------*/
.l-header-cv {
  width: 370px;
  height: var(--cv-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: fixed;
  top: 16px;
  right: 100px;
  z-index: 9992;
}
.l-header-cv__btn {
  --btnColor: var(--color-orange);
  --btnTextColor: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  border-radius: 100px;
  color: var(--btnTextColor);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
}
.l-header-cv__btn.is-light {
  --btnColor: var(--color-apricot);
  --btnTextColor: var(--color-txt);
}
.l-header-cv__btn a {
  height: 100%;
  padding-top: 3px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  background: var(--btnColor);
  border-radius: inherit;
}
.l-header-cv__btn-en {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .l-header-cv__btn a {
    border: 2px solid var(--btnColor);
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
  .l-header-cv__btn.is-light a:hover {
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .l-header-cv {
    width: calc(100% - 10px);
    gap: 5px;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .l-header-cv__btn {
    border-radius: 8px 8px 0 0;
    font-size: 13px;
  }
  .l-header-cv__btn a {
    padding-top: 2px;
  }
  .l-header-cv__btn-en {
    font-size: 18px;
  }
  .l-header-cv__btn:not(.is-light) a {
    border: 1px solid #fff;
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #ff8030;
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  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%;
}
.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: min(100%, 1100px);
  margin-inline: auto;
  padding: 45px 10px;
}
.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-weight: 400;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 25px;
  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: 400;
  font-size: 12px;
  text-align: center;
}
@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 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    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: #444;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  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: calc(var(--cv-height) + 10px);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 70px;
  aspect-ratio: 1/1;
  position: fixed;
  z-index: 9992;
  top: 16px;
  right: 20px;
  background: #444;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 37%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: calc(50% - 8px);
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: calc(50% - 8px);
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-225deg);
          transform: translateY(7px) 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: 10px;
    right: 10px;
  }
}

.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 100px;
  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 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.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;
  color: var(--color-orange);
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.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 (min-width: 769px) {
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 100px 20px calc(var(--cv-height) + 50px);
  }
  .l-nav-list__item {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
  .l-nav-list__item-en {
    font-size: 12px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 160px;
  background: url(../img/bg_mv01.svg) no-repeat left -11.5% top 36%/33.3%;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 2;
}
.l-mv__txt01 {
  font-weight: 700;
  font-size: max(37px, 3.7vw);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.l-mv__txt01 .bg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: max(3px, 0.3vw) max(8px, 0.8vw);
  background: #fff;
  border-radius: 8px;
}
.l-mv__txt01 .bg + .bg {
  margin-top: max(5px, 0.5vw);
}
.l-mv__txt01 .color {
  color: var(--color-orange);
}
.l-mv__txt02 {
  margin: max(55px, 5.5vw) auto 0 2%;
  font-weight: 700;
  font-size: max(13px, 1.24vw);
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.l-mv-imgBox {
  width: 70.8%;
  margin-inline: auto 0;
}
.l-mv-imgBox img {
  border-radius: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 0;
    padding-bottom: 62vw;
    background-position: left -120% bottom;
    background-size: 78%;
  }
  .l-mv-txtBox {
    left: 2.5%;
    bottom: 24vw;
  }
  .l-mv__txt01 {
    font-size: 6.5vw;
  }
  .l-mv__txt01 .bg {
    padding: 1.3vw 1vw 1.3vw 4vw;
  }
  .l-mv__txt01 .bg + .bg {
    margin-top: 1.3vw;
  }
  .l-mv__txt02 {
    margin: 10vw auto 0 6%;
    font-size: 3.7vw;
  }
  .l-mv-imgBox {
    width: 92.3%;
  }
  .l-mv-imgBox img {
    border-radius: 20px 0 0 20px;
  }
}

/*============================================================================================================
	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;
  gap: 10px;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.06em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: 4px;
  color: var(--color-orange);
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  font-family: "Ubuntu", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 7px;
    font-size: 26px;
  }
  .c-tit01__en {
    font-size: 12px;
  }
}

.c-btn01 {
  width: min(100%, 250px);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.c-btn01 a {
  min-height: 60px;
  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: 10px 30px;
  border-radius: inherit;
  background: var(--color-orange);
  position: relative;
}
.c-btn01 a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-btn01.is-external a {
  gap: 12px;
}
.c-btn01.is-external a::after {
  width: 16px;
  aspect-ratio: 16/12;
  -webkit-mask-image: url(../img/ico_external01.svg);
  mask-image: url(../img/ico_external01.svg);
  margin: 0;
  position: static;
}
@media screen and (min-width: 769px) {
  .c-btn01 a {
    border: 2px solid var(--color-orange);
  }
  .c-btn01 a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  --inner-width: min(100%, 1200px + (var(--inner-padding) * 2));
  overflow-x: clip;
  margin-bottom: 120px;
  padding-block: 0 80px;
  position: relative;
}
.secUs::before, .secUs::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secUs::before {
  width: 360px;
  aspect-ratio: 1/1;
  background: url(../img/bg_us01.svg) no-repeat center/contain;
  top: -240px;
  right: calc(50% - 800px);
}
.secUs::after {
  width: calc(50% + 360px);
  height: calc(100% - 60px);
  border-radius: 0 120px 120px 0;
  background: var(--color-bg);
  bottom: 0;
  left: 0;
}
.secUs-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px min(46.7%, 560px);
  grid-template-columns: 1fr min(46.7%, 560px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 20px;
}
.secUs-txtBox {
  width: min(100%, 560px);
  margin-inline: auto 0;
}
.secUs__secTit {
  margin-bottom: 85px;
}
.secUs__txt {
  line-height: 2.2;
}
.secUs__txt + .secUs__txt {
  margin-top: 32px;
}
.secUs__txt .line {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #ffd7b4), color-stop(30%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #ffd7b4 30%, rgba(255, 255, 255, 0) 30%);
  font-weight: 700;
}
.secUs__btn {
  margin-top: 32px;
}
.secUs-imgBox img {
  display: block;
  border-radius: 20px;
}
.secUs-imgBox img:nth-of-type(1) {
  width: 82.15%;
}
.secUs-imgBox img:nth-of-type(2) {
  width: 67.9%;
  margin: 7% 0 0 auto;
}
@media screen and (max-width: 768px) {
  .secUs {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secUs::before {
    width: 160px;
    top: -70px;
    right: -40px;
    opacity: 0.7;
  }
  .secUs::after {
    width: calc(100% - 30px);
    height: calc(100% - 120px);
    border-radius: 0 60px 60px 0;
  }
  .secUs-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secUs-txtBox {
    width: calc(100% - 20px);
    margin-inline: auto;
  }
  .secUs__secTit {
    margin-bottom: 40px;
  }
  .secUs__txt {
    font-size: min(4vw, 15px);
  }
  .secUs__txt + .secUs__txt {
    margin-top: 24px;
  }
  .secUs__btn {
    margin: 30px auto 0;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  padding-block: 0 140px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 348px;
  aspect-ratio: 348/242;
  background: url(../img/bg_job01.svg) no-repeat center/contain;
  position: absolute;
  top: -90px;
  right: calc(50% - 540px);
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 60px;
    padding-block: 80px;
  }
  .secJob::after {
    width: 140px;
    top: 30px;
    right: 15px;
  }
  .secJob__secTit {
    margin-bottom: 50px;
  }
}

/*	.secJob-set
------------------------------------------*/
@media screen and (max-width: 768px) {
  .secJob-set {
    scroll-margin-top: var(--header-height);
  }
  .secJob-set__back {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto 0;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  .secJob-set__back a {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: var(--color-orange);
    border-radius: inherit;
  }
  .secJob-set__back a::after {
    content: "";
    display: block;
    width: 7px;
    aspect-ratio: 7/13;
    background: url(../img/ico_arrow01.svg) no-repeat center;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/*	.secJob-nav
------------------------------------------*/
.secJob-nav {
  --navHeight: 80px;
  height: var(--navHeight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.secJob-nav__item {
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  height: calc(100% - 10px);
  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;
  background: var(--color-apricot);
  border-radius: 16px 16px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-nav__item.is-active {
  height: 100%;
  background: var(--color-orange);
}
@media screen and (max-width: 768px) {
  .secJob-nav {
    --navHeight: 60px;
    gap: 5px;
  }
  .secJob-nav__item {
    height: calc(100% - 5px);
    border-radius: 12px 12px 0 0;
    font-size: 18px;
  }
}

/*	.js-tab-content
------------------------------------------*/
.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

/*	.secJob-content
------------------------------------------*/
.secJob-contentWrap {
  padding: 40px;
  background: var(--color-bg);
  border-radius: 24px;
  position: relative;
}
.secJob-contentWrap::after {
  content: "";
  display: block;
  width: 216px;
  aspect-ratio: 216/235;
  background: url(../img/bg_job02.svg) no-repeat center/contain;
  position: absolute;
  left: calc(50% - 620px);
  bottom: -140px;
  pointer-events: none;
}
.secJob-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 42% 48px 1fr;
  grid-template-columns: 42% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 48px;
}
.secJob-content-top__tit {
  margin-bottom: 24px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.06em;
}
.secJob-content-top__tit .big {
  font-size: 1.33em;
}
.secJob-content-top__txt {
  line-height: 2;
}
.secJob-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 16px;
}
.secJob-content-sub {
  margin-top: 48px;
  padding: 55px 40px;
  background: #fff;
  border: 2px solid var(--color-orange);
  border-radius: 24px;
  position: relative;
}
.secJob-content-sub__tit {
  padding: 7px 30px;
  background: var(--color-orange);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.04em;
  position: absolute;
  top: -26px;
  left: 38px;
}
.secJob-content-flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
}
.secJob-content-flow-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.secJob-content-flow-list__item::after {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 12/24;
  background: url(../img/ico_arrow02.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: -12%;
}
.secJob-content-flow-list__item:last-of-type::after {
  content: none;
}
.secJob-content-flow-list__tit {
  margin-bottom: 15px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.06em;
  font-family: "Zen Maru Gothic", sans-serif;
}
.secJob-content-flow-list__txt {
  font-size: 14px;
  letter-spacing: 0;
}
.secJob-content-point-list {
  width: min(100%, 840px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
.secJob-content-point-list__item {
  padding-left: 1.9em;
  background: url(../img/ico_check01.svg) no-repeat left 0.2em/1.18em;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secJob-content-point-list__item .color {
  color: var(--color-orange);
}
.secJob-content__entry {
  width: min(100%, 320px);
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .secJob-content__entry a {
    min-height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .secJob-contentWrap {
    margin-inline: calc(var(--inner-padding) * -0.5);
    padding: 20px 20px 50px;
    border-radius: 12px;
  }
  .secJob-contentWrap::after {
    width: 100px;
    left: 0;
    bottom: -80px;
  }
  .secJob-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secJob-content-top__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secJob-content-sub {
    padding: 40px 20px 20px;
    border-radius: 12px;
  }
  .secJob-content-sub__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 20px;
    font-size: 20px;
    top: -22px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .secJob-content-flow-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .secJob-content-flow-list__item::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: auto;
    right: 0;
    left: 0;
    bottom: -45px;
    margin: auto;
  }
  .secJob-content-flow-list__tit {
    margin-bottom: 10px;
  }
  .secJob-content-point-list {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secJob-content-point-list__item {
    font-size: 16px;
  }
  .secJob-content__entry {
    margin-top: 30px;
  }
}

/*------------------------------------------
	.secPhoto
------------------------------------------*/
.secPhoto {
  overflow-x: clip;
  margin-bottom: 20px;
  padding-block: 0 120px;
  position: relative;
}
.secPhoto::before, .secPhoto::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secPhoto::before {
  width: 400px;
  background-image: url(../img/bg_photo01.svg);
  top: -80px;
  left: calc(50% - 800px);
}
.secPhoto::after {
  width: 404px;
  background-image: url(../img/bg_photo02.svg);
  right: calc(50% - 840px);
  bottom: 0;
}
.secPhoto-inner {
  width: min(100% - var(--inner-padding) * 2, 1280px);
  margin-inline: auto;
  padding-bottom: 90px;
  position: relative;
}
.secPhoto img {
  display: block;
  border-radius: 24px;
}
.secPhoto img:nth-of-type(1) {
  width: 34.375%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.secPhoto img:nth-of-type(2) {
  width: 70.3%;
  margin-inline: auto 0;
}
@media screen and (max-width: 768px) {
  .secPhoto {
    margin-bottom: 0;
    padding-block: 0 60px;
  }
  .secPhoto::before {
    width: 30%;
    top: -11%;
    left: -7%;
  }
  .secPhoto::after {
    width: 31%;
    right: -8%;
  }
  .secPhoto-inner {
    width: calc(100% - 20px);
    padding-bottom: 6.5%;
  }
  .secPhoto img {
    border-radius: 12px;
  }
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  padding-block: 0 120px;
}
.secEnvironment-titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
}
.secEnvironment__secTit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secEnvironment-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secEnvironment-list__item {
  overflow: clip;
  background: var(--color-bg);
  border-radius: 8px;
}
.secEnvironment-list__img {
  width: 100%;
}
.secEnvironment-list-txtBox {
  padding: 35px 20px 40px;
  position: relative;
}
.secEnvironment-list__num {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-apricot);
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
}
.secEnvironment-list__tit {
  margin-bottom: 20px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
}
.secEnvironment-list__txt {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0;
}
.secEnvironment__note {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
.secEnvironment__btn {
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) {
  .secEnvironment__lead {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 535px;
  }
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secEnvironment-titBox {
    display: block;
    margin-bottom: 40px;
  }
  .secEnvironment__secTit {
    margin-bottom: 30px;
  }
  .secEnvironment-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secEnvironment-list-txtBox {
    padding-block: 30px 25px;
  }
  .secEnvironment-list__num {
    width: 80px;
    font-size: 40px;
    top: -40px;
  }
  .secEnvironment-list__tit {
    margin-bottom: 13px;
    font-size: 24px;
  }
  .secEnvironment-list__txt {
    font-size: 14px;
  }
  .secEnvironment__note {
    font-size: 12px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  overflow-x: clip;
  margin-bottom: 145px;
  padding-block: 60px 0;
  position: relative;
}
.secInterview::before, .secInterview::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secInterview::before {
  width: calc(50% + 360px);
  height: calc(100% - 140px);
  background: var(--color-bg);
  border-radius: 120px 0 0 120px;
  top: 0;
  right: 0;
}
.secInterview::after {
  width: 212px;
  aspect-ratio: 212/224;
  background: url(../img/bg_interview01.svg) no-repeat center/contain;
  top: -37px;
  right: calc(50% - 540px);
}
.secInterview__secTit {
  margin-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secInterview::before {
    width: calc(100% - 10px);
    border-radius: 60px 0 0 60px;
  }
  .secInterview::after {
    width: 100px;
    top: -40px;
    right: 15px;
  }
  .secInterview__secTit {
    margin-bottom: 50px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secInterview-front__item {
  overflow: clip;
  border-radius: 0 0 24px 24px;
}
.secInterview-front__item a {
  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;
  border-radius: inherit;
}
.secInterview-front__img {
  width: 100%;
}
.secInterview-front-txtBox {
  -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;
  padding: 24px 30px 30px;
  background: #ff8c45;
  color: #fff;
  position: relative;
}
.secInterview-front-txtBox::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/ico_arrow03.svg);
  mask-image: url(../img/ico_arrow03.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;
  right: 32px;
  bottom: 48px;
}
.secInterview-front__tit {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.secInterview-front__tit + .secInterview-front__txt {
  margin-top: auto;
}
.secInterview-front__txt {
  font-size: 15px;
  line-height: 1.5;
}
.secInterview-front__txt + .secInterview-front__txt {
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .secInterview-front {
    width: min(100% - 20px, 280px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secInterview-front__item {
    border-radius: 0 0 12px 12px;
  }
  .secInterview-front__item a {
    display: block;
  }
  .secInterview-front-txtBox {
    display: block;
    padding: 20px 20px 25px;
  }
  .secInterview-front-txtBox::after {
    width: 20px;
    right: 25px;
    bottom: 30px;
  }
  .secInterview-front__tit {
    font-size: 17px;
  }
  .secInterview-front__txt {
    font-size: 14px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  overflow: clip;
  width: min(100%, 900px);
  margin-inline: auto;
  padding: 0 0 60px;
  background: #fff;
  border-radius: 24px;
  position: relative;
}
.secInterview-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 44.7%;
  grid-template-columns: 1fr 44.7%;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  padding: 60px 70px 0;
  background: var(--color-bg);
}
.secInterview-content-top-txtBox {
  padding-block: 10px;
}
.secInterview-content-top__tit {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 2.2;
  letter-spacing: 0;
}
.secInterview-content-top__tit .bg {
  padding: 5px 12px;
  background: var(--color-orange);
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__txt01 {
  font-size: 15px;
  line-height: 1.5;
}
.secInterview-content-top__txt02 {
  margin-top: 2px;
  font-size: 22px;
  line-height: 1.5;
}
.secInterview-content-top__img {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
}
.secInterview-content-q {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}
.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-left: 64px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  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;
  background: var(--color-orange);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 30px;
  background: var(--color-bg);
  border-radius: 20px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
.secInterview-content__entry {
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 30px;
    border-radius: 12px;
  }
  .secInterview-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    margin-bottom: 40px;
    padding: 30px 10px 20px;
  }
  .secInterview-content-top-txtBox {
    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;
    gap: 0 10px;
    margin-top: -5px;
    padding-block: 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .secInterview-content-top__tit {
    width: 100%;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secInterview-content-top__txt01 {
    font-size: 15px;
  }
  .secInterview-content-top__txt02 {
    margin-top: 0;
    font-size: 15px;
  }
  .secInterview-content-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: min(75%, 220px);
    margin-inline: auto;
  }
  .secInterview-content-q {
    width: calc(100% - 40px);
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secInterview-content-q__txt {
    padding: 20px;
    border-radius: 12px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
  .secInterview-content__entry {
    margin-top: 30px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  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: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #444;
  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;
}
.mfp-close.modalClose02 {
  position: static;
  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: min(100%, 250px);
  height: 60px;
  margin: 16px auto 0;
  padding: 0;
  border: 1px solid #444;
  border-radius: 100px;
  color: #444 !important;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #444;
    color: #fff !important;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 37px 120px;
  position: relative;
}
.secSearch::before, .secSearch::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secSearch::before {
  width: min(100%, 50% + 500px);
  height: calc(100% - 95px);
  background: var(--color-bg);
  border-radius: 0 120px 0 0;
  left: 0;
  bottom: 0;
}
.secSearch::after {
  width: 229px;
  aspect-ratio: 229/195;
  background: url(../img/bg_search01.svg) no-repeat center/contain;
  left: calc(50% - 245px);
  top: 0;
}
.secSearch__secTit {
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
  }
  .secSearch::before {
    width: calc(100% - 10px);
    height: calc(100% - 120px);
    border-radius: 0 60px 0 0;
  }
  .secSearch::after {
    width: 120px;
    right: 30px;
    top: 40px;
    left: auto;
  }
  .secSearch__secTit {
    margin-bottom: 50px;
  }
}

/*	.secSearch-sec
------------------------------------------*/
.secSearch-sec + .secSearch-sec {
  margin-top: 64px;
}
.secSearch-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 33px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.secSearch-sec__tit::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-orange);
}
.secSearch-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 27px 1fr 27px 1fr 27px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 27px;
}
.secSearch-sec-list__item {
  border-radius: 100px;
  color: var(--color-orange);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
}
.secSearch-sec-list__item a {
  min-height: 70px;
  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: 5px 30px;
  background: #fff;
  border-radius: inherit;
  border: 1px solid var(--color-orange);
  position: relative;
}
.secSearch-sec-list__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: var(--color-orange);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sec + .secSearch-sec {
    margin-top: 60px;
  }
  .secSearch-sec__tit {
    gap: 15px;
    margin-bottom: 25px;
  }
  .secSearch-sec__tit::before {
    width: 40px;
  }
  .secSearch-sec-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: 15px;
  }
  .secSearch-sec-list__item a {
    min-height: 60px;
    padding-inline: 20px;
  }
  .secSearch-sec-list__item a::after {
    width: 6px;
    right: 12px;
  }
}

/*	.secSearch-area
------------------------------------------*/
.secSearch-area-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 27px 1fr 27px 1fr 27px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 27px;
}
.secSearch-area-list__item {
  position: relative;
}
.secSearch-area-list__parent {
  cursor: pointer;
  min-height: 70px;
  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: 5px 30px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.secSearch-area-list__parent::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secSearch-area-list__parent.is-open {
  background: var(--color-orange);
  color: #fff;
}
.secSearch-area-list__parent.is-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.secSearch-area-list-child {
  display: none;
  width: 100%;
  overflow: auto;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
}
.secSearch-area-list-child__item {
  font-size: 14px;
  line-height: 1.4;
}
.secSearch-area-list-child__item + .secSearch-area-list-child__item {
  border-top: 1px solid var(--color-orange);
}
.secSearch-area-list-child__item a {
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px 5px 0;
  position: relative;
}
.secSearch-area-list-child__item a::after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 7/13;
  -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;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-area-list__parent:hover {
    background: var(--color-orange);
    color: #fff;
  }
  .secSearch-area-list-child__item a:hover {
    opacity: 1;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-area-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .secSearch-area-list__parent {
    min-height: 60px;
    font-size: 15px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  height: 440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/bg_entry01.webp) no-repeat center/cover;
}
.secEntry__secTit {
  margin-bottom: 45px;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.06em;
}
.secEntry__entry {
  margin-inline: auto;
  width: min(100%, 380px);
  font-size: 20px;
}
.secEntry__entry a {
  min-height: 80px;
  padding-inline: 35px;
}
.secEntry__entry a::after {
  right: 25px;
}
@media screen and (max-width: 768px) {
  .secEntry {
    height: auto;
    padding-block: 70px;
    display: block;
  }
  .secEntry__secTit {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .secEntry__entry a {
    min-height: 70px;
  }
}
/*# sourceMappingURL=style.css.map */