@charset "UTF-8";
/*変数*/
:root {
  --main_color: #2b347d;
  --main_color2: #2d6cff;
  --main_color3: #2335bb;
  
  --main_color4: #feff4b;

  --filter_main_color: invert(22%) sepia(9%) saturate(934%) hue-rotate(118deg) brightness(95%) contrast(86%);
  --filter_white: invert(100%) sepia(100%) saturate(0%) hue-rotate(137deg) brightness(106%) contrast(101%);
  --filter_black: invert(16%) sepia(10%) saturate(13%) hue-rotate(348deg) brightness(99%) contrast(89%);

  --table_bg_color: #f2f8f6;
  --form_bg_color: #f3f4f5;
  --black:#3a4154;
  --gray: #efefef;
  --red: #f74144;
  --border: 1px solid var(--gray);
}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {-webkit-box-sizing: border-box; box-sizing: border-box; border-style: solid; border-width: 0;}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent;}
body { margin: 0;}
main { display: block;}
p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0;}
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0;}
ul, ol { margin: 0; padding: 0; list-style: none;}
dt { font-weight: 700;}
dd { margin-left: 0;}
hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; border-top-width: 1px; margin: 0; clear: both; color: inherit;}
pre { font-family: monospace, monospace; font-size: inherit;}
address { font-style: inherit;}
a { background-color: transparent; text-decoration: none; color: inherit;}
abbr[title] { -webkit-text-decoration: underline dotted;text-decoration: underline dotted;
}
/* b, strong {font-weight: bolder;} */
code, kbd, samp { font-family: monospace, monospace; font-size: inherit;}
small { font-size: 80%;}
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;}
sub { bottom: -0.25em;}
sup { top: -0.5em;}
svg, img, embed, object, iframe { vertical-align: bottom;}
button, input, optgroup, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; vertical-align: middle; color: inherit; font: inherit; background: transparent; padding: 0; margin: 0; border-radius: 0; text-align: inherit; text-transform: inherit;}
[type=checkbox] { -webkit-appearance: checkbox; -moz-appearance: checkbox; appearance: checkbox;}
[type=radio] { -webkit-appearance: radio; -moz-appearance: radio; appearance: radio;}
button, [type=button], [type=reset], [type=submit] { cursor: pointer;}
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default;}
:-moz-focusring { outline: auto;}
select:disabled { opacity: inherit;}
option { padding: 0;}
fieldset { margin: 0; padding: 0; min-width: 0;}
legend { padding: 0;}
progress { vertical-align: baseline;}
textarea { overflow: auto;}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto;}
[type=search] { outline-offset: -2px;}
[type=search]::-webkit-search-decoration { -webkit-appearance: none;}
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit;}
label[for] { cursor: pointer;}
details { display: block;}
summary { display: list-item;}
[contenteditable]:focus { outline: auto;}
table { border-color: inherit;}
caption { text-align: left;}
td, th { vertical-align: top; padding: 0;}
th { text-align: left; font-weight: 700;}


/*--------------------------------------
サイト共通定義
--------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: sans-serif;
  font-weight: 300;
  font-style: normal;
  position: relative;
}
body.open {
  overflow: hidden !important;
}
@media (min-width: 1025px) {
  body.open {
    overflow: auto !important;
  }
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}

::-moz-selection {
  background: var(--main_color);
  color: #fff;
}

::selection {
  background: var(--main_color);
  color: #fff;
}

ul::-webkit-scrollbar {
  display: none;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.inner {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner1200{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner800{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}

.bg_color {
  background: var(--main_color3);
}

.flex {
  display: block;
}
@media (min-width: 600px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.triangle {
  width: 120px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 120px 0, 0 120px);
  background: #c7e1fd;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
@media screen and (max-width: 599px){
  .triangle {
    width: 80px;
    aspect-ratio: 1;
    clip-path: polygon(0 0, 80px 0, 0 80px);
}
}
/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 769px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none !important;
	}
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}


/*********** 文字寄せ ***********/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

/*********** フォントサイズ ***********/
.fs_ss{font-size: 0.75em;}
.fs_s{font-size: 0.85em;}
.fs_13em{font-size: 1.3em;}
.fs_15em{font-size: 1.5em;}


/* フォーカスイン*/
.focusin{
	opacity: 0;transform : translate(0, 100px);
	transition : all 1.5s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}

/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-spacing: 0;
}
.table_01 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_01 tr th,
.table_01 tr td {
  display: block;
  padding: 24px 24px 8px 24px;
  border-bottom: var(--border);
}
.table_01 tr th {
  border-bottom: 1px solid var(--main_color2);
}
.table_01 tr td {
  border: none;
}
@media (min-width: 600px) {
  .table_01 {
    font-size: 16px;
  }
  .table_01 tr th,
  .table_01 tr td {
    display: table-cell;
    vertical-align: middle;
    padding: 24px;
    border-bottom: var(--border);
  }
  .table_01 tr th {
    width: 25%;
    border-color: var(--main_color2);
  }
}

/* レスポンシブ */
.table_02 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_02 tr th,
.table_02 tr td {
  display: block;
  padding: 16px 24px;
  border-bottom: 2px solid #fff;
}
.table_02 tr th {
  background: var(--table_bg_color);
}
@media (min-width: 600px) {
  .table_02 {
    font-size: 16px;
  }
  .table_02 tr th,
  .table_02 tr td {
    display: table-cell;
    width: 50%;
    padding: 24px;
    vertical-align: middle;
    text-align: center;
  }
}

/* 3カラム */
.table_03 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_03 tr th,
.table_03 tr td {
  width: 33%;
  padding: 16px 8px;
  vertical-align: middle;
  text-align: center;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  line-height: 1.5;
}
.table_03 tr th {
  background: var(--main_color2);
  color: #fff;
  font-weight: 700;
}
.table_03 tr:not(:first-child) th {
  background: var(--table_bg_color);
  color: var(--black);
}
@media (min-width: 600px) {
  .table_03 tr th,
  .table_03 tr td {
    padding: 24px;
  }
}


/*--------------------------------------
共通のform
--------------------------------------*/
form {
  width: 100%;
  margin: auto;
  font-size: 12px;
}
@media (min-width: 600px) {
  form {
    font-size: 16px;
  }
}
form .required_red {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    color: #fff;
    font-size: .8em;
    padding: 0px 6px;
    background-color: var(--red);
    border-radius: 4px;
}
form .item {
  overflow: hidden;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #dfe3e8;
  padding: 20px 10px;
}
@media (min-width: 1025px) {
  form .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* height: 80px; */
    padding: 20px 10px;
  }
}

form .item .label {
  width: 100%;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
    -ms-flex-pack: start;
      justify-content: flex-start;
  text-align: center;
  cursor: auto;
  font-size: 16px;
  padding-right: 10px;
  margin-bottom: 6px;
  position: relative;
}
@media (min-width: 600px) {
  form .item .label {
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  form .item .label {
    width: 30%;
  }
}
form .item > div {
  width: 100%;
  /* border: solid 1px #9c9c9c; */
  /* padding: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          flex-wrap: wrap;
  font-size: 14px;
}
@media (min-width: 600px) {
  form .item > div {
    /* padding: 20px 10px; */
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  form .item > div {
    width: 70%;
  }
}
form .item > div .inputs {
  height: 100%;
  width: 100%;
  outline: none;
  background: var(--form_bg_color);
  padding: 10px;
  font-size: 16px;
}
@media (min-width: 600px) {
  form .item > div .inputs {
    padding: 15px;
    font-size: 14px;
  }
}

::placeholder {
  color: var(--gray);
}

form  .item .post_code_box input {
  width: 40%;
}
.error {
  margin-bottom: 30px;
}
.error li {
  color: var(--red);
}

.btn_area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  margin: 30px auto 0;
}
.btn_area input[type=submit],
.btn_area a {
  background: var(--main_color);
  border: none;
  color: #fff;
  font-size: 16px;
  /* font-weight: bold; */
  padding: 10px 20px;
  margin: 0 0 10px;
}
.btn_area input[type=reset],
.btn_area input[type=button] {
  background: var(--gray);
  border: none;
  font-size: 16px;
  padding: 10px 20px;
}

/* ページネーション */
.page_list {
  margin-top: 40px;
  padding: 0 20px;
  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;
}
.page_list li {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  border-color: var(--main_color);
  color: var(--main_color);
}
.page_list li.active {
  background: var(--main_color);
  color: #fff;
}
.page_list li.arrow {
  border: none;
}
.page_list li.disabled.arrow {
  opacity: 0;
}
.page_list li.arrow img {
  width: 8px;
  height: auto;
  vertical-align: middle;
  filter: var(--filter_black);
}
.page_list li.arrow.prev img {
  transform: rotate(180deg);
}
.page_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .page_list {
    margin-top: 64px;
  }
}

/* 属性ごとのスタイル */
form .comment{
  height: auto;
}
form .radiobtn .inputs,
form .checkbox .inputs  {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  form .radiobtn .inputs,
  form .checkbox .inputs  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
form .radiobtn .inputs .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .radiobtn .inputs label,
form .checkbox .inputs label {
  margin-left: 3px;
  font-size: 14px;
}
@media (min-width: 600px) {
  form .radiobtn .inputs label {
    margin-right: 15px;
  }
}
form .checkbox input {
  vertical-align: baseline;
}
@media (min-width: 600px) {
  form .checkbox  label {
    margin-right: 15px;
  }
}

form .pulldown select {
  width: 100%;
  position: relative;
  padding: 0 15px;
  height: 40px;
}
form .pulldown div {
  /* width: 70%; */
  position: relative;
  background: var(--form_bg_color);
}
form .pulldown div::before {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 0 3px 3px 0;
  background-color: var(--main_color);
  content: '';
}
form .pulldown div::after {
  position: absolute;
  right: 16px;
  content: "";
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  background: #fff;
  position: fixed;
  width: 100%;
  max-width: 2000px;
  z-index: 999;
}
#course-lp_header {
  font-family: sans-serif;
  background:none;
}
#course-lp_header h1 {
  padding: 14px 20px;
  position: relative;
  z-index: 1;
}
#course-lp_header h1 a {
  width: 100%;
  display: block;
}
#course-lp_header h1 a img{
  max-width: 420px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 599px) {
  #course-lp_header h1 {
    padding: 14px 10px;
  }
  #course-lp_header h1 a img{
    max-width: 280px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
  }
}
.hamburger-morph {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  background: #fff;
  border-radius: 50%
}
@media (max-width: 599px) {
  .hamburger-morph {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }
}
.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}
.hamburger-morph__line {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
  stroke: var(--main_color2);
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
  stroke: var(--main_color2);
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
  stroke: var(--main_color2);
}
.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(44 52 125 / 80%);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
.nav-morph.active { clip-path: circle(150% at calc(100% - 44px) 44px);}
.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph.active .nav-morph__item:nth-child(5) { transition-delay: 0.7s; }
.nav-morph.active .nav-morph__item:nth-child(6) { transition-delay: 0.8s; }
.nav-morph.active .nav-morph__item:nth-child(7) { transition-delay: 0.9s; }
.nav-morph.active .nav-morph__item:nth-child(8) { transition-delay: 1.0s; }
.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.nav-morph__text {
  font-weight: bold;
  display: block;
  transition: transform 0.3s ease;
}

@media (max-width: 599px) {
  .nav-morph__link {
        font-weight: bold;
        font-size: 18px;
        padding: 8px;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}
.nav-overlay.active {
  display: block;
}
.nav-morph {
  z-index: 999; /* 必要に応じて調整 */
}

.mainvisual img.mv_item_txt_pc {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  max-width: 260px;
  width: 25%;
  height: auto;
}
.mainvisual img.mv_item_txt_sp {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100px;
  height: auto;
}
.mainvisual img.experience_mv {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  width: 350px;
  height: auto;
}
@media (max-width: 599px) {
  .mainvisual img.experience_mv {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    width: 250px;
    height: auto;
  }
}

/*--------------------------------------
メイン
--------------------------------------*/
/* メインビジュアル */
main .mainvisual {
  position: relative;
}
main .mainvisual .swiper-pagination-horizontal {
  bottom: 20px;
}
main .mainvisual .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
main .mainvisual .swiper-pagination-bullet-active {
  background: #fff;
}
main .mainvisual .swiper-pagination {
  z-index: 1;
}
main .mainvisual img {
  width: 100%;
  height: 100%;
}
main .mainvisual .sp {
  display: block;
}
@media (min-width: 600px) {
  main .mainvisual .sp {
    display: none;
  }
}
main .mainvisual .pc {
  display: none;
}
@media (min-width: 600px) {
  main .mainvisual .pc {
    display: block;
  }
}
/* 下層ページ サブビジュアル */
main .subvisual {
  /* background: url(../images/sv.jpg) no-repeat 50% 0/cover;
  height: 30vh; */
  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-bottom: 20px;
}
@media (min-width: 960px) {
  /* main .subvisual {
    background: url(../images/sv.jpg) no-repeat 50% 60%/cover;
    height: 40vh;
  } */
}

main .subvisual h2 {
  color: #fff;
  font-size: 32px;
  margin-top: 58px;
}
/* セクション共通 */
main.index .sec {
  padding: 20px 20px;
}
@media (min-width: 600px) {
  main.index .sec {
    padding: 40px 40px;
  }
}
main.index .sec .text {
  font-size: 12px;
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (min-width: 600px) {
  main.index .sec .text {
    font-size: 14px;
    margin: 0 auto 64px;
  }
}

/* ---------- トップページ 悩み ---------- */
.section_worry {
  background-color: var(--gray);
  margin-top: 80px;
  position: relative;
}
.section_worry .inner{
  padding: 60px 40px;
  max-width: 840px;
}
.section_worry .heading {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
}
.section_worry .heading_arrow {
    position: relative;
    color: #fff;
}
.section_worry .heading_arrow::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-top: 11px solid #2435ba;
}
.section_worry h2{
    background: var(--main_color3);
    margin-bottom: 4px;
    padding: 2px;
    text-align: center;
    color: #fff;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
    font-weight: bold;
    font-size: 0.8cm;
}
.section_worry li{
    display: block;
    background: url(../images/icon_check.svg) 12px center / 40px 30px no-repeat;
    position: relative;
    padding-right: 20px;
    background-position: 10px center;
    padding: 14px 20px 14px 60px;
    font-weight: bold;
    font-size: 22px;
}

@media (max-width: 599px) {
  .section_worry .inner{
    padding: 40px 0px 60px;
    width: 100%;
  }
  .section_worry h2{
    font-size: 0.6cm;
  }
  .section_worry li{
    background: url(../images/icon_check.svg) 12px center / 40px 26px no-repeat;
    padding: 8px 20px 8px 58px;
    font-size: 18px;
  }
}


/* ---------- トップページ だと大丈夫！ ---------- */
.section_motto {
  background-color: #fff;
}
.section_motto .inner{
  padding: 50px;
}
.section_motto .heading {
    position: relative;
    background: var(--main_color4);
    margin-bottom: 40px;
    padding: 40px 20px 20px;
}
.section_motto .heading img {
    position: absolute;
    right: 50%;
    width: 116px;
    display: inline-block;
    z-index: 1;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section_motto h2{
  background: var(--main_color4);
  margin-bottom: 4px;
  padding: 2px;
  text-align: center;
  color: var(--main_color2);
  font-weight: bold;
  font-size: 0.8cm;
  position: relative;
}
.section_motto li{
  display: block;
  background: url(../images/icon_check.svg) 12px center / 40px 30px no-repeat;
  position: relative;
  padding-right: 20px;
  background-position: 10px center;
  padding: 14px 20px 14px 60px;
  font-weight: bold;
  font-size: 0.5cm;
}
.section_motto p{
  text-align: justify;
}
.section_motto .point{
  font-weight: bold;
  font-size: 0.5cm;
}
.section_motto .point span{
  color: var(--main_color2);
}
.concept_img {
  position: relative;
  height: 670px;
}
.concept_img .img01 {
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 0;
  width: 54%;
  max-width: 780px;
}
.concept_img .img01 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
@media (min-width: 1400px) {
  .concept_img .img02 {
    position: absolute;
    top: 32%;
    right: 4%;
    z-index: 0;
    width: 40%;
  }
}
@media (max-width: 1399px) {
  .concept_img .img02 {
    position: absolute;
    top: 32%;
    right: 8%;
    z-index: 0;
    width: 34%;
  }
}
@media (max-width: 1300px) {
  .concept_img .img02 {
      position: absolute;
      top: 28%;
      right: 4%;
      z-index: 0;
      width: 40%;
  }
}
@media (max-width: 1000px) {
  .concept_img {
    position: relative;
    height: 600px;
  }
  .concept_img .img02 {
    position: absolute;
    top: 26%;
    right: 4%;
    z-index: 0;
    width: 40%;
  }
}
@media (max-width: 799px) {
  .concept_img {
    position: relative;
    height: 500px;
  }
  .section_motto .inner{
    padding: 20px 0px;
  }
  .section_motto h2{
    font-size: 0.6cm;
  }
  .section_motto li{
    background: url(../images/icon_check.svg) 12px center / 40px 26px no-repeat;
    padding: 14px 20px 14px 58px;
    font-size: 0.4cm;
  }

  .concept_img {
    position: static;
    height: auto;
  }
  .concept_img .img01 {
    width: calc((100% - 20px) / 2);
    position: static;
    top: 60px;
    left: 0;
    width: 98%;
    height: auto;
    }
  .concept_img .img01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .concept_img .img02 {
    position: static;
    top: 130px;
    right: 10%;
    width: 34%;
    height: auto;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 20px;
  }
}

/* ---------- トップページ 4つの特徴 ---------- */
.section_features {
    padding: 100px 0 60px;
    background: url(../images/bg_pattern1.jpg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-size: cover;
}
.section_features ul {
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px clamp(20px, 4vw, 20px);
    margin-bottom: clamp(30px, 6vw, 60px);
}
.section_features ul img{
    width: 100%;
    height: auto;
}
@media (max-width: 599px) {
  .section_features ul {
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px clamp(20px, 4vw, 20px);
    margin-bottom: clamp(30px, 6vw, 60px);
  }
  .section_features {
    background-color: #fff;
    padding: 100px 0;
    background: url(../images/bg_pattern1.jpg);
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-size: 100%, 250px;
  }
  .section_features .center{
    text-align: left;
  }
}


/* ---------- トップページ 育つメソッド ---------- */
.section_method {
  padding: 160px 0 100px;
  background: url(../images/bg_pattern2.jpg);
  background-repeat: no-repeat;
  background-position: 90% 0%;
  background-size: cover;
  clip-path: polygon(100% 100%, 0 calc(100% - 0%), 0 60px, 100% 0);
  position: relative;
}
.section_method::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main_color); /* 2つ目の背景色 */
  clip-path: polygon(0 0%, 100% 0%, 100% 60px, 0 0%); /* 2つ目の斜め線 */
}
.section_method h3{ color: var(--color-orange1);}
.section_method .txt {
  color: var(--color-orange1);
  text-align: center;
}
.section_method .txt span{
  color: var(--color-blue2);
  font-weight: bold;
}
.section_method .area_box .box {
  max-width: 500px;
  padding: 0 0px;
  margin: 0 auto 60px;
}
.section_method .area_box .box img{
  width: 100%;
  height: auto;
}
.section_method .area_box .box2 {
  max-width: 680px;
  margin: 60px auto 20px;
  padding: 0 30px;
}
.section_method ul li{
    padding: 22px 24px;
    text-align: left;
    margin-bottom: 60px;
    background-color: #fff;
    color: var(--main_color);
    border: 2px solid var(--main_color2);
    box-shadow: 5px 5px 0px var(--main_color2);
    position: relative;
    z-index: 1;
}
.section_method ul li img.step {
    width: 160px;
    position: absolute;
    top: -40px;
    left: -16px;
}
.section_method ul li h3{
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}
.section_method ul li h3 span{
  font-size: 1.4rem;
}
.section_method ul li .step_box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 42px;
    animation-duration: 2.6s;
    -webkit-animation-duration: 2.6s;
    animation-name: fade;
    gap: 40px min(3%, 40px);
    border-radius: 8px;
}
.section_method ul li:nth-child(1) .step_box img {
    padding-top: 20px;
}
.section_method ul li .txt_box p{
    font-weight: bold;
    display: flex;
    justify-content: left;
    align-items: baseline;
    padding-bottom: 8px;
    font-size: 14px;
}
@media screen and (max-width: 599px){
  .section_method {
    padding: 100px 0;
    background: url(../images/bg_pattern2.jpg);
    background-repeat: no-repeat;
    background-position: 66% 0%;
    background-size: cover;
  }
  .section_method .area_box .box2 {
    max-width: 680px;
    margin: 60px auto 20px;
    padding: 0 0px;
  }
  .section_method ul li h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .section_method ul li .step_box{
    grid-template-columns: 1fr 20px;
    position: relative;
  }
  .section_method ul li .step_box img {
    padding-top: 20px;
    position: absolute;
    right: -30px;
    bottom: 0;
}
  .section_method .center{
    text-align: left;
  }
}


/* ---------- トップページ 1日のトレーニングの流れ ---------- */
.section_training{
  padding: 100px 0;
  background-color: #fff;
}
.section_training ul li {
    text-align: left;
    margin-bottom: 80px;
    background-color: #fff;
    color: var(--main_color);
    border: 2px solid var(--main_color2);
    box-shadow: 5px 5px 0px var(--main_color2);
    position: relative;
    z-index: 1;
}
.section_training ul li img.course_img {
  width: 100%;
  height: auto;
}
.section_training ul li .txt_box {
    padding: 30px;
    position: relative;
}
.section_training ul li .txt_box h3 {
  color: var(--main_color2);
  font-weight: bold;
  font-size: 1.6em;
  line-height: 60px;
  height: 64px;
  display: block;
  position: relative;
  padding-left: 80px;
}
.section_training ul li:nth-child(1) .txt_box h3 { background: url(../images/icon_clock1.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(2) .txt_box h3 { background: url(../images/icon_clock2.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(3) .txt_box h3 { background: url(../images/icon_clock3.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(4) .txt_box h3 { background: url(../images/icon_clock4.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(5) .txt_box h3 { background: url(../images/icon_clock5.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(6) .txt_box h3 { background: url(../images/icon_clock5.svg) 0px center / 60px 60px no-repeat;}
.section_training ul li:nth-child(1) .txt_box h3,
.section_training ul li:nth-child(2) .txt_box h3,
.section_training ul li:nth-child(4) .txt_box h3 {line-height: 1.4;}
.section_training ul li:nth-child(3) .txt_box h3 span{
  display: inline-block;
}
.section_training ul li .txt_box .column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section_training ul li .txt_box h3 span{
  color: var(--main_color);
  font-weight: bold;
  font-size: 0.8em;
  line-height: 1.4;
  display: block;
}
.section_training ul li .txt_box .column span {
    color: var(--main_color);
    font-weight: bold;
    font-size: 1.6em;
    line-height: 62px;
    height: 64px;
}
.section_training img.icon_arrow {
  position: absolute;
  width: 116px;
  display: inline-block;
  bottom: -100px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 599px){
  .section_training ul li {
    margin-bottom: 60px;
  }
  .section_training ul li .txt_box {
    padding: 20px;
    position: relative;
  }
  .section_training ul li:nth-child(1) .txt_box h3 { background: url(../images/icon_clock1.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(2) .txt_box h3 { background: url(../images/icon_clock2.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(3) .txt_box h3 { background: url(../images/icon_clock3.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(4) .txt_box h3 { background: url(../images/icon_clock4.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(5) .txt_box h3 { background: url(../images/icon_clock5.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(6) .txt_box h3 { background: url(../images/icon_clock5.svg) 0px center / 40px 40px no-repeat;}
  .section_training ul li:nth-child(1) .txt_box h3,
  .section_training ul li:nth-child(2) .txt_box h3,
  .section_training ul li:nth-child(4) .txt_box h3 {line-height: 1.4;}
  .section_training ul li .txt_box h3 {
    color: var(--main_color2);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 46px;
    height: 46px;
    display: block;
    position: relative;
    padding-left: 60px;
  }
    .section_training ul li .txt_box h3 span{
    font-size: 0.8em;
  }
  .section_training ul li .txt_box .column span {
    color: var(--main_color);
    font-weight: bold;
    font-size: 1.0em;
    line-height: 46px;
    height: 46px;
  }
  .section_training img.icon_arrow {
    position: absolute;
    width: 90px;
    display: inline-block;
    bottom: -80px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
  }
}


/* ---------- トップページ コース紹介 ---------- */
.section_course {
    padding: 100px 0;
    background: url(../images/bg_pattern3.png);
    background-size: 400px;
    background-color: #e9e9e9;
}
.section_course .area_box .box {
  max-width: 500px;
  padding: 0 0px;
  margin: 0 auto 60px;
}

.section_course ul li{
  text-align: left;
  margin-bottom: 80px;
  background-color: #fff;
  color: var(--main_color);
  border: 2px solid var(--main_color2);
  box-shadow: 5px 5px 0px var(--main_color2);
  position: relative;
  z-index: 1;
}
.section_course ul li img.course_img{
  width: 100%;
  height: auto;
}
.section_course ul li img.course {
  width: 280px;
  position: absolute;
  top: -50px;
  left: -16px;
}
.section_course ul li .txt_box{
  padding: 30px;
  position: relative;
}
.section_course ul li .txt_box span{
  font-size: 1.0em;
  line-height: 1.6;
  display: block;
  padding-top: 4px;
}
.section_course ul li .txt_box h3{
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.4;
}
.section_course ul li .txt_box .txt_band{
  background: var(--main_color3);
  color: #fff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 4px;
}

.section_course table{width: 100%;}
.section_course table tr th,
.section_course table tr td{
  padding: 10px;
}
.section_course table tr th {
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    font-weight: inherit;
    width: 50%;
}
.section_course table tr td {
    vertical-align: middle;
    border-bottom: 1px solid #cbcbcb;
    text-align: end;
    width: 50%;
}
@media screen and (max-width: 599px){
  .section_course .area_box {
    padding: 0 0px;
  }
  .section_course ul li img.course {
    width: 200px;
    position: absolute;
    top: -30px;
    left: -16px;
  }
  .section_course ul li .txt_box{
    padding: 20px;
  }
  .section_course ul li .txt_box h3{
    font-weight: bold;
    font-size: 1.0em;
    line-height: 1.4;
  }
  .section_course ul li .txt_box span{
    font-size: 0.7em;
  }
  .section_course table tr th,
  .section_course table tr td{
    padding: 10px 0;
    font-size: 14px;
  }
  .section_course table tr th {
    width: 80%;
  }
  .section_course table tr td {
    width: 20%;
  }
}

.section_course .course_detail{
    padding: 8px;
    background: #fff;
}
.section_course .frame_border{
  padding: 30px;
  border: 1px solid #c9d0fd;
}
.section_course .frame_border h3 {
    padding: 6px 12px;
    background: var(--main_color);
    margin-bottom: 8px;
}
.section_course h3 span {
    border-left: 4px solid #fff;
    color: #fff;
    padding-left: 8px;
    line-height: 1;
}
.section_course .frame_border p{margin-left: 10px;}
@media screen and (max-width: 599px){
  .section_course .course_detail{
    padding: 6px;
  }
  .section_course .frame_border{
    padding: 20px;
  }
  .section_course .frame_border iframe{
    height: 320px;
  }
}
/* ---------- お問い合わせ ---------- */
.section_contact{
  background-color: var(--gray);
  padding: 100px 0 160px;
}
.section_contact .sec{
  background-color: #fff;
  border-radius: 10px;
}
.section_contact form{padding-bottom: 40px;}
.section_contact .title_jp{
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--main_color2);
}
.section_contact .area_box{
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 20px 40px;
}
.section_contact .policy{
  background: #efefef;
  border-radius: 16px;
  padding: 16px;
  margin: 20px auto 40px;
}
.section_contact .policy h5{
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 599px){
  .section_contact .area_box{
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 60px;
  }
  .section_contact .policy{
    background: #efefef;
    border-radius: 16px;
    padding: 24px;
    margin: 20px auto 40px;
  }
  .section_contact .policy h5{
    font-size: 18px;
  }
  .section_contact .policy p{
    font-size: 14px;
  }
  .section_contact .center{
    text-align: left;
    font-size: 0.4cm;
  }
}


/* ---------- トップページ よくあるご質問 ---------- */

.section_qa {
  padding: 120px 0 100px;
  background: url(../images/bg_pattern4.jpg);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: cover;
  clip-path: polygon(100% 100%, 0 calc(100% - 0%), 0 60px, 100% 0);
  position: relative;
  margin-top: -60px;
}
.section_qa::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main_color); /* 2つ目の背景色 */
  clip-path: polygon(0 0%, 100% 0%, 100% 60px, 0 0%); /* 2つ目の斜め線 */
}
.accordion {
  margin: 10px auto;
}
.toggle {
  display: none;
}
.option {
  position: relative;
  margin-bottom: 1em;
  background: #fff;
  border-radius: 10px;
  color: var(--black);
  position: relative;
  padding: 10px 20px;
}
.qa_q,
.qa_a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.qa_q {
  padding: 1em;
  display: block;
  color: #333;
  font-weight: bold;
}
.qa_q::after,
.qa_q::before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  width: 2px;
  height: 0.75em;
  background-color: var(--main_color2);
  transition: all 0.3s;
}
.qa_q::after {
  transform: rotate(90deg);
}
.qa_a p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  padding: 10px 20px 14px 20px;
}
@media screen and (max-width: 530px){
  .qa_a p {
    padding: 4px 0px 10px 0px;
  }
}
.qa_a p span{
  font-size: 12px;
  display: block;
}

.toggle:checked + .qa_q + .qa_a {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .qa_q::before {
  transform: rotate(90deg) !important;
}


.section_qa .qa_q ,
.section_qa .qa_a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all .5s;
}
.section_qa .qa_q {
  display: block;
  background: url(../images/icon_q.svg) 12px center / 30px 35px no-repeat;
  position: relative;
  padding-right: 20px;
  background-position: 10px center;
  padding: 20px 20px 20px 70px;
  color: var(--main_color);
  font-size: 20px;
}
.section_qa .qa_q img {
  width: 8px;
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  transition: all .5s;
}
.section_qa .qa_a {
  max-height: 0;
  overflow: hidden;
}

.section_qa .qa_a dd {
  margin-top: 5px;
}
.section_qa .qa_toggle:checked + .qa_q + .qa_a {
  max-height: 950px;
  transition: all 1.5s ease-in-out;
}
.section_qa .qa_toggle:checked + .qa_q img {
  transform: rotate(-90deg);
}
.section_qa .qa_box:nth-of-type(n + 2) {
  margin-top: 20px;
}
.section_qa .qa_q,
.section_qa .qa_a dl {
  background-size: 36px 36px !important;
}
.section_qa .qa_q img {
  right: 25px;
}
.section_qa .qa_a dl {
  background-position: 25px 10px;
  padding: 20px 40px 20px 86px;
}
@media screen and (max-width: 530px){
  .section_qa {
    font-size: 12px;
  }
  .section_qa .qa_q {
    display: block;
    background: url(../images/icon_q.svg) 12px center / 30px 35px no-repeat;
    position: relative;
    padding-right: 20px;
    background-position: 0px center;
    padding: 10px 20px 10px 40px;
    font-size: 16px;
  }

  .section_qa .qa_q ,
  .section_qa .qa_a dl {
    background-size: 30px 30px !important;
  }
  .section_qa .qa_a dl {
    padding: 12px 20px 12px 56px;
    border-top: solid 3px #cdc6f8;
    background-position: 15px center;
  }
}

/*--------------------------------------
フッター
--------------------------------------*/

/* ---------- パンくずリスト ---------- */
footer ul.breadcrumb {
  padding: 30px 20px 30px;
  font-size: 12px;
  text-align: center;
}
footer ul.breadcrumb li {
  display: inline-block;
}
footer ul.breadcrumb li:not(:nth-of-type(3)) {
  text-transform: uppercase;
}
footer ul.breadcrumb li:before {
	margin: 0 8px 0;
  display: inline-block;
  content: "";
  width: 5px;
  height: 9px;
  background: url(../images/icon_arrow.svg) center / cover no-repeat;
  filter: var(--filter_black);
}
footer ul.breadcrumb li:first-child:before {
	display: none;
}
footer ul.breadcrumb li a {
	color: var(--main_color2);
}



/* ---------- フッター ---------- */
footer .footer_bottom {
  padding: 50px 0 40px;
  width: min(100%, 800px);
  margin: auto;
}
@media screen and (max-width: 599px){
  footer .footer_bottom {
    padding: 30px 0 20px;
  }
}
footer .footer_bottom figure {
  text-align: center;
}
footer .footer_bottom figure img {
  max-width: 400px;
  width: 100%;
  display: inline-block;
  margin: 0 auto 30px;
}
@media screen and (max-width: 599px){
  footer .footer_bottom figure img {
    margin: 0 auto 10px;
    width: 90%;
  }
}
footer a.tel_btn{
  text-align: center;
  color: var(--main_color2);
  font-weight: bold;
  display: block;
  letter-spacing: 0.1em;    
}
footer a.tel_btn span{
    font-size: 22px;
    margin-left: 8px;
}
/* フッターナビ */
footer .footer_bottom ul {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  gap: 8px;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 40px;
}
footer .footer_bottom ul li {
  width: 48%;
}
footer .footer_bottom ul a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
footer .footer_bottom ul a:hover {
  opacity: 0.7;
}
@media (min-width: 600px) {
  footer .footer_bottom ul li {
    width: auto;
  }  
}
footer .copyright {
  display: block;
  background: var(--main_color);
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 14px;
  padding-bottom: 60px;
}
footer .arrow_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .arrow_top a {
  display: none;
}
@media (min-width: 1025px) {
  footer .copyright {
    padding-bottom: 14px;
  }
  footer .arrow_top a {
    font-size: 1.5em;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff;
    -webkit-box-shadow: 2px 2px 6px rgb(0 0 0 / 0.1);
            box-shadow: 2px 2px 6px rgb(0 0 0 / 0.1);
    border-radius: 100%;
    color: var(--main_color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    z-index: 1;
  }
}
footer .arrow_top a img {
  width: 21px;
  height: auto;
  filter: var(--filter_main_color);
}



/* アクセス */
.section_access{background-color: #f7fbff;}
.section_access .access_area span::before {
  color: var(--main_color4);
}
@media screen and (max-width: 599px){
  .section_access .access_area span::before {
    position: absolute;
    top: 2px;
    left: 0px;
  }
}
.access_area {
  padding: 80px 0;
}
.access_area ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 14px;
  gap: 40px;
}
@media screen and (max-width: 768px){
  .access_area {
    padding: 80px 0;
  }
  .access_area h4:nth-of-type(2){
    margin-top: 20px;
  }
  .access_area ul {
     grid-template-columns: 1fr;
  }
}
.access_area ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 4px;
}
.access_area ul li h5{
  background: var(--main_color2);
  margin-bottom: 4px;
  padding: 2px;
  text-align: center;
  color: #fff;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
}
.access_area ul li :is(.access_box, .add_box ) {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px){
  .access_area ul li h5{
    padding: 6px;
  }
}
.access_area ul p{
	position: relative;
	padding: 0 0.6em;
	padding-left: 1.5em;
	vertical-align: middle;
}
.access_area ul p::before {
    font-size: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
	margin-right: 8px;
	content: '●';
  color: var(--main_color4);
}
.access_area ul li .img_studio{
  overflow: hidden;
}
.access_area ul li .img_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: 200px;
  border-radius: 2px;
}
@media screen and (min-width: 769px){
  .access_area ul li .img_studio{
    overflow: hidden;
  }
  .access_area ul li .img_box {
    height: 250px;
  }
}

.access_area ul li .frame {
    overflow: hidden;
}
.access_area ul li img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.access_area ul li iframe { height: 200px;}
@media screen and (min-width: 769px){
  .access_area ul li iframe { height: 250px;}
}

.access_area p.access_week1 {
  background: #b4ddec;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 4px;
  text-align: center;
  margin: 0 auto 10px;
}
.access_area p.access_week2 {
  background: #f8c8b2;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 4px;
  text-align: center;
  margin: 0 auto 10px;
}
.access_area p.access_week3 {
  background: #f1f8b2;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 4px;
  text-align: center;
  margin: 0 auto 10px;
}
.access_area p.access_class {
  border-bottom: dashed 1px var(--main_color);
  padding-bottom: 10px;
  text-align: center;
  margin: 0 auto 20px;
}
.access_area p.access_class.no_border {
  border-bottom: none;
  margin: 0 auto;
}
/* table ver. */
.access_area table.access_class {
  width: 100%;
  margin: 0 auto 20px;
}
.access_area table.access_class th {
  width: 50%;
  padding-right: 0.5em;
  text-align: right;
  font-weight: normal;
}


@media screen and (min-width: 769px) {
  .access_area p.access_week1,
  .access_area p.access_week2,
  .access_area p.access_week3 {
    font-size: 1.6rem;
  }
  .br_768 {
    display: none;
  }
}

#bottom_nav {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0%;
	width: 100%;
	margin: 0 auto;
	z-index: 888;
	display: flex;
	background:var(--black);
  font-weight: bold;
}
#bottom_nav a {
  display: inline-block;
  vertical-align: middle;
  padding: 4px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  background: var(--main_color2);
  background: -moz-linear-gradient(top, var(--main_color2) 0%, var(--main_color) 100%);
  background: -webkit-linear-gradient(top, var(--main_color2) 0%, var(--main_color) 100%);
  background: linear-gradient(to bottom, var(--main_color2) 0%, var(--main_color) 100%);
  line-height: 180%;
  color: #fff;
  text-shadow: 0 1px 0 var(--main_color2);
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  transition: 0.4s;
}
#bottom_nav a:nth-of-type(1) {
  background: var(--main_color2);
  background: -moz-linear-gradient(top, var(--main_color2) 0%, var(--main_color) 100%);
  background: -webkit-linear-gradient(top, var(--main_color2) 0%, var(--main_color) 100%);
  background: linear-gradient(to bottom, var(--main_color2) 0%, var(--main_color) 100%);
  text-shadow: 0 1px 0 var(--main_color);
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* トップページの共通タイトル */
.subtitle {
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--main_color2);
}
.title .title_jp{
  display: block;
  font-size: 0.48em;
  line-height: 2;
}
.subtitle .emphasis{
    font-size: 1.9rem;
    letter-spacing: normal;
}
@media (min-width: 600px) {
  .subtitle {
    font-size: 38px;
  }
  .subtitle .emphasis{
    font-size: 2.4rem;
  }
}
.title_eu{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: 1.4em;
  text-align: center;
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: var(--main_color);
  padding: 4px 10px 2px 14px;
  line-height: 1;
  z-index: 0;
}
.title_eu::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: #c7e1fd;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
  transition: all 1.2s ease;
  z-index: -1;
}
.section_course .title_eu::before,
.section_qa .title_eu::before {
  background: #fff;
}

/* 下層ページの共通タイトル1 */
.secondary_title {
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .secondary_title {
    margin-bottom: 40px;
  }
}
h3.secondary_title  {
    color: var(--main_color);
  font-size: clamp(50px, 5vw, 50px);
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: 50px;
    text-align: center;
}
h3.secondary_title span {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.4em;
  color: var(--gray);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px){
h3.secondary_title  {
  font-size: clamp(30px, 5vw, 30px);
}
}
/* 下層ページの共通タイトル2 */
h4.tertiary_title  {
  margin-bottom: 24px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
/* Moreボタン */
.btn_01 {
  font-size: 20px;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 40px;
  color: #fff;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 5px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_01:hover {
  background: #fff;
  color: var(--main_color);
}

/* カテゴリリンクボタン、一覧へ戻るボタン */
.btn_02 {
  background: #fff;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  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;
  gap: 8px;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn_02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.btn_02:hover {
  color: #fff;
}
.btn_02:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.btn_02 img {
  filter: var(--filter_main_color);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn_02:hover img {
  filter: var(--filter_white);
}
@media (min-width: 1025px) {
  .btn_02 {
    margin: 0 auto;
  }
}

/* footerのお問い合わせボタン */
.btn_03 {
  color: #fff;
  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;
  font-size: clamp(20px, 3vw, 24px);
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  height: 90px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .btn_03 {
    padding: 0 30px;
  }
}
.btn_03.tel_btn {
  background: var(--main_color);
}
.btn_03.tel_btn:hover {
  background: rgb(var(--main_color_rgb) / 0.85);
}
.btn_03.mail_btn {
  background: #fff;
  color: var(--main_color);
}
.btn_03.mail_btn:hover {
  background:  rgb(255 255 255 / 0.85);
}

.btn_04 {
  position: relative;
  font-size: 14px;
  background: var(--main_color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
  max-width: 140px;
    padding: 7px;
    margin-left: 10px;
}
@media (min-width: 600px) {
  .btn_04 {
    padding: 12px;
    width: min(100%, 360px);
  }
}
@media (min-width: 1025px) {
  .btn_04 {
    font-size: 15px;
  }
}

@media (min-width: 600px) {
  .btn_04::after {
    position: absolute;
    right: 14px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.sns a {
  background: var(--main_color);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  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;
  font-size: 18px !important;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.sns a:hover {
  opacity: 0.7 !important;
}
.sns a:last-child {
  margin-right: 0;
}
.sns a img {
  width: 18px;
  height: auto;
  filter: var(--filter_white);
}

/*--------------------------------------
下層ページ
--------------------------------------*/
main:not(.index) .inner {
  padding: 40px 20px 80px;
}
main:not(.index) .sec {
  margin-bottom: 64px;
}
main:not(.index) .sec:last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  main:not(.index) .sec {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  main:not(.index) .inner {
    padding: 80px 0;
  }
}

main:not(.index) .sec p {
  margin-bottom: 1rem;
}
main:not(.index) .sec .text {
  /* padding: 40px 20px; */
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.spacing {
  padding: 0 20px;
}
@media (min-width: 1025px) {
  .spacing {
    padding: 0;
  }
}

/* ---------- 下層ページ ABOUT ---------- */
/* CORPORATEのページで使う場合は
   .contents_about → .contents_corporate に書き換えてください */
.contents_about {
  overflow-x: hidden;
}
/* コンセプト */
.contents_about .section_concept {
  width: 100vw;
  padding: 80px 20px;
  margin: -40px calc(50% - 50vw) 0;
  text-align: center;
  background: var(--main_color3);
}
.contents_about .section_concept h3 {
  margin-bottom: 40px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
.contents_about .section_concept .concept_text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_about .section_concept .concept_text p:last-of-type{
  margin-bottom: 0;
}

/* ミッション */
.contents_about .section_mission > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.contents_about .section_mission > div img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .contents_about .section_concept {
    margin-top: -80px;
  }
.contents_about .section_mission > div {
    flex-direction: row;
    gap: min(4%, 40px);
  }
  .contents_about .section_mission > div img {
    width: 45%;
  }
  .contents_about .section_mission .mission_text {
    width: 55%;
  }
}

/* バリュー */
.contents_about .section_value .value_item {
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contents_about .section_value .value_item:last-of-type {
  margin-bottom: 0;
}
.contents_about .section_value .value_item .num {
  font-size: 2rem;
  line-height: 1;
  color: var(--main_color2);
}
.contents_about .section_value .value_item .value_text h4 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.3;
  margin-bottom: 8px;
}


/* ---------- 下層ページ CORPORATE ---------- */
/* ABOUTのページで使う場合は
   .contents_corporate → .contents_about に書き換えてください */
.contents_corporate .section_message > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.contents_corporate .section_message .message_pic {
  width: 100%;
  height: auto;
}
.contents_corporate .section_message .message_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .contents_corporate .section_message > div {
    flex-direction: row;
    gap: min(4%, 40px);
  }
  .contents_corporate .section_message .message_text {
    width: 55%;
  }
  .contents_corporate .section_message .message_pic {
    width: 45%;
    aspect-ratio: 3 / 2;
  }
}

/* 事業所案内 */
.contents_corporate .section_office .office_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.contents_corporate .section_office .office_wrap > div {
  width: 100%;
}
/* 支店情報がある場合は、マップの下と各支店に下線を入れる */
.contents_corporate .section_office .office_wrap:has(+ div) div.map,
.contents_corporate .section_office .office_wrap:nth-of-type(2) > div {
  padding-bottom: 24px;
  border-bottom: var(--border);
}
.contents_corporate .section_office .office_wrap:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr;
}
.contents_corporate .section_office .office_wrap div.map {
  order: 1;
}
.contents_corporate .section_office .office_wrap address ul li {
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
}
.contents_corporate .section_office .office_wrap address ul li:first-child {
  margin-bottom: 1rem;
}
.contents_corporate .section_office .office_wrap address ul li span {
  width: min(30%, 72px);
  margin-right: 10px;
  text-align: left;
}
.contents_corporate .section_office .office_wrap .btn_01 {
  margin: 24px 0 0;
  padding: 10px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.contents_corporate .section_office .office_wrap .btn_01 img {
  width: 16px;
  height: auto;
  filter: var(--filter_white);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.contents_corporate .section_office .office_wrap .btn_01:hover img {
  filter: var(--filter_main_color);
}
@media (min-width: 600px) {
  .contents_corporate .section_office .office_wrap {
    flex-direction: row;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    gap: 0 40px;
    margin-bottom: 40px;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) {
    grid-template-columns: repeat(3, 1fr); /* 支店数によって増減してください */
    align-items: stretch;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) > div {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-rows: subgrid;
    grid-row: span 4;
    align-content: start;
    gap: 0;
    padding: 0;
    border: none;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) address,
  .contents_corporate .section_office .office_wrap:nth-of-type(2) address ul {
    display: grid;
    grid-template-rows: 1fr auto auto;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: inherit;
  }
  .contents_corporate .section_office .office_wrap div.map {
    order: 0;
    border: none !important;
  }
}

/* ---------- 下層ページ MENU ---------- */
.contents_menu .section_menu .menu_box:not(:last-of-type) {
  margin-bottom: 40px;
}
/* 料金ページ用のtable_01 */
.contents_menu .section_menu .table_01 th,
.contents_menu .section_menu .table_01 td {
  display: table-cell;
  width: 50%;
  padding: 24px;
  text-align: center;
  border-bottom: var(--border);
}
.contents_menu .section_menu .table_01 tr:nth-of-type(even) {
  background: var(--table_bg_color);
}


/* ---------- 下層ページ FAQ ---------- */
.contents_faq .faq_list {
  width: min(100%, 1040px);
  margin: auto;
}
.contents_faq .faq_list dt {
  position: relative;
  margin-bottom: 8px;
  padding: 16px 32px 16px 16px;
  cursor: pointer;
}
.contents_faq .faq_list dd {
  padding: 16px;
}
/* アコーディオンボタン装飾 */
.contents_faq .faq_list dt:before,
.contents_faq .faq_list dt:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 3px;
	background: var(--main_color2);
  transition: all 0.4s ease-out;
}
.contents_faq .faq_list dt:before {
  top: 48.5%;
	transform: rotate(-90deg);
}
.contents_faq .faq_list dt.open:before {
  opacity: 0;
	transform: rotate(-360deg);
}

.contents_faq .faq_list h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.contents_faq .faq_list h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  padding: 12px;
  background: var(--main_color);
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.contents_faq .faq_list .question {
  background: var(--main_color3);
}
.contents_faq .faq_list .answer {
  display: none;
}
.contents_faq .faq_list .answer h3 {
  font-weight: 700;
  margin-bottom: 8px;
}
.contents_faq .faq_list .answer h3 span {
  background: var(--main_color2);
}
.contents_faq .faq_list .answer p {
  text-align: justify;
}
@media (min-width: 600px) {
  .contents_faq .faq_list h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    gap: 16px;
  }
  .contents_faq .faq_list h3 span {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}


/* ---------- 下層ページ RECRUIT ---------- */
/* メッセージ */
.contents_recruit .sec.section_recruit_message {
  width: 100%;
  text-align: center;
  background: #fff;
  margin-bottom: 0;
}
.contents_recruit .section_recruit_message h3 {
  margin-bottom: 40px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
.contents_recruit .sec.section_recruit_message .text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_recruit .sec.section_recruit_message p:last-of-type {
  margin-bottom: 0;
}

/* 福利厚生 */
.contents_recruit .sec.section_job_benefit {
  width: 100%;
  background: var(--main_color3);
  margin-bottom: 0;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  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;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item:not(:last-of-type) {
  margin-bottom: 40px;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item h4 {
  margin-bottom: 16px;
  font-size: clamp(20px, 3vw, 24px);
  text-align: center;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item img {
  width: 50%;
  height: auto;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item p {
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .contents_recruit .section_job_benefit .benefit_list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 3), 1fr));
    gap: 0 min(2%, 24px);
  }
  .contents_recruit .section_job_benefit .benefit_list .benefit_item {
    margin-bottom: 0 !important;
  }  
}

/* 募集要項 */
.contents_recruit .section_job_description .job_tab_list {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  gap: 8px;
  width: min(100%, 1040px);
  margin: 0 auto 8px;
}
.contents_recruit .section_job_description .job_tab_list .job_tab {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 8px 0;
  border-radius: 99px;
  background: var(--main_color3);
  font-size: 14px;
  cursor: pointer;
}
.contents_recruit .section_job_description .job_tab_list .job_tab.active {
  background: var(--main_color);
  color: #fff;
}
.contents_recruit .section_job_description .job_box {
  display: none;
}
.contents_recruit .section_job_description .job_box.active {
  display: block;
  animation: tab_fade 0.8s ease-out forwards;
}
@keyframes tab_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 600px) {
  .contents_recruit .section_job_description .job_tab_list {
    gap: 24px;
    margin-bottom: 40px;
  }
  .contents_recruit .section_job_description .job_tab_list .job_tab {
    padding: 16px 0;
    font-size: 16px;
  }
}


/* ---------- 下層ページ CONTACT ---------- */
.contents_contact h3.secondary_title {
  font-size: clamp(24px, 4vw, 34px);
}

.contents_contact p {
  text-align: center;
  font-size: 18px;
}


/* ---------- 下層ページ WORKS & BLOG ---------- */
.contents_works .works_list,
.contents_blog .section_blog .blog_list {
  margin-bottom: 0;
}

.contents_works .works_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
}
.contents_works .works_list article {
  display: inherit;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.contents_works .works_list article a {
  display: grid;
  grid-template-rows: inherit;
  grid-row: inherit;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: var(--border);
}
.contents_works .works_list article .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
  overflow: hidden;
}
.contents_works .works_list article a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a:hover img {
  transform: scale(1.1);
}
/* .contents_works .works_list article a time {
  font-size: 12px;
} */
.contents_works .works_list article a h3 {
  margin-bottom: 8px;
  text-align: center;
  color: var(--main_color);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a .any_text {
  margin-bottom: 0;
}
/* ホバー */
.contents_works .works_list article a:hover img {
  transform: scale(1.1);
}
.contents_works .works_list article a:hover h3 {
  color: var(--main_color2);
}
.contents_works .works_list article a:hover .text {
  opacity: 0.6;
}
/* .contents_works .works_list article a .stickarrow {
  width: 60px;
  height: 8px;
  margin-left: auto;
  border-bottom: 1px solid;
  border-right: 1px solid;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
} */
@media (min-width: 600px) {
  .contents_works .works_list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .contents_works .works_list article a {
    padding: 10px;
  }
  .contents_works .works_list article a .text {
    font-size: 14px;
  }
}

/* WORKS モーダルver. の調整 */
/* モーダルの内容を非表示にしておく */
.modal_works_detail {
  display: none;
}
/* モーダル装飾調整 */
.modaal-wrapper .modaal-close {
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0 0 0 / 0.2);
}
.modaal-close:after, .modaal-close:before {
  top: 9px;
  left: 18px;
  background: var(--main_color);
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: var(--main_color2);
}
.modaal-container {
  width: min(100%, 800px);
}
.modaal-container img {
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 16px;
}
.modaal-content-container {
  padding: 16px;
}
.modaal-content-container h3 {
  margin-bottom: 16px;
  text-align: center;
  color: var(--main_color);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
}
.modaal-content-container .text {
  font-size: clamp(12px, 2vw, 14px);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}


/* ---------- 下層ページ WORKS & BLOG詳細 ---------- */
.contents_post_detail {
}
/* ブログページ用サブタイトル */
.contents_post_detail .subvisual p.subtitle {
  color: #fff;
  font-size: 32px;
  margin-top: 58px;
}
/* 記事　*/
.section_post_detail {
  width: 100%;
}
.section_post_detail article {
  margin-bottom: 64px;
}
.section_post_detail article .post_title {
  margin-bottom: 24px;
  margin-top: -0.5rem;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
/* ブログの場合の見出し */
.section_post_detail article .post_title.blog {
  margin-bottom: 0;
}
.section_post_detail article time {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--main_color2);
}
.section_post_detail article .post_eyecatch {
  margin-bottom: 24px;
}
.section_post_detail article .text a,
.text.modal_works_text a {
  color: var(--main_color2);
}
.section_post_detail article .text img {
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 16px;
}
/* 任意テキスト(WORKSモーダルにも適用) */
.section_post_detail article .text.any_text,
.text.modal_works_text .any_text {
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 18px);
}
.section_post_detail article .text.any_text span,
.text.modal_works_text .any_text span {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  background: var(--main_color);
  color: #fff;
}
/* 任意テキストが改行ありの場合 */
.section_post_detail article .text.any_text span.nl2,
.text.modal_works_text .any_text span.nl2 {
  margin-bottom: 8px;
}

/* ブログ記事用 見出しH2〜H4 */
.section_post_detail.blog article h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.5;
  margin: 48px 0 24px;
  padding: 8px 16px;
  background: var(--main_color2);
  color: #fff;
}
.section_post_detail.blog article h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
  margin: 48px 0 24px;
  padding: 8px 8px 8px 12px;
  background: var(--form_bg_color);
  border-left: 4px solid var(--main_color2);
}
.section_post_detail.blog article h4 {
  position: relative;
  padding-left: 16px;
  font-size: clamp(18px, 2vw, 20px);
  margin: 24px 0 8px;
  border-bottom: 1px solid var(--main_color2);
}
.section_post_detail.blog article h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--main_color2);
  transform: translateY(-50%) rotate(45deg);
}
/* テーブル(WORKSモーダルにも適用) */
.section_post_detail article table,
.text.modal_works_text table {
  width: min(100%, 1040px);
  margin: auto;
  border-collapse: collapse;
  /* font-size: 14px; */
}
.section_post_detail article table tr th,
.section_post_detail article table tr td,
.text.modal_works_text table tr th,
.text.modal_works_text table tr td {
  padding: 16px 8px;
  border: var(--border);
}
.section_post_detail article table tr th,
.text.modal_works_text table tr th {
  background: var(--table_bg_color);
}
@media (min-width: 600px) {
  /* .section_post_detail article table,
  .text.modal_works_text table {
    font-size: 16px;
  } */
  .section_post_detail article table tr th,
  .section_post_detail article table tr td,
  .text.modal_works_text table tr th,
  .text.modal_works_text table tr td {
    padding: 24px;
    vertical-align: middle;
  }
}
/* リスト(WORKSモーダルにも適用) */
.section_post_detail article ul,
.section_post_detail article ol,
.text.modal_works_text ul,
.text.modal_works_text ol {
  padding-inline-start: 1rem;
}
.section_post_detail article ul li,
.text.modal_works_text ul li {
  position: relative;
}
.section_post_detail article ul li:before,
.text.modal_works_text ul li:before {
  content: '';
  color: var(--main_color2);
  position: absolute;
  top: 0.6rem;
  left: -0.75rem;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: var(--main_color2);
}
.section_post_detail article ol,
.text.modal_works_text ol {
  list-style: decimal;
}
.section_post_detail article ol li::marker,
.text.modal_works_text ol li::marker {
  color: var(--main_color2);
  font-weight: 700;
}
.section_post_detail article dt,
.text.modal_works_text dt {
  color: var(--main_color2);
}

/* 最新の投稿 */
.contents_post_detail aside {
  width: 100%;
}
.contents_post_detail aside h4 {
  font-size: clamp(20px, 3vw, 24px);
}
.contents_post_detail aside .new-post_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contents_post_detail aside .new-post_list article {
  border: var(--border);
}
.contents_post_detail aside .new-post_list a {
  display:-webkit-box;
    display:-ms-flexbox;
      display:flex;
  -webkit-box-direction: normal;
    -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  padding: 8px;
}
.contents_post_detail aside .new-post_list h5 {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
}
.contents_post_detail aside .new-post_list .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.contents_post_detail aside .new-post_list .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (600px < width < 961px ) {
  .contents_post_detail .flex {
    flex-direction: column;
  }
  .contents_post_detail aside .new-post_list {
    gap: 16px;
  }
}

@media (min-width: 600px) and (max-width: 961px) {
  .contents_post_detail .flex {
    flex-direction: column;
  }
  .contents_post_detail aside .new-post_list {
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .contents_post_detail .sec.section_post_detail {
    margin-bottom: 0;
  }
  .section_post_detail {
    width: 68%;
  }
  .contents_post_detail aside {
    width: 28%;
  }
  .contents_post_detail aside .new-post_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contents_post_detail aside .new-post_list article {
    border-left: 0;
    border-right: 0;
  }
  .contents_post_detail aside .new-post_list article:not(:first-of-type) {
    border-top: 0;
  }
  .contents_post_detail aside .new-post_list a {
    -webkit-box-direction: normal;
      -ms-flex-direction: row;
        flex-direction: row;
    gap: 16px;
  }
  .contents_post_detail aside .new-post_list h5 {
    width: 65%;
  }
  .contents_post_detail aside .new-post_list .thum {
    width: 35%;
    aspect-ratio: 1 / 1;
  }
}

/* ---------- 下層ページ NEWS ---------- */
.contents_news {
}
.contents_news .section_news .news_list {
  width: min(100%, 800px);
  margin: auto;
}
@media (min-width: 600px) {
  .contents_news .section_news .news_list {
  }
}

/* ---------- 下層ページ NEWS詳細 ---------- */
.contents_news_detail {
}
.contents_news_detail article {
  width: min(100%, 800px);
  margin: 0 auto 64px;
}
.contents_news_detail article h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 24px;
  margin-top: -0.5rem;
  line-height: 1.5;
}
.contents_news_detail article time {
  margin-left: 8px;
}
.contents_news_detail .news_info {
  font-size: 12px;
  margin-bottom: 36px;;
}
.contents_news_detail article .text a {
  color: var(--main_color2);
}
.contents_news_detail article .text img {
  max-width: 100% !important;
  height: 100% !important;
}
@media (min-width: 600px) {
  .contents_news_detail .news_info {
    font-size: 14px;
  }
}

/* ---------- 下層ページ 404 ---------- */
.contents_err {
}


