@charset "UTF-8";
/* ============================================================
   main.css - メインコンテンツ・各サブページ共通
   --------------------------------------------------------------
   読み込み条件: 全ページで読み込み
   役割: メインコンテンツエリア・各種サブページ(news/access/facility/qa/plans 等)の共通スタイル
   注意: ファイルが大きいため、機能別の細分化は将来的なリファクタ対象

   構成:
     1. 共通スタイル(全デバイス共通)
     2. PC版スタイル(@media min-width: 769px)
     3. スマホ版スタイル(@media max-width: 768px)
     4. その他のメディアクエリ(画面サイズ別の微調整)
     5. アニメーション(@keyframes)

   ルール:
     - font-family / font-size はサイト共通CSS(common.css)で管理
     - 個別フォント指定はアイコン用(FontAwesome等)・装飾用(Roboto等)のみ
     - ブレークポイント: PC ≥ 769px / SP ≤ 768px
   ============================================================ */


/* ============================================================
   1. 共通スタイル
   ============================================================ */

#container-information .mod-information {
  overflow: hidden;
  position: relative;
  padding: 0 6px 6px;
}

#container-information .mod-information figure {
  position: relative;
  width: 90%;
  max-width: 994px;
  margin: 0 auto;
  padding: 2px;
  background-color: #d5f4ff;
  border-radius: .3em;
}

#container-information .mod-information figure:before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background-color: #b7deec;
  border-radius: .3em;
  content: '';
}

#container-information .mod-information figure .img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 0;
  padding-top: 39.59044%;
  border-radius: .3em .3em 0 0;
}

#container-information .mod-information figure .img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

#container-information .mod-information figure figcaption {
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 2em;
  background-color: #d5f4ff;
  text-align: center;
}

#container-information .mod-information figure figcaption h3 {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 38px;
  background-image: url(/img/svg/ttl-information-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#container-information .mod-information figure figcaption p,
.mod-banner-single .summary p {
  line-height: 1.8;
}

.acordion,
.acordion :after,
.acordion *:before,
.acordion_2,
.acordion_2 :after,
.acordion_2 *:before,
.acordion_3,
.acordion_3 :after,
.acordion_3 *:before {
  box-sizing: border-box;
}

.acordion,
.acordion_2,
.acordion_3 {
  border-top: 1px solid #d8d8d8;
}

.acordion .acordion_actab,
.acordion_2 .acordion_2_actab,
.acordion_3 .acordion_3_actab {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 1px;
  color: #1b2538;
}

.acordion .acordion_actab input,
.acordion_2 .acordion_2_actab input,
.acordion_3 .acordion_3_actab input {
  position: absolute;
  opacity: 0;
}

.acordion .acordion_actab label,
.acordion_2 .acordion_2_actab label,
.acordion_3 .acordion_3_actab label {
  display: block;
  position: relative;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 1em;
  color: #11a0e5;
  border-bottom: 1px solid #d8d8d8;
  line-height: 1.6;
  cursor: pointer;
  font-weight: bold;
}

.acordion .acordion_actab label:hover,
.acordion_2 .acordion_2_actab label:hover,
.acordion_3 .acordion_3_actab label:hover {
  color: #11a0e5;
}

.acordion .acordion_actab .acordion_actab-content,
.acordion_2 .acordion_2_actab .acordion_2_actab-content,
.acordion_3 .acordion_3_actab .acordion_3_actab-content {
  overflow: hidden;
  max-height: 0;
  background: #f6f4e8;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}

.acordion .acordion_actab .acordion_actab-content p,
.acordion_2 .acordion_2_actab .acordion_2_actab-content p,
.acordion_3 .acordion_3_actab .acordion_3_actab-content p {
  margin: 1em;
}

.acordion .acordion_actab input:checked~label,
.acordion_2 .acordion_2_actab input:checked~label,
.acordion_3 .acordion_3_actab input:checked~label {
  color: #11a0e5;
}

.acordion .acordion_actab input:checked~.acordion_actab-content,
.acordion_2 .acordion_2_actab input:checked~.acordion_2_actab-content,
.acordion_3 .acordion_3_actab input:checked~.acordion_3_actab-content {
  max-height: 40em;
}

.acordion .acordion_actab label::after,
.acordion_2 .acordion_2_actab label::after,
.acordion_3 .acordion_3_actab label::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 3em;
  margin-top: -12.5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}

.acordion .acordion_actab input[type=checkbox]+label::after,
.acordion_2 .acordion_2_actab input[type=checkbox]+label::after,
.acordion_3 .acordion_3_actab input[type=checkbox]+label::after {
  content: '\25BC';
}

.acordion .acordion_actab input[type=checkbox]:checked+label::after,
.acordion_2 .acordion_2_actab input[type=checkbox]:checked+label::after,
.acordion_3 .acordion_3_actab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

ul.step {
  padding: 0 10px;
  border: none;
  list-style-type: none;
}

ul.step li {
  position: relative;
  padding: 8px 0 0 30px;
  line-height: 1.5;
}

ul.step li::after,
ul.step li::before {
  position: absolute;
  content: '';
}

ul.step li::after {
  top: 8px;
  left: -0.2em;
  width: 20px;
  height: 20px;
  background-color: #F27398;
  border-radius: 50%;
}

ul.step li::before {
  top: 15px;
  left: 3px;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

ol.step {
  padding: 0.5em;
  list-style-type: none!important;
  counter-reset: number;
}

ol.step li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  padding-left: 30px;
  line-height: 1.5em;
}

ol.step li:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  background: #5c9ee7;
  color: white;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  line-height: 25px;
  content: counter(number);
  counter-increment: number;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
}

#main .button {
  width: 60%;
  margin: 10px auto;
  padding: 20px 12px;
  background-color: #ffab33;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  line-height: 1.4615;
  vertical-align: middle;
}

.btn-accordion,
.order-accordion,
.btn_rakusyo,
.btn_auto,
.btn_line_attend,
.btn-accordion button,
.order-accordion button,
.btn_rakusyo button,
.btn_auto button,
.btn_line_attend button,
.btn-accordion button:before,
.order-accordion button:before,
.btn-accordion button {
  min-width: 284px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #ffab33;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.btn-accordion button .txt:before {
  content: '詳細ページを表示';
}

.order-accordion button {
  min-width: 284px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #FA436E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.order-accordion button .txt:before {
  content: '仮申込みをする(通学)';
}

.order-accordion button:hover {
  opacity: 0.7;
}

.btn_rakusyo button {
  min-width: 284px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #ffab33;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.btn_rakusyo button:hover {
  opacity: 0.7;
}

.btn_auto button {
  min-width: 284px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #ffab33;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.btn_auto button .txt:before {
  content: 'ログイン画面を開く';
}

.btn_auto button:hover {
  opacity: 0.7;
}

.btn_line_attend button {
  min-width: 284px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #ffab33;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.btn_line_attend button .txt:before {
  content: 'LINEで問い合わせを始める(通学)';
}

.btn_line_attend button:hover {
  opacity: 0.7;
}

.download {
  border-radius: 10px;
  text-align: center;
}

.download li {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 25px;
  background: url(/img/icon_dl.png) 0 center no-repeat;
  vertical-align: middle;
}

.download li:hover {
  opacity: 0.7;
}

.download.pdf li:after {
  padding-left: 10px;
  vertical-align: -2px;
  content: url(/img/icon_pdf.png);
}

.panel {
  margin: 1em auto;
  padding: 1em;
  background: #f6f4e8;
}

.panel_gray {
  margin: 1em auto;
  padding: 1em 1.5em 1px;
  background: #f4f4f4;
}

.yellow_line {
  background: -webkit-linear-gradient(transparent 60%, #ffc926 60%);
  background: -o-linear-gradient(transparent 60%, #ffc926 60%);
  background: linear-gradient(transparent 60%, #ffc926 60%);
}

.line {
  background: linear-gradient(transparent 50%, #ffe4e1 0%);
}

.line2 {
  background: -webkit-linear-gradient(transparent 60%, #ffc926 60%);
  background: -o-linear-gradient(transparent 60%, #ffc926 60%);
  background: linear-gradient(transparent 60%, #ffc926 60%);
}

ol.list {
  padding: 0.5em;
  list-style-type: none!important;
  counter-reset: number;
}

ol.list li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  padding-left: 30px;
  line-height: 1.5em;
}

ol.list li:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  background: #0aa0e7;
  color: white;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  line-height: 25px;
  content: counter(number);
  counter-increment: number;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
}

.leftandright .item {
  overflow: hidden;
  list-style-type: none;
}

.leftandright .item:not(:last-child) {
  margin-bottom: 40px;
}

.leftandright .img {
  display: inline-block;
  overflow: hidden;
  float: left;
  width: 380px;
  box-sizing: border-box;
  margin-right: 24px;
  text-align: left;
  vertical-align: top;
}

.leftandright .img a {
  width: 100%;
  height: 100%;
}

.leftandright .text {
  display: inline-block;
  width: calc(100% - 380px - 28px);
  vertical-align: top;
}

.leftandright .text h4 {
  position: relative;
  margin-bottom: 18px;
  color: #333;
}

.leftandright .text h4:not([class])::after {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #38bdef;
  content: "";
}

.leftandright .text h4:not([class]) a::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-image: url(/img/svg/arw-text.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: 0;
  content: "";
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 30px;
}

.cards {
  max-width: 960px;
  margin: 0 auto 30px;
}

article {
  position: relative;
}

.article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}

.ribbon1 {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 15px auto;
  padding: 10px 20px;
  background: #f1f1f1;
}

.ribbon1 .star {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 2;
  width: 40px;
  margin: 0;
  padding: 10px 0;
  background: #F58E7E;
  color: white;
  text-align: center;
}

.ribbon1 .star:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-right: 20px solid #F58E7E;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #F58E7E;
  content: '';
}

.ribbon2 {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 15px auto;
  padding: 10px 20px;
  background: #f1f1f1;
}

.ribbon2 .star {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 2;
  width: 40px;
  margin: 0;
  padding: 10px 0;
  background: #8DCF3F;
  color: white;
  text-align: center;
}

.ribbon2 .star:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-right: 20px solid #8DCF3F;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #8DCF3F;
  content: '';
}

.ribbon3 {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 15px auto;
  padding: 10px 20px;
  background: #f1f1f1;
}

.ribbon3 .star {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 2;
  width: 40px;
  margin: 0;
  padding: 10px 0;
  background: #FDC44F;
  color: white;
  text-align: center;
}

.ribbon3 .star:after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-right: 20px solid #FDC44F;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #FDC44F;
  content: '';
}

.ribbon1,
.ribbon2,
.ribbon3 p {
  text-align: right;
}

.flowlist {
  width: 100%;
}

.flowlist .box {
  position: relative;
  min-height: 236px;
  box-sizing: border-box;
  padding: 48px 50px 50px 222px;
  background: #F5F5F5;
  color: #000;
}

.flowlist>li:first-child {
  padding-top: 0;
}

.flowlist>li {
  padding-top: 40px;
}

.flowlist .step {
  display: block;
  position: absolute;
  top: 50px;
  left: 50px;
  width: 120px;
  height: 120px;
  background: #0059E9;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.flowlist .step>span.text {
  padding-top: 27px;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.flowlist .step>span {
  display: block;
}

.flowlist .step>span.no {
  margin-top: -0.15em;
  letter-spacing: 0;
  line-height: 1.5;
}

.flowlist .title .area2 {
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: 700;
}

.flowlist li .box>.textblock {
  margin-top: 13px;
  letter-spacing: 0;
  line-height: 1.8;
}

.flowlist .box::after {
  display: block;
  position: absolute;
  top: 190px;
  left: 94px;
  width: 34px;
  height: 17px;
  background: url(/img/svg/flow.svg) no-repeat;
  background-size: auto auto;
  background-size: 34px 17px;
  content: " ";
}

.flowlist>li:last-child .box:after {
  display: none;
}

#stage {
  overflow: hidden;
  position: relative;
  max-width: 890px;
  margin: 10px auto;
}

#photos {
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-animation: imgPassToLeft0 30s infinite;
  animation: imgPassToLeft0 30s infinite;
}

#photo0 {
  left: 0%;
}

#photo1 {
  left: 100%;
}

#photo2 {
  left: 200%;
}

#photo3 {
  left: 300%;
}

#photo4 {
  left: 400%;
}

#photo5 {
  left: 500%;
}

#photo6 {
  left: 600%;
}

.pic {
  position: absolute;
  top: 0;
  width: 100%;
}

.pic img {
  width: 100%;
}

#back1,
#back2,
#back3,
#back4,
#back5,
#next1,
#next2,
#next3,
#next4,
#next5 {
  display: none;
}

.pic:hover>label div span {
  color: #EEE;
  opacity: 1;
}

.pic label div span:hover {
  color: #f00;
  cursor: pointer;
}

.cssgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 0 2em;
  padding: 0.8em;
  grid-auto-rows: 1fr;
  grid-gap: 0.8em;
}

.cssgrid>div {
  overflow: auto;
  min-width: 0;
  padding: 1em;
  background: #f6f4e8;
}

#wrap ul li:last-child {
  margin-right: 0;
}

.btn {
  margin: 25px 0 0;
  text-align: center;
}

.btn a {
  display: inline-block;
  position: relative;
  padding: 7px 60px 7px 40px;
  background: #E64176;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

#timetable .flex>div p {
  text-align: center;
}

.ul_none {
  list-style: none;
}

hr.hr1 {
  height: 1px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  border: 0;
}

.dl_voice dt {
  height: 1em;
  margin: 10px 0 0 0;
  padding: 0;
  color: #000000;
}

.dl_voice dd {
  margin: 0;
  color: #181818;
  border-top: 1px dashed #8c8b8b;
}

table.plans {
  width: 100%;
}

table.plans th {
  padding: 10px;
  background: #e9727e;
  color: #fff;
  border: solid 1px #ccc;
}

table.plans td {
  padding: 10px;
  background: #fff;
  border: solid 1px #ccc;
}

.step_list li {
  margin-bottom: 0;
  margin-left: 10px;
}

.step_list li::marker {
  content: "";
}

.step_list li::before {
  margin-right: 5px;
  content: "●";
}

.step_tit_sub {
  margin-bottom: 0 !important;
  font-weight: bold;
}

.textRed {
  color: #f2242f !important;
}

.form_title {
  margin-bottom: 12px;
  padding: 9px 10px;
  background: #00ab8c;
  color: #fff;
  line-height: 1.35;
  font-weight: 700;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  margin: 0;
  padding: 0.35em 0.625em 0.75em;
  border: none;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

.btnMiddle40>span {
  margin: 0 40px;
}

.mgt10 {
  margin-top: 10px !important;
}

.mgt15 {
  margin-top: 15px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt25 {
  margin-top: 25px !important;
}

.mgt30 {
  margin-top: 30px !important;
}

.mgb0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

.s_img .s_ttl {
  position: relative;
  padding: 20px;
  background: url("/img/school/facility_1.png") no-repeat center 20%/cover;
  color: #fff;
  text-align: center;
}

.s_img .s_ttl .inr {
  display: block;
  box-sizing: border-box;
  padding: 85px 0 110px;
  border: 5px solid #fff;
}

.s_img .s_ttl img {
  width: 365px;
  height: auto;
  opacity: 0;
}

.dlimg__item {
  overflow: hidden;
  list-style-type: none;
}

.dlimg__item:not(:last-child) {
  margin-bottom: 40px;
}

.dlimg__img {
  display: inline-block;
  overflow: hidden;
  float: left;
  width: 50%;
  box-sizing: border-box;
  margin-right: 24px;
  text-align: left;
  vertical-align: top;
}

.dlimg__img a {
  width: 100%;
  height: 100%;
}

.dlimg__text {
  display: inline-block;
  width: calc(100% - 50% - 28px);
  vertical-align: top;
}

.dlimg__text h3 {
  position: relative;
  margin-bottom: 18px;
  color: #333;
}

.dlimg__text h3:not([class])::after {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #38bdef;
  content: "";
}

.dlimg__text h3:not([class]) a::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background-image: url(/img/svg/arw-text.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: 0;
  content: "";
}

ul.list-ast {
  padding-left: 0;
}

ul.list-ast>li {
  padding-left: 1.25em;
  list-style: none;
}

ul.list-ast>li:before {
  display: inline-block;
  width: 1.25em;
  margin-left: -1.25em;
  vertical-align: top;
  content: "※";
}

.list-ast {
  color: #666;
}

.u-fz-sm {
  line-height: 1.5714 !important;
}

.fukidashi {
  margin-top: 16px;
}

.fukidashi .tit {
  position: relative;
  bottom: -15px;
  margin: 0px;
  padding: 20px 0 15px 100px;
  background: url(/img/bg-fukidashi.png) no-repeat left;
  background-position: left 30px center;
  background-size: contain;
  border: none;
  text-align: left;
  font-weight: bold;
}

.fukidashi .inner {
  margin-top: 0;
  padding: 30px 40px 24px;
  background: #f3f5f7;
  border-radius: 10px;
}

table.news {
  width: 100%;
  border-collapse: collapse;
}

table.news tr {
  border-bottom: solid 2px white;
}

table.news tr:last-child {
  border-bottom: none;
}

table.news th {
  position: relative;
  width: 28%;
  padding: 10px 0;
  background-color: #0AA0E7;
  color: white;
  text-align: left;
  text-align: center;
}

table.news td {
  padding-left: 10px;
}

.news {
  padding: .5em 10px .5em 0;
  background: #d5f4ff;
}

.news ul {
  padding-right: 10px;
}

.news li {
  margin-bottom: 0;
  border-top: dotted 1px #34b4e2;
  list-style: none;
}

.news li:nth-child(1) {
  border: 0;
}

.news li {
  display: block;
  padding: 1.429em 1.429em 1.429em 2.5em;
  background-image: url(/img/svg/ico-triangle.svg);
  background-repeat: no-repeat;
  background-position: 1.5em 1.8em;
  background-size: 7px auto;
}

.news li dl {
  min-height: 3em;
}

.news li dl:after {
  display: block;
  position: absolute;
  clear: both;
  content: '';
}

.news li dt {
  position: relative;
  float: left;
  width: 8.5em;
}

.news li dd {
  margin-left: 9.5em;
}

.news li .date {
  display: inline-block;
  width: 7em;
  letter-spacing: 0;
}

.news li .category {
  display: inline-block;
  overflow: hidden;
  width: 8.5em;
  box-sizing: border-box;
  background-color: #00a0e9;
  border-radius: .2em;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  vertical-align: text-bottom;
  text-overflow: ellipsis;
}

.news li .category:before {
  color: #fff;
  content: attr(data-category);
}

.news li .category[data-category=インフォメーション] {
  background-color: #16b701;
}

.news li .category[data-category=キャンペーン] {
  background-color: #ff8400;
}

.news li .category[data-category=イベント] {
  background-color: #fa436e;
}

.news li .category[data-category=お知らせ] {
  background-color: #a55b9a;
}

.link-t-a {
  display: block;
  position: relative;
  top: -170px;
}

section#staff h2 {
  width: 1040px;
  margin: 0 0 2em 0;
}

section#staff {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 10px auto 60px auto;
  -moz-box-lines: multiple;
  -webkit-box-lines: multiple;
}

section#staff div.member {
  width: 50%;
  margin: 0 0 2em 0;
  padding: 0 0 1em 0;
  border-bottom: 1px dotted #a9a9a9;
}

section#staff div.member div.img {
  float: left;
  width: 37.03%;
  max-width: 200px;
}

section#staff div.member div.data {
  float: right;
  width: 50%;
  max-width: 260px;
  margin: 0 40px 0 0;
}

section#staff div.member div.data p.name {
  margin: 0;
}

section#staff div.member div.data p.name span {
  color: #666666;
  font-weight: normal;
}

section#staff div.member div.data ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

section#staff div.member div.data ul li {
  margin: 0;
  padding: 3px 0 3px 0;
  border-bottom: 1px solid #dcdcdc;
  list-style: none;
}

section#staff div.member div.data ul li span {
  color: #ff597c;
  font-weight: bold;
}

section#staff div.member div.data ul li :last-child {
  border: none;
}

.recruit-order-accordion {
  display: block;
  margin: 20px;
  text-align: center;
}

.recruit-order-accordion button {
  width: 700px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #FA436E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.recruit-order-accordion button,
[class*="btn-link"] a {
  display: inline-block;
  position: relative;
  color: #fff;
  border: 0;
  line-height: 1;
}

.recruit-order-accordion button::after,
.recruit-order-accordion button::before,
[class*="btn-link"] a::after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.recruit-order-accordion button::before {
  position: absolute;
  top: calc(50% - .5em);
  left: 1.85em;
  width: 1em;
  height: 1em;
  background-image: url(/img/svg/ico-chevron-right.svg);
  background-size: contain;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.recruit-order-accordion button {
  letter-spacing: .05em;
  white-space: nowrap;
}

.recruit-order-accordion button,
[class*="btn-link"] a {
  color: #fff;
  line-height: 1;
}

.recruit-order-accordion button:hover {
  opacity: 0.7;
}

ul.recruit_li {
  margin: 5px 0 15px;
  padding: 0;
  line-height: 1.3em;
  font-family: Roboto;
}

ul.recruit_li li {
  position: relative;
  padding: 0 0 0 20px;
  list-style: none;
}

ul.recruit_li li::marker {
  display: none;
}

ul.recruit_li li::before {
  position: absolute;
  top: 5px;
  left: 2px;
  width: 3px;
  height: 6px;
  border: solid #ff6600;
  border-width: 0 2px 2px 0;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  border-bottom-width: medium;
  border-left-width: medium;
  border-right-width: medium;
  border-top-width: medium;
}

dl.recruit {
  padding-bottom: 5px;
}

.recruit dt {
  float: left;
  clear: both;
  width: 210px;
  padding: 5px;
  background-color: #e3edf4;
  border-bottom: dotted 1px #0AA0E7;
}

.recruit dd {
  width: auto;
  margin-left: 210px;
  padding: 5px;
  border-bottom: dotted 1px #0AA0E7;
}

.recruit_tbl dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.recruit_tbl dt {
  flex-basis: 220px;
  padding: 10px;
  background-color: #e3edf4;
  border-bottom: dotted 1px #0AA0E7;
}

.recruit_tbl dd {
  flex-basis: 450px;
  padding: 10px;
  background-color: #fff;
  border-bottom: dotted 1px #0AA0E7;
}

section#safety {
  margin: 10px 0;
  padding: 10px;
}

section#safety div.container h2 {
  margin: 0 0 1em 0;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 6px #0AA0E7;
}

section#safety .safety {
  display: inline;
  float: left;
  width: 90%;
  max-width: 300px;
}

.new {
  color: #ff0000;
}

ul.top_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.top_ul li {
  position: relative;
  margin: 0;
  padding: 0 0 0 2em;
}

ul.top_ul li::before {
  position: absolute;
  left: 0;
  color: #00ACDB;
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.l-inner-sm {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.l-sec-t-md {
  margin-top: 10px;
}

.service-merit-wrap {
  padding-top: 3px;
  padding-bottom: 3px;
}

.service-merit {
  position: relative;
  margin: 30px 8px 5px;
  box-shadow: 0 0 0 1px #3E5AA8, 0 0 0 5px #fff, 0 0 0 8px #3E5AA8;
}

.service-merit:before {
  display: inline-block;
  position: absolute;
  top: -33px;
  width: 59px;
  height: 25px;
  margin-left: -30px;
}

.service-meritInfo {
  padding: 10px 15px 20px 15px;
}

.service-meritInfo_list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.55;
}

.service-meritInfo_heading {
  margin-bottom: 15px;
  text-align: center;
}

.service-meritInfo_heading_text {
  color: #3E5AA8;
  line-height: 1.75;
  font-weight: 700;
}

.service-meritInfo_heading_text:after,
.service-meritInfo_heading_text:before {
  display: inline-block;
  margin-left: 5px;
  content: '/';
  font-weight: 400;
}

.service-meritInfo_heading_text:before {
  margin-right: 5px;
  margin-left: 0;
  -ms-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.service-meritInfo_heading_title {
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
}

.service-meritInfo_heading_title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffff00));
  background: -o-linear-gradient(transparent 70%, #ffff00 70%);
  background: linear-gradient(transparent 70%, #ffff00 70%);
}

.pdf {
  border-radius: 10px;
  text-align: center;
}

.pdf li {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 25px;
  background: url(/img/icon_dl.png) 0 center no-repeat;
  vertical-align: middle;
}

.pdf li:hover {
  opacity: 0.7;
}

.infobox2 {
  margin: 2em 0;
  padding: 3em 2em;
  background: -webkit-repeating-linear-gradient(-45deg, #ffeded, #ffeded 5px, #ffffff 5px, #ffffff 10px);
  background: repeating-linear-gradient(-45deg, #ffeded, #ffeded 5px, #ffffff 5px, #ffffff 10px);
  color: #000;
}

.infobox2 p {
  margin: 0;
  padding: 0;
}

.qr {
  float: left;
  width: 400px;
  max-width: 400px;
}

.qr_img {
  width: 185px;
  max-width: 185px;
}

.qr_img2 {
  width: 200px;
  max-width: 200px;
}

.oneday-order-accordion {
  display: block;
  margin: 20px;
  text-align: center;
}

.oneday-order-accordion button {
  width: 700px;
  height: 2.666em;
  padding: .3em 3.5em;
  background: #FA436E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.oneday-order-accordion button,
[class*="btn-link"] a {
  display: inline-block;
  position: relative;
  color: #fff;
  border: 0;
  line-height: 1;
}

.oneday-order-accordion button::after,
.oneday-order-accordion button::before,
[class*="btn-link"] a::after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.oneday-order-accordion button::before {
  position: absolute;
  top: calc(50% - .5em);
  left: 1.85em;
  width: 1em;
  height: 1em;
  background-image: url(/img/svg/ico-chevron-right.svg);
  background-size: contain;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.oneday-order-accordion button {
  letter-spacing: .05em;
  white-space: nowrap;
}

.oneday-order-accordion button,
[class*="btn-link"] a {
  color: #fff;
  line-height: 1;
}

.oneday-order-accordion button:hover {
  opacity: 0.7;
}

.pc_img {
  display: block !important;
}

.sp_img {
  display: none !important;
}

.qr_line {
  width: 200px;
}

.line_info::before {
  display: inline-block;
  position: relative;
  top: .2em;
  left: -.5em;
  width: 1px;
  height: 1.125em;
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}

.line_info::after {
  display: inline-block;
  position: relative;
  top: .2em;
  left: .5em;
  width: 1px;
  height: 1.125em;
  background: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}

.btn_line {
  display: flex;
  width: 770px;
  margin: 0 auto;
}

.order-line_attend {
  display: block;
  margin: 0 20px 20px;
  text-align: center;
}

.order-line_attend button,
[class*=btn-link] a {
  display: inline-block;
  position: relative;
  color: #fff;
  border: 0;
  line-height: 1;
}

.order-line_attend button {
  min-width: 240px;
  height: 2.3em;
  padding: .3em 3.5em;
  background: #F58E7E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.order-line_attend button:before {
  position: absolute;
  top: calc(50% - .5em);
  left: 1.85em;
  width: 1em;
  height: 1em;
  background-image: url(/img/svg/ico-chevron-bottom-w.svg);
  background-size: contain;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.order-line_attend button:after,
.order-accordion button:before,
[class*=btn-link] a:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.order-accordion button:before,
[class*=btn-link] a:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.order-line_attend button:hover {
  opacity: 0.7;
  cursor: pointer;
}

.containerPlan {
  width: 100%;
}

.containerPlan::before {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 0;
  border-right: 8px solid transparent;
  border-bottom: 8.5px solid;
  border-left: 8px solid transparent;
  content: "";
}

.containerPlan::after {
  position: absolute;
  top: 50px;
  right: 20px;
  width: 0;
  border-top: 8.5px solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: "";
}

.containerDate {
  width: 100%;
}

.containerDate::before {
  position: absolute;
  top: 105px;
  right: 20px;
  width: 0;
  border-right: 8px solid transparent;
  border-bottom: 8.5px solid;
  border-left: 8px solid transparent;
  content: "";
}

.containerDate::after {
  position: absolute;
  top: 130px;
  right: 20px;
  width: 0;
  border-top: 8.5px solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: "";
}

.planSelect li {
  display: block;
  float: left;
  width: 253px;
  margin: 3px 5px;
  background: #999;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.planSelectedColor {
  padding: 10px;
  background: #f66076 !important;
}

.planSelect li a {
  display: block;
  padding: 10px;
}

.planSelect li a:link,
.planSelect li a:visited {
  color: #fff;
  text-decoration: none;
}

.planSelect li a:hover {
  background: #ddd;
}

.dateSelect li {
  display: block;
  float: left;
  width: 120px;
  height: 30px;
  margin: 3px 5px;
  background: #999;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.dateSelectedColor {
  background: #f66076 !important;
}

.dateSelect li a {
  display: block;
}

.dateSelect li a:link,
.dateSelect li a:visited {
  color: #fff;
  text-decoration: none;
}

.dateSelect li a:hover {
  background: #ddd;
}

.calendarOrderBtn {
  margin: 5px 0 0;
  padding: 5px 0;
  background: url(/img/calendar/arrow.png) no-repeat 95% 50% #f66076;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  font-weight: bold;
}

.calendarOrderBtn a {
  display: block;
}

.calendarOrderBtn a:link,
.calendarOrderBtn a:visited {
  color: #fff;
  text-decoration: none;
}

.spCalendarBtnColor {
  background: rgb(255, 253, 233);
}

.spCalendarBtnColorSelected {
  display: block;
  padding: 14px;
  background: #3ab4c1;
  color: #fff;
}

.calendarArrow {
  position: relative;
}

.calendarArrow::after {
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 0;
  height: 0;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #3ab4c1;
  transform: rotate(45deg);
  content: '';
}

dl.calendarColorAccordion {
  margin: 0 0 20px;
}

dl.calendarColorAccordion > dt {
  padding: 10px 20px 10px 10px;
  background: url(/img/close.png) no-repeat 98% 50%,rgb(255, 253, 233);
  -webkit-background-size: 23px 23px,auto auto;
  color: #f00000;
  border: 1px solid #fff069;
  font-weight: bold;
}

dl.calendarColorAccordion > dt.open {
  background: url(/img/open.png) no-repeat 98% 50%,rgb(255, 253, 233);
  -webkit-background-size: 23px 23px,auto auto;
}

dl.calendarColorAccordion > dt span {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 2px 5px;
  background: #f00000;
  color: #fff;
  vertical-align: text-top;
}

dl.calendarColorAccordion > dt span.sml {
  display: inline;
  padding: 0;
  background: none;
  color: #f00000;
  vertical-align: baseline;
}

dl.calendarColorAccordion > dd {
  display: none;
}

.rakusyo_img {
  width: 500px;
}

.button_pg {
  max-width: 300px;
  margin: 0 auto;
  padding: 5px 0;
}

a.btn_pg {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.1em;
  line-height: 1.3;
  transition-duration: 0.3s;
}

a.btn_pg:before {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border: 0;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  content: '';
}

a.btn_pg:hover {
  background: #000;
  color: #fff;
}

a.btn_pg:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.level {
  width: 100%;
  margin: 0 auto 42px;
  border: 4px solid #11a0e5;
}

.level h3 {
  margin-bottom: 0;
  padding: 16px 0 12px;
  background: #11a0e5;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.level h3 span {
  position: relative;
  top: -3px;
  margin-right: 8px;
  padding: 4px;
  background: #FFFF00;
  color: #11a0e5;
  line-height: 1;
  font-weight: normal;
}

.level h3 span.no_bg_color {
  background: none;
  color: white;
}

.level .level_inner {
  padding: 24px;
}

.level .level_inner h2 {
  margin-bottom: 24px;
  background: #11a0e5;
  font-weight: normal;
}

.level .level_inner .level_fee_box {
  margin-bottom: 20px;
  background: #F2F2F2;
}

.level .level_inner .level_fee_box h3 {
  margin-bottom: 0;
  padding: 8px 0;
  background: #2F7DB2;
  color: #ffffff;
  text-align: center;
}

.level .level_inner .level_fee_box .fee_flexbox {
  display: flex;
  align-items: center;
}

.level .level_inner .level_fee_box .fee_flexbox.padding_20px {
  padding: 20px;
}

.level .level_inner .level_fee_box .fee_flexbox div {
  width: 80%;
  padding: 4%;
  font-weight: bold;
}

.level .level_inner .level_fee_box .fee_flexbox div.double_width {
  width: 66.6%;
}

.level .level_inner .level_fee_box h4 {
  margin-bottom: 0;
  font-weight: bold;
}

.level .level_inner .level_fee_box h4.display_inline_block {
  display: inline-block;
}

.level .level_inner .level_fee_box h4 span {
  vertical-align: middle;
  font-weight: normal;
}

.level .level_inner .level_fee_box p {
  margin-bottom: 0;
}

.level .level_inner .level_fee_box p.fee {
  line-height: 1;
  font-weight: bold;
}

.level .level_inner .level_fee_box p.fee span {
  vertical-align: middle;
}

.level .level_inner .level_fee_box p.display_inline_block {
  display: inline-block;
}

.level .level_inner .level_fee_box.margin_bottom_zero {
  margin-bottom: 0;
}

.level .level_inner h4.detail_title {
  margin-bottom: 12px;
  padding: 8px 0;
  border-top: 2px solid #11a0e5;
  border-bottom: 2px solid #11a0e5;
}

ol.epos {
  padding-left: 15px;
  list-style-type: none;
  counter-reset: item;
}

ol.epos ol {
  padding-left: 1em;
}

li.epos {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

li.epos:before {
  padding-right: .5em;
  color: #b40000;
  content: counter(item)'.';
  counter-increment: item;
  font-weight: bold;
}

.epos img {
  width: 300px;
}

.pc_hid {
  display: none;
}

table.ep_tb01 {
  width: 100%;
  border-collapse: collapse;
}

.ep_tb01 th,
.ep_tb01 td {
  box-sizing: border-box;
  text-align: left;
}

.main_att01 {
  margin-top: 30px;
  padding: 30px 35px;
  background: #fff98a;
  border: solid 5px #11A0E5;
  border-radius: 10px;
  box-shadow: inset 5px 5px 0 0 #fff,inset -5px -5px 0 0 #fff;
}

.main_att01 p {
  margin-bottom: 20px;
  color: #11A0E5;
  text-align: center;
  font-weight: bold;
}

.main_att01 ul li {
  margin-left: 1em;
  text-indent: -1em;
  list-style: none;
}

.main_att01 ul li:before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  background-color: #11A0E5;
  border-radius: 50%;
  content: "";
}

.item-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.item-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.carLink {
  max-width: 1024px;
  margin: 0 auto;
}

.carLink ul {
  text-align: center;
  letter-spacing: -.4em;
}

.carLink ul li {
  display: inline-block;
  width: 50%;
  max-width: 311px;
  padding: 0 .722em .3em;
  letter-spacing: 0;
  vertical-align: top;
  list-style: none;
}

.carLink ul li a {
  display: block;
  padding: .66em;
  background: #d4f3fe;
  border-radius: .3em;
  box-shadow: 4px 4px 0 #7fd6f6;
  text-align: left;
  line-height: 1.2;
  vertical-align: middle;
}

.carLink ul li a:before {
  display: inline-block;
  position: relative;
  top: .15em;
  width: 1em;
  height: 1em;
  margin-right: .25em;
  background-image: url(/img/svg/ico-arrow-right-outline.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  content: '';
}

.epos_credit {
  width: 500px;
  margin: 0 auto;
}

.epos_credit_info::before {
  display: inline-block;
  position: relative;
  top: .2em;
  left: -.5em;
  width: 1px;
  height: 1.125em;
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}

.epos_credit_info::after {
  display: inline-block;
  position: relative;
  top: .2em;
  left: .5em;
  width: 1px;
  height: 1.125em;
  background: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}

.cp_bnr {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.cp_bnr img {
  width: 100%;
  opacity: 0;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: cp_bnr;
  animation-name: cp_bnr;
}

.cp_bnr .img1 {
  display: block;
  margin: 0 auto;
  animation: change-img-anim-first 10s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.cp_bnr .img2 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.btn_car {
  display: flex;
  width: 560px;
  margin: 0 auto;
}

.order-accordion_carmt {
  display: block;
  margin: 20px;
  text-align: center;
}

.order-accordion_carmt button,
[class*=btn-link] a {
  display: inline-block;
  position: relative;
  color: #fff;
  border: 0;
  line-height: 1;
}

.order-accordion_carmt button {
  min-width: 240px;
  height: 2.3em;
  padding: .3em 3.5em;
  background: #FA436E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.order-accordion_carmt button:before {
  position: absolute;
  top: calc(50% - .5em);
  left: 1.85em;
  width: 1em;
  height: 1em;
  background-image: url(/img/svg/ico-chevron-bottom-w.svg);
  background-size: contain;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.order-accordion_carmt button:after,
.order-accordion button:before,
[class*=btn-link] a:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.order-accordion_carmt button .txt:before {
  content: '普通車MT';
}

.order-accordion_carat {
  display: block;
  margin: 20px;
  text-align: center;
}

.order-accordion_carat button,
[class*=btn-link] a {
  display: inline-block;
  position: relative;
  color: #fff;
  border: 0;
  line-height: 1;
}

.order-accordion_carat button {
  min-width: 240px;
  height: 2.3em;
  padding: .3em 3.5em;
  background: #FA436E;
  border-radius: 10em;
  letter-spacing: .05em;
  white-space: nowrap;
}

.order-accordion_carat button:before {
  position: absolute;
  top: calc(50% - .5em);
  left: 1.85em;
  width: 1em;
  height: 1em;
  background-image: url(/img/svg/ico-chevron-bottom-w.svg);
  background-size: contain;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
}

.order-accordion_carat button:after,
.order-accordion button:before,
[class*=btn-link] a:after {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  content: '';
}

.order-accordion_carat button .txt:before {
  content: '普通車AT';
}

.order-accordion_carat button:hover {
  opacity: 0.7;
  cursor: pointer;
}

.order-accordion_carmt button:hover {
  opacity: 0.7;
  cursor: pointer;
}

.tbl_akiwaku th {
  background: #88b7d5;
  color: #ffffff;
  border-radius: 5px 5px 0 0;
  text-align: center;
  vertical-align: middle;
  font-weight: 800;
}

.tbl_akiwaku th.group1 {
  padding: 8px;
  background: #FA4E74;
  border-bottom: solid #fff 1px;
}

.tbl_akiwaku tr td {
  padding: 5px 15px;
  border-right: solid #ccc 1px;
  border-bottom: solid #ccc 1px;
  border-left: solid #ccc 1px;
  text-align: center;
  vertical-align: middle;
}

.tbl_akiwaku td.group1 {
  background: #fff;
}

.tbl_akiwaku td.red {
  background: #ff0000;
  color: #fff;
}

.tbl_akiwaku td.gray {
  background: #666;
  color: #fff;
}

.akiwaku_info {
  color: #ff0000;
}

.akiwaku_info::before {
  display: inline-block;
  position: relative;
  top: .2em;
  left: -.5em;
  width: 1px;
  height: 1.125em;
  background: #ff0000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: '';
}

.akiwaku_info::after {
  display: inline-block;
  position: relative;
  top: .2em;
  left: .5em;
  width: 1px;
  height: 1.125em;
  background: #ff0000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
}

.modalNationality-open-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.modalNationality-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modalNationality-overlay.is-active {
  display: flex;
}

.modalNationality-wrapper {
  overflow-y: auto;
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modalNationality-close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #999999;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.modalNationality-close-button:hover {
  color: #333333;
}

.modalNationality-content h1 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.modalNationality-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  position: relative;
  padding-left: 50px;
  list-style-type: none;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 2em;
  height: 2em;
  background: #4D9BC1;
  color: #fff;
  border-radius: 100vh;
  text-align: center;
  line-height: 2em;
}

.flow05 > li:not(:last-child)::before {
  position: absolute;
  top: calc(50% - -30px);
  left: 24px;
  width: 4px;
  height: 100%;
  background: #c3c3c3;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
}

.flow05 > li dl dt {
  padding-left: 20px;
  color: #4D9BC1;
  font-weight: 600;
}

.flow05 > li dl dd {
  margin-left: 0;
}

.shokai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0;
  padding: 0;
  grid-auto-rows: 1fr;
  grid-gap: 0.8em;
}

.shokai>div {
  overflow: auto;
  min-width: 0;
  padding: 0;
}

.plansBlock {
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansBox {
  padding-top: 1rem;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  background: linear-gradient(135deg, #ca8a04 0%, #eab308 100%);
  color: #fff;
  border-radius: 1rem 1rem 0 0;
}

.plansBox h2 {
  margin-bottom: 0;
}

.plansBox h2 span {
  border-left: none !important;
}

.p-6 {
  padding: 1.5rem;
}

.overflow-x-auto {
  overflow-x: auto;
}

.plansTable {
  width: 100%;
  border-color: inherit;
  text-align: left;
  text-indent: 0;
  border-collapse: collapse;
}

.plansTable tr {
  background-color: rgb(254 252 232);
  color: rgb(133 77 14);
}

.plansTable tr th {
  padding: 1rem;
}

.plansTable tr th:first-child {
  width: 25%;
}

.plansTable tr th:nth-child(2) {
  width: 25%;
}

.plansTable tr th:last-child {
  width: 50%;
  text-align: right;
}

.plansTable tr td {
  padding: 1rem;
  background-color: #fff;
  color: #000;
}

.plansTable tr td.holdLicense {
  background-color: rgb(249 250 251);
  vertical-align: middle;
  border-right-width: 1px;
  font-weight: 700;
}

.plansTableFeeBox {
  text-align: right;
}

.plansTableFee {
  color: rgb(202 138 4);
  line-height: 2rem;
  font-weight: 700;
}

.bg-yellow-50 {
  background-color: rgb(254 252 232) !important;
}

.plansTableNote {
  margin-top: 1rem;
}

.plansDetailBlock {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: calc(3rem * calc(1 - 0));
  margin-bottom: calc(3rem * 0);
}

.plansBreakdown {
  box-sizing: border-box;
  padding: 1.5rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansBreakdown h3 {
  padding: 0 !important;
  background: #fff !important;
  color: rgb(41 171 226) !important;
  font-weight: 700 !important;
}

.plansBreakdownList {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgb(239 246 255);
  border-radius: 0.75rem;
}

.plansBreakdownList span {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.125rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
  border-radius: 9999px;
  font-weight: 700;
}

.plansBreakdownListText {
  margin: 0;
  color: rgb(31 41 55);
  font-weight: 700;
}

.plansBreakdownListTextXs {
  margin: 0;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: calc(1rem * calc(1 - 0));
  margin-bottom: calc(1rem * 0);
}

.plansCancel {
  box-sizing: border-box;
  padding: 1.5rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansCancel h3 {
  padding: 0 !important;
  background: #fff !important;
  color: rgb(239 68 68) !important;
  font-weight: 700 !important;
}

.plansCancelBox {
  box-sizing: border-box;
  padding: 1rem;
  background-color: rgb(254 242 242);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(254 226 226);
  border-radius: 0.75rem;
}

.plansOrderBox {
  text-align: center;
}

.plansOrder {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  padding-top: 1rem;
  padding-right: 3rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  background-color: rgb(255 90 115);
  color: rgb(255 255 255);
  border-radius: 9999px;
  font-weight: 700;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.plansOrder:hover {
  background-color: #ff0000;
  color: rgb(255 255 255);
}

.plansPreparationBlock {
  overflow: hidden;
  box-sizing: border-box;
  margin-top: calc(3rem * calc(1 - 0));
  margin-bottom: calc(3rem * 0);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansPreparationBox {
  padding: 1rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
}

.plansPreparationBox h2 {
  margin: 0;
}

.plansPreparationBox h2 span {
  border-left: none !important;
}

.plansPreparationTable {
  width: 100%;
  border-color: inherit;
  text-align: left;
  text-indent: 0;
  border-collapse: collapse;
}

.plansPreparationTable tr th {
  width: 25%;
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  background-color: rgb(249 250 251);
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
  font-weight: 600;
}

.plansPreparationTable tr td {
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
}

.plansPreparationTable tr td p {
  margin: 0;
}

.plansPreparationTableBox {
  width: 25%;
  background-color: rgb(249 250 251);
  border-style: solid;
  border-right-width: 1px;
  font-weight: 600;
}

.plansQualificationBlock {
  overflow: hidden;
  box-sizing: border-box;
  margin-top: calc(3rem * calc(1 - 0));
  margin-bottom: calc(3rem * 0);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansQualificationBox {
  padding: 1rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
}

.plansQualificationBox h2 {
  margin: 0;
}

.plansQualificationBox h2 span {
  border-left: none !important;
}

.plansQualificationTable {
  width: 100%;
  border-color: inherit;
  text-align: left;
  text-indent: 0;
  border-collapse: collapse;
}

.plansQualificationTable tr th {
  width: 25%;
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  background-color: rgb(249 250 251);
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  font-weight: 600;
}

.plansQualificationTable tr td {
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
}

.plansTimeBlock {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: calc(3rem * calc(1 - 0));
  margin-bottom: calc(3rem * 0);
}

.plansTimeLimitBox {
  overflow: hidden;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansTimeLimit {
  padding: 1rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
}

.plansTimeLimit h2 {
  margin: 0;
}

.plansTimeLimit h2 span {
  border-left: none !important;
}

.plansTimeLimitTable {
  width: 100%;
  border-color: inherit;
  text-align: left;
  text-indent: 0;
  border-collapse: collapse;
}

.plansTimeLimitTable tr th {
  width: 25%;
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  background-color: rgb(249 250 251);
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
  font-weight: 600;
}

.plansTimeLimitTable tr td {
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
}

.plansTimeLimitTable tr td:first-child {
  font-weight: 600;
}

.plansTimeScheduleBox {
  overflow: hidden;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansTimeSchedule {
  padding: 1rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
}

.plansTimeSchedule h2 {
  margin: 0;
}

.plansTimeSchedule h2 span {
  border-left: none !important;
}

.plansTimeScheduleDetail {
  overflow-y: auto;
  max-height: 300px;
}

.plansTimeScheduleTable {
  width: 100%;
  border-color: inherit;
  text-align: left;
  text-indent: 0;
  border-collapse: collapse;
}

.plansTimeScheduleTable tr th {
  width: 25%;
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  background-color: rgb(249 250 251);
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
  font-weight: 600;
}

.plansTimeScheduleTable tr td {
  box-sizing: border-box;
  padding-top: 0.75rem;
  padding-right: 1rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  border-width: 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
}

.plansHighSpeedBlock {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-sizing: border-box;
  margin: 30px 0;
  padding: 1.5rem;
  background-color: rgba(92, 182, 221, 0.1);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(41 171 226);
  border-radius: 1rem;
}

.plansHighSpeedBox {
  padding: 0.5rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
  border-radius: 0.75rem;
}

.plansHighSpeedText h3 {
  margin: 0;
  padding: 0 !important;
  background: none !important;
  color: rgb(41 171 226) !important;
  font-weight: 700 !important;
}

.plansHighSpeedText p {
  margin: 0;
}

.plansFlowBlock {
  overflow: hidden;
  box-sizing: border-box;
  margin-top: calc(3rem * calc(1 - 0));
  margin-bottom: calc(3rem * 0);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(243 244 246);
  border-radius: 1rem;
}

.plansFlowBox {
  padding: 1rem;
  background-color: rgb(41 171 226);
  color: rgb(255 255 255);
}

.plansFlowBox h2 {
  margin: 0;
}

.plansFlowBox h2 span {
  border-left: none !important;
}

.plansFlowDetail {
  position: relative;
  padding: 2.5rem;
}

.plansFlowDetailBorder {
  display: block;
  position: absolute;
  top: 2.5rem;
  z-index: 0;
  width: 0.25rem;
  background-color: rgb(229 231 235);
}

.plansFlowDetailBlock {
  display: flex;
  position: relative;
  z-index: 10;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: calc(2rem * calc(1 - 0));
  margin-bottom: calc(2rem * 0);
}

.plansFlowDetailStepBlock {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
}

.plansFlowDetailStepBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  background-color: rgb(29 78 216);
  color: rgb(255 255 255);
  border-radius: 0.75rem;
  font-weight: 700;
}

.text-3xl {
  line-height: 2.25rem;
}

.plansFlowDetailStepBoxArrow {
  margin-top: 0.5rem;
  color: rgb(41 171 226);
}

.text-4xl {
  line-height: 2.5rem;
}

.plansFlowDetailStepTextBlock {
  flex-grow: 1;
  padding: 1.5rem;
  background-color: rgb(249 250 251);
  border-width: 1px;
  border-color: rgb(229 231 235);
  border-radius: 0.75rem;
}

.wari {
  background: linear-gradient(transparent 50%, yellow 50%);
  color: #000;
  font-weight: bold;
}

.wari_margin {
  margin: 0 2.5em;
}

.wari_img {
  margin-top: 0;
}

.wari_box1 {
  position: relative;
  margin: 2em 2.5em;
  padding: 3em 1em;
  background: #fff0cd;
  border: dashed 2px white;
  box-shadow: 0px 0px 0px 5px #fff0cd;
}

.wari_box1:after {
  position: absolute;
  top: -7px;
  right: -7px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #ffdb88 #fff #ffdb88;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  content: '';
}

.wari_box1 p {
  margin: 0;
  padding: 0;
}

.wari_box1 p.fw {
  color: #FF0000;
}

.wari_box2 {
  position: relative;
  margin: 2em 2.5em;
  padding: 3em 1em;
  background: #d6ebff;
  border: dashed 2px white;
  box-shadow: 0px 0px 0px 5px #d6ebff;
}

.wari_box2:after {
  position: absolute;
  top: -7px;
  right: -7px;
  border-width: 0 15px 15px 0;
  border-style: solid;
  border-color: #d6ebff #fff #d6ebff;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  content: '';
}

.wari_box2 p {
  margin: 0;
  padding: 0;
}

.wari_box2 p.fw {
  color: #FF0000;
}

.other-languages {
  margin-top: 30px;
  text-align: center;
}

.other-languages p {
  font-weight: bold;
}

.other-languages div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.other-languages a {
  display: flex;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.other-languages img {
  width: 16px;
  height: 16px;
  margin-top: 8px;
  margin-right: 5px;
}

.other-languages-footer {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.modalNationality-open-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.modalNationality-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modalNationality-overlay.is-active {
  display: flex;
}

.modalNationality-wrapper {
  overflow-y: auto;
  position: relative;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modalNationality-close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #999999;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.modalNationality-close-button:hover {
  color: #333333;
}

.modalNationality-content h1 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.modalNationality-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.modalNationalityBlock a {
  margin-left: 20px;
}

#news-list {
  max-width: 1200px;
  margin: 0 auto;
}

.news-contents {
  margin: 0 auto 40px;
  padding: 8px;
  background-image: url(/img/bg_border.png);
  border-radius: 20px;
}

.news-contents .box-inner {
  padding: 40px;
  background-color: #FFF;
  border-radius: 15px;
}

.entry-content {
  margin-bottom: 65px;
}

#contents .news-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 2px dotted #E4E4E4;
}

#contents .news-group .txt {
  display: flex;
  align-items: center;
}

#contents .news-group:first-child {
  border-top: 2px dotted #E4E4E4;
}

#contents .news-group p.day {
  width: 100px;
  margin-right: 15px;
}

#contents .news-group p {
  margin-bottom: 0;
}

#contents .news-group .ttl {
  width: calc(100% - 115px);
}

.page-numbers {
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 9px 20px;
  background-color: #FDE2E6;
  color: #565656;
  border-radius: 5px;
  transition: .3s;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.dots:hover {
  opacity: 1;
}

.page-num-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-numbers.current {
  background-color: #EF788B;
  color: #FFF;
}

.page-numbers.current:hover {
  color: #FFF;
  opacity: 1;
  pointer-events: none;
}

.page-numbers:hover {
  color: #565656;
  opacity: .5;
  text-decoration: none;
}

#contents .nurserya-catch {
  display: block;
  position: relative;
  z-index: 9999;
  width: max-content;
  max-width: 100%;
  margin: auto auto -70px;
  padding: 40px 60px 60px;
  background-color: #F7D953;
  background-image: url(/img/plans/bg_bubble.png);
  border-radius: 5px;
  text-align: center;
  letter-spacing: 2px;
  clip-path: polygon(5% 0, 0 40%, 5% 80%, 39% 80%, 95% 80%, 100% 40%, 95% 0);
  font-weight: bold;
}

.nurserya-points,
.nurserya-caution {
  margin-bottom: 70px;
  padding: 90px 50px 50px;
  background-color: #FFE5E9;
  border-radius: 20px;
}

.nurserya-caution {
  background-color: #EAF5F9;
}

.nurserya-list {
  position: relative;
  z-index: 0;
  width: 700px;
  max-width: 100%;
  margin: auto auto 40px !important;
  padding-left: 0;
  list-style: none;
}

#contents .nurserya-list li {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 10px 15px 60px;
  background-color: #FFF;
  border: 3px solid #EF788B;
  border-radius: 15px;
  letter-spacing: 1px;
  font-weight: bold;
}

#contents .nurserya-caution .nurserya-list li {
  background-color: #FFF;
  border: 3px solid #2394C7;
}

#contents .nurserya-list li::after {
  position: absolute;
  top: -6%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 120%;
  background-color: #FFC5CE;
  border-radius: 14px;
  transform: rotate(-1deg);
  content: "";
}

#contents .nurserya-list li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 30px;
  height: 30px;
  margin: auto;
  background-image: url(/img/childcare/ico_check_pink.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 40px;
  content: "";
}

#contents .nurserya-caution .nurserya-list li::before {
  background-image: url(/img/childcare/ico_check_blue.png);
}

#contents .nurserya-caution .nurserya-list li::after {
  background-color: #90D1ED;
}

.nurserya-voice {
  max-width: 1300px;
  margin: auto;
  padding: 70px 0;
}

#contents .nurserya-deco {
  position: relative;
  max-width: max-content;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
}

.nurserya-deco::before,
.nurserya-deco::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 10px);
  width: 0;
  height: 80%;
  margin: auto;
  border-left: 2px dotted #EF788B;
  transform: rotate(35deg);
  content: "";
}

.nurserya-deco::after {
  right: calc(100% + 25px);
  left: auto;
  transform: rotate(-35deg);
}

#contents .nurserya-deco p {
  font-weight: bold;
}

.voice-bg {
  margin-bottom: -120px;
  background-color: #F3F3F3;
}

.voice-photo {
  display: flex;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
}

.voice-item {
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
  padding: 0;
}

.voice-q,
.voice-a {
  position: relative;
  padding: 20px 20px 20px 60px;
  background-color: #FFF;
}

.voice-q:before,
.voice-a:before {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #FFF;
  content: "Q";
  font-weight: bold;
}

.voice-a::before {
  color: #EF788B;
  content: "A";
}

#contents .voice-q p {
  color: #FFF;
  letter-spacing: 1px;
  font-weight: bold;
}

.voice-q {
  background-color: #EF788B;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.voice-a {
  border: 3px solid #EF788B;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#contents .voice-q p:last-child,
#contents .voice-a p:last-child {
  margin-bottom: 0;
}

.procedure-schedule {
  display: grid;
  position: relative;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.procedure-schedule .procedure-item {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.procedure-schedule .procedure-item::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 102%;
  height: 102%;
  background-color: #309CCD;
  background-image: url(/img/btn_bg_blue.png);
  border-radius: 15px;
  opacity: .5;
  transform: rotate(-3deg);
  content: "";
}

.procedure-schedule .procedure-item::before {
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border: 4px solid #39A1CF;
  border-radius: 15px;
  content: "";
}

.procedure-document {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

.procedure-document .document-item {
  padding: 20px;
  background-color: #FFF;
  border-radius: 10px;
}

#contents .procedure-schedule .procedure-item h3 {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.bg-procedure-document {
  margin-bottom: 20px;
  padding: 40px;
  background-color: #CCC;
  background-image: url(/img/btn_bg_blue.png);
  border-radius: 15px;
}

#contents .bg-procedure-document h3 {
  padding: 0;
  color: #FFF;
  border: 0;
  text-align: center;
}

.schedule-txt {
  display: block;
  margin-top: 40px;
  color: #F07788;
  text-align: center;
  line-height: 1.5em;
  font-weight: bold;
}

.pay-item {
  padding: 30px;
  background-color: #F3F3F3;
  border-radius: 15px;
}

.pay-type {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

#contents .pay-item h3 {
  margin: 10px 0 20px 0;
  padding: 0;
  color: #248DC3;
  border: none;
  text-align: center;
}

a.bnr-area.img-bnr {
  transition: .5s;
}

a.bnr-area.img-bnr:hover {
  opacity: .5;
  transition: .5s;
}

.loan-table-area .table-01 th {
  width: 35%;
  min-width: 430px;
}

#contents .procedure-document .document-item h4 {
  text-align: center;
}

#contents .table-over table {
  min-width: 517px;
}

#contents .campaign-box {
  width: 60%;
}

#contents .campaign-box .link-bnr {
  display: block;
}

#contents .campaign-box .link-btn {
  width: 400px;
}

#contents .campaign-box .link-btn[href$=".pdf"]::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 20px;
  height: 20px;
  margin: auto;
  background-image: url(/img/pdf_ico_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

#contents .campaign-box img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: top;
}

#contents .campaign-box .txt-2box:nth-child(2),
#contents .campaign-box .txt-2box:last-child {
  margin-right: 0;
}

#contents .campaign-box h3 {
  max-width: 100%;
  margin: 0 auto 10px;
  padding: 16px 5px 28px;
  background-image: url(/img/bg_bubble.png);
  border: none;
  text-align: center;
  letter-spacing: .05em;
  clip-path: polygon(5% 0, 0 40%, 5% 80%, 51% 80%, 50% 100%, 49% 80%, 95% 80%, 100% 40%, 95% 0);
  font-weight: 500;
}

#campaign #contents .contact-area {
  padding: 75px 0 80px;
  background-image: url(/img/bg_blue_contact.png);
}

#campaign #contents .notes-txt {
  margin-bottom: 40px;
  padding: 40px;
  background-color: #FDF6D7;
}

#campaign #contents .notes-txt p {
  margin-bottom: 0;
  text-align: center;
}

#campaign #contents .tel-txt {
  display: flex;
  font-weight: 500;
}

#campaign #contents .tel-txt span.time {
  width: 100%;
  max-width: 230px;
  margin-left: 10px;
  padding: 0 17px;
  background-color: #FDF6D7;
  border-radius: 50px;
  text-align: center;
}

#campaign #contents a[href*="tel:"] {
  display: flex;
  align-items: center;
  width: auto;
  margin-left: 15px;
  padding: 0;
  color: #248DC3;
  letter-spacing: 0;
  font-weight: bold;
}

#campaign #contents a[href*="tel:"]::before {
  display: block;
  width: 37px;
  height: 21px;
  margin-right: 7px;
  background-image: url(/img/ico_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

#campaign #contents table {
  max-width: 1100px;
}

#campaign #contents .link-btn.pink {
  background-image: url(/img/btn_bg_pink.png);
}

#contents .procedure-document .document-item h4 {
  text-align: center;
}

#qa {
  display: block;
  position: relative;
  position: relative;
  position: absolute;
  position: absolute;
  position: absolute;
  position: relative;
  top: 17px;
  top: 0;
  right: 25px;
  bottom: 0;
  left: 30px;
  left: 26px;
  z-index: 1;
  z-index: 1;
  width: 28px;
  height: 28px;
  margin: auto;
  margin-top: 0;
  margin-top: 0;
  margin-bottom: 25px;
  margin-bottom: 0;
  padding: 25px 40px 25px 65px;
  padding: 30px 40px 30px 65px;
  padding: 30px 40px 30px 65px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 20px;
  border-radius: 20px;
  border-radius: 15px;
  border-radius: 15px;
  transform: rotate(90deg);
  transition: .3s;
  transition: .3s;
  transition: .5s;
  text-decoration: none;
  line-height: 1.7;
  cursor: pointer;
  content: "Q";
  content: "A";
  content: "";
  & .bg-blue .qa-item {
    background-color: #FFF;
  font-family: "Roboto", sans-serif;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-weight: 600;
  }

  & .bg-blue .qa-item .a-area {
    background-color: #fdf6d7;
  }

  & .qa-item .a-area: :before { color: #f07587;
  }

  & .qa-item .a-area .link-btn {
    z-index: 2;
  }

  & .qa-item .a-area {
    background-color: #FFF;
  }

  & .qa-item .a-area {
    background-color: #fff;
  }

  & .qa-item .qa-a p: last-child { margin-bottom: 0;
  }

  & .qa-item .qa-a {
    padding: 0 30px 30px 30px;
  }

  & .qa-item .qa-a.open {
    display: block;
  }

  & .qa-item h3.qa-q: hover { opacity: .5;
  }

  & .qa-item h3.qa-q: after { background-image: url(/img/arrow_blue.svg);
  }

  & .qa-item h3.qa-q {
    border-left: 0;
  }

  & .qa-item h3.qa-q.active: :after { transform: rotate(270deg);
  }

  & .qa-item {
    background-color: #f0f7fb;
  }

  & .qa-item.active h3.qa-q: :after { transform: rotate(270deg);
  }

  & h3.qa-q: :before { color: #00A5D5;
  }
  
  & .qa-item.is-active .qa-a {
    display: block !important;
}

.guidance-bg {
  padding: 70px 0;
  background-image: url(/img/facility/point_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#contents .guidance-bg h3 {
  margin: 0 0 50px;
  padding: 0;
  color: #FFF;
  border: 0;
  text-align: center;
}

.guidance-3point {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 96%;
  max-width: 1400px;
  margin: auto;
}

.guidance-3point .point-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 160px;
  background-color: #FFF;
  border: unset;
  border-radius: 15px;
}

.guidance-3point .point-item::before {
  display: none;
}

#contents .guidance-3point h4 {
  margin: 30px auto 20px;
  padding: 0;
  border: 0;
  text-align: center;
}

#contents .guidance-3point h4 .en-ttl {
  display: block;
  margin-top: 10px;
  letter-spacing: 1px;
  font-family: roboto;
}

.guidance-3point .point-photo {
  margin-bottom: 30px;
  text-align: center;
}

.guidance-3point .point-photo img {
  width: auto;
  height: auto;
}

.guidance-3point .point-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  margin: auto;
  padding: 25px;
  background-image: url(/img/btn_bg_blue.png);
  color: #FFF;
}

.bg-facilities {
  padding: 70px 0;
  background-color: #F3F3F3;
}

.facilities-inner {
  width: 90%;
  max-width: 1400px;
  margin: 90px auto auto;
}

.facilities-slider {
  margin-bottom: 40px;
}

.facilities-slider .img-deco {
  overflow: hidden;
  border-radius: 15px;
}

.facilities-inner .slider-item {
  display: flex;
}

.splide__arrows.splide__arrows--ltr {
  display: none;
}

.facilities-inner .slider-item .main-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.facilities-inner .main-img::before {
  position: absolute;
  top: 0%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(/img/btn_bg_blue.png);
  border-radius: 14px;
  opacity: .35;
  transform: rotate(-3deg);
  content: "";
}

.facilities-slider .splide__track {
  overflow: visible;
}

.facilities-inner .slider-item .main-img {
  position: relative;
  width: 740px;
  margin-right: 40px;
  padding: 6px;
  background-color: #FFF;
  background-image: url(/img/bg_border.png);
  border-radius: 20px;
}

.facilities-inner .slider-item .slider-text {
  width: calc(100% - 740px);
}

.facilities-slider-thm {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
}

.splide__arrows.splide__arrows--ltr {
  display: none;
}

.facilities-slider-thm .thm-item {
  opacity: .5;
}

.facilities-slider-thm .thm-item.is-active {
  opacity: 1;
}

.movie-area iframe {
  width: 100%;
  height: 250px;
  border: 2px solid #F3F3F3;
}

.movie-area .txt-3box {
  margin-bottom: 20px;
}

.bg-area {
  position: relative;
  z-index: 0;
  padding: 70px 0;
  background-color: #eef6fc;
}

.bg-gray {
  padding: 80px 0;
  background-color: #f3f3f3;
}

.bg-area .about-area {
  margin-bottom: 40px;
  padding: 30px 30px;
  background-color: #fff;
  border-radius: 10px;
}

#calendar {
  margin-right: 10px;
  margin-bottom: 20px;
  margin-bottom: 0;
  padding: 0 20px;
  padding: 20px;
  background-color: #39a1cf;
  background-image: url(/img/btn_bg_blue.png);
  color: #ffffff;
  border: 1px solid #333;
  & .color-item .color-txt {
    margin-right: 20px;
  }

  & .color-item .color-txt .blue {
    background-color: #32ace3;
  }

  & .color-item .color-txt .color-box {
    background-color: #fdc431;
  }

  & .color-item .color-txt .red {
    background-color: #dd5951;
  }

  & .color-item .color-txt .white {
    background-color: #fff;
  }

  & .link-area a.link-btn.pdf {
    margin: auto;
  }

  & .training-time .table-02 td.offtime {
    background-color: #fff5db;
  }

  & .training-time .table-02 th {
    letter-spacing: 2px;
  }

  & .training-time .table-02 th,
  & .training-time .table-02 td {
    text-align: center;
}

#schedule {
  position: relative;
  left: 0;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  max-width: 930px;
  margin: auto auto -110px;
  margin: auto;
  margin: auto;
  margin-bottom: 25px;
  margin-bottom: 30px;
  padding: 40px;
  padding: 40px;
  padding: 30px 40px 30px 30px;
  padding: 0px 10px 2px 10px;
  padding: 40px;
  padding: 3px 17px 4px;
  padding-left: 45px;
  background-color: #fff;
  background-color: #fcd419;
  background-image: url(/img/schedule-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 5px solid #3da0ce;
  border-radius: 25px;
  border-radius: 25px;
  border-radius: 18px;
  border-radius: 50px;
  text-align: center;
  line-height: 1.9em;
  line-height: 30px;
  .schedule-bg {
    padding-top: 70px;
  font-weight: 500;
  font-weight: 500;
  }

  #contents .info-text {
    font-weight: 500;
  }

  #contents .no-area .no-item h3 {
    line-height: 33px;
  }

  #contents .no-area {
    border: 5px solid #fcd419;
  }

  #contents .notes-txt {
    width: 100%;
  }

  #contents .schedule-info p.main-txt {
    text-align: center;
  }

  #contents .schedule-info {
    background-color: #fff;
  }

  & #contents .box-mb.bg-area.ondemand .about-area {
    max-width: 1200px;
  }

  & #contents .box-mb.bg-area.ondemand {
    padding-top: 100px;
  }

  & #contents .no-area .no-item p.num-list .num {
    position: absolute;
  }

  & #contents .no-area .no-item p.num-list {
    position: relative;
  }

  & #contents .schedule-bg h2,
  & #contents .schedule-bg h2 .en-ttl {
    color: #fff;
  }

  & .no-area .no-item: last-child { margin-bottom: 0;
  }

  & .no-area .no-item {
    margin-bottom: 50px;
  }

  & .no-list {
    background-color: #f3f3f3;
}

.txt-on-1140 {
  display: none;
}

br.br-1040 {
  display: none;
}

.txt-on-559 {
  display: none;
}

.txt-off-559 {
  display: block;
}

.txt-on-1140 {
  display: none;
}

br.br-1040 {
  display: none;
}

.txt-on-559 {
  display: none;
}

.txt-off-559 {
  display: block;
}

.link-group {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.link-item {
  display: flex;
  overflow: hidden;
  flex: 1;
  flex-direction: column;
  background-color: white;
  color: inherit;
  border: 2px solid #FA436E;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  text-align: center;
  text-decoration: none;
}

.link-item:hover {
  transform: translateY(-5px);
}

.icon-area {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.link-item .icon {
  color: #FA436E;
}

.text-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #FA436E;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.text-area .icon {
  margin-right: 8px;
  color: white;
}

.label-text {
  color: white;
  font-weight: bold;
}

.recruit-list {
  display: grid;
  position: relative;
  gap: 120px;
  grid-template-columns: 1fr;
  margin-top: 70px;
  margin-bottom: 70px;
}

#contents .recruit-list h2 {
  margin-bottom: 20px;
  margin-bottom: 0;
  padding: 20px;
  background-color: #39A1CF;
  background-image: url(/img/btn_bg_blue.png);
  color: #FFF;
  letter-spacing: 2px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.recruit-list .recruit-item .table-02 {
  width: 100%;
}

.recruit-list .table-02 th {
  width: 230px;
}

.recruit-item {
  position: relative;
}

#contents .ico-recruiting {
  position: absolute;
  bottom: 92%;
  left: 10px;
  z-index: 1;
  padding: 10px 60px 25px;
  background-image: url(/img/bg_bubble.png);
  transform: rotate(-5deg);
  clip-path: polygon(5% 0, 0 40%, 5% 80%, 39% 80%, 40% 100%, 31% 80%, 95% 80%, 100% 40%, 95% 0);
  font-weight: bold;
}

.recruit-item.not-recruit::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: .4;
  content: "";
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#contents .recruit-list .not-recruit h2 {
  background-color: #CCC;
  background-image: none;
}

.recruit-item.not-recruit .not-recruit-txt {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  color: #FFF;
  text-align: center;
}

.deco-inner {
  position: relative;
  width: 90%;
  max-width: 1300px;
  height: 350px;
  height: auto;
  margin: auto;
  padding: 3px;
  background-color: #FFF;
  background-image: url(/img/bg_border.png);
  border-radius: 15px;
  aspect-ratio: 624 / 169;
}

#contents .recruit-deco .deco-text {
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 20px;
  left: 0;
  z-index: 1;
  margin: auto;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 20px #051D27;
  letter-spacing: 2px;
  line-height: 1.4em;
  font-weight: bold;
}

.recruit-deco .deco-inner::before {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background-image: url(/img/recruit/photo_recruit.jpg);
  background-size: contain;
  border-radius: 10px;
  content: "";
}

.recruit-deco {
  position: relative;
  z-index: 0;
  padding: 70px 0;
  background-color: #EEF6FC;
}

.recruit-deco .deco-inner::after {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ABD6E9;
  border-radius: 14px;
  transform: rotate(-2deg);
  content: "";
}

.link-btn.anchor.not-recruit {
  background-color: #CCC;
  background-image: none;
}

.container-childcare {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.section-childcare {
  overflow: hidden;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 15px;
}

.header-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 20px;
  background-color: #ffd600;
  color: #000;
  transform: skewX(-15deg);
  font-weight: bold;
}

.header-badge span {
  display: inline-block;
  transform: skewX(15deg);
}

.point-section {
  background-color: var(--primary-pink);
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
  color: #d81b60;
}

.point-list {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  list-style: none;
}

.point-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 15px 20px;
  background: white;
  border: 1px solid #ffc1e3;
  border-radius: 30px;
}

.point-item::before {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background-color: #ff80ab;
  color: white;
  border-radius: 50%;
  content: "✔";
}

.caution-section {
  background-color: var(--primary-blue);
  text-align: center;
}

.caution-title {
  margin-bottom: 20px;
  color: #1976d2;
}

.caution-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 15px 20px;
  background: white;
  border: 1px solid #bbdefb;
  border-radius: 10px;
  text-align: left;
}

.caution-item::before {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background-color: #4fc3f7;
  color: white;
  border-radius: 50%;
  content: "✔";
}

.voice-section {
  background-color: #f5f5f5;
}

.voice-title {
  margin-bottom: 30px;
  text-align: center;
}

.qa-box {
  overflow: hidden;
  margin-bottom: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.question {
  display: flex;
  padding: 15px 20px;
  background-color: #f06292;
  color: white;
  font-weight: bold;
}

.question span {
  margin-right: 10px;
}

.answer {
  display: flex;
  padding: 20px;
  background: white;
}

.answer span {
  margin-right: 10px;
  color: #f06292;
  font-weight: bold;
}

.star img {
  width: 16px;
  padding-bottom: 3px;
}

.commentButton {
  display: block;
  width: 30%;
  margin: 10px auto;
  padding: .5em;
  background-color: #0000CD;
  color: #fff;
  border-radius: .3em;
}

.interview_top {
  padding-bottom: 160px;
}

#container-interview .item-figure {
  display: block;
}

#container-interview .summary dt {
  margin: 0 40px;
}

#container-interview .summary dd {
  margin: 0 40px;
}

.review-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.review-photo {
  overflow: hidden;
  width: 170px;
  height: 170px;
  border-radius: 8px;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#contents .inner {
  position: relative;
  width: 90%;
  max-width: 1400px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

#contents h2 {
  position: relative;
  margin: 0 0 40px;
  padding: 0;
  color: #333;
  text-align: center;
  letter-spacing: .13em;
  line-height: 26px;
  font-weight: 500;
}

#contents h2 .en-ttl {
  display: block;
  margin-top: 18px;
  padding: 0;
  border-left: unset;
  letter-spacing: .15em;
  font-weight: 400;
}

.txt-blue {
  color: #2999CB;
}

#contents .flex.bnr-wave {
  gap: 40px 0;
  margin-bottom: 60px;
}

#contents .flex.center {
  justify-content: center;
}

#contents .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

.txt-3box {
  width: calc(100% / 3 - 20px);
  margin-right: 20px;
}

#contents .link-bnr {
  display: block;
  position: relative;
  color: #FFF;
  border-radius: 15px;
}

#contents .bnr-wave .txt-3box img {
  max-height: 234px;
  object-fit: cover;
}

#contents .link-bnr img {
  width: 100%;
  border-radius: 15px;
}

#contents .bnr-wave .bnr-ttl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 30px 10px 20px;
  background: url(/img/top/bnr_wave.png);
  background-size: auto;
  background-size: cover;
  border-radius: 0 0 15px 15px;
  text-align: center;
  letter-spacing: .1em;
}

#contents p {
  margin-bottom: 15px;
}

#contents .link-btn.pink {
  background-image: url(/img/top/btn_bg_pink.png);
}

#contents .link-btn {
  width: 100%;
  max-width: 465px;
}

#contents .link-btn.center {
  margin: 0 auto;
}

#contents .link-btn {
  display: block;
  position: relative;
  width: 340px;
  max-width: 100%;
  padding: 15px;
  color: #FFF;
  border-radius: 32px;
  transition: .3s;
  text-align: center;
  letter-spacing: .05em;
  font-weight: 500;
}

#contents .link-btn::after {
  right: 25px;
}

#contents .link-btn::after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  background-image: url(/img/top/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  content: "";
}

#contents .area-blue {
  background-image: url(/img/top/bg_blue.png);
  background-repeat: repeat;
}

#contents .normal-area {
  padding: 0 0 90px;
}

#contents .student-area {
  padding: 85px 0;
}

#contents .student-area h2,
#contents .general-area h2 {
  max-width: 620px;
  margin: 0 auto 40px;
}

#contents .general-area {
  padding: 85px 0;
}

#contents .bnr-area02 {
  padding: 80px 0;
}

#contents .bnr-area02 .flex {
  gap: 35px 0;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

#contents .bnr-area02 .flex .link-bnr {
  border: 2px solid #36A6CE;
  border-radius: 18px;
}

#contents .bnr-area02 .flex .link-bnr .bnr-ttl {
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 100%;
  margin: 0;
  padding: 10px;
  background-image: url(/img/top/btn_bg_blue.png);
  border-radius: 15px 0 0 15px;
  place-content: center;
}

#contents .office-fv {
  margin-bottom: 70px;
}

#contents .office-bg {
  padding-top: 70px;
  background-image: url(/img/plans/schoolbus_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#contents .office-bg h2 {
  color: #FFF;
}

#contents .office-info {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto auto -110px;
  padding: 40px;
  background-color: #FFF;
  border: 5px solid #3DA0CE;
  border-radius: 25px;
}

#contents .office-info h3 {
  padding: 0;
  border: 0;
  text-align: center;
}

#contents h3 {
  margin: 0 0 30px;
  padding: 8px 17px 9px;
  color: #333;
  border-left: 4px solid #39A1CF;
  letter-spacing: .03em;
  font-weight: 500;
}

#contents .no-mb,
#contents .bg-gray.no-mb,
#contents .bg-blue.no-mb {
  margin-bottom: 0;
}

#contents .notes-bg {
  padding: 170px 0 70px 0;
  background-color: #F3F3F3;
}

#contents .office-theme {
  overflow: hidden;
  max-width: 1000px;
  margin: 110px auto 0;
  margin-top: 110px;
  margin-top: 110px;
  margin-right: auto;
  margin-left: auto;
}

#contents .office-theme h3.notes-ttl {
  margin: 0 0 50px 0;
  padding: 0;
  border: none;
  text-align: center;
}

#contents .theme-area {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

#contents .theme-item {
  position: relative;
  background-color: #FFF;
  border: 5px solid #FCD419;
  border-radius: 20px;
}

#contents .theme-item::before {
  position: absolute;
  top: 20%;
  right: 0;
  left: 0;
  z-index: 0;
  width: 80px;
  height: 80px;
  margin: auto;
  background-image: url(/img/plans/bg_bubble.png);
  border-radius: 40px;
  content: "";
}

#contents .theme-item::after {
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  width: 40px;
  height: 36px;
  margin: auto;
  background-image: url(/img/plans/ico_theme_01.png);
  content: "";
}

#contents .theme-item:nth-child(2)::after {
  top: 62px;
  width: 24px;
  height: 35px;
  background-image: url(/img/plans/ico_theme_02.png);
}

#contents .theme-item:nth-child(3)::after {
  top: 62px;
  left: -3px;
  width: 39px;
  height: 35px;
  background-image: url(/img/plans/ico_theme_03.png);
}

#contents .theme-item h4 {
  margin: 0;
  padding: 140px 20px 30px 20px;
  border: none;
  text-align: center;
}

#contents h4 {
  margin: 0 0 20px;
  padding-bottom: 10px;
  background: unset;
  border-bottom: 2px solid #39A1CF;
  font-weight: 500;
}

#contents h4::after {
  position: unset;
  border: none;
}

#contents .box-mb {
  margin-bottom: 80px;
}

#contents .check-box {
  padding: 50px;
  background-color: #FFF1F3;
  border-radius: 20px;
}

#contents .check-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#contents .check-box li {
  position: relative;
  padding-left: 24px;
  list-style: none;
}

#contents li {
  letter-spacing: .03em;
  font-weight: 400;
}

#contents .check-box li::before {
  position: absolute;
  left: 0;
  color: #EF788B;
  content: "✔";
}

#contents .box-mb {
  margin-bottom: 80px;
}

.bg-area {
  position: relative;
  margin-top: 170px;
  padding: 30px 0 70px 0;
  background-color: #E1F0F7;
}

.bg-area::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url(/img/plans/head_timeschedule.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: cover;
  content: "";
}

#contents .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

#contents .flex .theme-detail-item {
  width: 48%;
  margin-bottom: 50px;
}

#contents .theme-detail-item {
  padding: 50px;
  background-color: #FFF;
  border-radius: 20px;
}

#contents .theme-detail-item h2 {
  color: #248DC3;
}

#contents .improve-flow-box {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr 1fr;
}

#contents .improve-flow-item {
  position: relative;
  padding: 30px;
  background-color: #FFF9DA;
  border-radius: 15px;
}

#contents .improve-flow-item h4 {
  padding-left: 90px;
  color: #248DC3;
  border: none;
}

#contents .improve-flow-item h4 span {
  position: absolute;
  top: 20px;
  left: 30px;
  padding: 10px 11px 8px 11px;
  background-color: #248DC3;
  color: #FFF;
  border-radius: 24px;
}

#contents .img-2box {
  width: 35%;
}

#contents .img-2box-txt {
  width: calc(65% - 40px);
  margin-left: 40px;
}

#contents .concept-area h2 {
  margin-bottom: 20px;
  color: #2999CB;
  text-align: left;
  line-height: 1.5em;
}

#bus.schoolbus-bg {
  padding-top: 70px;
  background-image: url(/img/access/schoolbus_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#bus #contents .schoolbus-bg h2 {
  color: #FFF;
}

#bus .schoolbus-info {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto auto -110px;
  padding: 40px;
  background-color: #FFF;
  border: 5px solid #3DA0CE;
  border-radius: 25px;
}

#bus #contents .schoolbus-info h3 {
  padding: 0;
  border: 0;
  text-align: center;
}

#bus #contents .schoolbus-info h3 .catch-text {
  display: block;
  margin-bottom: 10px;
  color: #3DA0CE;
}

#bus #contents .info-text {
  margin: auto;
  text-align: center;
  line-height: 1.9em;
  font-weight: 500;
}

#bus .notes-bg {
  padding: 70px 0;
  background-color: #F3F3F3;
}

#bus .schoolbus-notes {
  overflow: hidden;
  width: 90%;
  max-width: 1000px;
  margin: 110px auto 0;
  margin-top: 110px;
  background-color: #FFF;
  border: 5px solid #FCD419;
  border-radius: 25px;
}

#bus .schoolbus-notes .notes-text {
  padding: 30px;
}

#bus #contents h3.notes-ttl {
  margin-bottom: 0;
  padding: 20px;
  background-color: #FCD419;
  border: 0;
  text-align: center;
}

#bus .schoolbus-fv {
  margin-bottom: 70px;
}

#bus .timeschedule-bg {
  position: relative;
  margin: 130px 0 70px;
  padding: 0 0 70px;
  background-color: #E1F0F7;
}

#bus #contents .bnr-link-area .link-bnr.color-pink h3 {
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 1;
  z-index: 0;
  width: 100%;
  margin: 0;
  padding: 30px 10px 20px;
  background: none;
  background-color: rgba(0, 0, 0, 0);
  background-color: transparent;
  color: #FFF;
  border: none;
  border-radius: 0 0 15px 15px;
  text-align: center;
  letter-spacing: .1em;
  font-weight: 400;
}

#contents .bnr-link-area a[target="_blank"] h3::after {
  display: block;
  position: absolute;
  top: 10px;
  right: 23px;
  bottom: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  background-image: url(../image/contents/tab_ico_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  content: "";
  content: "";
}

#bus #contents .bnr-link-area .link-bnr.color-pink h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  background-image: url(/img/access/bnr_txt_bg_pink.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  content: "";
  content: "";
}

#bus #contents .bnr-link-area a[target="_blank"][href$=".pdf"] h3::after {
  width: 27px;
  height: 31px;
  background-image: url(/img/access/pdf_ico_white.png);
  background-size: 27px;
}

#bus .timeschedule-bg::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url(/img/access/head_timeschedule.png);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: cover;
  content: "";
}

#bus #contents .area-notes {
  max-width: 1000px;
  margin: 40px auto;
}

#bus .timeschedule-list {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: auto;
  writing-mode: vertical-rl;
}

#bus .timeschedule-list .route-item {
  display: block;
  height: 100%;
  box-sizing: border-box;
  padding: 70px 15px 25px 15px;
  background-color: #3AA1CF;
  background-image: url(/img/access/ico_pin_white.png);
  background-repeat: no-repeat;
  background-position: center 15px;
  color: #FFF;
  border: 5px solid #FFF;
  border-radius: 40px;
  transition: .5s;
}

#bus .timeschedule-list .route-item:hover {
  opacity: .5;
  transition: .5s;
  text-decoration: none;
}

#bus .timeschedulu-item span {
  position: relative;
  left: 2px;
  margin-top: 5px;
}

#bus .bnr-area.other-link {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  max-width: 1100px;
  margin: auto;
  padding: 200px 0 20px;
  background-image: url(/img/access/bnr_area.jpg);
  color: #FFF;
  border-radius: 10px;
  transition: .5s;
  text-align: center;
  text-decoration: none;
}

#bus .bnr-area.other-link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  background-image: url(/img/access/bnr_bg_green.png);
  background-position: top center;
  content: "";
}

#bus .bnr-link-area .link-bnr .color-pink h3 {
  position: absolute;
  z-index: 1;
  z-index: 0;
  background: none;
  background-color: transparent;
}

#bus .bnr-link-area .link-bnr .color-pink h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 80px;
  background-image: url(/img/access/bnr_txt_bg_pink.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  content: "";
  content: "";
}

#bus .bnr-link-area .link-bnr.color-pink {
  overflow: hidden;
  position: relative;
  border: 5px solid #EF7B8D;
  border-radius: 15px;
}

#bus .bnr-area.other-link::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: -1;
  width: 27px;
  height: 27px;
  margin: auto;
  background-image: url(/img/access/ico_link_white.png);
  background-position: top center;
  content: "";
}

#bus .bnr-area.other-link:hover {
  opacity: .5;
  transition: .5s;
}

.schoolbus-bg {
  height: 400px;
  padding-top: 70px;
  background-image: url(/img/access/schoolbus_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#contents .schoolbus-bg.bg-none h2 {
  color: #333;
}

.schoolbus-bg.bg-none {
  height: 100%;
  padding: 20px 0 70px;
  background-image: none;
}

#contents .schoolbus-bg h2 {
  color: #FFF;
}

.schoolbus-info {
  position: relative;
  width: 90%;
  max-width: 940px;
  margin: auto auto -110px;
  padding: 40px;
  background-color: #FFF;
  border: 5px solid #3DA0CE;
  border-radius: 25px;
}

#contents .schoolbus-info p.txt-center {
  margin-bottom: 0;
}

.map-line {
  padding: 680px 0 80px;
}

.map-line.short {
  padding: 10px 0 80px;
}

.map-line .timetable {
  margin-bottom: 20px;
  border: 1px solid #DFDFDF;
}

.link-area .link-btn {
  margin: auto;
}

#contents .map-line .txt-2box {
  width: 98%;
}

#contents .map-line .txt-2box h3 {
  margin-bottom: 0;
  padding: 20px 20px 17px;
  background-color: #39A1CF;
  color: #FFF;
  border: none;
  border-radius: 25px 25px 0 0;
  text-align: center;
  font-weight: 500;
}

#contents .map-line .txt-2box .map-area {
  background-color: #FFF;
  border: 5px solid #39A1CF;
  border-radius: 0 0 25px 25px;
}

#contents .map-line .txt-2box .map-area div#map {
  border-radius: 0 0 25px 25px;
}

#contents .map-line .txt-2box .timetable {
  padding: 20px;
  background-color: #FFF;
  border: 5px solid #39A1CF;
  border-radius: 0 0 25px 25px;
}

#contents .map-line .txt-2box .timetable a.link-bnr img {
  border-radius: 0 0 25px 25px;
}

#contents .map-area p.look-red {
  line-height: 1.5em;
}

#gounai .map {
  overflow: hidden;
  height: 468px;
}

#senoo .map iframe {
  margin-top: -80px;
}

#yamada .map {
  overflow: hidden;
  height: 468px;
}

#yamada .map iframe {
  margin-top: -80px;
}

#senoo .map {
  overflow: hidden;
  height: 468px;
}

#gounai .map iframe {
  margin-top: -80px;
}

.map {
  overflow: hidden;
  height: 481px;
}

.map-line.short .map {
  height: 468px;
}

.map {
  border-radius: 0 0 20px 20px;
}

#contents .map-area p.look-red {
  position: relative;
}

#kojima-north .map,
#kojima-south .map,
#kounan .map {
  height: 481px;
}

.map iframe {
  margin-top: -70px;
  border-width: 0px;
  border-radius: 0 0 20px 20px;
}

#okayama .map-line {
  padding: 0;
}

#okayama .map {
  overflow: hidden;
  height: 495px;
}

#kounan .map-line {
  padding: 0;
}

#kounan .map {
  overflow: hidden;
  height: 482px;
}

#contents .map-area p.look-red {
  margin: 0;
  margin-left: 1em;
  padding: 15px;
}

#chayamachi .map-line {
  padding: 0;
}

#chayamachi .map {
  overflow: hidden;
  height: 495px;
}

#gounai .map-line {
  padding: 0;
}

#gounai .map {
  overflow: hidden;
  height: 470px;
}

#kojima-south .map-line {
  padding: 0;
}

#kojima-south .map {
  overflow: hidden;
  height: 480px;
}

#kojima-south .map iframe {
  height: 550px;
}

#kojima-north .map-line {
  padding: 0;
}

#kojima-north .map {
  overflow: hidden;
  height: 560px;
}

#senoo .map-line {
  padding: 0;
}

#senoo .map {
  overflow: hidden;
  height: 470px;
}

#yamada .map-line {
  padding: 0;
}

#yamada .map {
  overflow: hidden;
  height: 470px;
}

#tamahara .map-line {
  padding: 0;
}

#tamahara .map {
  overflow: hidden;
  height: 547px;
}

#contents .feature-area {
  width: 90%;
  max-width: 900px;
  margin: auto auto 70px;
  padding: 30px;
  background-color: #FFF;
  border-radius: 15px;
}

#contents #at .feature-area,
#contents #at .car-type,
#contents #at .document-area,
#contents #at .price-main,
#contents #at .price-item,
#contents #small .feature-area,
#contents #small .car-type,
#contents #small .document-area,
#contents #small .price-main,
#small .price-item {
  background-color: #F3F3F3;
}

#contents .feature-area .feature-ttl {
  padding: 0 0 20px;
  border-bottom: 4px dotted #2999CB;
  border-left: 0;
  text-align: center;
}

#contents .feature-list {
  display: grid;
  gap: 20px;
}

#contents .feature-list .feature-item {
  padding: 10px 50px;
  background-color: #2999CB;
  color: #FFF;
  border-radius: 60px;
}

#contents .feature-list .feature-item p:last-child {
  margin-bottom: 0;
}

#contents .car-type {
  width: 90%;
  max-width: 750px;
  margin: auto auto 70px;
  padding: 30px;
  background-color: #FFF;
  border-radius: 15px;
}

#contents .table-02 {
  width: 100%;
  line-height: 1.6em;
  vertical-align: middle;
  border-bottom-width: 0;
  border-collapse: collapse;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}

#contents .car-type .table-02 {
  width: 100%;
  margin-bottom: 15px;
}

#contents .car-type .table-02 th {
  width: 190px;
}

#contents .table-02 tr:first-child th:last-child,
#contents .table-02 tr th {
  border-right: 1px solid #D4D4D4;
}

#contents .table-02 th {
  padding: 15px 20px;
  background-color: #F0F7FB;
  border: 1px solid #D4D4D4;
  vertical-align: middle;
  border-right-color: rgb(212, 212, 212);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-width: 0;
  font-weight: 500;
}

#contents .table-02 td {
  border-left: 1px solid #D4D4D4;
}

#contents .table-02 td {
  padding: 15px 20px;
  background-color: #FFF;
  border: 1px solid #D4D4D4;
  line-height: 28px;
  vertical-align: middle;
  border-left-color: rgb(212, 212, 212);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-width: 0;
  font-weight: 400;
}

#contents .license-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto auto 50px;
  border-radius: 15px;
}

#contents .license-area h3,
#contents .license-flow-ttl {
  width: 100%;
  margin-bottom: 0;
  border: 0;
  text-align: center;
  letter-spacing: 2px;
}

#contents .license-area .license-item {
  width: calc(90% / 3 - 27px);
  margin-top: 30px;
  margin-right: 40px;
  padding: 30px;
  background-color: #39A1CF;
  color: #FFF;
  border-radius: 15px;
}

#contents h4.license-name {
  color: #FFF;
  border-bottom: 3px solid #FFF;
  text-align: center;
}

#contents .document-area {
  margin: auto;
  margin-bottom: auto;
  margin-bottom: 70px;
  padding: 40px;
  background-color: #FFF;
  border-radius: 15px;
}

#contents h3.document-ttl {
  border: 0;
  text-align: center;
}

#contents .document-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: auto;
}

#contents .document-list .document-name {
  border: 0;
  text-align: center;
}

#contents .txt-center {
  text-align: center;
}

#contents .txt-center img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
  vertical-align: bottom;
}

#contents .price-area {
  margin: auto;
}

#contents .price-main {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #FFF;
  border-radius: 15px;
}

#contents .price-area h3 {
  border: 0;
  text-align: center;
}

#contents .mb-20 {
  margin-bottom: 20px;
}

#contents [data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
}

#contents .table-over {
  overflow: auto;
  width: 100%;
}

#contents .price-list {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
}

#contents .price-item {
  padding: 30px;
  background-color: #FFF;
  border-radius: 15px;
}

#contents .mb-40 {
  margin-bottom: 40px;
}

#contents ul {
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 20px;
}

#contents ul.style-none,
ul.style-none {
  padding: 0;
}

#contents .license-flow-box {
  max-width: 840px;
  margin: 30px auto 0;
}

#contents li {
  letter-spacing: .03em;
  font-weight: 400;
}

#contents .license-flow-box li {
  position: relative;
  margin-bottom: 33px;
  padding: 15px 60px;
  background-color: #ebf8ff;
  border: 5px solid #ebf8ff;
  border-radius: 15px;
  font-weight: 500;
}

#contents ul.style-none li,
ul.style-none li {
  list-style: none;
}

#contents .license-flow-box li:has(.ttl),
#contents .license-flow-box li.yellow:has(img) {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#contents .license-flow-box li::after {
  display: block;
  position: absolute;
  bottom: -40px;
  left: 48px;
  width: 38px;
  height: 38px;
  background-image: url(/img/plans/arrow_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  content: "";
}

#contents .license-flow-box li .ttl {
  order: 2;
  width: 160px;
  height: fit-content;
  margin-left: 20px;
  padding: 4px;
  background-color: #2999CB;
  color: #FFF;
  border-radius: 60px;
  text-align: center;
}

#contents .license-flow-box li p {
  margin-bottom: 0;
  font-weight: 500;
}


/* ============================================================
   2. PC版スタイル(画面幅 769px 以上)
   ============================================================ */


@media screen and (min-width: 769px) {
  .l-inner,
  .l-inner-sm {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .l-sec-t-md {
    margin-top: 20px;
  }

  .l-inner-sm {
    max-width: 800px;
  }

  .service-merit {
    margin: 35px 0 10px 0;
  }

  .service-merit:before {
    top: -38px;
    width: 68px;
    height: 30px;
    margin-left: -34px;
    background-size: 68px 30px;
  }

  .service-meritInfo {
    max-width: 90%;
    margin: 0 auto;
    padding: 10px 0 20px;
    padding-bottom: 50px;
  }

  .service-meritInfo_list li {
    padding-left: 1.5rem;
    line-height: 1.55;
  }

  .service-meritInfo_list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .carLink ul li {
    width: 16%;
  }

  .carLink ul li a {
    text-align: center;
  }

  .carLink ul li a:hover {
    opacity: 0.8;
  }

  #contents .map-line .txt-2box {
    width: 46%;
  }
}


/* ============================================================
   3. スマホ版スタイル(画面幅 768px 以下)
   ============================================================ */


@media screen and (max-width: 768px) {
  section#staff h2 {
    width: 100%;
    margin: 0 0 2em 0;
  }

  section#staff {
    margin: 0;
  }

  section#staff div.member {
    display: table;
    width: 100%;
    margin: 0 0 2em 0;
    padding: 0 0 1em 0;
    border-bottom: 1px dotted #a9a9a9;
  }

  section#staff div.member div.img {
    display: table-cell;
    width: 30%;
  }

  section#staff div.member div.data {
    display: table-cell;
    width: 60%;
    margin: 0;
    padding: 0 2% 0 2%;
    vertical-align: top;
  }

  section#staff div.member div.data p.name {
    margin: 0;
  }

  section#staff div.member div.data p.name span {
    margin: 0 0 0 10px;
    color: #666666;
    font-weight: normal;
  }

  section#staff div.member div.data ul {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  section#staff div.member div.data ul li {
    margin: 0;
    padding: 3px 0 3px 0;
    border-bottom: 1px solid #dcdcdc;
    list-style: none;
  }

  section#staff div.member div.data ul li span {
    color: #ff597c;
    font-weight: bold;
  }

  section#staff div.member div.data ul li :last-child {
    border: none;
  }

  .recruit-order-accordion {
    margin: 20px 0;
  }

  .recruit-order-accordion button {
    width: 100%;
    white-space: normal;
  }

  .oneday-order-accordion {
    margin: 20px 0;
  }

  .oneday-order-accordion button {
    width: 100%;
    white-space: normal;
  }

  .pc_img {
    display: none !important;
  }

  .sp_img {
    display: block !important;
  }

  .pc_hid {
    display: block;
  }

  .epos img {
    width: 95%;
  }

  .epos_credit {
    width: 100%;
  }

  .flow05 > li:not(:last-child)::before {
    left: 6%;
  }

  .plansTable,
  .plansTable thead,
  .plansTable tbody,
  .plansTable th,
  .plansTable td,
  .plansTable tr {
    display: block;
  }

  .plansTable thead {
    display: none;
  }

  .plansTable tr {
    border: 1px solid #e5e7eb;
  }

  .plansTable tr td {
    box-sizing: border-box;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
  }

  .plansTable tr td.holdLicense {
    border-right-width: 0;
  }

  .plansTableFeeBox {
    background-color: #fff;
    text-align: right;
  }

  .plansDetailBlock {
    display: block;
  }

  .plansBreakdown {
    margin-bottom: 20px;
  }

  .plansTimeBlock {
    display: block;
  }

  .plansTimeScheduleDetail {
    max-height: unset;
  }

  .plansFlowDetail {
    padding: 1rem;
  }

  .plansFlowDetailBlock {
    display: block;
  }

  .other-languages img {
    margin-top: 3px;
  }

  .modalNationalityBlock a {
    margin-bottom: 20px;
  }

  .procedure-document {
    grid-template-columns: 100%;
  }

  .point-detail br {
    display: none;
  }

  #contents #class2 .catch-text p {
    margin-bottom: 40px;
    text-align: left;
  }

  #contents #class2 .catch-text p br {
    display: none;
  }

  .document-list {
    gap: 30px;
  }

  .document-area>.txt-center {
    text-align: left;
  }

  .price-main .table-over.long .table-02 tr:first-child th:first-child {
    width: 50%;
  }

  .interview_top {
    padding-bottom: 0px;
  }

  .commentButton {
    width: 70%;
  }

  .review-photo {
    overflow: hidden;
    width: 140px;
    height: 140px;
    border-radius: 8px;
  }

  #contents h2 {
    line-height: 1.4em;
  }

  #contents .flex.bnr-wave {
    gap: 30px 0;
    margin-bottom: 40px;
  }

  #contents .flex.bnr-wave .txt-3box,
  #contents .flex.bnr-wave .txt-3box:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }

  #contents .bnr-wave .txt-3box img {
    height: calc(100vw / 2);
  }

  #contents .bnr-area02 .flex .txt-3box,
  #contents .bnr-area02 .flex .txt-3box:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }

  #contents .notes-bg {
    padding: 30px 0 70px 0;
  }

  #contents .theme-area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: inherit;
  }

  #contents .theme-area .theme-item {
    width: calc(100% / 2 - 8px);
    margin-bottom: 15px;
  }

  #contents .theme-area .theme-item:first-child {
    margin-right: 15px;
  }

  #contents .theme-item::before {
    top: 15px;
    width: 60px;
    height: 60px;
  }

  #contents .theme-item::after {
    top: 27px;
  }

  #contents .theme-item:nth-child(2)::after,
  & #contents .theme-item:nth-child(3)::after {
    top: 28px;
  }

  #contents .theme-area .theme-item:last-child {
    width: 100%;
  }

  #contents .theme-item h4 {
    padding: 80px 10px 15px 10px;
    line-height: 1.5em;
  }

  #contents .check-box {
    padding: 20px;
  }

  #contents .check-box ul {
    grid-template-columns: 1fr;
  }

  #contents .theme-detail-item {
    padding: 30px 15px 20px;
  }

  #contents .flex .theme-detail-item {
    width: 100%;
    margin-bottom: 30px;
  }

  #contents .improve-flow-box {
    gap: 15px;
    grid-template-columns: 1fr;
  }

  #contents .improve-flow-item {
    padding: 15px;
  }

  #contents .concept-area .img-2box {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 20px;
  }

  #contents .concept-area .img-2box-txt {
    width: 100%;
    margin-left: 0;
  }

  #bus #contents .bnr-link-area a[target="_blank"][href$=".pdf"] h3::after {
    right: 10px;
    width: 21px;
    height: 24px;
    background-size: 20px;
  }
}


/* ============================================================
   4. その他のメディアクエリ
   ============================================================ */


@media screen and (max-width: 640px) {
  .leftandright .item:not(:last-child) {
    margin-bottom: 24px;
  }

  .leftandright .img {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }

  .leftandright .text {
    width: 100%;
  }

  .leftandright .img a img {
    transition: all .3s ease;
  }

  .leftandright .img a:hover img {
    opacity: .6;
  }

  #wrap ul li {
    float: none;
    width: 100%;
  }

  table.plans {
    width: 100%;
  }

  table.plans tr {
    display: block;
    float: left;
  }

  table.plans tr td,
  table.plans tr th {
    display: block;
    height: 50px;
    border-left: none;
  }

  table.plans thead {
    display: block;
    float: left;
    width: 30%;
  }

  table.plans thead tr {
    width: 100%;
  }

  table.plans tbody {
    display: block;
    float: left;
    width: 70%;
  }

  table.plans tbody tr {
    width: 50%;
  }

  table.plans tr td+td {
    border-left: none;
  }

  table.plans tbody td:last-child {
    border-bottom: solid 1px #ccc;
  }

  .dlimg__item:not(:last-child) {
    margin-bottom: 24px;
  }

  .dlimg__img {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }

  .dlimg__text {
    display: block;
    width: 100%;
  }

  .dlimg__img a img {
    transition: all .3s ease;
  }

  .dlimg__img a:hover img {
    opacity: .6;
  }

  .ep_tb01 {
    width: 100%;
  }

  table.ep_tb01 th,
  table.ep_tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .procedure-schedule {
    gap: 50px;
    grid-template-columns: 100%;
  }

  #contents .campaign-box {
    width: auto;
  }

  #campaign #contents .contact-area .flex .link-btn {
    padding: 17px 15px;
  }

  #campaign #contents .contact-area .flex .link-btn::before {
    width: 70px;
    height: 70px;
  }

  .ico-list {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  #contents .table-over {
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-spacing: 0 11px;
  }

  #contents .table-over.mb-50 {
    margin-bottom: 40px;
  }

  .document-list {
    gap: 20px;
  }

  .price-main .table-over.long .table-02 tr th:first-child {
    max-width: unset;
  }

  .price-main .table-over.long .table-02 tr:first-child th:first-child {
    width: 200px;
  }

  #campaign #contents .tel-txt {
    display: flex;
    flex-direction: column;
  }

  #campaign #contents a[href*="tel:"] {
    margin: 5px 0 10px;
  }

  #campaign #contents .tel-txt span.time {
    max-width: 210px;
    margin-left: 0;
    padding: 0 5px;
  }

  .movie-area .txt-3box {
    width: 100%;
  }

  .movie-area .txt-3box:first-child,
  .movie-area .txt-3box:nth-child(3),
  .movie-area .txt-3box:nth-child(5) {
    margin-right: 0;
  }

  .movie-area iframe {
    height: 290px;
  }

  #contents h2 {
    line-height: .9em;
  }
}

@media screen and (max-width: 799px) {
  .flowlist {
    width: auto;
    margin-top: 17px;
  }

  .flowlist>li {
    padding-top: 37px;
    background: url(/img/svg/flow.svg) no-repeat 50% 10px;
    background-size: 32px 16px;
  }

  .flowlist>li:first-child {
    padding-top: 0;
  }

  .flowlist .box {
    min-height: 0;
    padding: 19px 20px 15px 20px;
    background: #F5F5F5;
  }

  .flowlist .box:after {
    display: none;
  }

  .flowlist .step {
    position: relative;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
  }

  .flowlist .step>span.text {
    padding-top: 7px;
  }

  .flowlist .step>span.no {
    margin-top: -0.2em;
  }

  .flowlist .title {
    display: table;
    width: 100%;
  }

  .flowlist .title .area2,
  .flowlist .title .area1 {
    display: table-cell;
    vertical-align: middle;
  }

  .flowlist .title .area1 {
    width: 82px;
  }

  .flowlist li .box>.textblock {
    margin-top: 17px;
  }

  .wari_img {
    margin-top: 2.5em;
  }
}

@media all and (-ms-high-contrast:none) {
  #demo-wrap ul.column2 li {
    width: calc((100% - 61px) / 2);
  }
}

@media screen and (max-width: 600px) {
  .s_img .s_ttl {
    padding: 18px;
    background: url("/img/school/facility_1.png") no-repeat center 20%/cover;
  }

  .s_img .s_ttl .inr {
    padding: 22px 0 25px;
    border: 5px solid #fff;
  }

  .s_img .s_ttl img {
    width: 180px;
  }
}

@media only screen and (max-width: 480px) {
  section table.attend-fee-table thead {
    display: none;
  }

  section table.attend-fee-table th {
    text-align: center;
  }

  section table.attend-fee-table th.target {
    display: none;
  }

  section table.attend-fee-table td.disc-license:before {
    content: "所持免許：";
  }

  section table.attend-fee-table td.student:before {
    content: "学生の方：";
  }

  section table.attend-fee-table td.general:before {
    content: "一般の方：";
  }

  section table.time-table th {
    display: table-cell;
    width: 100px;
  }

  section table.time-table td {
    display: table-cell;
    width: auto;
    border-top: 1px solid #ddd;
  }

  .btn_line {
    display: block;
    width: 100%;
  }

  .btn_car {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 559px) {
  ul.recruit_li li::before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 3px;
    height: 6px;
    border: solid #ff6600;
    border-width: 0 2px 2px 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    border-bottom-width: medium;
    border-left-width: medium;
    border-right-width: medium;
    border-top-width: medium;
  }

  .company dl {
    flex-flow: column;
  }

  .recruit_tbl dt {
    flex-basis: 100%;
  }

  .recruit_tbl dd {
    border-bottom: none;
  }

  #contents .license-flow-box li:last-child {
    margin-bottom: 50px;
  }

  #contents .license-flow-box li:after {
    right: 0;
    bottom: -36px;
    margin: auto;
  }

  #contents .license-flow-box li img {
    max-width: 80px;
    margin-left: 0;
  }

  #contents .license-flow-box li {
    margin-bottom: 24px;
    padding: 12px;
    text-align: center;
  }

  #contents .license-flow-box li:has(.ttl),
  #contents .license-flow-box li.yellow:has(img) {
    justify-content: center;
  }

  #contents .license-flow-box li.yellow:has(img) {
    gap: 10px;
  }

  #contents .license-flow-box li .ttl {
    order: 1;
    margin: 0 0 5px;
    padding: 0;
  }

  #contents .license-flow-box li .ttl+p {
    order: 2;
  }

  .bnr-link-area .txt-3box {
    width: 100%;
    margin-right: 0;
  }

  .anchor-link .txt-3box {
    width: 100%;
  }

  .anchor-link .txt-3box:first-child {
    margin-right: 0;
  }

  .pay-type {
    gap: 30px;
  }

  .pay-item {
    padding: 20px 15px;
  }

  .procedure-document .document-item {
    padding: 20px 15px;
  }

  .bg-procedure-document {
    margin-bottom: 15px;
    padding: 40px 15px;
  }

  .procedure-schedule .procedure-item {
    padding: 25px 15px 15px;
  }

  .schedule-txt {
    margin-top: 20px;
  }

  .procedure-schedule .procedure-item::before {
    width: 98%;
  }

  .procedure-schedule .procedure-item::after {
    width: 101%;
  }

  #campaign #contents .contact-area {
    padding: 60px 0 80px;
  }

  #contents .contact-area .flex {
    gap: 20px 0;
  }

  #contents .contact-area .flex .txt-3box,
  #contents .contact-area .flex .txt-3box:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }

  #campaign #contents .contact-area .flex .link-btn {
    padding: 15px;
  }

  #contents .contact-area .flex .link-btn br {
    display: none;
  }

  #contents .campaign-box h3 {
    padding: 10px 15px 22px;
  }

  #contents .campaign-box img {
    height: auto;
  }

  #campaign #contents a[href*="tel:"]::before {
    width: 31px;
    height: 18px;
    margin-right: 5px;
  }

  #campaign #contents .notes-txt {
    margin-bottom: 30px;
    padding: 30px 15px;
  }

  .point-detail {
    padding: 30px 15px;
  }

  .point-bg {
    padding: 55px 0;
  }

  .point-list {
    gap: 75px 20px;
    margin-top: 60px;
  }

  .point-list .point-item .point-num {
    width: 85px;
    height: 85px;
  }

  #contents .point-list h3 {
    padding: 15px 5px;
  }

  #contents .box-mb.mb-end {
    margin-bottom: 70px;
  }

  #contents li.other-item .bold {
    margin-bottom: 0;
  }

  #contents li.other-item .bold.sp-ttl {
    margin-bottom: 10px;
  }

  .other-list {
    grid-template-columns: 100%;
  }

  .request-bg {
    padding: 55px 0 60px;
  }

  .request-bg .txt-4box {
    width: 100%;
    margin-right: 0;
    padding-bottom: 10px;
  }

  .request-bg .txt-4box:last-child {
    margin-bottom: 0;
  }

  .notes-area {
    width: 100%;
  }

  .ico-item {
    padding: 25px 0;
  }

  #contents .ico-item p {
    line-height: 1.3em;
  }

  .ico-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .schooters-time .time-item {
    padding: 25px 10px;
  }

  #contents .schooters-time h3 {
    margin-bottom: 10px;
  }

  .schooters-time {
    gap: 10px;
  }

  .schooters-time.col-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
  }

  .schooters-time.col-3 .time-item {
    width: calc(100% / 2 - 5px);
    margin-right: 10px;
  }

  .schooters-time.col-3 .time-item:nth-child(2),
  .schooters-time.col-3 .time-item:last-child {
    margin-right: 0;
  }

  .time-bg {
    padding: 55px 0 60px;
  }

  .schooters-fv {
    grid-template-columns: 100%;
    line-height: 1.2em;
  }

  #contents .simplebar-content-wrapper::before {
    display: none;
  }

  #contents .document-list .document-name {
    margin-bottom: 8px;
  }

  .document-list {
    flex-wrap: wrap;
    gap: 0;
  }

  .document-list .document-item:nth-child(2) {
    max-width: unset;
  }

  .document-list .document-item {
    width: 100%;
    padding: 20px 0 10px;
    border-top: 1px dashed #AAA;
  }

  .document-list .document-item:last-child {
    padding-bottom: 0;
  }

  .document-list .document-item:first-child {
    padding-top: 0;
    border-top: none;
  }

  .price-main .table-over.long .table-02 tr:first-child th:first-child {
    width: 160px;
  }

  #contents .table-over table {
    min-width: 450px;
  }

  .car-type .table-02 th {
    width: 100px;
  }

  .license-area {
    margin-bottom: 30px;
  }

  .feature-list .feature-item {
    padding: 12px 15px;
  }

  .price-list {
    gap: 30px;
  }

  .license-area .license-item,
  #class2 .license-area .license-item {
    width: 100%;
    margin: 20px 0 0;
    padding: 20px 15px 13px;
  }

  .car-type {
    margin-bottom: 50px;
    padding: 30px 15px 20px;
  }

  #contents .feature-area .feature-ttl {
    padding-bottom: 15px;
  }

  .feature-area,
  .document-area,
  .price-main {
    margin-bottom: 30px;
    padding: 25px 15px 30px;
  }

  .price-item {
    padding: 25px 15px 30px;
  }

  #contents .box-mb {
    margin-bottom: 60px;
  }

  .bg-blue {
    padding: 55px 0 60px;
  }

  #contents .mb-100 {
    margin-bottom: 80px;
  }

  #contents .document-list h4.document-name {
    height: auto;
  }

  #qa {
    top: 14px;
    top: 14px;
    .anchor-link .txt-3box {
      width: 100%;
    }

    & .qa-item .a-area: :before { left: 16px;
    }

    & .qa-item .a-area {
      padding: 15px 15px 15px 40px;
    }

    & .qa-item .qa-a {
      padding: 0 15px 15px 15px;
    }

    & .qa-item h3.qa-q: after { right: 15px;
    }

    & .qa-item h3.qa-q {
      padding: 20px 40px 20px 50px;
    }

    & h3.qa-q: :before { left: 20px;
    }

    .link-btn.anchor {
      margin-top: 15px;
  }

  .training-time .txt-3box {
    width: 100%;
    margin-right: 0px;
  }

  .txt-off-559 {
    display: none;
  }

  .txt-on-559 {
    display: block;
  }

  .bnr-link-area .txt-3box:first-child {
    margin-right: 0px;
  }

  .bnr-link-area .link-bnr,
  .bnr-link-area .link-bnr img {
    width: 100%;
  }

  & .schedule-info {
    padding: 30px 15px;
  }

  #schedule {
    margin-bottom: 0;
    #contents .schedule-info p.main-txt {
      margin-bottom: 20px;
    }

    #contents .info-text {
      text-align: left;
    }

    #contents .notes-txt {
      margin: 0 auto 10px;
    }

    & #contents .box-mb.bg-area.ondemand .about-area {
      padding: 20px 15px;
    }

    & #contents .box-mb.bg-area.ondemand h2 {
      line-height: 1.1em;
    }

    & #contents .no-area .no-item: last-child h3, & #contents .no-area .no-item h3 { line-height: 1.4em;
    }

    & #contents .no-area .no-item h3 br.br-1040 {
      display: none;
    }

    & #contents .no-area .no-item p.num-list .num {
      padding: 0px 10px 0px 10px;
    }

    & #contents .no-area .no-item p.num-list {
      padding-left: 40px;
    }

    & .no-area .no-item .table-02 th {
      min-width: 92px;
    }

    & .no-area .no-item .table-02 {
      width: 100%;
    }

    & .no-area {
      padding: 30px 15px 15px;
    }

    & .no-list {
      padding: 20px 15px;
    }

    & .schedule-info {
      padding: 30px 15px 20px;
    }

    .bnr-link-area .link-bnr,
    .bnr-link-area .link-bnr img {
      width: 100%;
  }

  #bus .schoolbus-notes {
    width: 93%;
    margin-top: 70px;
  }

  #bus #contents .info-text {
    text-align: left;
  }

  .main-area {
    padding: 50px 0;
  }

  #about #contents .main-area:before {
    right: 10px;
  }

  #about #contents .main-img:after {
    left: -10px;
  }

  #contents .guidance-3point h4 {
    padding: 0 10px;
  }

  .facilities-slider-thm {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin: auto;
  }

  .nurserya-deco::before,
  .nurserya-deco::after {
    height: 80%;
  }

  .nurserya-deco::after {
    right: 100%;
  }

  .nurserya-deco::before {
    left: 100%;
  }

  .voice-q,
  .voice-a {
    padding: 2vw 2vw 2vw 50px;
  }

  #bus #contents .schoolbus-info h3 .catch-text {
    margin-bottom: 5px;
  }

  #bus #contents .schoolbus-info h3 {
    margin-bottom: 20px;
  }

  #bus .timeschedule-list {
    grid-template-columns: 1fr;
  }

  .schoolbus-bg.bg-none {
    padding: 0 0 70px;
  }

  #contents .map-line .txt-2box h3 {
    padding: 12px 20px 5px;
  }

  #contents .map-area p.look-red:before {
    left: -14px;
    width: 103%;
  }

  .info-bg .table-info th {
    width: 21%;
    min-width: 105px;
  }
}

@media print, screen and (max-width:767.98px) {
  .service-meritInfo_heading {
    margin-bottom: 10px;
  }

  .service-meritInfo_heading_text {
    line-height: 1.4;
  }

  .service-meritInfo_heading_text:before {
    margin-right: 12px;
  }

  .service-meritInfo_heading_text:after {
    margin-left: 12px;
  }
}

@media only screen and (max-width: 799px) {
  #priceMain {
    width: 100%;
  }

  .planSelect li {
    width: 98%;
  }

  .pc_calendar {
    display: none;
  }

  .sp_calendar {
    display: block;
  }

  .planSelectTbl .last td:last-child {
    width: 100%;
    border-bottom: solid 1px #ccc;
  }

  .planSelectTbl {
    width: 100%;
  }

  .planSelectTbl th,
  .planSelectTbl td {
    display: flex;
    width: 100%;
    border-bottom: none;
  }

  .dateSelect li {
    width: 30%;
  }

  .containerPlan::before {
    top: 65px;
  }

  .containerPlan::after {
    top: 90px;
  }

  .containerDate::before {
    top: 185px;
  }

  .containerDate::after {
    top: 210px;
  }

  .planSpList {
    width: 100%;
    margin: 0 0 10px;
    border-top: 5px solid #bbb;
    border-bottom: 5px solid #bbb;
  }

  .planSpList li {
    padding: 10px 0;
    background: #f1f1f1!important;
  }

  table.planSpListTbl {
    width: 98%;
  }

  table.planSpListTbl th {
    width: 63%;
    padding: 0 0 0 5px;
    text-align: center;
    vertical-align: middle;
  }

  table.planSpListTbl td .planSpListOrder {
    width: 100%;
    padding: 8px 0;
    background: url(/img/calendar/arrow.png) no-repeat 95% 50% #f66076;
    background-size: 7px 11px;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
  }

  table.planSpListTbl td .planSpList_subBtn {
    background: #F2A547;
    border-radius: 3px;
    text-align: center;
  }

  .spPlanList {
    color: #3ab4c1;
    font-weight: bold;
  }

  .rakusyo_img {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .level {
    width: 96%;
    margin: 0 auto 42px;
  }
}

@media screen and (max-width: 480px) {
  .level {
    margin: 0 auto 32px;
  }

  .level h3 span {
    margin-right: 0;
    margin-bottom: 12px;
    line-height: 1;
  }

  .level .level_inner {
    padding: 20px;
  }

  .level .level_inner .level_fee_box .fee_flexbox {
    display: block;
  }

  .level .level_inner .level_fee_box .fee_flexbox div.double_width {
    width: 100%;
    padding-bottom: 0;
  }

  .level .level_inner .level_fee_box .fee_flexbox div {
    width: 100%;
    padding: 5%;
  }
}

@media screen and (max-width: 700px) {
  .level .level_inner .level_fee_box p.fee {
    text-align: left;
  }

  .level {
    width: 94%;
  }
}

@media screen and (max-width: 558px) {
  .nurserya-list {
    margin: auto auto 0px;
    padding-left: 0 !important;
  }

  .link-btn.anchor {
    margin-top: 15px;
  }

  .movie-area iframe {
    height: 225px;
  }
}

@media screen and (max-width: 1400px) {
  #campaign #contents .contact-area .flex .link-btn {
    padding: 23px 25px;
  }

  #campaign #contents .contact-area .flex .link-btn::before {
    width: 110px;
    height: 110px;
    margin-right: 15px;
  }

  .movie-area iframe {
    height: 210px;
  }
}

@media screen and (max-width: 1300px) {
  #bike .link-btn.anchor::after {
    right: 10px;
  }

  .document-list .document-item:nth-child(2) {
    min-width: 130px;
  }

  .movie-area iframe {
    height: 193px;
  }
}

@media screen and (max-width: 1140px) {
  .pay-type {
    grid-template-columns: 100%;
  }

  .procedure-document {
    gap: 20px;
  }

  .procedure-schedule .procedure-item {
    padding: 30px;
  }

  #campaign #contents .contact-area .flex .link-btn {
    padding: 20px 25px;
  }

  #contents .contact-area .flex .link-btn br {
    display: none;
  }

  #campaign #contents .contact-area .flex .link-btn::before {
    width: 100px;
    height: 100px;
  }

  #contents .contact-area .flex {
    gap: 35px 0;
  }

  #contents .contact-area .flex .txt-3box,
  #contents .contact-area .flex .txt-3box:nth-child(3n) {
    width: 48%;
    margin-right: 4%;
  }

  #contents .contact-area .flex .txt-3box:nth-child(2n),
  #contents .contact-area .flex .txt-3box:last-child {
    margin-right: 0;
  }

  #contents .campaign-box h3 {
    max-width: 100%;
    padding: 10px 5px 22px;
  }

  #contents .campaign-box img {
    height: auto;
  }

  #campaign #contents .notes-txt br {
    display: none;
  }

  #contents .point-list h3 {
    padding: 15px;
  }

  .request-bg .txt-4box {
    width: calc(100% / 2 - 10px);
  }

  .request-bg .txt-4box:nth-child(2n) {
    margin-right: 0;
  }

  .ico-list {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .time-bg .txt-2box {
    width: 100%;
    margin-right: 0;
  }

  #bike .anchor-link .txt-3box {
    width: calc(100% / 2 - 10px);
    margin-right: 20px;
  }

  #bike .anchor-link .txt-3box:nth-child(2),
  #bike .anchor-link .txt-3box.end {
    margin-right: 0;
  }

  .document-list .document-item:nth-child(2) {
    min-width: 115px;
  }

  #class2 .price-item:nth-child(3),
  #class2 .price-item:nth-child(4) {
    grid-column-end: unset;
    grid-column-start: unset;
  }

  .price-list {
    grid-template-columns: 100%;
  }

  .price-detail .flex .txt-2box {
    width: 100%;
    margin: 0;
  }

  .price-detail .flex .txt-2box.end {
    margin-top: 25px;
  }

  .price-detail .flex .txt-2box .table-02 th:first-child {
    max-width: 240px;
  }

  .price-main .table-over.long .table-02 tr:first-child th:first-child {
    width: 60%;
  }

  #class2 .license-area .license-item {
    width: calc(100% / 2 - 10px);
  }

  #class2 .license-area .license-item:nth-of-type(2n) {
    margin-right: 0;
  }

  .document-area {
    margin-bottom: 40px;
    padding: 30px 20px;
  }

  .license-area .license-item {
    width: calc(100% / 3 - 14px);
    margin-right: 20px;
  }

  #contents h3.document-ttl {
    padding-bottom: 0;
  }

  .movie-area .txt-3box {
    width: calc(100% / 2 - 10px);
    margin-right: 0;
  }

  .movie-area .txt-3box:first-child,
  .movie-area .txt-3box:nth-child(3),
  .movie-area .txt-3box:nth-child(5) {
    margin-right: 20px;
  }

  .movie-area iframe {
    height: 255px;
  }

  .txt-on-1140 {
    display: block;
  }

  .table-over .calendar-img {
    min-width: 1140px;
  }

  #schedule {
    #contents .notes-txt {
      max-width: 670px;
  }

  #contents .map-area p.look-red {
    padding: 12px 8px;
    letter-spacing: 0em;
  }

  #contents .map-area p.look-red:before {
    left: -14px;
    width: 101.65%;
  }

  #contents .map-area p.look-red:after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2%;
    height: 100%;
    background-color: #FFF;
    content: "";
  }

  #bus #contents .bnr-link-area .txt-3box {
    margin-bottom: 30px;
  }

  #about #contents .main-area .txt-2box.end h2 {
    margin: 0 0 20px;
  }

  #okayama .map {
    height: 305px;
  }

  #okayama .map iframe {
    height: 375px;
  }

  #kounan .map {
    height: 305px;
  }

  #kounan .map iframe {
    height: 375px;
  }

  #chayamachi .map {
    height: 305px;
  }

  #chayamachi .map iframe {
    height: 375px;
  }

  #gounai .map {
    height: 305px;
  }

  #gounai .map iframe {
    height: 385px;
  }

  #kojima-south .map {
    height: 345px;
  }

  #kojima-south .map iframe {
    height: 415px;
  }

  #kojima-north .map {
    height: 355px;
  }

  #kojima-north .map iframe {
    height: 425px;
  }

  #senoo .map {
    height: 342px;
  }

  #senoo .map iframe {
    height: 425px;
  }

  #yamada .map {
    height: 342px;
  }

  #yamada .map iframe {
    height: 425px;
  }

  #tamahara .map {
    height: 342px;
  }

  #tamahara .map iframe {
    height: 415px;
  }
}

@media screen and (max-width: 959px) {
  #contents .sp-left-txt {
    margin-bottom: 65px;
    text-align: left;
  }

  #contents .flow-notes {
    margin-bottom: 25px;
    padding: 25px 15px;
    text-align: left;
    line-height: 1.7em;
  }

  #contents .license-flow-box li:after {
    left: 8px;
  }

  #contents .license-flow-box li img {
    max-width: 110px;
  }

  #contents .license-flow-box li {
    padding: 15px 20px;
  }

  .campaign-box {
    gap: 50px 0;
  }

  .anchor-link .txt-3box {
    width: calc(100% / 2 - 10px);
  }

  .anchor-link .txt-3box:first-child {
    margin-right: 10px;
  }

  .bnr-link-area .txt-3box {
    width: calc(100% / 2 - 20px);
    margin-right: 20px;
  }

  .loan-table-area .table-01 th {
    width: 100%;
    min-width: unset;
  }

  .pay-item br {
    display: none;
  }

  .procedure-document {
    grid-template-columns: 1fr 1fr;
  }

  #contents .contact-area .flex .link-btn br {
    display: block;
  }

  #campaign #contents .contact-area .flex .link-btn::before {
    width: 80px;
    height: 80px;
  }

  .point-photo {
    max-width: 600px;
    margin: 0 auto 20px;
  }

  .point-list {
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }

  .other-list {
    grid-template-columns: 1fr 1fr;
  }

  #contents li.other-item {
    margin-bottom: 0;
  }

  .schooters-fv {
    gap: 20px;
    grid-template-columns: calc(42% - 20px) 58%;
    padding: 20px 15px;
    line-height: 1.3em;
  }

  #bike .anchor-link .txt-3box {
    width: 100%;
    margin: 0;
  }

  .feature-list .feature-item {
    padding: 12px 20px;
    border-radius: 10px;
  }

  .car-type,
  .feature-area {
    width: 100%;
    max-width: 100%;
  }

  .feature-area {
    margin-bottom: 50px;
    padding: 25px 25px 30px;
  }

  .license-area .license-item {
    width: calc(100% / 2 - 14px);
    padding: 28px 20px 25px;
  }

  .license-area .license-item:nth-of-type(2n) {
    margin-right: 0;
  }

  #contents .price-main .box-mb {
    margin-bottom: 60px;
  }

  #campaign #contents .notes-txt p {
    text-align: left;
  }

  #contents .document-list h4.document-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 68px;
  }

  .anchor-link>div:first-child .link-btn.anchor {
    margin-top: 20px;
  }

  #qa {
    #contents .anchor-link {
      justify-content: space-between;
    }

    & .qa-item h3.qa-q {
      padding: 25px 40px 25px 60px;
    }

    .anchor-link .txt-3box {
      width: calc(100% / 2 - 10px);
  }

  .bnr-link-area .txt-3box:first-child {
    margin-right: 20px;
  }

  .anchor-link-area .txt-3box {
    width: calc(100% / 2 - 10px);
  }

  .anchor-link-area .txt-3box:first-child {
    margin-right: 10px;
  }

  #calendar {
    width: 30%;
    min-width: 120px;
    & .training-time .table-02 th {
      padding: 15px 10px;
    }

    & .training-time .table-02 tr.bd-none th,
    & .training-time .table-02 tr.bd-none td {
      border-bottom: 0;
    }

    .bg-area .about-area {
      padding: 20px 15px;
  }

  #schedule {
    #contents .notes-txt {
      max-width: 100%;
  }

  #bus .schoolbus-info {
    width: 90%;
    padding: 15px;
  }

  #bus .schoolbus-bg {
    padding-top: 40px;
  }

  #bus .notes-bg {
    padding-bottom: 40px;
  }

  #bus .schoolbus-notes {
    width: 85%;
    margin-top: 70px;
  }

  #bus #contents h3.notes-ttl {
    padding: 10px;
  }

  #bus .schoolbus-notes .notes-text {
    padding: 15px;
  }

  #bus .timeschedule-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    writing-mode: horizontal-tb;
  }

  #bus .timeschedule-list .route-item {
    padding: 10px 10px 10px 60px;
    background-position: 20px center;
    background-size: 20px;
  }

  #bus .bnr-area.other-link {
    width: 100%;
    height: auto;
    padding: 28vw 13vw 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 180/73;
  }

  #bus .bnr-area.other-link::before {
    height: 15vw;
    background-position: center;
    background-size: cover;
  }

  #bus .bnr-link-area .link-bnr.color-pink {
    height: 230px;
  }

  #bus .flex .bnr-link-area .txt-3box {
    display: flex;
    justify-content: center;
  }

  #bus .bnr-area.other-link::after {
    right: 4vw;
    bottom: 4vw;
    width: 3vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .bnr-link-area .txt-3box:nth-child(2n) {
    margin-right: 0;
  }

  #contents p.thm-text {
    line-height: 1.35em;
  }

  #contents .map-line .txt-2box {
    margin-bottom: 30px;
  }

  #contents .map-line .txt-2box.end {
    margin-bottom: 0;
  }

  #okayama .map {
    height: 405px;
  }

  #okayama .map iframe {
    height: 475px;
  }

  #kounan .map {
    height: 405px;
  }

  #kounan .map iframe {
    height: 475px;
  }

  #chayamachi .map {
    height: 405px;
  }

  #chayamachi .map iframe {
    height: 475px;
  }

  #gounai .map {
    height: 405px;
  }

  #gounai .map iframe {
    height: 488px;
  }

  .map iframe {
    width: 101%;
    border-radius: 0 0 25px 20px;
  }

  #kojima-south .map {
    height: 393px;
  }

  #kojima-south .map iframe {
    height: 477px;
  }

  #kojima-north .map {
    height: 405px;
  }

  #kojima-north .map iframe {
    height: 475px;
  }

  #senoo .map {
    height: 405px;
  }

  #senoo .map iframe {
    height: 488px;
  }

  #yamada .map {
    height: 405px;
  }

  #yamada .map iframe {
    height: 487px;
  }

  #tamahara .map {
    height: 415px;
  }

  #tamahara .map iframe {
    height: 485px;
  }

  #bus #contents .bnr-link-area .link-bnr h3 {
    height: 65px;
    background: none;
  }

  #bus #contents .bnr-link-area .link-bnr.color-pink h3::before {
    height: 70px;
  }

  #about #contents .main-area:before {
    top: inherit;
    right: 30px;
    bottom: 50px;
    width: 274px;
    height: 250px;
    background-image: url(/img/about_main_bg_ico_sp.png);
  }

  .guidance-bg {
    padding: 40px 0;
  }

  #contents .guidance-bg h3 {
    margin-bottom: 40px;
  }

  .guidance-3point .point-detail {
    position: relative;
    height: auto;
    padding-bottom: 1px;
  }

  .guidance-3point .point-item {
    padding: 0;
  }

  .guidance-3point {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .facilities-slider-thm {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    width: 90%;
    margin: auto;
  }

  .facilities-inner .slider-item {
    display: block;
  }

  .facilities-inner .slider-item .main-img {
    width: 100%;
    margin: 0 auto 6vw;
  }

  .facilities-inner .slider-item .slider-text {
    width: 90%;
    margin: auto;
  }

  .facilities-inner {
    width: 90%;
    margin-top: 0;
  }

  #contents .nurserya-catch {
    max-width: 90%;
    padding: 5vw 11vw 10vw;
    line-height: 1.5em;
  }

  .nurserya-points {
    padding: 60px 3vw 10px;
  }

  #contents .nurserya-deco {
    width: 85%;
  }

  #contents .nurserya-list li {
    padding: 10px 10px 10px 50px;
  }

  .nurserya-caution {
    padding: 5vw 3vw 1vw;
  }

  .voice-bg {
    padding: 30px 0 20px;
  }

  .nurserya-voice {
    padding: 10px 0 70px;
  }

  .info-bg {
    padding: 30px 0 120px;
  }

  #contents .flex.gallery-box .txt-3box {
    width: 50%;
  }

  #contents .flex.gallery-box .txt-3box:first-child {
    width: 100%;
  }

  #contents .flex.gallery-box .txt-3box img {
    width: 100%;
    object-fit: cover;
  }

  .recruit-deco .deco-inner::before {
    background-image: url(/img/recruit/photo_recruit_sp.jpg);
    background-position: center;
    background-size: cover;
  }

  .deco-inner {
    width: 90%;
    height: auto;
    aspect-ratio: 6/5;
  }

  #contents .recruit-deco .deco-text {
    bottom: 20px;
    width: 90%;
  }

  #contents .ico-recruiting {
    bottom: 95%;
    padding: 5px 40px 15px;
  }

  .recruit-list .table-02 th {
    width: 130px;
  }
}

@media screen and (max-width: 515px) {
  #contents .simplebar-content-wrapper::before {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .movie-area iframe {
    height: 183px;
  }

  #about #contents .main-area:before {
    right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .movie-area iframe {
    height: 239px;
  }

  .anchor-link .txt-3box {
    width: calc(100% / 2 - 10px);
  }

  .anchor-link .link-btn.anchor {
    margin-top: 0;
  }

  .anchor-link .txt-3box:first-child {
    margin-right: 15px;
  }

  #kojima-south .map iframe {
    height: 387px;
  }

  #kojima-south .map {
    height: 317px;
  }

  #kojima-north .map iframe {
    height: 387px;
  }

  #kojima-north .map {
    height: 317px;
  }

  #senoo .map iframe {
    height: 392px;
  }

  #senoo .map {
    height: 312px;
  }

  #yamada .map {
    height: 312px;
  }

  #yamada .map iframe {
    height: 395px;
  }

  #tamahara .map {
    height: 377px;
  }

  #tamahara .map iframe {
    height: 445px;
  }
}

@media screen and (max-width: 958px) {
  .movie-area iframe {
    height: 200px;
  }
}

@media screen and (max-width: 810px) {
  .movie-area iframe {
    height: 191px;
  }
}

@media screen and (max-width: 429px) {
  .movie-area iframe {
    height: 199px;
  }
}

@media screen and (max-width: 1040px) {
  br.br-1040 {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  #schedule {
    padding-top: 15px;
    #contents .no-area .no-item: first-child h3 br, #contents .no-area .no-item:nth-child(3) h3 br, #contents .no-area .no-item:nth-child(4) h3 br { display: none;
    }

    #contents .no-area .no-item h3 .min-txt {
      display: flex;
    }

    & #contents .no-area .no-item: last-child h3 { line-height: 1em;
  }
}

@media screen and (max-width: 390px) {
  #schedule {
    & .no-area .no-item .table-02 td br.br-559 {
      display: none;
  }
}

@media (max-width: 600px) {
  .link-group {
    flex-direction: column;
  }

  .section {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 1450px) {
  #contents .bnr-link-area .link-bnr h3 {
    padding: 25px 10px 15px;
  }

  #okayama .map {
    height: 365px;
  }

  #okayama .map iframe {
    height: 435px;
  }

  #kounan .map {
    height: 365px;
  }

  #kounan .map iframe {
    height: 435px;
  }

  #chayamachi .map {
    height: 425px;
  }

  #chayamachi .map iframe {
    height: 495px;
  }

  #gounai .map {
    height: 365px;
  }

  #gounai .map iframe {
    height: 445px;
  }

  #kojima-south .map {
    height: 425px;
  }

  #kojima-south .map iframe {
    height: 495px;
  }

  #kojima-north .map {
    height: 425px;
  }

  #kojima-north .map iframe {
    height: 495px;
  }

  #senoo .map {
    height: 365px;
  }

  #senoo .map iframe {
    height: 445px;
  }

  #yamada .map {
    height: 415px;
  }

  #yamada .map iframe {
    height: 495px;
  }

  #tamahara .map {
    height: 415px;
  }

  #tamahara .map iframe {
    height: 485px;
  }
}


/* ============================================================
   5. アニメーション / フォント定義 等
   ============================================================ */


@keyframes imgPassToLeft0 {
  0% {
    left: -100%;
  }
  16% {
    left: -100%;
  }
  20% {
    left: -200%;
  }
  36% {
    left: -200%;
  }
  40% {
    left: -300%;
  }
  56% {
    left: -300%;
  }
  60% {
    left: -400%;
  }
  76% {
    left: -400%;
  }
  80% {
    left: -500%;
  }
  96% {
    left: -500%;
  }
  100% {
    left: -600%;
  }
}

@-webkit-keyframes imgPassToLeft0 {
  0% {
    left: -100%;
  }
  16% {
    left: -100%;
  }
  20% {
    left: -200%;
  }
  36% {
    left: -200%;
  }
  40% {
    left: -300%;
  }
  56% {
    left: -300%;
  }
  60% {
    left: -400%;
  }
  76% {
    left: -400%;
  }
  80% {
    left: -500%;
  }
  96% {
    left: -500%;
  }
  100% {
    left: -600%;
  }
}

@keyframes cp_bnr {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes cp_bnr {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
