@charset 'UTF-8';

/*----------トクラ独自css----------*/
/*斜めの背景*/

.tokura_bg-diagonal {
   --bg-color:#D8E4E5;
   --white: #fff;
   background-image: linear-gradient(-45deg, var(--bg-color) 0%, var(--bg-color) 60%, var(--white) 50%, var(--white) 100%);
   width: 100vw;
}

/*----------1日のスケジュール設定----------*/
.tokura_timeline ul {
  background: #ffffff;
  padding: 50px 0;
}

.tokura_timeline ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 50px;
  background: #333333;
}

.tokura_timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.tokura_timeline ul li div {
  position: relative;
  bottom: 0;
  width: 600px;
  padding: 15px;
  border: 1px solid #000;
}

.tokura_timeline ul li div::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.tokura_timeline ul li:nth-child(odd) div {
  left: 45px;
}

.tokura_timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #333333 transparent transparent;
}

.tokura_timeline ul li:nth-child(even) div {
  left: -639px;
}

.tokura_timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #333333;
}

.tokura_timeline h2 {
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 600;
   font-size: 2.5rem;
   margin: 2% auto 6%;
}

@media screen and (max-width: 900px) {
.tokura_timeline ul li div {
    width: 250px;
  }
.tokura_timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 600px) {
.tokura_timeline ul li {
    margin-left: 20px;
  }
.tokura_timeline ul li div {
    width: calc(100vw - 91px);
  }
.tokura_timeline ul li:nth-child(even) div {
    left: 45px;
  }
.tokura_timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #f45b69 transparent transparent;
  }
}


/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tokura_timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.tokura_timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.tokura_timeline-rhombus ul li div::before {
  bottom: 12px;
}

.tokura_timeline-star ul li::after {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.tokura_timeline-heptagon ul li::after {
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.tokura_timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

/*----------1日のスケジュールスライダー設定----------*/

.swiper {
  width: 600px;
  height: 400px;
}

/*----------フォント設定----------*/
.tokura_recruit-text {
   font-family: "Noto Sans JP", sans-serif;
}

.tokura_recruit-text h1 {
  font-size: 14px;
   text-align: center;
}
.tokura_recruit-text h1 span {
  display: block;
  font-size: 10px;
}

.tokura_recruit-text h2 {
   text-align: center;
   font-weight: 800;
   font-size: 5.0rem;
   margin: 2% auto 6%;
}
.tokura_recruit-lead {
  font-size: 34px;
  text-align: center;
}
.tokura_recruit-lead span {
  color: #ff7e56;
}
/*吹き出し文字*/
.tokura_bubble_center {
  display: flex;
  justify-content: center;
}
.tokura_bubble {
  background: #ff7e56;
  color: #fff;
  font-size: 24px;
  padding: 0.7em;
  display: inline-block;
  position: relative;
}
.tokura_bubble::before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid #ff7e56;
  margin-left: -10px;
  top: 100%;
  left: 50%;
  position: absolute;
}
/*カーブした文字*/
.tokura_recruit-text p {
  font-size: 18px;
  text-align: center;
}
.tokura_recruit-text p span {
  color: #ff7e56;
}

 .tokura_curvefont {
     width: 300px;
     height: 50px;
     margin: 100px auto 50px auto;
     font-size: 12px;
   }
 .tokura_curvefont svg {
     overflow: visible;
   }
 .tokura_curvefont path {
     fill: none;
   }
 .tokura_curvefont text {
     fill: #0277c3;
   }
/*----------container設定----------*/

.tokura_container {
   max-width: 90%;
   margin: 0 auto;
}

@media (max-width: 767px){
.tokura_container {
   max-width: 100%;
  }
}
/*----------グリッドレイアウト----------*/
/*10pxアキのグリッドレイアウトにする*/
.grd_gp10 {
   display: grid;
   grid-column-gap: 10px;
   grid-row-gap: 10px;
}
/*20pxアキのグリッドレイアウトにする*/
.grd_gp20 {
   display: grid;
   grid-column-gap: 20px;
   grid-row-gap: 20px;
}
/*25pxアキのグリッドレイアウトにする*/
.grd_gp25 {
   display: grid;
   grid-column-gap: 25px;
   grid-row-gap: 25px;
}

/*50pxアキのグリッドレイアウトにする*/
.grd_gp50 {
   display: grid;
   grid-column-gap: 50px;
   grid-row-gap: 50px;
}

/*80pxアキのグリッドレイアウトにする*/
.grd_gp80 {
   display: grid;
   grid-column-gap: 80px;
   grid-row-gap: 80px;
}


/*均等2分割*/
.grd_col_2fr{
   grid-template-columns: 1fr 1fr;  
}
.grd_col_2fr_r{
   grid-template-columns: 1fr 1fr; 
   grid-template-areas:
   "areaA areaB";
}
/*均等3分割*/
.grd_col_3fr{
   grid-template-columns: 1fr 1fr 1fr;
}
/*均等4分割*/
.grd_col_4fr{
   grid-template-columns: 1fr 1fr 1fr 1fr; 
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_3_2_l {
   grid-template-columns: 3fr 2fr;
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_2_3_l {
   grid-template-columns: 2fr 3fr;
}
/*3:2の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_3_2_r {
   grid-template-columns: 3fr 2fr;
   grid-template-areas:
   "areaA areaB";
}
/*2:3の2分割レイアウト（スマホ表示にしたとき、右の要素を上に表示）※直下のdivにgrd_itm1,grd_itm2などでエリア指定を行う*/
.grd_col_2_3_r {
   grid-template-columns: 2fr 3fr;
   grid-template-areas:
   "areaA areaB";
}
/*1:4の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_1_4_l {
   grid-template-columns: 1fr 4fr;
}
/*4:1の2分割レイアウト（スマホ表示にしたとき、左の要素を上に表示）※直下のdivは何も指定しなくてよい*/
.grd_col_4_1_l {
   grid-template-columns: 4fr 1fr;
}
.grd_itm1{
   grid-area:areaA;
}
.grd_itm2{
   grid-area:areaB;
}
@media (max-width: 767px){
/*スマホ表示の際、分割せず縦並び*/
   .grd_sp1fr{
   grid-template-columns: 1fr;
   grid-column-gap: 10px;
   grid-row-gap: 10px;
   }

/*スマホ表示の際、分割せず縦並び*/
   .grd_sp1fr_r{
   grid-template-columns: 1fr;
   grid-column-gap: 10px;
   grid-row-gap: 10px;
   grid-template-areas:
   "areaB"
   "areaA";
   }


/*スマホ表示の際、均等2分割横並び*/
   .grd_sp2fr{
   grid-template-columns: 1fr 1fr;
   grid-column-gap: 20px;
   grid-row-gap: 20px;
   }
/*スマホ表示の際、右の要素を上に表示*/
   .grd_col_3_2_r, .grd_col_2_3_r, .grd_col_2fr_r {
   grid-template-areas:
   "areaB"
   "areaA";
   }
   }
/*----------上下アキ----------*/
.row_bottom{
	margin-bottom:15px;
}
.row_bottom30{
	margin-bottom:30px;
}
.row_bottom50{
	margin-bottom:50px;
}
.row_bottom80{
	margin-bottom:80px;
}
.row_bottom100{
	margin-bottom:100px;
}
.row_top{
    margin-top:15px;
}
.row_top30{
    margin-top:30px;
}
.row_top50{
    margin-top:50px;
}
.row_top80{
    margin-top:80px;
}

/*----------PC・スマホ調整----------*/
@media only screen and (min-width : 320px) {
	.pc_h{
		display:none;
	}
	.smp_h{
		display:inline;
	}
}

@media only screen and (min-width : 992px) {
	.pc_h{
		display:inline;
	}
	.smp_h{
		display:none;
	}
}

@media only screen and (min-width : 1200px) {
	.pc_h{
		display:inline;
	}
	.smp_h{
		display:none;
	}
}
