@charset "utf-8";
/* ============================================================================
CSS information
 style info :  サイト全体の共通構造
/* ============================================================================



/* ============================================================================
目次
 00. 全体設計
 01. ヘッダー
 02. フッター
 03. フォーム
 04. 機能（アニメーション等）
 05. 共通パーツ（テーブルレイアウト、汎用ボタン、変数カラー、フォントサイズ）



/* ============================================================================

 00. 全体設計

=============================================================================== */

@font-face {
  font-family: "kinoko_font";
  src: url("hannari/HannariMincho-Regular.otf") format('opentype');
}

html{ font-size: 62.5%;}
body{
  font-family: "kinoko_font", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  font-feature-settings:"palt"; /*自動カーニング*/
  /*letter-spacing: .1em; 自動カーニングで詰まりすぎに感じたので*/
  color: #555;
  background: url(../common_images/bg.jpg);
}

:root {
  --common_B:#47a0cc; /*想い*/
  --common_PP:#aa66cc; /*できること/強み・特徴*/
  --common_G:#66cc66; /*サービス・施設*/
  --common_R:#e66e6e; /*私たちについて/概要・歴史*/
  --common_A:#66cccc; /*採用*/
  --common_Y:#fff100; /*その他（プライバシーポリシー・問い合わせ）*/
  --common_O:#e6b045; /*お知らせ・メディア*/
  --common_GR:#555555; /*反転*/
}

/*文字の上下余白（ハーフ・レディング）を削除*/
h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before,
dt::before,
dd::before,
 p::before,
h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after,
dt::after,
dd::after,
 p::after{
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin: calc(-1em / 2) auto;
}


h1,
h2,
h3,
h4,
h5,
h6{
  font-weight: 400;
}
section h2{
  font-size: 150%;
  font-weight: 700;
  position:relative;
}

/*整形済済みのフォントファミリーを削除*/
pre {font-family: inherit;}

section p.read{text-align: center;}


/*リンク*/
a{
  color:var(--common_B);
  text-decoration: none;
  transition: .5s;
}
a:hover, .active{ text-decoration: underline;}
a:active, a:focus,input:active, input:focus{ outline:0;}


/*セクション間の余白*/
section{ margin-top:0; overflow: hidden;}
section h2{ margin-bottom:2em;}

/*セクションの見出し装飾*/
section h2{ 
  font-size: 250%;
  line-height: 1;
}


/*PCレスポンシブまでは左右に余白*/
.inner{
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

.col3 li img{/*画像センタリング*/
  margin: 0 auto;
}

/* ---------------------------
SP */
@media only screen and (max-width: 900px){
  /*セクションの見出し装飾*/
  section h2{ 
    font-size: 130%;
    margin-bottom: 3em;
  }
}

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  body{
    font-size: 1.8rem;
  }
  /*セクション内の要素の最大幅*/
  .inner{ max-width: 1024px;
    padding: 100px 0;
  }

  /*2カラム*/
  .col2{
    display:flex;
    gap:2%;
  }
  .col2 li{ width: 100%;}

  /*3カラム*/
  .col3{
    display:flex;
    gap:7%;
  }
  .col3 li{ width: 30%;}
}



/* ============================================================================

 01. ヘッダー

=============================================================================== */
header nav,
header button{
  box-shadow: 0px 0px 20px rgba(0,0,0,.2);
}
/* PC */
@media only screen and (min-width: 901px){
  header{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
}


/* ============================================================================

 02. フッター

=============================================================================== */
#footer{
  background: #fff;
  padding: 80px 20px 40px  20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .logo_fotter{
  width: 200px;
  max-width: none;
}
#footer ul.footer_link{
  margin: 40px auto;
  text-align: left;
}
#footer ul.footer_link_sub{
  margin-top: 0;
}
#footer a{
  color: var(--common_GR);
}
small {
  color: var(--common_GR);
  font-size: 100%;
  letter-spacing: .15em;
}

/* フッターの施設一覧は別途下 */

/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #footer .logo_fotter{
    width: 250px;
  }
  #footer .footer_link_wrap {
    display: flex;
    gap: 50px;
    max-width: 100%;
  }
  #footer .facility_list{
    max-width: 100%;
  }
  #footer ul.footer_link{
    max-width: 580px;
    margin:0 auto 20px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer_link li:not(:last-child)::after {
    content: "/";
    color: #ddd;
    margin: 0 1em; /* スラッシュとテキストの間の余白 */
  }
}


/*---------------------
フッターの施設一覧 部分のみ*/
#footer .facility_list{
  margin-bottom: 40px;
}
#footer .facility_list dl{
  line-height: 1.5;
  width: 360px;
  text-align: left;
}
#footer .facility_list dt{
  font-size: 150%;
  color: var(--common_GR);
  border-bottom: #ddd 1px solid;
  margin: 2em auto .7em;
  padding-bottom: 1em;
}
#footer .facility_list dd{
  margin-bottom: 1em;
  width: 100%;
}

#footer .facility_list a{
  color: var(--common_GR);
  text-indent: 1em;
  display: inline-block;
}

#footer .facility_list dl.okayanma,
#footer .facility_list dl.tokyo{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 650px;
  width: 100%;
}
#footer .facility_list dl.tokyo{
  max-width: 250px;
}
#footer .facility_list dl.okayanma dd{
  flex: 0 0 50%;
}
#footer .facility_list dl dt {
  flex: 0 0 100%;
}
/* ---------------------------
SP */
@media only screen and (max-width: 768px){
  #footer .facility_list dl.okayanma,
  #footer .facility_list dl.tokyo{
  display: block;
  width: auto;
  }
}
/* ---------------------------
PC */
@media only screen and (min-width: 901px){
  #footer .facility_list{
    display: flex;
    align-items: flex-start;
    gap: 5%;
  }
  #footer .facility_list dl{
    line-height: 1.5;
    width: 250px;
  }
  #footer .facility_list dd{
    margin-bottom: 1.5em;
  }
}



/* ============================================================================

 03. フォーム

=============================================================================== */
/*お問い合わせフォーム*/
.mailform_table i{
  color:#ff0000;
  font-style:normal;
}					
.mailform_table{
  text-align:left;
  margin:0 auto;
  margin-top: 3rem;
  margin-bottom:3rem;
  border-collapse: separate;
  border-spacing: 1em 0;
}
.mailform_table th{
  white-space: nowrap;
  font-weight: normal;
}
.mailform_table td:last-child{
  width: 70%;
}
.mailform_table span.cap{display: inline-block;}
.mailform_table span.required,
.mailform_table span.any{
  display: inline-block;
  line-height: 1;
  font-size: 1.2rem;
  color:#fff;
  background: var(--common_B);
  white-space: nowrap;
  border-radius: 20px;
  padding: .5em 1em;
  margin-bottom: 6px;
}
.mailform_table span.any{background: #999;}
.mailform_table input::placeholder,
.mailform_table textarea::placeholder{ color:#ccc;}
.mailform_table input:focus::placeholder,
.mailform_table textarea:focus::placeholder {color: transparent;}

.mailform_table .zipcode,
.mailform_table .year,
.mailform_table .num{width:10em;}
select,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"],
textarea{ background:#fff; border:none; padding:1.5rem; margin:1rem 0; border-radius:0; width:100%;}

input[type="checkbox"]{ margin-bottom:0; padding-bottom:0;}



.mailform_table select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトのスタイルを無効 */
}
.mailform_table select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}
/* セレクトボックスの矢印デザイン変更 */
.select_kinds{
  position: relative;
  display:block;
}
.select_kinds::before {
  border-bottom: 6px solid var(--common_B);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  position: absolute;
  right: 1em;
  top: 0.8em;
  width: 0;
  z-index:1;
}
.select_kinds::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--common_B);
  content: "";
  position: absolute;
  right: 1em;
  top: 1.8em;
  width: 0;
}

/*ラジオボタンの色*/
input[type=radio] {
    /*display: none;*/
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px;
    position: relative;
    width: auto;
}
.mailform_table .radio01::before,
.mailform_table .radio01::after {
  display: none;
}
.mailform_table .radio01 .wpcf7-list-item {
  margin: 0!important;
}
.mailform_table .radio01 .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0px 26px;
  width: auto;
}
.radio01 .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid var(--common_B);
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.mailform_table .radio01 .wpcf7-list-item-label::after {
  background: var(--common_B);
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}
.mailform_table .radio01 input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.mailform_table th{line-height: 1.2;}
.mailform_table span.cap{font-size: 1.2rem;}

/*生年月日*/
.mailform_table label {
  position: relative;
  display: inline-block;
  border: none;
}
.mailform_table input[type="date"] {
  position: relative;
  padding: 1.5rem;
  border: 0;
  background: #fff;
}


/*========================================

採用エントリー/応募フォーム

========================================*/
/*お問い合わせフォーム*/
.mailform_table i{
  color:#ff0000;
  font-style:normal;
}					
.mailform_table{
  width:100%;
  text-align:left;
  margin:0 auto;
  margin-bottom:3rem;
  border-collapse: separate;
  border-spacing: 2em 1.5em;
}
.mailform_table th{
  white-space: nowrap;
  font-weight: normal;
}
.mailform_table td:last-child{
  width: 70%;
}
.mailform_table span.cap{display: inline-block;}
.mailform_table span.required,
.mailform_table span.any{
  display: inline-block;
  line-height: 1;
  font-size: 1.2rem;
  color:#fff;
  background: var(--common_B);
  white-space: nowrap;
  border-radius: 20px;
  padding: .5em 1em;
  margin-bottom: 6px;
}
.mailform_table span.any{background: #999;}
.mailform_table input::placeholder,
.mailform_table textarea::placeholder{ color:#ccc;}
.mailform_table input:focus::placeholder,
.mailform_table textarea:focus::placeholder {color: transparent;}

.mailform_table .zipcode,
.mailform_table .year,
.mailform_table .num{width:10em;}
select,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="file"],
textarea{ background:#fff; border:none; padding:1.5rem; margin:1rem 0; border-radius:0; width:100%;}

input[type="checkbox"]{ margin-bottom:0; padding-bottom:0;}



.mailform_table select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトのスタイルを無効 */
}
.mailform_table select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}
/* セレクトボックスの矢印デザイン変更 */
.select_kinds{
  position: relative;
  display:block;
}
.select_kinds::before {
  border-bottom: 6px solid var(--common_B);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
  position: absolute;
  right: 1em;
  top: 0.8em;
  width: 0;
  z-index:1;
}
.select_kinds::after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--common_B);
  content: "";
  position: absolute;
  right: 1em;
  top: 1.8em;
  width: 0;
}

/*ラジオボタンの色*/
input[type=radio] {
    /*display: none;*/
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0px;
    position: relative;
    width: auto;
}
.mailform_table .radio01::before,
.mailform_table .radio01::after {
  display: none;
}
.mailform_table .radio01 .wpcf7-list-item {
  margin: 0!important;
}
.mailform_table .radio01 .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0px 26px;
  width: auto;
}
.radio01 .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid var(--common_B);
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -11px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.mailform_table .radio01 .wpcf7-list-item-label::after {
  background: var(--common_B);
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}
.mailform_table .radio01 input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.mailform_table th{line-height: 1.2;}
.mailform_table span.cap{font-size: 1.2rem;}

/*生年月日*/
.mailform_table label {
  position: relative;
  display: inline-block;
  border: none;
}
.mailform_table input[type="date"] {
  position: relative;
  padding: 1.5rem;
  border: 0;
  background: #fff;
}

/*プライバシーポリシーのチェックボタンとの間隔*/
.wpcf7-form-control-wrap .wpcf7-list-item-label {
  margin-left: 0.3em;
}


/*WP化前*/
.radio01::before {
    background: #fff;
    border: 1px solid var(--common_B);
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -11px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: var(--common_B);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}







/*エラーメッセージ*/
.screen-reader-response p,
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  color: #fff;
  background: #ff0000;
  font-weight: bold;
  padding: 0 0.5em;
  margin: 1em;
}
.wpcf7-not-valid-tip {
  padding: 0.5em;
}
.screen-reader-response ul {
  display: none;
}


@media only screen and (max-width: 768px) {
  .mailform_table{ border-spacing: 1em 1em;}
  .mailform_table th,
  .mailform_table td{
    display: inline-block;
  }
  .mailform_table td:last-child{
    width: 100%;
  }
  .mailform_table span.required,
  .mailform_table span.any{
    margin-right: 1em;
  }
  .radio01 {
    padding-top:10px;
    display: block;
  }
  .radio01::before {
    margin-top: -5px;
  }
.radio01::after {
    margin-top: -1px;
  }
}

/* ============================================================================

 04. 機能

=============================================================================== */

/*========================================
汎用版アコーディオン
========================================*/
.accordion_GP .toggle {
  display: none;
}
.accordion_GP .option {
  position: relative;
  margin-bottom: 2em;
}
.accordion_GP .title {
  line-height: 1.5;
}
.accordion_GP .title,
.accordion_GP .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.accordion_GP .title,
.accordion_GP .content p {
  display: flex;
  padding: 1.7em 3em 1.7em 2em;
  text-align: left;
  align-items: center;
}
.accordion_GP .content p {
  padding: 1.7em 0em 1.7em 2em;
}


.accordion_GP .title::after,
.accordion_GP .title::before {
  content: "";
  position: absolute;
  right: 2em;
  top:0;
  bottom:0;
  margin: auto;
  width: 2px;
  height: 0.75em;
  background: rgba(255,255,255,1);
  transition: transform 0.5s;
}
.accordion_GP .title::after {
  transform: rotate(90deg);
}
.accordion_GP .title:hover {
  cursor: pointer;
}
.accordion_GP .title strong,
.accordion_GP .content p strong{
  padding-right: .5em;
  opacity: .5;
  font-size: 300%;
  line-height: 0;
  margin-top: -9px;
}

.accordion_GP .content {
  max-height: 0;
  overflow: hidden;
  display: flex;
}
.accordion_GP .toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}
.accordion_GP .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}
@media only screen and (max-width: 900px){
  .accordion_GP .title,
  .accordion_GP .content p {
    padding: 1em 2.5em 1em 1em;
  }
  .accordion_GP .title strong,
  .accordion_GP .content p strong {
    font-size: 150%;
    margin-top: -4px;
  }
  .accordion_GP .content p strong {
    margin-top: 3px;
    line-height: 1;
  }
  .accordion_GP .content p {
    padding: 1em 0em 1em 1em;
    align-items: flex-start;
  }
}


/*========================================
 アニメーション類
========================================*/
/* スクロールで表示されるアニメーション */
section,
aside {
    opacity : 0;
    /*transform: scale(.95);*/
    transition : all 3000ms;
}
section.scrollin,
aside.scrollin {
    opacity : 1;
    /*transform: scale(1);*/
}

/*スクロールなしでフェードイン
（主に汎用ページのファーストビューで使用）*/
.fadeIn-simple {
 animation-fill-mode:both;
 animation-duration:3s;
 animation-name: fadeIn-simple;
 visibility: visible !important;
}
@keyframes fadeIn-simple {
  0% {
    transform : translate(0, 0);
    filter: brightness(1.5) contrast(150%) blur(10px);
    opacity: 0;
  }
  99.9%, to {
    transform : translate(0, 0);
    filter: brightness(1) contrast(100%) blur(0);
    opacity: 1;
  }
}


/*流体シェイプ*/
.fluid {
  width:40vh;/*横幅*/
  height: 40vh;/*縦幅*/
  background:var(--common_Y);/*背景色*/
  animation: fluidrotate 20s linear 0s infinite forwards;/*アニメーションの設定*/
}
@keyframes fluidrotate {  
  0%, 100% {border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;}
  14% {border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;}
  28% {border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;}
  42% {border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;}
  56% {border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;}
  70% {border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;}
  84% {border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;}
}

/*画像マスクの流体シェイプ*/
.mask_img_wrap {
  filter: drop-shadow(-10px 25px 0px var(--common_B));
}
.mask_img {
  width: 800px; /* 画像の幅 */
  height: 800px; /* 画像の高さ */
  background-image: url('../images/whats_bg.jpg'); /* バックグラウンド画像の指定 */
  background-position: center center;
  background-size: cover; /* 画像を要素にフィットさせる */
  clip-path: inset(50px round 63% 37% 54% 46%/55% 48% 52% 45%);
  /*animation: clip_path 60s linear 0s infinite forwards;*/
}
@keyframes clip_path {  
  0%, 100% {clip-path: inset(50px round 63% 37% 54% 46%/55% 48% 52% 45%);}
  14% {clip-path: inset(50px round 40% 60% 54% 46%/49% 60% 40% 51%);}
  28% {clip-path: inset(50px round 54% 46% 38% 62%/49% 70% 30% 51%);}
  42% {clip-path: inset(50px round 61% 39% 55% 45%/61% 38% 62% 39%);}
  56% {clip-path: inset(50px round 61% 39% 67% 33%/70% 50% 50% 30%);}
  70% {clip-path: inset(50px round 50% 50% 34% 66%/56% 68% 32% 44%);}
  84% {clip-path: inset(50px round 46% 54% 50% 50%/35% 61% 39% 65%);}  
}
/*------------------
SP*/
@media only screen and (max-width: 900px){
  .mask_img {
    width: 100vw; /* 画像の幅 */
    height: 100vw; /* 画像の高さ */
  }
}

/* ============================================================================

 05. 共通パーツ

=============================================================================== */

/*--------------------------------
table
---------------------------------*/
.listTABLE{
	width: 100%;
  border-bottom:#ccc solid 1px;
  border-collapse:  collapse;
}
.listTABLE th{
	border-top:#ccc solid 1px;
	font-weight: bold;
	background:#ffffff79;
	padding:20px 30px;
	white-space:nowrap;
	vertical-align:middle;
	text-align:left;
}
.listTABLE td{
	border-top:#ccc solid 1px;
	margin:0px;
	padding:20px 30px;
}
.listTABLE-line th,
.listTABLE-line td{border-left:#ccc solid 1px;}


@media only screen and (max-width: 900px) {
.listTABLE th{ white-space:normal;}
.listTABLE th,
.listTABLE td{
  display:block;
	padding:10px;
}
}


/*--------------------------------
汎用ボタン
---------------------------------*/
.btn{
  display: inline-block;
  padding: 20px 60px calc(20px + 0.15em);/*はんなりだと少し下寄りになるのでcalc関数で少し下に余白を作る*/
  color: #fff;
  background: var(--common_B);
  cursor: pointer;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  border-radius: 100px;
  text-decoration: none;
  line-height: 1;
}
/*下層ページのボタンは少し小さく*/
.lower .btn{
  padding: 10px 40px calc(10px + 0.15em) 20px;
  border: none;
}
/*下層ページの各ボタン色セット*/
#co_concept .btn{background-color: var(--common_B);}
#co_features .btn{background-color: var(--common_PP);}
#co_service .btn{background-color: var(--common_G);}
#co_about .btn{background-color: var(--common_R);}
#co_recruit .btn{background-color: var(--common_A);}
#co_recruit_new .btn{background-color: var(--common_A);}

.btn a{
  color: #fff;
}
.btn a:hover{
  text-decoration: none;
}
.btn:hover{
  background-color: var(--common_GR)!important;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.6);
  text-decoration: none;
} 
.arrow{
  background-image: url(../common_images/btn_arrow.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: right 1em center;
}
.arrow:hover{
  background-image: url(../common_images/btn_arrow.svg);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: right .5em center;
}
@media only screen and (max-width: 900px){
  .sp_only{display: block;}
  .pc_only{display: none;}
}
@media only screen and (min-width: 901px){
  .sp_only{display: none;}
  .pc_only{display: block;}
}

/*フォントサイズ*/
.font_080{font-size: 80%;}
.font_075{font-size: 75%;}/*キャプション向け*/

/*画像 角丸*/
.Round20{border-radius: 20px;}
.Round30{border-radius: 30px;}
