@charset "UTF-8";
/* ==========================
   Foundation
   ==========================*/
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.25;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

/*--メインカラー--*/
:root {
  /* 基本色 */
  --primary-color: #1370BF; /* メインカラー */
  --secondary-color: #FFA22D; /* サブカラー */
  --accent-color: #FFCE02; /* アクセントカラー */
  /* 薄めたバリエーション */
  --primary-color-light: #E7F1F9; /* メインカラー（薄め） */
  /* フォント */
  --gothic-font: "Noto Sans JP", serif;
  --mincho-font: "Noto Serif JP", serif;
  /* フォントサイズ */
  --font-size-lg: 3.2rem; /* タイトル */
  --font-size-md: 2rem; /* サブタイトル */
  --font-size-sm: 1.8rem; /* 通常テキスト */
  /* 保育園施設カラー */
  --area-color-tohoku: #43ADA0; /* 東北 */
  --area-color-kanto: #89BD6B; /* 関東 */
  --area-color-tyubu: #C1C94B; /* 中部 */
  --area-color-kinki: #ECB749; /* 近畿 */
  --area-color-tyugoku: #E39045; /* 中国 */
  --area-color-kyushu: #DC655B; /* 九州 */
}

html {
  width: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 320px;
  letter-spacing: 0;
  height: 100%;
  font-size: var(--font-size-sm);
  font-weight: 400;
  line-height: 2.1;
  color: var(--main-font-color);
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: justify;
  text-justify: inter-ideograph;
  font-family: var(--gothic-font);
}

a {
  color: unset;
  text-decoration: none;
  font-size: inherit;
  line-height: inherit;
}

a,
button {
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

a:hover,
button:hover {
  opacity: 0.7;
}

strong,
em {
  font-style: normal;
  font-weight: 300;
}

strong {
  font-weight: 600;
}

ul,
li {
  list-style: none;
  word-wrap: break-word;
}

p {
  word-wrap: break-word;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

/* ==========================
   Layout
   ==========================*/
/* ======================================================
	フッター
====================================================== */
.footer {
  position: relative;
}

.footer_bar {
  background-color: #595757;
}

.footer_bar__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;
  height: 50px;
}

.footer_bar__list li:nth-of-type(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 4vw;
  margin: 0 4vw;
  line-height: 1.6;
}

.footer_bar__list a {
  color: #fff;
  font-size: min(3.5vw, 1.5rem);
  font-weight: 500;
  padding: 3px 0;
  display: block;
}

@media screen and (min-width: 801px) {
  .footer {
    padding-bottom: 0;
  }
  .footer_bar__list li:nth-of-type(2) {
    padding: 0 20px;
    margin: 0 20px;
  }
}
.footer_nav {
  padding: 25px 0 20px;
  max-width: 900px;
  position: relative;
}
@media screen and (min-width: 801px) {
  .footer_nav {
    padding: 25px 4vw 25px;
  }
}

.footer_nav__ttl {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (min-width: 801px) {
  .footer_nav__ttl {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 800px) {
  .footer_nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 3vw 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #C6C6C6;
  }
  .footer_nav__list:nth-last-of-type(2) {
    border-bottom: none;
  }
}

.footer_nav__list li {
  line-height: 1.65;
}
@media screen and (max-width: 800px) {
  .footer_nav__list li {
    width: 50%;
    margin-bottom: 10px;
  }
  .footer_nav__list li:nth-of-type(odd) {
    width: 45%;
  }
  .footer_nav__list li:nth-of-type(even) {
    width: 55%;
  }
}
.footer_nav__list li:first-of-type {
  line-height: 1.1;
}
@media screen and (max-width: 800px) {
  .footer_nav__list li:first-of-type {
    width: 100%;
    margin-bottom: 15px;
  }
}

.footer_nav__list a {
  display: inline-block;
  color: var(--background-color-dark);
  font-weight: bold;
  font-size: min(3.5vw, 1.5rem);
}
@media screen and (min-width: 801px) {
  .footer_nav__list a {
    font-size: min(4.5vw, 1.8rem);
  }
}

.footer_nav__ttl {
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.footer_nav__ttl.footer_nav__ttl--blank::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icn_external.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

@media screen and (min-width: 801px) {
  .footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    gap: 4%;
    padding: 40px 0 40px;
    position: relative;
  }
  .footer_nav__list a {
    font-size: min(1.6vw, 1.2rem);
  }
}
.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  padding: 0 3vw;
}
.footer_sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 801px) {
  .footer_sns {
    position: absolute;
    left: 73%;
    bottom: 85px;
    padding: 0;
  }
}

.copyright {
  color: #595757;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 3%;
  background-color: var(--primary-color-light);
}

/* ======================================================
	ヘッダー
====================================================== */
.header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
@media screen and (min-width: 801px) {
  .header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.header__top {
  position: relative;
  background-color: var(--main-bg-color);
}

.header__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 70px;
}
@media screen and (min-width: 801px) {
  .header__inr {
    padding-left: 3%;
    height: 80px;
  }
}

.header__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2vw;
  padding: 0 4vw 0 4vw;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (min-width: 801px) {
  .header__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
    max-width: initial;
    padding: 0 3% 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.header__ttl span {
  color: var(--primary-color);
  font-family: var(--gothic-font);
  font-size: clamp(1rem, 3vw, 2.2rem);
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 801px) {
  .header__ttl span {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    margin: 0;
    text-align: left;
  }
}

.header__entry_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 39%;
  max-width: 450px;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .header__entry_wrap {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    max-width: none;
  }
}

.header__entry {
  font-size: min(4vw, 1.7rem);
  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;
  color: #fff;
  font-weight: bold;
  font-family: var(--ttl-font);
  background-color: #206199;
  width: 50%;
  height: 100%;
}
@media screen and (min-width: 801px) {
  .header__entry {
    font-size: min(1.5vw, 1.7rem);
  }
}

.header__logo {
  display: block;
  max-width: 279px;
  width: 66%;
}
@media screen and (min-width: 801px) {
  .header__logo {
    width: 61%;
  }
}

.header__logo span {
  font-size: 1.8rem;
  width: 88px;
  height: 28px;
  padding: 0;
}

.header__entry.header__entry--newGraduate {
  background-color: var(--primary-color);
}

/* ======================================================
	メニュー
====================================================== */
.menu {
  display: block;
  width: 100vw;
  background-color: #fff;
  position: fixed;
  top: 70px;
  bottom: 0;
  right: -100vw;
  z-index: 10;
  -webkit-transition: right 0.6s;
  transition: right 0.6s;
}
@media screen and (min-width: 801px) {
  .menu {
    width: 90vw;
    top: 80px;
    max-width: 431px;
  }
}

.open .menu {
  right: 0;
}

.menu__inr {
  overflow: auto;
  height: 100%;
  padding-bottom: 100px;
}

.menu__nav {
  padding: 0 0;
}
@media screen and (min-width: 801px) {
  .menu__nav {
    padding: 0 0;
  }
}

.menu__list li {
  border-bottom: 3px solid var(--primary-color-light);
}

.menu__list > li {
  margin-bottom: 2px;
}

.menu__list li > a,
.menu__list li > p {
  font-size: 1.9rem;
  background-color: #fff;
  font-weight: 500;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 17% 10px 7%;
  font-family: var(--ttl-font);
  position: relative;
}
@media screen and (min-width: 801px) {
  .menu__list li > a,
  .menu__list li > p {
    padding: 10px 53px;
  }
}

.menu__list li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  width: 0.5em;
  height: 0.5em;
  border: 0.2em solid #000000;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
          transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.menu__list li:hover > a::after {
  right: 5%;
}

.menu__list .menu__list_ttl p {
  font-size: 2.4rem;
  color: #fff;
  background-color: #10365C;
}

.menu__list_drop > a {
  position: relative;
}

.menu__list_drop_btn {
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 801px) {
  .menu__list_drop_btn {
    right: 23px;
  }
}

.menu__list_drop_btn span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #10365C;
}

.menu__list_drop_btn span::before,
.menu__list_drop_btn span::after {
  content: "";
  background-color: #10365C;
  border-radius: 2px;
  display: block;
  width: 8px;
  height: 2px;
  position: absolute;
}

.menu__list_drop_btn span::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.menu__list_drop_btn span::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.avtive .menu__list_drop_btn span::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.menu__list_sub {
  padding: 5px 6%;
  font-size: min(4vw, 1.7rem);
  line-height: 2.94;
}
@media screen and (min-width: 801px) {
  .menu__list_sub {
    font-size: 1.7rem;
    padding: 5px 20px 5px 53px;
  }
}

.menu__list_sub a[target=_blank] {
  position: relative;
  padding-right: 20px;
}

.menu__list_sub a[target=_blank]::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icn_external.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

/* ======================================================
	ハンバーガー
====================================================== */
.hamburger {
  display: block;
  width: 70px;
  height: 100%;
  z-index: 11;
  background-color: var(--primary-color);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 801px) {
  .hamburger {
    width: 80px;
  }
}

.hamburger__btn {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-transition: background 0.6s;
  transition: background 0.6s;
}

.hamburger__btnInr {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}

.hamburger__btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 20px;
}

.hamburger__btn span:nth-of-type(1) {
  top: 40%;
}

.hamburger__btn span:nth-of-type(2) {
  top: 50%;
}

.hamburger__btn span:nth-of-type(3) {
  top: 60%;
}

.open .hamburger__btn .hamburger__btn_inr {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.open .hamburger__btn span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 24px;
}

.open .hamburger__btn span:nth-of-type(2) {
  opacity: 0;
}

.open .hamburger__btn span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 24px;
}

main {
  padding-top: 140px;
}
@media screen and (min-width: 801px) {
  main {
    padding-top: 80px;
  }
}

.inr {
  max-width: 1040px;
  padding: 0 5vw;
  margin: 0 auto;
}
@media screen and (min-width: 801px) {
  .inr {
    padding: 0 20px;
  }
}

.inr1200 {
  max-width: 1240px;
  padding: 0 5vw;
  margin: 0 auto;
}
@media screen and (min-width: 801px) {
  .inr1200 {
    padding: 0 20px;
  }
}

/* ======================================================
	グローバルリンク
====================================================== */
@media screen and (min-width: 801px) {
  .global__links_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.global__links_list li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .global__links_list li {
    height: 300px;
  }
}
.global__links_list .c__btnArrow {
  position: absolute;
  bottom: 0;
  left: 0;
}

.global__links_img {
  width: 100%;
  height: 100%;
}
.global__links_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* ======================================================
	cta_recruit
====================================================== */
.cta_recruit {
  background: url(../img/cta_recruit/bg_cta_smt.png) no-repeat center;
  background-size: cover;
  padding: 50px 0 40px;
}
@media screen and (min-width: 801px) {
  .cta_recruit {
    background: url(../img/cta_recruit/bg_cta.png) no-repeat center;
    background-size: cover;
    padding: 0;
  }
}
.cta_recruit .cta_recruit__btn {
  text-align: center;
}
.cta_recruit .cta_recruit__btn .c__btn {
  border: 1px solid #fff;
}

@media screen and (min-width: 801px) {
  .cta_recruit__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 300px;
  }
}

.cta_recruit__ttl {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (min-width: 801px) {
  .cta_recruit__ttl {
    font-size: 2.3rem;
    margin-bottom: 0;
    line-height: 1.69;
  }
}

/* ======================================================
	下層メインビジュアル
====================================================== */
.mainvisual {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.mainvisual__inr {
  position: relative;
  height: 100%;
}

.mainvisual__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.mainvisual__ttl {
  position: absolute;
  left: 0;
  top: 50%;
}

.mainvisual__ttl span {
  display: block;
  color: var(--primary-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0.3em 1em 0.3em 1em;
  font-size: min(6vw, 3rem);
  font-weight: bold;
  position: relative;
  min-width: 50vw;
  line-height: 1.4;
}

.mainvisual__ttl span::before {
  content: "";
  background-color: #fff;
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (min-width: 801px) {
  .mainvisual__ttl span {
    padding: 0.3em 1.4em 0.3em 20px;
    min-width: auto;
  }
}
/* ==========================
   Object
   ==========================*/
/* ======================================================
	ナビゲーション
====================================================== */
.c_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
}

.c_nav li {
  border-right: 1px solid #000000;
}

.c_nav li:last-of-type {
  border-right: none;
}

.c_nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 0 45px 0 25px;
  position: relative;
  font-weight: 300;
  text-align: left;
}

.c_nav li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  width: 0.35em;
  height: 0.35em;
  border: 0.1em solid #000000;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 800px) {
  .c_nav li {
    width: 50%;
  }
  .c_nav li:nth-of-type(even) {
    border-right: none;
    padding-left: 5%;
  }
  .c_nav li a {
    padding: 0 16% 0 0;
    line-height: 1.3;
  }
  .c_nav li a::after {
    right: 9%;
  }
}
/* ======================================================
	boxナビゲーション
====================================================== */
.boxnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
  gap: 1px;
}
@media screen and (max-width: 800px) {
  .boxnav li {
    width: calc(50% - 1px);
  }
}
@media screen and (min-width: 801px) {
  .boxnav li {
    width: calc((100% - 2px) / 3);
  }
}
.boxnav a {
  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;
  font-size: min(4vw, 1.8rem);
  line-height: 1.2;
  font-weight: bold;
  width: 100%;
  color: #fff;
  background-color: #5B5B5B;
  height: 50px;
  position: relative;
  padding: 0 10%;
  text-align: center;
}
@media screen and (min-width: 801px) {
  .boxnav a {
    padding: 0 10px;
  }
}
.boxnav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  display: inline-block;
  vertical-align: middle;
  width: 0.35em;
  height: 0.35em;
  border: 0.15em solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 801px) {
  .boxnav a::after {
    right: 15px;
  }
}
.boxnav li.is_active a {
  background-color: var(--primary-color);
  pointer-events: none;
}
.boxnav li.is_active a::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.c__ttl {
  font-size: 2.8rem;
  line-height: 1.39;
  font-weight: bold;
  color: var(--primary-color);
  text-align: left;
}
@media screen and (min-width: 801px) {
  .c__ttl {
    font-size: 3rem;
  }
}

.c__ttl.c__ttl--border {
  padding-left: 10px;
  position: relative;
}
.c__ttl.c__ttl--border::before {
  content: "";
  display: block;
  width: 3px;
  height: 30px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
}

/* ======================================================
	ボタン
====================================================== */
.c__btn {
  width: 254px;
  max-width: 100%;
  height: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 10px;
  color: #fff;
  background-color: var(--primary-color);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c__btn--white {
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
}

.c__btn--large {
  width: 280px;
  height: 80px;
}

.c__btn:hover {
  opacity: 0.7;
}

.c__btnArrow {
  width: 254px;
  max-width: 100%;
  height: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 10px;
  color: #fff;
  background: url(../img/icn_arrow.svg) no-repeat center right 15px;
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-transition: background-position 0.3s opacity 0.3s;
  transition: background-position 0.3s opacity 0.3s;
}

.c__btnArrow:hover {
  background-position: center right 10px;
}

.c__btn_rounded {
  width: 254px;
  max-width: 100%;
  height: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 10px 10px;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 25px;
  text-decoration: none;
}

.c__btn_round_arrow {
  width: 173px;
  max-width: 100%;
  height: 32px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 10px 5px 10px;
  color: #fff;
  background-color: #A9C6E0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 19px;
  text-decoration: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
.c__btn_round_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  display: inline-block;
  vertical-align: middle;
  width: 0.35em;
  height: 0.35em;
  border: 0.15em solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.c__btnBack {
  color: #484747;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* ======================================================
	ローディング
====================================================== */
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  padding: 20px;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading .loader {
  display: block;
  width: 80%;
  max-width: 400px;
}

#loading .load_img {
  display: block;
  width: 100%;
  max-width: 800px;
}

#loading .load_img img {
  width: 100%;
}

/* ======================================================
	news
====================================================== */
.c-news__list {
  border-top: 1px solid #C2C2C2;
}
.c-news__list li {
  font-size: 1.8rem;
  line-height: 1.35;
  border-bottom: 1px dotted #707070;
}
.c-news__list a {
  display: block;
  padding: 16px 0;
}

.c-news__txt {
  line-height: 2.11;
}

.c-news__date {
  font-size: 1.7rem;
  color: #98A6B5;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* ======================================================
	タグ
====================================================== */
.tag {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.29;
  font-weight: 300;
  color: #000000;
  padding: 5px 6px;
  border: 1px solid #707070;
}

/* ======================================================
	boxナビゲーション
====================================================== */
.subpage_head {
  background-color: var(--primary-color);
}

.subpage_ttl {
  width: 100%;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-size: min(6vw, 3rem);
  font-weight: bold;
  gap: 10px;
  line-height: 1.26;
}

.subpage_ttl span {
  font-size: min(6vw, 1.8rem);
  font-weight: bold;
  line-height: 1.29;
  color: var(--primary-color);
  background-color: #FFFFFF;
  border: 1px solid var(--primary-color);
  padding: 3px 0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 801px) {
  .subpage_ttl span {
    padding: 3px 15px;
  }
  .subpage_ttl {
    gap: 10px;
  }
}
/* ■■■■■■ フォームパーツ ■■■■■■ */
input[type=tel],
input[type=text],
input[type="email "],
input[type=email],
input[type=date],
input[type=number] {
  width: 100%;
  height: 60px;
  border: 1px solid #B4B7BB;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 1.6rem;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

textarea {
  width: 100%;
  border: 1px solid #B4B7BB;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 1.6rem;
  height: 60px;
  line-height: 1.4;
  resize: vertical;
}

input[type=date] {
  appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  color: #000;
  max-width: 260px;
  position: relative;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  z-index: 1;
}

select {
  color: #000;
  width: 100%;
  height: 60px;
  border: 1px solid #B4B7BB;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 1.6rem;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
}

select::-ms-expand {
  display: none;
  /* デフォルトの矢印を非表示(IE用) */
}

label {
  display: block;
  font-size: 1.6rem;
}

textarea {
  width: 100%;
  border: 1px solid #B4B7BB;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 1.6rem;
  height: 60px;
  line-height: 1.4;
  resize: vertical;
  min-height: 11em;
}

.ui-datepicker select {
  width: auto;
  height: auto;
  border: 1px solid #B4B7BB;
  border-radius: 6px;
  padding: 5px;
  background-color: #fff;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}

.datepicker {
  position: relative;
  max-width: 260px;
}

.datepicker::before {
  content: "";
  position: relative;
  background-image: url(../img/icon_calendar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

::-webkit-input-placeholder {
  color: #B4B7BB;
  font-size: 1.4rem;
}

::-moz-placeholder {
  color: #B4B7BB;
  font-size: 1.4rem;
}

:-ms-input-placeholder {
  color: #B4B7BB;
  font-size: 1.4rem;
}

::-ms-input-placeholder {
  color: #B4B7BB;
  font-size: 1.4rem;
}

::placeholder {
  color: #B4B7BB;
  font-size: 1.4rem;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #B4B7BB;
}

.form_cat {
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 23px;
  border-bottom: 2px solid var(--background-color-dark);
}

.form_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4vw;
}

.form_box--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.form_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #014BB1;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}

input.form_size_s,
.form_size_s {
  width: 65px;
}

.form .form_size_auto {
  width: auto;
}

.form .form_size_ss {
  width: 78px;
}

.form .form_size_s {
  width: 160px;
}

.form .form_size_m {
  width: 260px;
}

.form .form_size_w100 {
  width: 100%;
}

.required {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  background-color: #DF5341;
  border-radius: 4px;
  padding: 4px 5px;
  line-height: 1;
  margin-left: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 801px) {
  .form_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
/* ■■■■■■ セレクトボックス ■■■■■■ */
.selectBox {
  position: relative;
}

.selectBox::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  border-top: solid 2px #98A6B5;
  border-right: solid 2px #98A6B5;
  display: inline-block;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}

/* ■■■■■■ チェックボックス＆ラジオ ■■■■■■ */
.customBox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 35px 16px 15px;
  min-height: 60px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  z-index: 0;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.customBox input[type=checkbox] {
  display: none;
}

.customBox input[type=checkbox] + .customBox_check {
  width: 20px;
  height: 20px;
  border: 1px solid #D2E2F3;
  border-radius: 4px;
  margin: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
  z-index: 2;
}

.customBox input[type=checkbox]:checked + .customBox_check {
  background-color: #014BB1;
  border-color: #014BB1;
}

.customBox input[type=checkbox]:checked + .customBox_check::after {
  content: "✔";
  color: #fff;
  font-size: 14px;
}

.customBox input[type=checkbox]:checked + .customBox_check + span + .customBox_bg {
  background-color: #D2E2F3;
}

.customBox:hover {
  background-color: #D2E2F3;
}

.customBox:hover .customBox_check {
  border-color: #77C1A5;
}

.customBox span {
  font-size: 16px;
  z-index: 2;
  position: relative;
}

.customBox small {
  font-size: 14px;
}

.customBox_bg {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.customBox input[type=radio] {
  display: none;
}

.customBox input[type=radio] + .customBox_radio {
  border-radius: 20px;
  margin: 0 8px 0 0;
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  border: 1px solid #B4B7BB;
  position: relative;
  z-index: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customBox input[type=radio]:checked + .customBox_radio::after {
  content: "";
  border-radius: 20px;
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  border: 4px solid #014BB1;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.customBox input[type=radio]:checked + .customBox_radio + span + .customBox_bg {
  background-color: #D2E2F3;
}

/* ■■■■■■ 住所 ■■■■■■ */
.post_code_btn {
  color: #fff;
  font-weight: bold;
  background-color: var(--primary-color);
  border-radius: 6px;
  padding: 10px 10px;
  margin-left: 15px;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.post_code_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.post_code_box input[type=text] {
  max-width: 108px;
}

.post_code_separator {
  width: 12px;
  height: 2px;
  display: block;
  background: #000;
  margin: 0 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ■■■■■■ 確認テキスト ■■■■■■ */
.confirm_txt {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  line-height: 1.5;
  min-height: 60px;
  border: 1px solid #B4B7BB;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 1.6rem;
  word-break: break-all;
}

.confirm_txt.confirm_txt--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.confirm_txt.confirm_txt--bg {
  background-color: #c2ced8;
}

.confirm_txt.confirm_txt--multi span:not(:first-of-type):before {
  content: "　,　";
}

/* ■■■■■■ エラーテキスト ■■■■■■ */
.error {
  color: #DF5341;
  font-weight: bold;
  margin: 0.5em 0 0;
}

/* ■■■■■■ ファイル選択 ■■■■■■ */
.file_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.file_box_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}

.dropzone_box {
  background-color: #fff;
  padding: 10px 10px;
  width: 147px;
}

.dropzone {
  padding: 6px;
  border: 2px dashed #969696;
  border-radius: 5px;
  text-align: center;
  color: #969696;
  font-size: 1.2rem;
  cursor: pointer;
}

.dropzone.dragover {
  border-color: #0088cc;
  color: #0088cc;
}

.dropzone span {
  color: #69C3CB;
  text-decoration: underline;
}

.file-name {
  font-size: 1.4rem;
  line-height: 1.5;
  word-break: break-all;
}

.cancel-btn {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  background-color: #969696;
  border-radius: 6px;
  padding: 8px 31px;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cancel-btn:hover {
  opacity: 0.7;
}

.file_note {
  font-size: 1.4rem;
  color: #707070;
}

/* ■■■■■■ 区切り線 ■■■■■■ */
.form_txt {
  font-size: 1.6rem;
  line-height: 1.5;
}

.form_txt a {
  color: #0045FF;
}

/* ■■■■■■ 区切り線 ■■■■■■ */
hr.dotted {
  border: none; /* デフォルトの枠を消す */
  border-top: 1px dashed #707070; /* 点線の上線を指定 */
}

/* ■■■■■■ 個人情報取扱い ■■■■■■ */
.contact_privacy_txt a {
  color: var(--background-color-dark);
}

/* ■■■■■■ フォームボタン ■■■■■■ */
.contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 5%;
}

/* ■■■■■■ ボタンエリア ■■■■■■ */
.contact_area {
  background-color: #fff;
  padding: 40px 0 40px;
}

.contact_area_box {
  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;
}

/* ■■■■■■ サンクス ■■■■■■ */
#thanks .form_ttl {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks_box {
  padding: 5%;
  background-color: #fff;
  border: 1px solid #BBBBBC;
  text-align: left;
  max-width: 782px;
  margin: 0 auto;
  font-size: min(4vw, 1.8rem);
}

.thanks_note_list li {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 801px) {
  .thanks_box {
    padding: 18px 25px 25px;
  }
}
/* ===========================
 step
=========================== */
.step_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80vw;
  max-width: 255px;
  margin: 0 auto;
}

.step_list::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  top: 12px;
  left: 0%;
  z-index: 1;
}

.step_list li {
  position: relative;
}

.step_list li span {
  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: 24px;
  height: 24px;
  float: none;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background-color: #B4B7BB;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.step_list li.active span {
  color: #fff;
  background-color: var(--primary-color);
}

.step_list .step_txt {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -24px;
  white-space: nowrap;
  width: auto;
  color: #B4B7BB;
  font-size: min(3.5vw, 1.6rem);
  line-height: 1.24;
}

.step_list li.active .step_txt {
  color: var(--primary-color);
}

/* ======================================================
	モーダル
====================================================== */
.modal {
  max-width: 100vw;
  max-height: 90vh;
  overflow: scroll;
}

.iziModal,
.iziModal .iziModal-wrap {
  border-radius: 10px !important;
  overflow: hidden;
}

.modal_inr {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 5vw;
  width: 940px;
  max-width: 100%;
}

.modal .close {
  display: block;
  background: #EC6015;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
}

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

.modal_close span {
  display: block;
  position: absolute;
  background-color: #fff;
  height: 2px;
}

.modal_close span:nth-of-type(1) {
  top: 18px;
  left: 13px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 24px;
}

.modal_close span:nth-of-type(2) {
  opacity: 0;
}

.modal_close span:nth-of-type(3) {
  top: 30px;
  left: 13px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 24px;
}

.modal .left_border_ttl {
  margin-bottom: 30px;
  padding-right: 45px;
}

.modal_body {
  overflow: auto;
}

.modal_ttl {
  background-color: #FAE6DF;
  padding: 10px 10px;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 801px) {
  .modal {
    max-width: 100%;
  }
  .modal .close {
    top: 20px;
    right: 20px;
  }
  .modal_inr {
    padding: 30px 30px;
  }
}
/* ■■■■■■ 資格一覧 ■■■■■■ */
.license-table {
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  font-size: 13px;
  width: 880px;
}

.license-table thead th {
  background-color: #A09F96;
  color: #fff;
  border-right: 2px solid #fff;
  padding: 5px;
}

.license-table thead th:first-child {
  width: 40px;
}

.license-table thead th:nth-child(2) {
  width: 32%;
}

.license-table thead th:last-child {
  width: 17%;
  border-right: none;
}

.license-table tbody tr td {
  vertical-align: middle;
  text-align: left;
  padding: 7px 10px;
  border-right: 2px solid #A09F96;
}

.license-table tbody tr td:first-of-type {
  font-size: 16px;
  font-weight: 600;
}

.license-table tbody tr td:last-child {
  border-right: none;
  text-align: center;
  font-size: 18px;
  padding: 5px;
  font-weight: 600;
  color: #E47E5E;
}

.license-table tbody tr td .small {
  font-size: 13px;
  text-align: left;
  display: block;
  line-height: 1.1;
}

.license-table tbody tr:nth-child(even) {
  background-color: #F6F5F1;
  border-top: 1px solid #34292D;
  border-bottom: 1px solid #34292D;
}

.license-table th {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 2px 5px;
}

.license-table th.small {
  font-size: 13px;
  line-height: 1.1;
}

@media screen and (max-width: 999px) {
  .license-table {
    width: 950px;
  }
  .license-table thead th:last-child {
    width: 15%;
  }
}
/* ======================================================
	スクロールインジゲーター
====================================================== */
.calendar-container {
  position: relative;
}

.scroll-indicator {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 15px 10px;
  border-radius: 5px;
  font-size: 12px;
  pointer-events: none; /* クリックを無効化 */
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.scroll-indicator.is-scroll {
  visibility: hidden;
  opacity: 0;
}

.scroll-indicator-inr {
  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;
}

.scroll-indicator-inr img {
  width: 80px;
}

/* 画面幅が800px以下のときだけ表示 */
@media (max-width: 800px) {
  .scroll-indicator {
    display: block;
  }
}
.c_table {
  width: 100%;
  border: 1px solid #BBBBBC;
  border-radius: 10px;
  border-spacing: 0;
  overflow: hidden;
  border-collapse: separate;
}
.c_table th, .c_table td {
  padding: 13px 20px;
}
.c_table th {
  font-size: 2rem;
  font-weight: bold;
  vertical-align: top;
  background-color: #F5F5F5;
  border-right: 1px solid #BBBBBC;
  border-top: 1px solid #BBBBBC;
  width: 22%;
  line-height: 2.11;
}
@media screen and (max-width: 800px) {
  .c_table th {
    border-right: none;
    width: 100%;
    display: block;
    text-align: center;
  }
}
.c_table td {
  font-size: 1.8rem;
  line-height: 2.11;
  border-top: 1px solid #BBBBBC;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  .c_table td {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 801px) {
  .c_table td:not(:last-of-type) {
    border-right: 1px solid #BBBBBC;
  }
}
.c_table tr:first-of-type th {
  border-top: none;
}
@media screen and (min-width: 801px) {
  .c_table tr:first-of-type th, .c_table tr:first-of-type td {
    border-top: none;
  }
}
.c_table dl {
  margin-bottom: 25px;
}
.c_table dl dt {
  font-weight: bold;
}
@media screen and (min-width: 801px) {
  .c_table dl dd {
    padding-left: 25px;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　トップページCSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	MV
====================================================== */
.mv {
  width: 100%;
  position: relative;
  color: #fff;
  background-color: var(--primary-color);
}
@media screen and (min-width: 801px) {
  .mv {
    width: 100%;
    height: 600px;
    position: relative;
  }
}

.mv__inr {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 801px) {
  .mv__inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.mv__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 4% 50px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 801px) {
  .mv__body {
    width: 50%;
    padding: 3%;
  }
}

.mv__video {
  display: block;
}
@media screen and (min-width: 801px) {
  .mv__video {
    width: 50%;
  }
}
.mv__video video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.mv__ttl {
  font-weight: bold;
  font-size: min(6vw, 2.8rem);
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 801px) {
  .mv__ttl {
    font-size: 3rem;
  }
}
.mv__ttl span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--accent-color);
  font-family: var(--gothic-font);
}

/* ======================================================
	news
====================================================== */
.top .news {
  padding: 45px 0 45px;
}
.top .c-news__list {
  max-width: 800px;
  margin: 15px auto 43px;
  border-top: none;
}
@media screen and (max-width: 800px) {
  .top .c-news__list {
    position: relative;
    width: 100vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
}
.top .c-news__list li {
  font-size: 1.7rem;
  line-height: 1.35;
  border-bottom: 1px dotted #707070;
}
.top .c-news__list a {
  padding: 10px 4.5%;
}
@media screen and (min-width: 801px) {
  .top .c-news__list a {
    padding: 13px 4.5%;
  }
}
.top .c-news__txt {
  line-height: 1.35;
}
.top .c-news__date {
  margin-bottom: 0;
}

/* ======================================================
	message
====================================================== */
.top_message {
  background-color: var(--primary-color-light);
}
.top_message .inr1200 {
  padding: 0;
}
.top_message .c__ttl {
  font-size: min(6.5vw, 2.8rem);
}
@media screen and (min-width: 801px) {
  .top_message .c__ttl {
    font-size: min(3vw, 3rem);
  }
}

@media screen and (min-width: 801px) {
  .top_message__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.top_message__content {
  padding: 15px 3% 45px 3.2%;
}
@media screen and (min-width: 801px) {
  .top_message__content {
    width: 49.5%;
    padding: 35px 3% 30px 3.2%;
  }
}

.top_message__txt {
  font-size: 1.6rem;
  line-height: 1.875;
}

.top_message__img {
  position: relative;
}
@media screen and (max-width: 800px) {
  .top_message__img {
    height: 300px;
  }
}
@media screen and (min-width: 801px) {
  .top_message__img {
    width: 50.5%;
  }
}
.top_message__img picture {
  width: 100%;
  height: 100%;
}
.top_message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_message__img .c__btnArrow {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　代表メッセージCSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	message
====================================================== */
.p_message .mainvisual {
  text-align: center;
}

.p_message .mainvisual__img img {
  -o-object-position: top;
     object-position: top;
  max-width: 1600px;
}

.p_message__sec {
  padding: 30px 0 180px;
}
@media screen and (min-width: 801px) {
  .p_message__sec {
    padding: 55px 0 180px;
  }
}
.p_message__sec .c__ttl {
  margin-bottom: 35px;
}
@media screen and (max-width: 800px) {
  .p_message__sec .c__ttl {
    font-size: min(6vw, 2.8rem);
    margin-bottom: 15px;
  }
}
.p_message__sec p:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 801px) {
  .p_message__sec p:not(:last-child) {
    margin-bottom: 40px;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　理念・ビジョンCSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	intro
====================================================== */
.intro {
  padding: 30px 0 0;
}
@media screen and (min-width: 801px) {
  .intro {
    padding: 45px 0 0;
  }
}

/* ======================================================
	philosophy
====================================================== */
.philosophy {
  padding: 30px 0 10px;
}
@media screen and (min-width: 801px) {
  .philosophy {
    padding: 80px 0 10px;
  }
}

.philosophy_list {
  padding-top: 20px;
}

.philosophy_ttl {
  font-size: 2rem;
  font-weight: bold;
}

.philosophy_txt {
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 2.11;
}

.philosophy_img {
  max-width: 420px;
  margin: 0 auto;
}

@media screen and (min-width: 801px) {
  .philosophy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 70px 0 10px;
  }
  .philosophy_body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 5%;
  }
  .philosophy_img {
    width: 42%;
    margin-top: 20px;
  }
}
.mission {
  padding: 75px 0 75px;
}

/* ======================================================
	vision
====================================================== */
.vision_inr {
  padding: 55px 0 70px;
  background-color: var(--primary-color-light);
}

.vision_list {
  padding-top: 10px;
}

.vision_list li {
  margin-bottom: 20px;
}

.vision_img {
  margin-bottom: 15px;
}

.vision_img img {
  width: 100%;
}

.vision_ttl {
  font-weight: bold;
  font-size: 1.9rem;
  margin-bottom: 5px;
}

.vision_txt {
  font-weight: 300;
  line-height: 2.11;
}

@media screen and (min-width: 801px) {
  .vision {
    padding-top: 0;
    margin-top: 0;
  }
  .vision_inr {
    padding: 55px 0 70px;
    background-color: var(--primary-color-light);
  }
  .vision_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
  .vision_list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 310px;
    margin: 0;
  }
  .value_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .value_body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/* ======================================================
	value
====================================================== */
.value {
  padding: 70px 0 75px;
}

.value_copy {
  max-width: 295px;
  margin: 15px 0 15px;
}

.value_body {
  margin-bottom: 20px;
}

.value_txt {
  line-height: 2.11;
}

.value_img {
  max-width: 330px;
  margin: 0 auto;
}

@media screen and (min-width: 801px) {
  .value_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1%;
  }
  .value_body {
    margin-bottom: 0px;
  }
  .value_img {
    width: 33%;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■
　求める人材CSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
.p_team_requirements__sec {
  padding: 45px 0 0;
}
@media screen and (max-width: 800px) {
  .p_team_requirements__sec {
    padding: 30px 0 0;
  }
  .p_team_requirements__sec .c_nav li {
    width: 100%;
    border-right: none;
    text-align: center;
  }
  .p_team_requirements__sec .c_nav li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    padding: 0 25px 0 0;
    font-size: min(5vw, 1.8rem);
  }
  .p_team_requirements__sec .c_nav li:nth-of-type(even) {
    padding-left: 0%;
  }
  .p_team_requirements__sec .c_nav li a::after {
    right: 10px;
  }
}

/* ======================================================
	recruitment
====================================================== */
.p_team_requirements_recruitment {
  padding: 30px 0 20px;
}
@media screen and (min-width: 801px) {
  .p_team_requirements_recruitment {
    padding: 60px 0 20px;
  }
}

.p_team_requirements_recruitment__list li {
  border-top: 1px solid #C2C2C2;
  padding: 30px 0 30px;
}
@media screen and (max-width: 800px) {
  .p_team_requirements_recruitment__list li {
    padding: 30px 5vw;
    position: relative;
    width: 100vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
  }
}
@media screen and (min-width: 801px) {
  .p_team_requirements_recruitment__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
  }
}

.p_team_requirements_recruitment__img {
  width: 100px;
  margin: 0 auto 35px;
}
@media screen and (min-width: 801px) {
  .p_team_requirements_recruitment__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    margin: 0 auto;
  }
}

.p_team_requirements_recruitment__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p_team_requirements_recruitment__ttl {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  color: var(--primary-color);
}

.p_team_requirements_recruitment__list li:nth-of-type(2) .p_team_requirements_recruitment__ttl {
  color: #F6AB02;
}

.p_team_requirements_recruitment__list li:nth-of-type(3) .p_team_requirements_recruitment__ttl {
  color: #E96D81;
}

.p_team_requirements_recruitment__list li:nth-of-type(4) .p_team_requirements_recruitment__ttl {
  color: #009EA8;
}

.p_team_requirements_recruitment__list li:nth-of-type(5) .p_team_requirements_recruitment__ttl {
  color: #EA5514;
}

.p_team_requirements_recruitment__list li:nth-of-type(6) .p_team_requirements_recruitment__ttl {
  color: #6FBA2C;
}

.p_team_requirements_recruitment__list li:nth-of-type(7) .p_team_requirements_recruitment__ttl {
  color: #914898;
}

/* ======================================================
	smoker
====================================================== */
.p_team_requirements_smoker {
  padding: 30px 0 60px;
  background-color: var(--primary-color-light);
}
@media screen and (min-width: 801px) {
  .p_team_requirements_smoker {
    padding: 60px 0;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　働く環境と制度CSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
.p_work_environment__img {
  display: block;
  width: 100%;
  margin-bottom: 35px;
}
@media screen and (min-width: 801px) {
  .p_work_environment__img {
    margin-bottom: 50px;
  }
}

.p_work_environment__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 50px;
}
.p_work_environment__list dt {
  width: 100%;
  height: 60px;
  background-color: var(--primary-color-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.p_work_environment__list dd .js_open_skill {
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
}

/* ======================================================
	treatment
====================================================== */
.p_work_environment_treatment {
  padding: 30px 0 20px;
}
@media screen and (min-width: 801px) {
  .p_work_environment_treatment {
    padding: 60px 0 20px;
  }
}

/* ======================================================
	benefits
====================================================== */
.p_work_environment_benefits {
  padding: 65px 0 65px;
}

/* ======================================================
	new_way
====================================================== */
.p_work_environment_new_way {
  padding: 65px 0 65px;
}

/* ======================================================
	evaluation
====================================================== */
.p_work_environment_evaluation {
  padding: 65px 0 180px;
}

@media screen and (min-width: 801px) {
  .p_work_environment_evaluation__wrap {
    gap: 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p_work_environment_evaluation__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 30px;
}
@media screen and (min-width: 801px) {
  .p_work_environment_evaluation__content {
    margin-bottom: 0;
  }
}

.p_work_environment_evaluation__img {
  text-align: center;
}
@media screen and (min-width: 801px) {
  .p_work_environment_evaluation__img {
    width: 35%;
    max-width: 367px;
  }
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　採用情報
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	search_results
====================================================== */
.search_results {
  padding: 75px 0 120px;
}
.search_results .boxnav {
  margin-bottom: 100px;
}

.search_results_ttl {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  text-align: center;
  margin-bottom: 30px;
}

.search_results_list li {
  border-top: 1px solid #C2C2C2;
  border-bottom: 1px solid #C2C2C2;
  padding: 28px 0;
}

.search_results_job {
  font-size: min(7vw, 2.8rem);
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.29;
}

.search_results_job span {
  margin-left: 5px;
  vertical-align: top;
  margin-top: 3px;
}

.search_results_txt {
  line-height: 2.11;
  margin-bottom: 15px;
}

.search_results_img {
  margin-bottom: 20px;
  aspect-ratio: 322/207;
}

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

.search_results_img--sample {
  border: 1px solid #C2C2C2;
  padding: 20px;
}

.search_results_bnr {
  text-align: center;
  margin: 20px 0 40px;
}
.search_results_bnr a {
  display: inline-block;
}

@media screen and (min-width: 801px) {
  .search_results_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .search_results_img {
    width: 32%;
    margin: 0 2% 0 0;
  }
  .search_results_img--sample {
    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;
  }
  .search_results_img--sample img {
    width: 80%;
    height: auto;
  }
  .search_results_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;
  }
  .search_results_job {
    margin-bottom: 0;
  }
  .search_results_txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 5px;
  }
}
/* ======================================================
	job_description
====================================================== */
.job_description_mv {
  padding: 30px 0 0;
}

.job_description_mv_img {
  margin-bottom: 20px;
  aspect-ratio: 5/2;
}

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

.job_description_mv_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}

.job_description_mv_ttl {
  font-size: 3rem;
  line-height: 1.26;
  font-weight: bold;
}

.job_description_mv_ttl span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1370BF;
  display: block;
  margin-bottom: 19px;
}

.job_description_mv_btn {
  margin-left: auto;
}

.job_description_mv_btn .btn_more {
  width: 280px;
  height: 80px;
}

.job_description_mv .c_nav {
  background-color: var(--primary-color-light);
  padding: 21px 10px;
  position: relative;
  z-index: 2;
}

.job_description_content {
  padding: 0 0 120px;
}

.job_description_dl_wrap {
  margin-bottom: 60px;
}

.job_description_dl {
  padding-top: 60px;
}

.job_description_dl dt {
  margin-bottom: 10px;
}

.job_description_dl dd {
  font-weight: 300;
  line-height: 2.11;
}

.job_description_table {
  width: 100%;
  border: 1px solid #BBBBBC;
  border-radius: 10px;
  border-spacing: 0;
  overflow: hidden;
  border-collapse: separate;
}

.job_description_table th,
.job_description_table td {
  padding: 13px 20px;
}

.job_description_table th {
  font-size: 2rem;
  font-weight: bold;
  vertical-align: top;
  background-color: #F5F5F5;
  border-right: 1px solid #BBBBBC;
  border-bottom: 1px solid #BBBBBC;
  width: 22%;
  line-height: 2.11;
}

.job_description_table td {
  font-size: 1.8rem;
  line-height: 2.11;
  border-bottom: 1px solid #BBBBBC;
  font-weight: 300;
}

.job_description_table tr:last-of-type th,
.job_description_table tr:last-of-type td {
  border-bottom: none;
}

.job_description_table td span {
  /*font-weight: bold;*/
}

.job_description_table td a {
  text-decoration: underline;
}

.place {
  line-height: 1.5;
  margin-bottom: 25px;
}

.welfare {
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .job_description_mv_btn {
    margin-left: auto;
    margin-right: auto;
  }
  .job_description_mv_img {
    aspect-ratio: 5/3;
  }
  .job_description_table th,
  .job_description_table td {
    display: block;
    width: 100%;
  }
  .job_description_table th {
    border-right: none;
  }
  .job_description_dl {
    padding-top: 100px;
    margin-top: -40px;
  }
  #salary,
  #holiday,
  #welfare_benefits {
    padding-top: 80px;
    display: block;
    margin-top: -80px;
    border: none;
  }
}
/* ======================================================
	process
====================================================== */
.process {
  padding: 65px 0 90px;
  background-color: var(--primary-color-light);
}

.process .c_ttl_leftBorder {
  color: #4B4B4B;
}

.process .job_description_dl {
  padding-top: 0;
}

.process_list {
  max-width: 290px;
  margin: 0 auto;
  padding-top: 15px;
}

.process_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.process_list li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  width: 1.4em;
  height: 1.4em;
  border: 0.4em solid #000000;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) translateX(-50%) rotate(135deg);
          transform: translateY(-25%) translateX(-50%) rotate(135deg);
}

.process_img {
  width: 48%;
  text-align: center;
}

.process_txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}

.process_txt span {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  .process {
    padding: 65px 0 90px;
  }
  .process_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 980px;
    margin: 0 auto 45px;
    padding-top: 35px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .process_list li {
    display: block;
    width: 15%;
    padding-bottom: 0;
  }
  .process_list li:not(:last-of-type)::after {
    top: 31%;
    left: 110%;
    width: 1.4em;
    height: 1.4em;
    border: 0.4em solid #000000;
    border-left: 0;
    border-bottom: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .process_img {
    width: 100%;
    text-align: center;
  }
  .process_txt {
    text-align: center;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■
　エントリーフォームCSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	step
====================================================== */
.step {
  padding: 50px 0 60px;
}

/* ======================================================
	選択中の職種
====================================================== */
.entry_job {
  padding: 25px 0 35px;
  background-color: #D1E3F3;
}
.entry_job .confirm_txt {
  padding: 10px 30px 10px 20px;
}

.entry_job_ttl {
  color: #014BB1;
  font-size: 2rem;
  font-weight: 500;
}

/* ======================================================
	entry_form
====================================================== */
.entry_form {
  background-color: #E7F1F9;
  padding: 45px 0 0;
}

.entry_inr {
  max-width: 745px;
}

.site_discovery_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.site_discovery_list .customBox {
  width: 100%;
  padding-right: 20px;
}

.site_discovery_list .customBox span {
  font-size: 1.5rem;
}

/* ======================================================
	サンクス
====================================================== */
#thanks .entry_form {
  padding: 45px 0 80px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　お問い合わせ
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	選択中の職種
====================================================== */
.contact_inr {
  max-width: 748px;
  margin: 0 auto;
}

.contact_purpose {
  padding: 30px 0 10px;
  background-color: #ffffff;
}

@media screen and (min-width: 801px) {
  .contact_purpose .form_box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/* ======================================================
	contact_form
====================================================== */
.contact_form {
  background-color: #E7F1F9;
  padding: 60px 0 0;
}

.selectBox.form_size_m {
  max-width: 260px;
}

.contact_date_box {
  width: 100%;
}

.contact_item {
  padding-bottom: 0px;
  margin-bottom: 20px;
  border-bottom: 2px solid #EBEBE8;
}

.contact_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 3%;
  width: 100%;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.contact_date_label {
  font-size: 1.6rem;
}

.time_input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1vw;
}

@media screen and (min-width: 801px) {
  .contact_box,
  .contact_date {
    gap: 20px;
  }
  .contact_date {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .time_input {
    gap: 10px;
  }
}
/* ======================================================
	サンクス
====================================================== */
#thanks .contact_form {
  padding: 45px 0 80px;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　個人情報保護方針
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	privacy
====================================================== */
.privacy {
  padding: 100px 0;
}

.c_ttl {
  margin-bottom: 80px;
}

.shomei {
  text-align: right;
}

.under {
  text-align: right;
}

.tab-menu {
  margin-bottom: 10px;
  font-size: 12px;
  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;
}

.tab-menu__item span {
  font-size: min(5.5vw, 2rem);
  font-weight: 500;
  color: #FFFFFF;
  font-family: var(--ttl-font);
  background-color: #93cbf9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 10px;
  text-align: left;
  padding: 20px 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.tab-menu__item span.is-active {
  background-color: #206199;
}

.tab-menu__item span:hover {
  opacity: 0.7;
}

@media screen and (max-width: 800px) {
  .tab-menu li {
    width: 100%;
  }
  .tab-menu__item span {
    padding: 5px 14px;
  }
}
@media screen and (min-width: 801px) {
  .tab-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .tab-menu__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .tab-menu__item span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■
　サイトマップ
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	sitemap
====================================================== */
.sitemap {
  padding: 100px 0;
}

.sitemap ul {
  margin-bottom: 40px;
}

.c_ttl {
  margin-bottom: 40px;
}

.sitemap_entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

ul.sitemap_entry {
  margin-bottom: 60px;
}

.sitemap_entry li {
  max-width: 380px;
}

.sitemap_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 40px;
}

.sitemap_link li {
  width: 50%;
  line-height: 2;
  min-width: 300px;
}

.sitemap_link a[target=_blank] {
  position: relative;
  padding-right: 20px;
}

.sitemap_link a[target=_blank]::after {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icn_external.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

@media screen and (min-width: 801px) {
  .sitemap_entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  .sitemap_entry li .square_btn {
    text-align: center;
  }
  .sitemap_link li {
    width: 50%;
  }
}
/*■■■■■■■■■■■■■■■■■■■■■■■■
　ニュースCSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	news
====================================================== */
.p_news__sec {
  padding: 30px 0 95px;
}
@media screen and (min-width: 801px) {
  .p_news__sec {
    padding: 40px 0 95px;
  }
}

.p_news__select {
  position: relative;
  max-width: 254px;
  margin-bottom: 38px;
}
@media screen and (max-width: 800px) {
  .p_news__select {
    margin: 0 auto 38px;
  }
}
.p_news__select select {
  border-radius: 0;
  font-size: 1.8rem;
  height: 50px;
}
.p_news__select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0;
  border-top: solid 2px #CDD6DD;
  border-right: solid 2px #CDD6DD;
  display: inline-block;
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}

.p_news .c-news__list a {
  pointer-events: none;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　保育園中途採用情報
　■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ======================================================
	保育園施設カラー 
====================================================== */
.area_color_tohoku {
  color: var(--area-color-tohoku);
}

.area_color_kanto {
  color: var(--area-color-kanto);
}

.area_color_tyubu {
  color: var(--area-color-tyubu);
}

.area_color_kinki {
  color: var(--area-color-kinki);
}

.area_color_tyugoku {
  color: var(--area-color-tyugoku);
}

.area_color_kyushu {
  color: var(--area-color-kyushu);
}

.area_bg_tohoku {
  background-color: var(--area-color-tohoku);
}

.area_bg_kanto {
  background-color: var(--area-color-kanto);
}

.area_bg_tyubu {
  background-color: var(--area-color-tyubu);
}

.area_bg_kinki {
  background-color: var(--area-color-kinki);
}

.area_bg_tyugoku {
  background-color: var(--area-color-tyugoku);
}

.area_bg_kyushu {
  background-color: var(--area-color-kyushu);
}

/* ======================================================
	ナビゲーション 
====================================================== */
.p_nursery_school__sec {
  padding: 30px 0 180px;
}
@media screen and (min-width: 801px) {
  .p_nursery_school__sec {
    padding: 60px 0 180px;
  }
}

.p_nursery_school__list {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin: 0 auto 20px;
  max-width: 756px;
}
@media screen and (min-width: 801px) {
  .p_nursery_school__list {
    gap: 1px;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
.p_nursery_school__list li {
  color: #fff;
  height: 50px;
}
.p_nursery_school__list li a {
  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%;
  height: 100%;
  padding: 0 10px;
  position: relative;
  font-weight: bold;
}
.p_nursery_school__list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  display: inline-block;
  vertical-align: middle;
  width: 0.35em;
  height: 0.35em;
  border: 0.15em solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

/* ======================================================
	保育園テーブル
====================================================== */
.p_nursery_school__links {
  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;
}
@media screen and (min-width: 801px) {
  .p_nursery_school__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 20px;
  }
}

.p_nursery_school .c_table th {
  width: auto;
  min-width: 130px;
}
.p_nursery_school .c_table th, .p_nursery_school .c_table td {
  padding: 24px 20px;
  line-height: 1.5;
}
.p_nursery_school .c_table td {
  vertical-align: middle;
}

/*■■■■■■■■■■■■■■■■■■■■■■■■
　よくある質問CSS
　■■■■■■■■■■■■■■■■■■■■■■■■*/
.faq {
  padding: 100px 0;
}

.faqnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.faqnav li {
  min-width: 200px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqnav li .c__btn {
  width: 100%;
}

.faq__wrap {
  padding-top: 50px;
}

.faq__wrap dl {
  margin: 0 10px;
}

.faq__wrap dt {
  border-top: dotted 1px #998675;
  padding-top: 30px;
  margin-bottom: 15px;
}

.faq__wrap dt:first-child {
  border-top: none;
}

.faq__wrap dd {
  margin-bottom: 30px;
}

.faq__wrap dt b,
.faq__wrap dd b {
  display: block;
  width: 30px;
  float: left;
  color: #fff;
  padding: 3px 0;
  text-align: center;
  font-weight: normal;
  margin-top: -5px;
}

.faq__wrap dt b {
  background-color: #595757;
}

.faq__wrap dd b {
  background-color: #206199;
}

.faq__wrap dt span,
.faq__wrap dd span {
  display: block;
  margin-left: 40px;
  overflow: hidden;
}

/* ======================================================
	ユーティリティ
====================================================== */
.ib {
  display: inline-block;
}

.bold {
  font-weight: bold;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

@media screen and (min-width: 801px) {
  .smt {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}
/* ======================================================
	アニメーション
====================================================== */
.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.visible-fade-in {
  -webkit-animation: fade-in 1s linear 0s 1 normal forwards;
          animation: fade-in 1s linear 0s 1 normal forwards;
}

.fade-left {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.visible-fade-left {
  -webkit-animation: fade-left 1s linear 0s 1 normal forwards;
          animation: fade-left 1s linear 0s 1 normal forwards;
}

.fade-right {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.visible-fade-right {
  -webkit-animation: fade-right 1s linear 0s 1 normal forwards;
          animation: fade-right 1s linear 0s 1 normal forwards;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 801px) {
  .delay2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .delay3 {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
}/*# sourceMappingURL=style.css.map */