@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: 100px;
  --inner-width: min(100%, 1100px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --pagetop-size: 70px;
  --color-txt: #000;
  --color-red: #BC3624;
  --color-gold: #AC905F;
  --color-orange: #F0843F;
  --color-yellow: #FFC800;
  --color-beige: #FAF1E6;
}
@media screen and (min-width: 769px) {
  :root {
    --entry-width: 80px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 75px;
    --inner-padding: 25px;
    --entry-height: 60px;
    --cv-height: 60px;
    --pagetop-size: var(--cv-height);
  }
}
@media screen and (max-width: 374px) {
  :root {
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 185%;
  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.4;
}

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

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

/*------------------------------------------
	frame
------------------------------------------*/
body {
  background: var(--color-beige);
}
@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: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	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.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.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);
  }
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__txt {
  font-size: 14px;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 120px;
    padding: 0 40px 0;
  }
  .l-header.is-scroll {
    background: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    height: 80px;
    padding: 0 70px 0 10px;
  }
  .l-header__logo {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 155px 6px 90px;
    grid-template-columns: 155px 90px;
    gap: 6px;
  }
  .l-header__txt {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .l-header-btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-header__entry {
    width: 50%;
    border-bottom: none;
    position: fixed;
    z-index: 9990;
    bottom: 0;
    border-top: 1px solid;
    margin: auto;
    color: #fff;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
  }
  .l-header__entry:first-child {
    left: 0;
  }
  .l-header__entry:last-child {
    right: 0;
    border-left: 1px solid;
  }
  .l-header__entry 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: 54px;
    background: var(--color-red);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-txt);
  position: relative;
}
.l-footer p,
.l-footer li {
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "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: 50px 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-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: currentColor;
  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-size: 11px;
  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;
  }
  .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: var(--pagetop-size);
  height: var(--pagetop-size);
  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: var(--color-txt);
  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 {
    display: block !important;
    opacity: 1 !important;
    position: fixed !important;
    right: 15px;
    bottom: 20px !important;
    border-right: none;
    border-bottom: none;
    z-index: 9992;
  }
  .pagetop a {
    background: var(--color-orange);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
    color: #fff;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav__entry {
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}
.l-nav__entry 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: 50px;
  border-radius: 0 0 8px 8px;
  background: var(--color-txt);
}
.l-nav-btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
    position: relative;
    top: -14px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  .l-nav-list__item {
    text-align: center;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #fff;
  }
  .l-nav-list__item a {
    padding: 5px 0;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 1px;
    height: 1px;
    background: var(--color-red);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .l-nav-list__item a:hover::after {
    width: 100%;
    opacity: 1;
  }
  .l-nav__entry {
    width: 158px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
  .l-nav__entry a {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .l-nav__entry a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    -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;
  }
  .l-nav__entry a:hover {
    opacity: 1;
    letter-spacing: 0.1em;
    background-color: var(--color-red);
  }
  .l-nav__entry a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    background: var(--color-red);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) 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(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-orange);
    border-bottom: 2px solid var(--color-orange);
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-nav__entry {
    width: min(100%, 400px);
    margin: 30px auto 0;
    font-size: 20px;
    letter-spacing: 0.1em;
    font-size: 14px;
  }
  .l-nav__entry a {
    height: 60px;
    border-radius: 8px;
    font-size: 16px;
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  margin-bottom: 60px;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  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-yellow);
  font-size: 20px;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding-inline: 0;
    margin-bottom: 30px;
  }
  .l-mv img {
    border-radius: 0;
  }
  .l-mv__txt {
    font-size: 15px;
  }
}

/*============================================================================================================
	.l-bnr
============================================================================================================*/
.l-bnr {
  position: relative;
}
.l-bnr img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-bnr {
    padding-inline: 0;
  }
  .l-bnr img {
    border-radius: 0;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding: 60px 0 80px;
  background-size: 220px;
}
.secSearch__secTit {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secSearch-employee {
  margin-top: 30px;
}
.secSearch-employee-list {
  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;
  grid-gap: 20px;
  margin-top: 27px;
  padding: 0 70px;
}
.secSearch-employee-list__item {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.secSearch-employee-list__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 25px;
  color: #fff;
  border-radius: 8px;
  background: var(--color-txt) url("../img/ico_arrow01.svg") no-repeat right 25px center;
}
.secSearch-employee-list__item a:hover {
  opacity: 1;
  color: #fff;
  background: var(--color-gold) url("../img/ico_arrow01.svg") no-repeat right 25px center;
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding: 40px 0 40px;
  }
  .secSearch__secTit {
    font-weight: 900;
    font-size: 44px;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
  }
  .secSearch-employee {
    margin-top: 30px;
  }
  .secSearch-employee-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding: 0 20px;
  }
  .secSearch-employee-list a {
    height: 50px;
  }
  .secSearch-employee-list__item {
    font-size: 16px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", serif;
  position: relative;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 20px;
  color: #CB2E27;
  font-weight: 700;
  font-size: 88px;
  letter-spacing: 0;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Ubuntu", serif;
}
.c-tit01__en.is-orange {
  color: var(--color-orange);
}
.c-tit01__en.is-yellow {
  color: var(--color-yellow);
}
.c-tit01.is-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-tit01.is-white {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 16px;
  }
  .c-tit01__en {
    margin-bottom: 6px;
    font-size: 38px;
    letter-spacing: 0.04em;
  }
  .c-tit01.is-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  padding-block: 110px 120px;
}
.secAbout-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px 420px;
  grid-template-columns: 1fr 420px;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  row-gap: 80px;
}
.secAbout-txtBox {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.secAbout-imgBox {
  -ms-grid-row-span: 2;
  grid-row: span 2/span 2;
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  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;
}
.secAbout__txt {
  font-size: 16px;
  line-height: 220%;
  letter-spacing: 0.02em;
}
.secAbout__txt + .secAbout__txt {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 60px 60px;
  }
  .secAbout-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 40px auto 40px auto;
    grid-template-rows: auto auto auto;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secAbout-inner > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .secAbout-inner > *:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .secAbout-inner > *:nth-child(3) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .secAbout__secTit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .secAbout-txtBox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .secAbout-imgBox {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 2;
        grid-row-start: 2;
    grid-row: span 1/span 1;
    -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: 20px;
  }
  .secAbout__txt {
    font-size: 14px;
    line-height: 200%;
  }
  .secAbout__txt + .secAbout__txt {
    margin-top: 20px;
  }
  .secAbout img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 100px 100px;
  background: var(--color-orange);
}
.secUs-titWrap {
  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;
  gap: 30px;
  margin-bottom: 60px;
}
.secUs-list {
  margin: 0 auto;
  counter-reset: number;
}
.secUs-list__item {
  padding: 40px 40px 40px 125px;
  border-bottom: 4px solid #fff;
  color: #fff;
}
.secUs-list__item__tit {
  font-weight: 700;
  font-size: 32px;
  position: relative;
}
.secUs-list__item__tit::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 70px;
  font-family: "Ubuntu", sans-serif;
  position: absolute;
  top: 0;
  left: -125px;
  bottom: 0;
  margin: auto;
}
.secUs-list__item__txt {
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 50px 50px;
  }
  .secUs-titWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }
  .secUs-titWrap img {
    width: 120px;
  }
  .secUs-list {
    margin: 0 auto;
    counter-reset: number;
  }
  .secUs-list__item {
    padding: 40px 0 40px 60px;
    border-bottom: 2px solid #fff;
    color: #fff;
  }
  .secUs-list__item__tit {
    font-weight: 700;
    font-size: 24px;
    position: relative;
  }
  .secUs-list__item__tit::after {
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 40px;
    font-family: "Ubuntu", sans-serif;
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 0;
    margin: auto;
  }
  .secUs-list__item__txt {
    margin-top: 24px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  padding-block: 100px 100px;
}
.secWelfare__secTit {
  margin-bottom: 60px;
}
.secWelfare-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 65px;
}
.secWelfare-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 15px auto 15px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 15px;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.secWelfare-list__item img {
  width: 100%;
  height: auto;
}
.secWelfare-list__item .secWelfare-list__item__tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  min-height: 3.2em; /* 2行分の高さを確保 */
  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;
  text-align: center;
}
.secWelfare-list__item .secWelfare-list__item__txt {
  font-size: 14px;
  color: #666;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  line-height: 180%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .secWelfare {
    padding-block: 60px 60px;
  }
  .secWelfare-list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 40px;
  }
  .secWelfare-list__item {
    gap: 10px;
  }
  .secWelfare-list__item .secWelfare-list__item__tit {
    font-size: 16px;
    min-height: 3.4em; /* モバイルも余裕を持たせる */
  }
  .secWelfare-list__item .secWelfare-list__item__txt {
    font-size: 13px;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 100px 120px;
  position: relative;
  background: #FFF9F4;
}
.secFaq__secTit {
  margin-bottom: 60px;
}
.secFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 84px;
  background: var(--color-red);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
}
.secFaq-box__tit::before {
  content: "Q";
  width: 44px;
  height: 44px;
  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: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-txt);
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-family: "Outfit", sans-serif;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px;
  border-top: none;
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--color-txt);
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding: 64px 0;
  }
  .secFaq-box {
    margin-top: 20px;
  }
  .secFaq::before {
    height: 100%;
    background: url("../img/bg_wave03.webp") no-repeat center bottom/100% 30px, linear-gradient(to bottom, var(--color-sky) calc(100% - 29px), rgba(255, 255, 255, 0) calc(100% - 29px));
    top: 0;
    z-index: -2;
  }
  .secFaq::after {
    width: 80px;
    left: 10px;
  }
  .secFaq-ttl {
    margin-bottom: 40px;
  }
  .secFaq-box__tit {
    min-height: 55px;
    padding: 12px 40px 12px 54px;
    font-size: 16px;
  }
  .secFaq-box__tit::before {
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .secFaq-box__tit .btn {
    right: 10px;
    width: 20px;
    height: 20px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 2px;
  }
  .secFaq-box-content {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 10px;
  position: relative;
}
.secGallery img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding-top: 8px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 120px 120px;
  background: url("../img/bg_entry.webp") no-repeat center/cover;
}
.secEntry-inner {
  max-width: 820px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 80px 0;
}
.secEntry__logo {
  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;
  margin: 0 auto;
}
.secEntry__secTit {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 33px;
}
.secEntry-btn {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secEntry-btn__item {
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.secEntry-btn__item-en {
  font-weight: 400;
  font-size: 34px;
}
.secEntry-btn__item a {
  height: 120px;
  padding: 5px 20px 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 3px solid var(--color-orange);
  background: var(--color-orange);
  border-radius: inherit;
}
.secEntry-btn__item.is-red a {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
@media screen and (min-width: 769px) {
  .secEntry-btn__item a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color-orange);
  }
  .secEntry-btn__item.is-brown a:hover {
    color: #A37651;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px;
  }
  .secEntry-inner {
    display: block;
  }
  .secEntry__logo {
    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;
    margin: 0 auto 30px;
    width: 160px;
  }
  .secEntry__secTit {
    margin: 0 auto 30px;
    font-size: 28px;
    text-align: center;
  }
  .secEntry-btn {
    width: min(100%, 400px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .secEntry-btn__item {
    font-size: 16px;
  }
  .secEntry-btn__item-en {
    font-size: 26px;
  }
  .secEntry-btn__item a {
    height: 80px;
  }
}
/*# sourceMappingURL=style.css.map */