@charset "UTF-8";
/* リセットCSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  word-break: break-all;
  -webkit-text-size-adjust: none;
}

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

/* リセットCSS */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 色 */
.cl-main {
  color: #0097e0;
}

.cl-main-l {
  color: #edf9ff;
}

.cl-white {
  color: #fff;
}

.cl-black {
  color: #333;
}

.cl-yellow {
  color: #fff500;
}

.cl-pink {
  color: #eb788e;
}

.cl-orange {
  color: #f69400;
}

.cl-red {
  color: #d85833;
}

/* テキスト太さ */
.b {
  font-weight: 700 !important;
}

/* レスポンシブ改行 */
@media (min-width: 768px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
a:hover {
  opacity: 0.8;
}

/* 画面幅に応じたcontainer幅 */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.m-1 {
  margin: 1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2,
.my-2 {
  margin-top: 2rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3,
.my-3 {
  margin-top: 3rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4,
.my-4 {
  margin-top: 4rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.mt-7,
.my-7 {
  margin-top: 7rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 7rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 7rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 7rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.mt-10,
.my-10 {
  margin-top: 10rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 10rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 10rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 10rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1,
.py-1 {
  padding-top: 1rem !important;
}

.pr-1,
.px-1 {
  padding-right: 1rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}

.pl-1,
.px-1 {
  padding-left: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2,
.py-2 {
  padding-top: 2rem !important;
}

.pr-2,
.px-2 {
  padding-right: 2rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}

.pl-2,
.px-2 {
  padding-left: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3,
.py-3 {
  padding-top: 3rem !important;
}

.pr-3,
.px-3 {
  padding-right: 3rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}

.pl-3,
.px-3 {
  padding-left: 3rem !important;
}

.p-4 {
  padding: 4rem !important;
}

.pt-4,
.py-4 {
  padding-top: 4rem !important;
}

.pr-4,
.px-4 {
  padding-right: 4rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 4rem !important;
}

.pl-4,
.px-4 {
  padding-left: 4rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 5rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.pt-7,
.py-7 {
  padding-top: 7rem !important;
}

.pr-7,
.px-7 {
  padding-right: 7rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 7rem !important;
}

.pl-7,
.px-7 {
  padding-left: 7rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.pt-10,
.py-10 {
  padding-top: 10rem !important;
}

.pr-10,
.px-10 {
  padding-right: 10rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 10rem !important;
}

.pl-10,
.px-10 {
  padding-left: 10rem !important;
}

.t-center {
  text-align: center;
}

/*==============================
	基本設定
==============================*/
html {
  font-size: 62.5%;
}

.fs14 {
  font-size: 1.4rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs17 {
  font-size: 1.7rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs19 {
  font-size: 1.9rem;
}

.fs20 {
  font-size: 2rem;
}

.fs21 {
  font-size: 2.1rem;
}

.fs22 {
  font-size: 2.2rem;
}

.fs23 {
  font-size: 2.3rem;
}

.fs24 {
  font-size: 2.4rem;
}

.fs25 {
  font-size: 2.5rem;
}

.fs26 {
  font-size: 2.6rem;
}

.fs27 {
  font-size: 2.7rem;
}

.fs28 {
  font-size: 2.8rem;
}

.fs29 {
  font-size: 2.9rem;
}

.fs30 {
  font-size: 3rem;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", Helvetica, Arial, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333;
  transition: 0.3s;
  -webkit-text-stroke: 0.1px;
  text-underline-position: under;
  background-position: center top;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: #333;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc-img {
  display: block !important;
}

.sp-img {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media (max-width: 767px) {
  .pc-img {
    display: none !important;
  }
  .sp-img {
    display: block !important;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media (max-width: 991px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.t-center {
  text-align: center;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.title h2 {
  display: inline-block;
  text-align: center;
  color: #0097e0;
  font-size: 2.3rem;
  font-weight: bold;
  border: 1px solid #0097e0;
  border-radius: 20px;
  padding: 5px 20px;
  box-sizing: border-box;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
}
@media (max-width: 575px) {
  .title h2 {
    font-size: 2rem;
    padding: 10px 30px;
    border-radius: 30px;
  }
}

/*アニメーション*/
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(50px);
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform: translateX(0);
}

/*==============================
ヘッダー
==============================*/
#header .header-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
}
#header .header-inner .logo img {
  margin-top: 20px;
}
#header .header-inner .header-nav {
  z-index: 100;
}
#header .header-inner .nav-cta ul,
#header .header-inner ul.menu {
  display: flex;
  justify-content: flex-end;
}
#header .header-inner .menu {
  margin-top: 10px;
}
#header .header-inner .menu li a {
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
}
#header .header-inner .nav-cta ul li a:hover {
  opacity: 0.7;
}
#header .header-inner .nav-cta .tel img {
  width: 224px;
  padding-top: 10px;
  padding-left: 10px;
}
#header .header-inner .menu ul li a:hover {
  opacity: 0.7;
}
#header .header-inner button {
  display: none;
}

@media (max-width: 991px) {
  #header .header-inner {
    margin: 0 20px;
    /***** メニューオープン時 *****/
  }
  #header .header-inner .logo img {
    margin-top: 25px;
    max-width: 350px;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  #header .header-inner .logo img {
    max-width: 230px;
  }
}
@media (max-width: 991px) {
  #header .header-inner .nav-cta {
    display: none;
  }
  #header .header-inner .nav-cta ul,
  #header .header-inner ul.menu {
    justify-content: flex-start;
  }
  #header .header-inner .menu {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #efefef;
    background-color: rgba(0, 151, 224, 0.9);
    transition: 0.2s;
    position: fixed;
    right: -100vw;
    top: 0;
    margin-top: 0px;
    padding-top: 70px;
  }
  #header .header-inner .menu li a {
    text-decoration: none;
    font-weight: bold;
    margin-left: 0px;
  }
  #header .header-inner .menu-list {
    width: 100%;
    height: 55px;
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    position: relative;
  }
  #header .header-inner .menu-list:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #header .header-inner .menu-list a {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
  }
  #header .header-inner .sp-nav a {
    padding-top: 14px;
  }
  #header .header-inner button {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
  }
  #header .header-inner .btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 20px;
    right: 16px;
    /* ボタンの大きさ  */
    width: 32px;
    height: 48px;
    /* 最前面に */
    z-index: 10;
  }
  #header .header-inner .btn-line {
    display: block;
    position: relative; /* バーガー線の位置基準として設定 */
    width: 100%; /* 線の長さと高さ */
    height: 3px;
    background-color: #000; /* バーガー線の色 */
    transition: 0.2s;
  }
  #header .header-inner .btn-line::before,
  #header .header-inner .btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: 0.5s;
  }
  #header .header-inner .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-10px);
  }
  #header .header-inner .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(10px);
  }
  #header .header-inner .menu.open {
    position: fixed;
    top: 0;
    right: 0;
  }
  #header .header-inner .btn-line.open {
    background-color: transparent; /* 真ん中の線を透明に */
  }
  #header .header-inner .btn-line.open::before,
  #header .header-inner .btn-line.open::after {
    content: "";
    background-color: #fff; /* 上下の線の色を変える */
    transition: 0.2s;
  }
  #header .header-inner .btn-line.open::before {
    transform: rotate(45deg); /* 上の線を傾ける */
  }
  #header .header-inner .btn-line.open::after {
    transform: rotate(-45deg); /* 下の線を傾ける */
  }
}
/*ナビゲーション上 個人情報保護方針*/
#header .header-head {
  padding: 0 50px;
  border-bottom: solid 1px #d7dfd9;
}
#header .header-head a {
  display: block;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: right;
}
a[target="_blank"] span {
  padding-right: 15px;
  background: url("../images/common/icon_link-blank.svg") no-repeat right center;
}
/*ナビゲーション 外部リンクアイコン*/
header .header-inner .menu-list a[target="_blank"] span {
  padding-right: 25px;
  background: url("../images/common/icon_link-blank_wht.svg") no-repeat right center;
}
/*==============================
フッター
==============================*/
#footer {
  background-color: #0097e0;
  padding: 5rem 0;
  color: #fff;
}
#footer .footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#footer .footer-logo img {
  width: 160px;
  margin-bottom: 2rem;
}
#footer .footer-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
}
#footer .footer-num {
  display: flex;
  text-align: center;
}
@media (max-width: 575px) {
  #footer .footer-num {
    flex-direction: column;
    align-items: center;
  }
}
#footer .footer-num p {
  margin: 0 0.8rem;
}
#footer .copyright {
  margin-top: 5rem;
  font-size: 1.2rem;
}

.fixBottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 100;
  background-color: #35c0f4;
}

.fixBottom-menu {
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 1.4rem;
}
.fixBottom-menu li {
  width: 33.3333333333%;
  padding: 12px 0 12px;
  color: #fff;
}
.fixBottom-menu li:first-child {
  background-color: #35c0f4;
}
.fixBottom-menu li:nth-child(2) {
  background-color: #eb788e;
}
.fixBottom-menu li:last-child {
  background-color: #80bf31;
}
.fixBottom-menu li a {
  text-decoration: none;
  color: #fff;
}

/* 下層ページタイトル */
.page-title {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../images/common/page_title_back.jpg);
  background-position: center;
  height: 250px;
  margin: 2.5rem 0 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-title .page-title-inr {
  font-size: 3rem;
  color: #fff;
  line-height: 1.3em;
}

@media (max-width: 767px) {
  .page-title {
    height: 150px;
  }
  .page-title .page-title-inr {
    font-size: 2.2rem;
  }
}
/* CTA */
.cta {
  background-color: #eb788e;
  padding: 4rem 0;
}
.cta.cta-top {
  margin-top: 6rem;
}
.cta .cta-head {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.cta .cta-head img {
  max-width: 700px;
  width: 60%;
}
@media (max-width: 991px) {
  .cta .cta-head img {
    width: 80%;
  }
}
.cta .cta-resevasiton {
  text-align: center;
}
.cta .cta-resevasiton img {
  margin: 0 5px;
}
@media (max-width: 575px) {
  .cta .cta-resevasiton img {
    width: 70%;
  }
}
.cta .cta-border {
  border: #fff solid 1px;
  margin: 2rem auto;
  width: 75%;
}
.cta .cta-p {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .cta .cta-p {
    font-size: 1.6rem;
  }
}
.cta .cta-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .cta .cta-contact {
    flex-direction: column;
  }
}
.cta .cta-contact-tel {
  text-align: center;
  width: 48%;
  padding: 0 1%;
}
@media (max-width: 575px) {
  .cta .cta-contact-tel {
    width: 60%;
  }
}
.cta .cta-contact-mail {
  text-align: center;
  width: 48%;
  padding: 0 1%;
}
@media (max-width: 575px) {
  .cta .cta-contact-mail {
    width: 60%;
  }
}

/*==============================
	トップ
==============================*/
/* メインビジュアル */
.main-visual {
  margin: 20px 0 50px;
}
@media (max-width: 575px) {
  .main-visual {
    margin: 0 0 10px;
  }
}
.main-visual img {
  max-width: 100%;
}

/* 求人バナー */
.recruit_banner .pc-img {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
.recruit_banner .sp-img {
  width: 70%;
  margin: 0 auto;
}

/* お知らせ */
.top-news .top-news-box {
  border: 1px solid #9b9b9b;
  margin: 3rem auto;
  padding: 2rem 5rem;
  width: 90%;
  border-radius: 10px;
}
.top-news .top-news-box .news-title h3 {
  font-size: 2rem;
  text-align: center;
  border-bottom: 1px dotted #9b9b9b;
  padding: 0 1rem 1rem;
}
.top-news .top-news-box .news-list {
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .top-news .top-news-box .news-list {
    font-size: 1.5rem;
  }
}
.top-news .top-news-box .news-list dl {
  display: block;
  border-bottom: 1px dotted #9b9b9b;
  padding: 1rem;
}
.top-news .top-news-box .news-list dl dt {
  display: inline;
  color: #0097e0;
  padding-right: 2rem;
  font-weight: bold;
}
.top-news .top-news-box .news-list dl dd {
  display: inline;
}
@media (max-width: 575px) {
  .top-news .top-news-box {
    padding: 2rem 2rem;
    width: 100%;
  }
  .top-news .top-news-box .news-title h3 {
    font-size: 1.7rem;
  }
  .top-news .top-news-box .news-list dl dt {
    display: block;
  }
  .top-news .top-news-box .news-list dl dd {
    display: block;
  }
}

/* 特徴 */
.top-point {
  background-color: #edf9ff;
  color: #333;
  text-align: center;
  padding: 7rem;
  position: relative;
  /* 詳細ボタン */
}
@media (max-width: 991px) {
  .top-point .top-point-illust {
    display: none;
  }
}
@media (max-width: 575px) {
  .top-point {
    padding: 2rem;
  }
  .top-point .title {
    margin-top: 2rem;
  }
  .top-point .point-lead {
    text-align: justify;
    font-weight: bold;
    font-size: 2rem;
  }
}
.top-point .title-head {
  display: flex;
  justify-content: center;
}
.top-point .point-lead {
  margin-top: 3rem;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .top-point .point-lead {
    margin-top: 2rem;
    font-weight: 400;
    font-size: 1.6rem;
  }
}
.top-point .point-catch {
  font-size: 3.2rem;
  margin-top: 3rem;
  line-height: 1.8em;
}
@media (max-width: 575px) {
  .top-point .point-catch {
    font-size: 2.1rem;
    margin-top: 1rem;
    line-height: 1.8em;
  }
}
.top-point .independence-box {
  margin: 5rem auto;
  padding: 4rem;
  background-color: #0097e0;
  color: #fff;
  width: 70%;
  border-radius: 20px;
  /* 下三角 */
}
.top-point .independence-box h2 {
  font-size: 3.5rem;
}
.top-point .independence-box .triangle {
  width: 10px;
  height: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #edf9ff;
  margin: 2rem auto;
}
.top-point .independence-box p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .top-point .independence-box {
    margin: 2rem auto;
    padding: 3rem 2rem;
    width: 100%;
  }
  .top-point .independence-box h2 {
    font-size: 2.5rem;
  }
  .top-point .independence-box p {
    font-size: 1.8rem;
  }
}
.top-point .independence-exp {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.top-point .independence-exp .independence-exp-p {
  width: 67%;
}
.top-point .independence-exp h3 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #0097e0;
  line-height: 1.7em;
}
.top-point .independence-exp p {
  text-align: justify;
}
.top-point .independence-exp .independence-exp-fig {
  padding: 0 2rem;
  width: 30%;
}
@media (max-width: 991px) {
  .top-point .independence-exp {
    flex-direction: column;
  }
  .top-point .independence-exp .independence-exp-p {
    width: 100%;
  }
  .top-point .independence-exp .independence-exp-fig {
    padding: 0 2rem;
    width: 100%;
    margin-top: 2rem;
  }
}
.top-point .btn {
  margin-top: 5rem;
  text-align: center;
  font-weight: bold;
}
.top-point .btn a {
  color: #fff;
  background-color: #0097e0;
  padding: 2rem 6rem;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
}
.top-point .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width: 991px) {
  .top-point .btn {
    margin-top: 3rem;
  }
}
@media (max-width: 575px) {
  .top-point .btn {
    margin-top: 5rem;
    margin-bottom: 8rem;
  }
  .top-point .btn a {
    padding: 1.5rem 4rem;
  }
}

/* プログラム */
.program {
  padding: 7rem 0;
  background-color: #fff;
  /* 詳細ボタン */
}
.program .program-head {
  text-align: center;
  position: relative;
}
.program .program-head figure {
  position: absolute;
  left: 0;
  bottom: 0;
}
.program .program-head .program-title {
  font-size: 3.5rem;
  line-height: 1.6em;
  color: #0097e0;
}
.program .program-head .program-title .marker {
  background: linear-gradient(transparent 50%, #ffe351 60%);
}
.program .program-head .program-subtitle {
  margin-top: 4rem;
  color: #0097e0;
  font-size: 3rem;
}
@media (max-width: 575px) {
  .program .program-head .program-subtitle {
    margin-top: 3rem;
  }
}
.program .program-head .program-subtitle .program-subtitle-5 {
  font-size: 6rem;
}
.program .program-head .program-cap {
  margin-top: 3rem;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2em;
}
.program .program-head .program-cap .program-cap-str {
  color: #fff;
  background-color: #d85833;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 5px;
}
.program .btn {
  margin-top: 2rem;
  text-align: center;
}
.program .btn a {
  color: #fff;
  background-color: #0097e0;
  padding: 1rem 4rem;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem;
}
.program .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width: 575px) {
  .program .program-head .program-title {
    font-size: 2.3rem;
  }
  .program .program-head .program-subtitle {
    font-size: 2.3rem;
  }
  .program .program-head .program-subtitle .program-subtitle-5 {
    font-size: 5rem;
  }
  .program .program-head .program-cap {
    line-height: 1.7em;
  }
}
@media (max-width: 991px) {
  .program .program-head .program-title {
    font-size: 2rem;
  }
  .program .program-head figure {
    display: none;
  }
}
.program .program-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.program .program-box .program-box-card {
  width: 48.5%;
  margin-top: 5rem;
}
.program .program-box h3 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
.program .program-box .program-box-card-num {
  font-size: 5rem;
  color: #80c3ef;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  padding-right: 2rem;
}
.program .program-box .program-box-card-cat {
  background-color: #efe5d4;
  text-align: center;
  font-weight: 600;
  padding: 0.2rem 0;
  font-size: 1.8rem;
}
.program .program-box h4 {
  font-size: 2.8rem;
  color: #0097e0;
  text-align: center;
  padding: 1.6rem 0 1rem;
}
@media (max-width: 575px) {
  .program .program-box .program-box-card {
    width: 100%;
  }
  .program .program-box .program-box-card-cat {
    font-size: 1.5rem;
  }
  .program .program-box h3 {
    font-size: 2rem;
  }
  .program .program-box h4 {
    font-size: 2.3rem;
  }
  .program .program-box p {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  .program .program-box .program-box-card-cat {
    font-size: 1.5rem;
  }
  .program .program-box h4 {
    font-size: 2.3rem;
  }
}
.program .program-foot {
  margin-top: 5rem;
  text-align: center;
}
.program .program-foot h3 {
  position: relative;
  padding: 1.5rem 3rem;
  margin-bottom: 0.2rem;
  border-bottom: 5px solid #d85833;
  border-right: 5px solid #d85833;
  border-left: 5px solid #d85833;
  color: #333;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  display: inline-block;
}
.program .program-foot h3 .num {
  font-size: 4rem;
  color: #80c3ef;
}
.program .program-foot h3 .stg {
  font-weight: bold;
  font-size: 3.5rem;
}
.program .program-foot h3:before,
.program .program-foot h3:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}
.program .program-foot h3:before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: #d85833;
  margin-left: -16px;
}
.program .program-foot h3:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -10px;
}
@media (max-width: 575px) {
  .program .program-foot {
    font-size: 2rem;
    line-height: 2em;
  }
  .program .program-foot h3 {
    font-size: 2.3rem;
    letter-spacing: 0.2rem;
  }
  .program .program-foot h3 .stg {
    font-size: 2.8rem;
  }
}

/* プログラム5 */
.program5 {
  background-color: #fffdef;
  padding: 7rem;
}
.program5 .program5-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.program5 .program5-title h3 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
.program5 .program5-title .program5-num {
  font-size: 5rem;
  color: #80c3ef;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  padding-right: 2rem;
}
.program5 .program5-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.program5 .program5-cat {
  width: 48%;
}
.program5 .program5-cat p {
  background-color: #efe5d4;
  text-align: center;
  font-weight: 600;
  padding: 0.2rem 0;
  font-size: 1.8rem;
}
.program5 .program5-cat h4 {
  font-size: 3rem;
  color: #0097e0;
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1.4em;
}
.program5 .program5-p {
  width: 48%;
  text-align: justify;
}
.program5 .cycle-box {
  display: flex;
  justify-content: space-between;
}
.program5 .cycle-card {
  width: 23%;
}
.program5 .cycle-card p {
  line-height: 1.6;
}
.program5 .cycle-card h4 {
  font-size: 2.3rem;
  color: #0097e0;
  text-align: center;
  padding: 1.5rem 0;
}
.program5 .cycle-card figure {
  text-align: center;
}
.program5 .cycle-arrow {
  width: 2%;
  height: 10px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 13px solid #80c3ef;
  margin: 70px auto 0;
}
.program5 .cycle-arrow2 {
  display: block;
  text-align: right;
  padding-right: 120px;
  margin-top: 1rem;
}
.program5 .new-goal {
  display: block;
  text-align: right;
  margin-top: 2rem;
}
.program5 .new-goal p {
  font-weight: bold;
  color: #0097e0;
}
.program5 .new-goal p::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #80c3ef;
  margin-right: 1rem;
  vertical-align: middle;
}
.program5 .new-goal2 {
  display: none;
}
.program5 .graduation {
  border: 5px solid #d85833;
  background-color: #fff;
  padding: 3rem;
}
.program5 .graduation h4 {
  color: #d85833;
  font-size: 3rem;
  text-align: center;
}
.program5 .graduation p {
  font-weight: bold;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .program5 .graduation p {
    text-align-last: left;
  }
}
.program5 .final-goal {
  text-align: center;
  margin-top: 5rem;
  padding-bottom: 5rem;
  color: #0097e0;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.4em;
}
.program5 .final-goal .str {
  color: #d85833;
  font-size: 3.5rem;
}

@media (max-width: 575px) {
  .program5 {
    padding: 0;
  }
  .program5 .program5-title {
    flex-direction: column;
  }
  .program5 .program5-title h3 {
    font-size: 2rem;
  }
  .program5 .program5-head-inner {
    flex-direction: column;
  }
  .program5 .program5-cat {
    width: 100%;
    flex-direction: column;
  }
  .program5 .program5-cat h4 {
    font-size: 2.5rem;
  }
  .program5 .program5-p {
    width: 100%;
    margin-bottom: 2rem;
  }
  .program5 .cycle-box {
    flex-direction: column;
  }
  .program5 .cycle-card {
    width: 100%;
  }
  .program5 .new-goal {
    display: none;
  }
  .program5 .new-goal2 {
    display: block;
    margin-top: 1rem;
  }
  .program5 .new-goal2 p {
    font-weight: bold;
    color: #0097e0;
  }
  .program5 .new-goal2 p::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-bottom: 20px solid #80c3ef;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    margin-right: 1rem;
    vertical-align: middle;
  }
  .program5 .cycle-arrow {
    width: 2%;
    height: 10px;
    border-top: 13px solid #80c3ef;
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
    margin: 30px auto;
  }
  .program5 .cycle-arrow2 {
    display: block;
    text-align: right;
    padding-right: 3rem;
  }
  .program5 .final-goal {
    font-size: 2.2rem;
    line-height: 1.8em;
  }
  .program5 .final-goal .str {
    color: #d85833;
    font-size: 2.5rem;
  }
}
/*==============================
サービス
==============================*/
.service .pwalk-title {
  text-align: center;
}
.service .pwalk-title h2 {
  display: inline-block;
  font-size: 2.5rem;
  color: #0097e0;
  border: 1px solid #0097e0;
  border-radius: 30px;
  padding: 1rem 3rem;
}
@media (max-width: 575px) {
  .service .pwalk-title h2 {
    font-size: 2rem;
  }
}
.service .pwalk-head {
  margin: 5rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .service .pwalk-head {
    flex-direction: column;
    align-items: center;
  }
}
.service .pwalk-headimg {
  margin-right: 2rem;
  width: 35%;
  margin: 0 auto;
}
.service .pwalk-headimg img {
  border-radius: 10px;
}
@media (max-width: 575px) {
  .service .pwalk-headimg {
    width: 70%;
    margin-bottom: 1rem;
  }
}
.service .pwalk-head-text {
  width: 57%;
}
@media (max-width: 575px) {
  .service .pwalk-head-text {
    width: 100%;
    text-align: center;
  }
}
.service .pwalk-head-text h3 {
  font-size: 2.2rem;
}
.service .pwalk-head-text h4 {
  font-size: 2.2rem;
  margin-top: 1rem;
}
.service .pwalk-head-text p {
  margin-top: 1rem;
}
.service .pwalk-head-text img {
  width: 70%;
  margin-top: 2rem;
}
@media (max-width: 575px) {
  .service .pwalk-head-text p {
    text-align: left;
  }
  .service .pwalk-head-text img {
    width: 70%;
  }
}
.service .pwalk-recommend {
  text-align: center;
  background-color: #0097e0;
  padding: 2rem;
  color: #fff;
  border-radius: 10px;
}
.service .pwalk-recommend p {
  font-weight: bold;
  font-size: 2rem;
}
.service .pwalk-recommend li {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 2rem;
  margin-right: 2rem;
}
.service .pwalk-recommend li:last-child {
  margin-right: 0;
}
@media (max-width: 575px) {
  .service .pwalk-recommend p,
  .service .pwalk-recommend li {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .service .pwalk-recommend li {
    margin-right: 0;
  }
}
.service .pwalk-reason {
  margin: 5rem 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .service .pwalk-reason {
    flex-direction: column;
  }
}
.service .pwalk-reason .pwalk-reason-title {
  width: 40%;
  margin-right: 3rem;
  display: flex;
}
.service .pwalk-reason .pwalk-reason-title img {
  align-self: center;
}
@media (max-width: 575px) {
  .service .pwalk-reason .pwalk-reason-title {
    width: 70%;
    margin: 0 auto;
  }
}
.service .pwalk-reason .pwalk-reason-list {
  width: 57%;
  font-size: 2.2rem;
  line-height: 2em;
  font-weight: bold;
}
.service .pwalk-reason .num {
  font-size: 2.5rem;
}
.service .pwalk-reason .str {
  font-size: 2.5rem;
  color: #0097e0;
}
@media (max-width: 575px) {
  .service .pwalk-reason .pwalk-reason-list {
    width: 100%;
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .service .pwalk-reason .num {
    font-size: 2rem;
  }
  .service .pwalk-reason .str {
    font-size: 2rem;
  }
}
.service .other {
  margin-top: 5rem;
}
.service .other .other-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0097e0;
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 2rem;
}
.service .other .other-title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 60px;
  height: 4px;
  transform: translateX(-50%);
  background-color: #0097e0;
  opacity: 0.5;
}
.service .other .other-box {
  margin-top: 3rem;
  display: flex;
  text-align: center;
}
.service .other .other-list {
  width: 31.3333333333%;
  margin-right: 3%;
}
.service .other .other-list:last-child {
  margin-right: 0;
}
.service .other .other-list p {
  text-align: justify;
}
.service .other .other-list img {
  border-radius: 10px;
}
.service .other h4 {
  text-align: center;
  font-size: 2.2rem;
  margin: 1rem 0;
}
@media (max-width: 575px) {
  .service .other .other-box {
    flex-direction: column;
  }
  .service .other .other-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.powereha {
  background-color: #edf9ff;
  margin-top: 8rem;
  padding: 8rem 0;
}
.powereha .powereha-title {
  text-align: center;
}
.powereha .powereha-title h2 {
  display: inline-block;
  font-size: 2.5rem;
  color: #0097e0;
  border: 1px solid #0097e0;
  border-radius: 30px;
  padding: 1rem 2rem;
}
@media (max-width: 575px) {
  .powereha .powereha-title h2 {
    font-size: 2rem;
  }
}
.powereha .powereha-head {
  margin: 5rem 0;
  display: flex;
  justify-content: space-between;
}
.powereha .powereha-headimg {
  margin-right: 2rem;
  width: 40%;
}
.powereha .powereha-headimg img {
  border-radius: 10px;
}
.powereha .powereha-head-text {
  width: 57%;
}
.powereha .powereha-head-text h3 {
  font-size: 2rem;
}
.powereha .powereha-head-text p {
  margin-top: 1rem;
}
.powereha .powereha-head-text p .stg {
  color: #d85833;
  font-weight: bold;
}
@media (max-width: 575px) {
  .powereha .powereha-head {
    flex-direction: column;
  }
  .powereha .powereha-headimg {
    width: 100%;
  }
  .powereha .powereha-head-text {
    width: 100%;
    margin-top: 1rem;
  }
  .powereha .powereha-head-text h3 {
    font-size: 1.8rem;
  }
}
.powereha .about-powereha {
  text-align: center;
}
.powereha .about-powereha .about-powereha-inner {
  background-color: #0097e0;
  padding: 3rem;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}
.powereha .about-powereha .about-powereha-inner h3 {
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .powereha .about-powereha .about-powereha-inner h3 {
    font-size: 2rem;
  }
  .powereha .about-powereha .about-powereha-inner p {
    text-align: justify;
  }
}
.powereha .about-powereha .about-powereha-inner .stg {
  color: #fff500;
  font-weight: bold;
}
.powereha .machine-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}
.powereha .machine-info .machine-info-text {
  width: 60%;
}
.powereha .machine-info .machine-info-text h3 {
  font-size: 2rem;
}
.powereha .machine-info .machine-info-text p {
  text-align: justify;
  margin-top: 1rem;
}
.powereha .machine-info .machine-info-text img {
  margin-top: 1rem;
}
.powereha .machine-info .machine-info-img {
  width: 37%;
}
.powereha .machine-info .machine-info-img img {
  border-radius: 10px;
}
@media (max-width: 575px) {
  .powereha .machine-info {
    flex-direction: column;
  }
  .powereha .machine-info .machine-info-text {
    width: 100%;
  }
  .powereha .machine-info .machine-info-text h3 {
    font-size: 1.8rem;
  }
  .powereha .machine-info .machine-info-img {
    width: 100%;
  }
}
.powereha .powereha-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 5rem;
  margin-top: 8rem;
  border-radius: 10px;
  width: 100%;
}
.powereha .powereha-info .powereha-info-list {
  display: flex;
  width: 47%;
  margin-bottom: 4rem;
}
.powereha .powereha-info .powereha-info-list:nth-child(3), .powereha .powereha-info .powereha-info-list:nth-child(4) {
  margin-bottom: 0;
}
.powereha .powereha-info .powereha-info-list .powereha-info-list-icon {
  width: 18%;
  margin-right: 3rem;
}
.powereha .powereha-info .powereha-info-list .powereha-info-list-text {
  width: 80%;
}
.powereha .powereha-info .powereha-info-list .powereha-info-list-text h4 {
  font-size: 2rem;
}
.powereha .powereha-info .powereha-info-list .powereha-info-list-text p {
  line-height: 1.6em;
  margin-top: 0.5rem;
}
@media (max-width: 575px) {
  .powereha .powereha-info {
    flex-direction: column;
    padding: 3rem;
  }
  .powereha .powereha-info .powereha-info-list {
    width: 100%;
  }
  .powereha .powereha-info .powereha-info-list:nth-child(3) {
    margin-bottom: 4rem;
  }
  .powereha .powereha-info .powereha-info-list-text {
    width: 90%;
  }
  .powereha .powereha-info .powereha-info-list-text h4 {
    font-size: 1.8rem !important;
  }
  .powereha .powereha-info .powereha-info-list-text p {
    text-align: justify;
  }
}
.powereha .powereha-machine {
  margin-top: 8rem;
}
.powereha .powereha-machine .powereha-machine-title {
  text-align: center;
}
.powereha .powereha-machine .powereha-machine-title h3 {
  font-size: 2.5rem;
  color: #fff;
  background-color: #0097e0;
  display: inline-block;
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
}
@media (max-width: 575px) {
  .powereha .powereha-machine .powereha-machine-title h3 {
    font-size: 2rem;
  }
}
.powereha .powereha-machine .powereha-machine-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.powereha .powereha-machine .powereha-machine-box .powereha-machine-list {
  width: 33%;
  text-align: center;
  margin-top: 4rem;
}
.powereha .powereha-machine .powereha-machine-box .powereha-machine-list p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4em;
}
.powereha .powereha-machine .powereha-machine-box .powereha-machine-list h4 {
  color: #0097e0;
  font-size: 2rem;
  margin-top: 0.5rem;
}
.powereha .powereha-machine .powereha-machine-box .powereha-machine-list h3 {
  font-size: 2rem;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .powereha .powereha-machine .powereha-machine-box {
    flex-direction: column;
    align-items: center;
  }
  .powereha .powereha-machine .powereha-machine-box .powereha-machine-list {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .powereha .powereha-machine .powereha-machine-box .powereha-machine-list p {
    font-size: 1.7rem;
  }
  .powereha .powereha-machine .powereha-machine-box .powereha-machine-list h4 {
    font-size: 1.7rem;
  }
  .powereha .powereha-machine .powereha-machine-box .powereha-machine-list h3 {
    font-size: 1.8rem;
  }
}

/*==============================
ポイント
==============================*/
.point .point-title {
  text-align: center;
}
.point .point-title h2 {
  color: #0097e0;
  font-size: 4rem;
  letter-spacing: 0.05em;
}
.point .point-title h2 .num {
  font-family: "Oswald", sans-serif;
  font-size: 4.3rem;
}
.point .point-title h2 .small {
  font-size: 3rem;
}
@media (max-width: 575px) {
  .point .point-title h2 {
    font-size: 3rem;
  }
}
.point .point-list-box {
  margin: 4rem 0 8rem;
}
.point .point-list-box .point-list {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .point .point-list-box .point-list {
    flex-direction: column;
  }
}
.point .point-list-box .point-list .point-list-img {
  width: 38%;
}
.point .point-list-box .point-list .point-list-img img {
  border-radius: 10px;
}
.point .point-list-box .point-list .point-list-text {
  width: 58%;
}
.point .point-list-box .point-list .point-list-text .point-list-title {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #0097e0;
}
.point .point-list-box .point-list .point-list-text .point-list-title p {
  color: #fff;
  background-color: #0097e0;
  padding: 1rem 2rem;
  font-weight: bold;
  margin-right: 1rem;
  border-radius: 10px 10px 0 0;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.point .point-list-box .point-list .point-list-text .point-list-title p .num {
  padding-left: 1rem;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.point .point-list-box .point-list .point-list-text .point-list-title h3 {
  font-size: 2.3rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .point .point-list-box .point-list .point-list-img {
    width: 80%;
    margin: 0 auto;
  }
  .point .point-list-box .point-list .point-list-img img {
    border-radius: 10px;
  }
  .point .point-list-box .point-list .point-list-text {
    width: 100%;
  }
  .point .point-list-box .point-list .point-list-text .point-list-title p {
    padding: 1rem 2rem;
    margin-right: 1rem;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .point .point-list-box .point-list .point-list-text .point-list-title p .num {
    padding-left: 0;
    font-size: 2.7rem;
  }
  .point .point-list-box .point-list .point-list-text .point-list-title h3 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .point .point-list-box .point-list .point-list-text .point-list-title {
    display: flex;
    align-items: flex-end;
    margin-top: 1rem;
  }
  .point .point-list-box .point-list .point-list-text .point-list-title p {
    width: 30%;
  }
  .point .point-list-box .point-list .point-list-text .point-list-title h3 {
    width: 70%;
  }
}
.point .point-list-box .point-list .btn {
  margin-top: 5rem;
  text-align: center;
}
.point .point-list-box .point-list .btn a {
  color: #fff;
  background-color: #0097e0;
  padding: 1rem 4rem;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
}
.point .point-list-box .point-list .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width: 991px) {
  .point .point-list-box .point-list .btn {
    margin-top: 3rem;
  }
}
.point .support {
  padding: 8rem 0;
  background-color: #edf9ff;
}
.point .support .support-title {
  text-align: center;
}
.point .support .support-title h2 {
  font-size: 2.5rem;
  color: #0097e0;
  border: 1px solid #0097e0;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 50px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .point .support .support-title h2 {
    font-size: 2rem;
  }
}
.point .independence-box {
  margin: 5rem auto;
  padding: 4rem;
  background-color: #0097e0;
  color: #fff;
  width: 70%;
  border-radius: 20px;
  text-align: center;
  /* 下三角 */
}
.point .independence-box h2 {
  font-size: 3.5rem;
}
.point .independence-box .triangle {
  width: 10px;
  height: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #edf9ff;
  margin: 2rem auto;
}
.point .independence-box p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .point .independence-box {
    margin: 2rem auto;
    padding: 3rem 2rem;
    width: 100%;
  }
  .point .independence-box h2 {
    font-size: 2.5rem;
  }
  .point .independence-box p {
    font-size: 1.8rem;
  }
}
.point .independence-exp {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.point .independence-exp .independence-exp-p {
  width: 67%;
}
.point .independence-exp .independence-exp2-p {
  width: 100%;
}
.point .independence-exp h3 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #0097e0;
  line-height: 1.7em;
}
@media (max-width: 575px) {
  .point .independence-exp h3 {
    text-align: center;
  }
}
.point .independence-exp p {
  text-align: justify;
}
.point .independence-exp .independence-exp-fig {
  padding: 0 2rem;
  width: 30%;
}
@media (max-width: 991px) {
  .point .independence-exp {
    flex-direction: column;
  }
  .point .independence-exp .independence-exp-p {
    width: 100%;
  }
  .point .independence-exp .independence-exp-fig {
    padding: 0 2rem;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }
}
.point .four-care {
  margin-top: 8rem;
  text-align: center;
}
.point .four-care .four-care-head-box {
  background-color: #fff;
  display: inline-block;
  padding: 4rem 8rem;
  border: 3px solid #0097e0;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .point .four-care .four-care-head-box {
    padding: 2rem;
  }
}
.point .four-care .four-care-head-box h3 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #0097e0;
  line-height: 1.7em;
}
.point .four-care .four-care-head-box h3 {
  font-size: 3rem;
  color: #0097e0;
}
.point .four-care .four-care-head-box .triangle2 {
  width: 10px;
  height: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #0097e0;
  margin: 2rem auto;
  opacity: 0.7;
}
.point .four-care .four-care-head-box h4 {
  font-size: 2.5rem;
  color: #0097e0;
}
.point .four-care .four-care-motion-title {
  background-color: #0097e0;
  color: #fff;
  display: inline-block;
  padding: 1rem 3rem;
  margin: 6rem 0 4rem;
  font-size: 2rem;
  border-radius: 50px;
}
.point .four-care .four-care-motion-list {
  position: relative;
  padding: 1.5rem 3rem;
  margin-bottom: 0.2rem;
  border-bottom: 5px solid #0097e0;
  border-right: 5px solid #0097e0;
  border-left: 5px solid #0097e0;
  color: #333;
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  display: inline-block;
}
@media (max-width: 575px) {
  .point .four-care .four-care-motion-list {
    padding: 1.5rem;
  }
}
.point .four-care .four-care-motion-list::before, .point .four-care .four-care-motion-list::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}
.point .four-care .four-care-motion-list::before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: #0097e0;
  margin-left: -16px;
}
.point .four-care .four-care-motion-list::after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: #edf9ff;
  margin-left: -10px;
}
.point .four-care .four-care-motion-list ul {
  display: flex;
  justify-content: space-around;
}
.point .four-care .four-care-motion-list ul li img {
  width: 65%;
}
@media (max-width: 991px) {
  .point .four-care .four-care-motion-list ul li img {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .point .four-care .four-care-motion-list ul {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .point .four-care .four-care-motion-list ul li {
    width: 50%;
  }
  .point .four-care .four-care-motion-list ul li img {
    width: 70%;
  }
}
.point .four-care .work-power {
  margin-top: 5rem;
  font-size: 4rem;
  color: #fff;
  background-color: #0097e0;
  display: inline-block;
  padding: 3rem 5rem;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .point .four-care .work-power {
    font-size: 3rem;
    padding: 2rem 3rem;
  }
}
.point .four-care .approach-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 5rem;
  color: #0097e0;
}
.point .four-care .approach-box h3 {
  font-size: 3.5rem;
}
.point .four-care .approach-box h4 {
  margin-top: 1rem;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .point .four-care .approach-box {
    padding: 4rem 2rem 2rem;
  }
  .point .four-care .approach-box h3 {
    font-size: 2.7rem;
  }
  .point .four-care .approach-box h4 {
    font-size: 2rem;
  }
}
.point .four-care .basic-four-box {
  background-color: #edf9ff;
  padding: 4rem;
  margin-top: 3rem;
}
.point .four-care .basic-four-box .basic-four-list-box ul {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.point .four-care .basic-four-box .basic-four-list-box ul li {
  width: 49%;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .point .four-care .basic-four-box {
    padding: 2rem;
  }
  .point .four-care .basic-four-box .basic-four-list-box ul {
    flex-direction: column;
  }
  .point .four-care .basic-four-box .basic-four-list-box ul li {
    width: 100%;
  }
  .point .four-care li.drag img {
    width: 80%;
  }
}
.point .four-care .basic-four-plus {
  text-align: center;
  margin-top: -20px;
}
.point .triangle {
  width: 40px;
  height: 40px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #0097e0;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .point .triangle {
    width: 30px;
    height: 30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #0097e0;
    margin: 0 auto;
  }
}
.point .detail-box {
  text-align: left;
  margin-top: 5rem;
}
.point .detail-box .detail-list-box {
  display: flex;
  background-color: #fff;
  border-width: 2px;
  border-style: solid;
}
.point .detail-box .detail-list-box.bc1 {
  border-color: #0097e0;
}
.point .detail-box .detail-list-box.bc2 {
  border-color: #1cb9db;
}
.point .detail-box .detail-list-box.bc3 {
  border-color: #5e83e0;
}
.point .detail-box .detail-list-box.bc4 {
  border-color: #8a6edb;
}
@media (max-width: 991px) {
  .point .detail-box .detail-list-box {
    flex-direction: column;
  }
}
.point .detail-box .detail-box-list-title {
  position: relative;
  display: flex;
}
.point .detail-box .detail-box-list-title h3 {
  position: absolute;
  color: #fff;
  padding: 1rem 3rem;
  top: 10px;
  font-size: 2rem;
  border-radius: 0 10px 10px 0;
}
.point .detail-box .detail-box-list-title h3.bgc1 {
  background-color: #0097e0;
}
.point .detail-box .detail-box-list-title h3.bgc2 {
  background-color: #1cb9db;
}
.point .detail-box .detail-box-list-title h3.bgc3 {
  background-color: #5e83e0;
}
.point .detail-box .detail-box-list-title h3.bgc4 {
  background-color: #8a6edb;
}
@media (max-width: 991px) {
  .point .detail-box .detail-box-list-title {
    margin: 0 auto;
  }
}
.point .detail-box .detail-box-text {
  padding: 3rem;
}
.point .detail-box .detail-box-text h4 {
  font-size: 2.3rem;
}
.point .detail-box .detail-box-text h4.c1 {
  color: #0097e0;
}
.point .detail-box .detail-box-text h4.c2 {
  color: #1cb9db;
}
.point .detail-box .detail-box-text h4.c3 {
  color: #5e83e0;
}
.point .detail-box .detail-box-text h4.c4 {
  color: #8a6edb;
}
.point .detail-box .detail-box-text p {
  margin-top: 1rem;
  text-align: justify;
}
.point .care {
  padding: 8rem 0;
}
.point .care .care-title {
  text-align: center;
}
.point .care .care-title h2 {
  font-size: 2.5rem;
  color: #0097e0;
  border: 1px solid #0097e0;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 50px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .point .care .care-title h2 {
    font-size: 2.3rem;
  }
}
.point .care .care-box {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
}
.point .care .care-box .care-box-text {
  width: 65%;
}
.point .care .care-box .care-box-text h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0097e0;
}
.point .care .care-box .care-box-img {
  width: 32%;
}
@media (max-width: 767px) {
  .point .care .care-box {
    flex-direction: column;
  }
  .point .care .care-box .care-box-text {
    width: 100%;
    text-align: justify;
  }
  .point .care .care-box .care-box-img {
    width: 100%;
    text-align: center;
    margin-top: 3rem;
  }
}

/*==============================
プレ用
==============================*/
.pre-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.pre-img img {
  max-width: 400px;
  width: 90%;
}

@media (max-width: 576px) {
  .container-pre {
    width: 70%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
/*==============================
	応募フォーム
==============================*/
input,
select,
textarea {
  font-size: 100%;
}

label[for=gender-1] {
  width: 140px !important;
}

label[for=gender-2] {
  width: 140px !important;
}

label[for=gender-3] {
  width: 140px !important;
}

.form-birth {
  display: inline-block !important;
  font-size: 1.5rem;
}

.recruit-form {
  margin: 5rem 0;
}

.form-group {
  border-top: 1px solid #b7b7b7;
  padding-top: 2rem;
  margin-top: 2rem;
}

.form-group label {
  vertical-align: top;
  padding: 0.5rem 0.75rem 0.5rem 0;
  font-weight: bold;
}

.form-group-last {
  border-bottom: 1px solid #b7b7b7;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.required {
  margin-left: 1rem;
  font-size: 1.2rem;
  background: #56abe0;
  padding: 0.5rem 0.7rem;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.form-ctl {
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
  margin-top: 4px;
}

#y-open[type=month] {
  width: 150px;
}

#y-open[type=number] {
  width: 80px;
  margin-right: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
}

#m-open[type=number] {
  width: 50px;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
}

.btn_form {
  padding: 1.5rem 3rem;
  background: #56abe0;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn_form[disabled] {
  opacity: 0.6;
}

.d-md-inline-block {
  display: inline-block;
}

.recruit-form imput {
  margin-top: 10px;
}

.btn-confirm {
  margin-top: 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .required {
    margin-right: 1rem;
  }
  .form-group label {
    width: 210px;
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .form-group label {
    width: 100%;
  }
  .form-ctl {
    display: block;
    width: 100%;
  }
  input[type=radio],
  input[type=checkbox] {
    margin-right: 0.5rem;
  }
  .recruit-form .control-label {
    display: block;
  }
  label[for=gender] {
    display: block;
  }
  label[for=form_phone] {
    display: block;
  }
}
/*個人情報保護方針テキストボックス*/
.privacy-unit {
  width: 100%;
  height: 200vw;
  max-height: 250px;
  overflow: auto;
  font-size: 1.5rem;
  padding: 10px;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
  margin-top: 3rem;
}

.privacy-unit h3 {
  margin-top: 1.9rem;
  margin-bottom: 0.5rem;
  color: #4ba2d8;
  font-weight: bold;
  font-size: 1.8rem;
}

.accept-box {
  padding: 0.5rem;
  background: #def2ff;
  text-align: center;
  border-right: solid 1px #b7b7b7;
  border-left: solid 1px #b7b7b7;
  border-bottom: solid 1px #b7b7b7;
}

.back_button {
  display: block;
  margin: 30px auto;
}

/*==============================
募集内容
==============================*/
.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.recruit_info {
  margin-bottom: 5rem;
}

.recruit-head {
  margin: 30px 0px 20px 0px;
}

.recruit-catchcopy {
  margin: 20px 0 30px 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.space {
  text-indent: 1em;
}

@media (min-width: 768px) {
  .recruit-head .recruit-catchcopy {
    font-size: 1.8rem;
  }
}
.recruit-head .recruit-catchcopy {
  color: #2084c4;
  font-weight: 700;
}

.recruit_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 10px;
  font-size: 1.6rem;
  border-bottom: solid 1px #a8a8a8;
}
.recruit_wrap dt {
  font-weight: 700;
  width: 100%;
  font-size: 1.6rem;
}
.recruit_wrap h4 {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 5px;
  border-top: 1px dotted #9a9a9a;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .recruit_wrap dt {
    font-weight: 700;
    flex: 1 1 20%;
  }
}
@media (min-width: 768px) {
  .recruit_wrap dd {
    flex: 1 1 calc(80% - 20px);
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .recruit_wrap {
    padding: 20px;
    font-size: 1.6rem;
    flex-wrap: nowrap;
  }
}
.recruit-group {
  padding: 0.7em; /*文字周りの余白*/
  color: #494949; /*文字色*/
  background: #f4f8fa; /*背景色*/
  border-left: solid 7px #2084c4; /*左線（実線 太さ 色）*/
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.recruit-head .recruit-title {
  margin: 10px 0 20px;
  padding: 0 0 10px;
  font-size: 2.5rem;
  line-height: 1.4;
  border-bottom: solid 1px #808080;
}

.recruit-button-box {
  margin: 70px 0 0;
  text-align: center;
}

.recruit-button {
  display: inline-block;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  font-size: 1.3rem;
  padding: 1rem 1.5rem;
  color: rgba(0, 0, 0, 0.8);
  border: none transparent;
  background-color: #e6e6e6;
  text-decoration: none !important;
  border-radius: 2px;
}

.recruit-button:hover {
  opacity: 0.8;
}

.recruit-button-xlarge {
  font-size: 2.2rem;
  font-weight: bold;
}

.recruit-button.recruit-button-primary {
  background-color: #1f8dd6;
  color: #fff;
}

.list-info {
  margin-top: 70px;
  text-align: center;
  font-weight: 700;
  font-size: 1.7rem;
}

.recruit-list {
  margin: 30px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.recruit-list small {
  font-size: 1.3rem;
}
.recruit-list a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.button {
  display: block;
  position: relative;
  width: 45%;
  padding: 1.2rem;
  margin: 10px;
  text-align: left;
  text-decoration: none;
  line-height: 3.5rem;
  outline: none;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 5px;
  background-color: #1f8dd6;
  color: #fff;
}

@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}
.button:hover {
  opacity: 0.8;
}

.button::after {
  position: absolute;
  top: 50%;
  right: 2em;
  width: 0.5em;
  height: 0.5em;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
}

/*==============================
アクセス
==============================*/
.space {
  text-indent: 5rem;
}

.access_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 1.5rem;
}
.access_wrap dt {
  font-weight: 700;
  width: 100%;
  font-size: 1.6rem;
}
.access_wrap h4 {
  font-weight: 700;
  font-size: 1.8rem;
}
.access_wrap p {
  line-height: 1.5em;
}

.keiyo {
  display: flex;
}
.keiyo img {
  width: 200px;
}

@media (max-width: 767px) {
  .access_wrap {
    display: block;
  }
}
.access_box {
  width: 50%;
}

@media (max-width: 767px) {
  .access_box {
    width: auto;
    padding: 20px;
  }
}
.icon_train::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../images/access/icon_train.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.icon_car::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../images/access/icon_car.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 10px;
}

/*==============================
1日の流れ
==============================*/
.routine {
  /* 下三角 */
}
.routine .routine_top {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.routine .routine_top .routine_top-illust {
  margin-right: 5rem;
}
.routine .routine_top h3 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6em;
}
.routine .routine_top h3 .marker {
  background: linear-gradient(transparent 50%, #ffe351 60%);
}
.routine .routine_top .course {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0097e0;
  margin-bottom: 1.5rem;
}
.routine .routine_top .course img {
  margin-right: 1rem;
}
.routine .routine_top .pick-up {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  .routine .routine_top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
  .routine .routine_top .routine_top-illust {
    margin-right: 0;
    text-align: center;
  }
  .routine .routine_top .routine_top-illust img {
    width: 70%;
  }
  .routine .routine_top h3 {
    font-size: 2rem;
    text-align: center;
  }
  .routine .routine_top .course {
    font-size: 2rem;
  }
  .routine .routine_top .pick-up {
    font-size: 1.7rem;
    text-align: center;
  }
}
.routine .routine_wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  margin-bottom: 30px;
}
.routine .routine_wrap .center {
  justify-content: center;
}
.routine .routine_wrap img {
  border-radius: 5px;
}
.routine .routine_wrap h4 {
  color: #0097e0;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #989898;
  width: 95%;
}
.routine .routine_wrap p {
  line-height: 1.5;
  text-align: justify;
}
.routine .triangle {
  width: 10px;
  height: 10px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #0097e0;
  margin: 2rem 10rem;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .routine .triangle {
    margin: 2rem auto;
  }
}
@media (max-width: 991px) {
  .routine .routine_wrap {
    width: 100%;
    margin-bottom: 15px;
    justify-content: center;
  }
}
.routine .time_box {
  width: 16%;
}
@media (max-width: 991px) {
  .routine .time_box {
    width: 25%;
  }
}
.routine .routine_box {
  width: 55%;
  padding-left: 3%;
}
@media (max-width: 991px) {
  .routine .routine_box {
    width: 70%;
    padding-left: 10px;
    margin-bottom: 15px;
  }
}
.routine .routine_img {
  flex-basis: 25%;
}
@media (max-width: 991px) {
  .routine .routine_img {
    width: 100%;
    text-align: center;
  }
}
.routine .glay_arrow {
  width: 50px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .routine .routine_wrap {
    flex-direction: column;
  }
  .routine .routine_wrap .time_box {
    width: 45%;
    margin: 0 auto;
  }
  .routine .routine_wrap .routine_box {
    width: 100%;
  }
  .routine .routine_wrap h4 {
    width: 100%;
    text-align: center;
  }
}

/*==============================
ブログ
==============================*/
.news .news-wrap {
  display: flex;
  justify-content: space-between;
}
.news .main_wrap {
  width: 67%;
}
.news .main_wrap .day {
  color: #0097e0;
}
.news .main_wrap .title {
  font-size: 2rem;
  margin: 1rem 0;
  border-bottom: 1px solid #656565;
  padding-bottom: 1rem;
}
.news .main_wrap .pager {
  display: flex;
  margin-top: 10rem;
}
.news .main_wrap .pager p {
  margin: 0 auto;
}
.news .main_wrap dl {
  margin-bottom: 3rem;
}
.news .main_wrap .u_fullline {
  margin-bottom: 3rem;
  color: #0097e0;
}
@media (max-width: 575px) {
  .news .news-wrap {
    flex-direction: column;
  }
  .news .main_wrap {
    width: 100%;
  }
  .news .pager {
    margin-top: 5rem;
  }
}
.news .side_wrap {
  width: 28%;
}
.news .side_wrap .side-ttl {
  background-color: #eeeeee;
  padding: 0.5rem 1rem;
}
.news .side_wrap li {
  border-bottom: 1px solid #d7d5d5;
}
.news .side_wrap li a {
  text-decoration: none;
}
.news .side-list {
  margin-bottom: 5rem;
}
.news .side-list li {
  margin-top: 0.5rem;
}
@media (max-width: 575px) {
  .news .side_wrap {
    width: 100%;
    margin-top: 5rem;
  }
  .news .side-list {
    margin-bottom: 3rem;
  }
}

/*==============================
予約
==============================*/
.reservation .day-calendar {
  text-align: center;
}
.reservation .day-calendar th,
.reservation .day-calendar td {
  font-size: 1.5rem !important;
}
.reservation .day-calendar h3 {
  font-size: 2rem !important;
}
.reservation .day-calendar p {
  font-size: 1.8rem !important;
}
.reservation .day-calendar table {
  margin: 0 auto !important;
}
.reservation .content-form legend {
  font-size: 1.5rem !important;
}
.reservation .content-form th {
  font-size: 1.4rem !important;
}
.reservation .content-form td {
  font-size: 1.4rem !important;
}
.reservation .content-form .required {
  background: #fff;
  padding: 0;
  margin-left: 0;
}
.reservation .content-form input,
.reservation .content-form textarea {
  font-size: 1.4rem !important;
}
.reservation .monthly-calendar caption {
  font-size: 2rem !important;
  margin-bottom: 20px;
}
.reservation .monthly-calendar th {
  font-size: 1.4rem !important;
}
.reservation .required {
  margin-right: 0;
}
.reservation .page-title-reservation h2 {
  font-size: 2.3rem;
  margin-bottom: 3rem;
  text-align: center;
}

/*==============================
施設案内
==============================*/
.facility h3 {
  display: inline-block;
  font-size: 2.2rem;
  color: #0097e0;
  border: 1px solid #0097e0;
  border-radius: 30px;
  padding: 1rem 3rem;
}
@media (max-width: 767px) {
  .facility h3 {
    font-size: 1.8rem;
  }
}
.facility .profile .profile-title {
  text-align: center;
  margin-bottom: 3rem;
}
.facility .profile table {
  width: 100%;
}
.facility .profile table tr {
  height: 2rem;
}
.facility .profile table th {
  color: #000000;
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
  width: 20%;
  padding: 2rem 2.5rem;
  text-align: left;
}
.facility .profile table td {
  border-bottom: 1px solid #cccccc;
  width: 80%;
}
@media (max-width: 767px) {
  .facility .profile table tr {
    height: 3rem;
  }
  .facility .profile table th {
    display: block;
    color: #000000;
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: none;
    width: 100%;
    padding: 0;
    text-align: left;
    padding: 1.5rem 2rem 0;
  }
  .facility .profile table td {
    display: block;
    border-bottom: 1px solid #cccccc;
    width: 100%;
    padding: 0.5rem 2rem 1.5rem;
  }
}
.facility .gallery {
  margin-top: 8rem;
  font-weight: bold;
}
.facility .gallery .gallery-title {
  text-align: center;
  margin-bottom: 3rem;
}
.facility .gallery .gallery-sub {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.facility .gallery .gallery-sub::after {
  content: "";
  display: block;
  width: 32%;
}
.facility .gallery .gallery-sub .gallery-sub-box {
  width: 32%;
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .facility .gallery .gallery-sub {
    display: flex;
    flex-direction: column;
  }
  .facility .gallery .gallery-sub .gallery-sub-box {
    width: 100%;
    margin-top: 3rem;
  }
}
.facility .drawing {
  margin-top: 8rem;
}
.facility .drawing .drawing-title {
  text-align: center;
  margin-bottom: 2rem;
}

/*==============================
	見学・体験申込み共通
==============================*/
.entry {
  margin: 5rem 0;
}
.entry .entry-title {
  text-align: center;
  padding-bottom: 4rem;
  border-bottom: dotted 1px #000;
}
.entry .entry-title h3 {
  color: #0097e0;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2em;
}
.entry .entry-title h3 span {
  font-size: 2.5rem;
}
@media (max-width: 575px) {
  .entry .entry-title h3 {
    font-size: 2.3rem;
  }
  .entry .entry-title h3 span {
    font-size: 2rem;
  }
}
.entry .entry-title p {
  margin-top: 2rem;
  font-weight: bold;
}
.entry .fax {
  text-align: center;
  padding: 4rem 0 4rem;
  border-bottom: dotted 1px #000;
}
.entry .fax h4 {
  text-align: center;
  font-size: 2.5rem;
}
.entry .fax h4 span {
  font-size: 3.3rem;
  color: #0097e0;
}
@media (max-width: 575px) {
  .entry .fax h4 {
    font-size: 2rem;
  }
  .entry .fax h4 span {
    font-size: 2.3rem;
    color: #0097e0;
  }
}
.entry .fax p {
  margin-top: 2rem;
}
.entry .fax .form-download {
  margin-top: 2rem;
}
.entry .fax .fax-num {
  margin-top: 2rem;
}
.entry .tel {
  text-align: center;
  padding: 4rem 0 4rem;
  border-bottom: dotted 1px #000;
}
.entry .tel h4 {
  text-align: center;
  font-size: 2.5rem;
}
.entry .tel h4 span {
  font-size: 3.3rem;
  color: #0097e0;
}
@media (max-width: 575px) {
  .entry .tel h4 {
    font-size: 2rem;
  }
  .entry .tel h4 span {
    font-size: 2.3rem;
    color: #0097e0;
  }
}
.entry .tel .tel-num {
  margin-top: 2rem;
}
.entry .form {
  text-align: center;
  padding-top: 4rem;
}
.entry .form h4 {
  text-align: center;
  font-size: 2.5rem;
}
.entry .form h4 span {
  font-size: 3.3rem;
  color: #0097e0;
}
@media (max-width: 575px) {
  .entry .form h4 {
    font-size: 2rem;
  }
  .entry .form h4 span {
    font-size: 2.3rem;
    color: #0097e0;
  }
}
.entry .form p {
  margin-top: 2rem;
}

input,
select,
textarea {
  font-size: 100%;
}

label[for=gender-1] {
  width: 140px !important;
}

label[for=gender-2] {
  width: 140px !important;
}

label[for=gender-3] {
  width: 140px !important;
}

.form-birth {
  display: inline-block !important;
  font-size: 1.5rem;
}

.form-group {
  border-top: 1px solid #b7b7b7;
  padding-top: 2rem;
  margin-top: 2rem;
}

.form-group label {
  vertical-align: top;
  padding: 0.5rem 0.75rem 0.5rem 0;
  font-weight: bold;
}

.form-group-last {
  border-bottom: 1px solid #b7b7b7;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.required {
  margin-left: 1rem;
  font-size: 1.2rem;
  background: #56abe0;
  padding: 0.5rem 0.7rem;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.form-ctl {
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
  margin-top: 4px;
}

#y-open[type=month] {
  width: 150px;
}

#y-open[type=number] {
  width: 80px;
  margin-right: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
}

#m-open[type=number] {
  width: 50px;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
}

.btn_form {
  padding: 1.5rem 3rem;
  background: #56abe0;
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn_form[disabled] {
  opacity: 0.6;
}

.d-md-inline-block {
  display: inline-block;
}

.recruit-form imput {
  margin-top: 10px;
}

.btn-confirm {
  margin-top: 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .required {
    margin-right: 1rem;
  }
  .form-group label {
    width: 180px;
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .form-group label {
    width: 100%;
  }
  .form-ctl {
    display: block;
    width: 100%;
  }
  input[type=radio],
  input[type=checkbox] {
    margin-right: 0.5rem;
  }
  .recruit-form .control-label {
    display: block;
  }
  label[for=gender] {
    display: block;
  }
  label[for=form_phone] {
    display: block;
  }
  label[for=home] {
    display: block;
  }
  label[for=status] {
    display: block;
  }
  label[for=birth] {
    display: block;
  }
  label[for=date] {
    display: block;
  }
}
/*個人情報保護方針テキストボックス*/
.privacy-unit {
  width: 100%;
  height: 200vw;
  max-height: 250px;
  overflow: auto;
  font-size: 1.5rem;
  padding: 10px;
  border: solid 1px #b7b7b7;
  border-radius: 0.25rem;
  margin-top: 3rem;
}

.privacy-unit h3 {
  margin-top: 1.9rem;
  margin-bottom: 0.5rem;
  color: #4ba2d8;
  font-weight: bold;
  font-size: 1.8rem;
}

.accept-box {
  padding: 0.5rem;
  background: #def2ff;
  text-align: center;
  border-right: solid 1px #b7b7b7;
  border-left: solid 1px #b7b7b7;
  border-bottom: solid 1px #b7b7b7;
}

.back_button {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
}

label[for=status-1] {
  width: 100px !important;
}

label[for=status-2] {
  width: 100px !important;
}

label[for=status-3] {
  width: 100px !important;
}

label[for=status-4] {
  width: 100px !important;
}

label[for=home-1] {
  width: 100px !important;
}

label[for=home-2] {
  width: 250px !important;
}

label[for=home-3] {
  width: 250px !important;
}


.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.2;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
    margin: 0 5px 20px 5px;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #fb832e;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #ffba8a;
}

.title_sub {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.7rem;
	font-weight: 600;
	text-align: center;
}

.title_sub::before,
.title_sub::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #F8C3C8;
}

.title_sub::before {
	margin-right: 20px;
}
.title_sub::after {
	margin-left: 20px;
}

.trialh {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
}

.trialh2 {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #b7b7b7;
}
.trialh2 span {
  font-size: 1.5rem;
  font-weight: normal;
  padding-left: 2rem;
}/*# sourceMappingURL=style.css.map */