@charset "utf-8";

/*-----------------------------------------------------------------------------------

Parts（使いまわすもの）

-----------------------------------------------------------------------------------*/
:root {
  --white01: #FFFFFF;
  --black01: #333333;
  --black02: #463D35;
  --gray01: #EBECED;
  --gray02: #cccccc;
  --green01: #0FA36A;
  --green02: #E2F0D1;
  --orange01: #E68C22;
  --beige01: #FBFCE5;
  --beige02: #72543D;
  --beige03: #463D35;
  --blue01: #5B86B9;
  --blue02: #122A6C;
  --blue03: #004E9C;
  --blue04: #e0f0ff;
  --red01: #ff2727;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }

/*===================================================================================
デバイス（Device）
===================================================================================*/
.sp-only { display: block !important; }
.pc-only { display: none !important; }
@media screen and (min-width: 600px) {
  .sp-only { display: none !important; }
  .pc-only { display: block !important; }
}

/*===================================================================================
グリッドレイアウト（Grid Layout）
===================================================================================*/
.d-grid { display: grid; }
.g-gap10px { gap: 10px; }
.g-gap20px { gap: 20px; }
.g-gap30px { gap: 30px; }
.g-clm-gap10px { column-gap: 10px; }
.g-clm-gap20px { column-gap: 20px; }
.g-clm-gap30px { column-gap: 30px; }
.g-row-gap10px { row-gap: 10px; }
.g-row-gap20px { row-gap: 20px; }
.g-row-gap30px { row-gap: 30px; }
@media screen and (min-width: 600px) {
  .pc_d-grid { display: grid; }
  .pc_gtc-2clm { grid-template-columns: repeat(2, 1fr); }
  .pc_gtc-3clm { grid-template-columns: repeat(3, 1fr); }
  .pc_gtc-4clm { grid-template-columns: repeat(4, 1fr); }
  .pc_g-gap10px { gap: 10px; }
  .pc_g-clm-gap10px { column-gap: 10px; }
  .pc_g-row-gap10px { row-gap: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_d-grid { display: grid; }
  .sp_gtc-1clm { grid-template-columns: 1fr; }
  .sp_g-gap10px { gap: 10px; }
  .sp_g-clm-gap10px { column-gap: 10px; }
  .sp_g-row-gap10px { row-gap: 10px; }
}

/*===================================================================================
フレックスボックス（Flexbox）
===================================================================================*/
.d-flex { display: flex; }
.d-il-flex { display: inline-flex; }
.fd-row { flex-direction: row; }
.fd-row-reverse { flex-direction: row-reverse; }
.fd-column { flex-direction: column; }
.fd-column-reverse { flex-direction: column-reverse; }
.fw-wrap { flex-wrap: wrap; }
.fw-nowrap { flex-wrap: nowrap; }
.jc-start { justify-content: flex-start; }
.jc-end { justify-content: flex-end; }
.jc-center { justify-content: center; }
.jc-between { justify-content: space-between; }
.jc-around { justify-content: space-around; }
.jc-evenly { justify-content: space-evenly; }
.ai-start { align-items: flex-start; }
.ai-end { align-items: flex-end; }
.ai-center { align-items: center; }
.f-gap10px { gap: 10px; }
.f-gap20px { gap: 20px; }
.f-gap30px { gap: 30px; }
.f-clm-gap10px { column-gap: 10px; }
.f-clm-gap20px { column-gap: 20px; }
.f-clm-gap30px { column-gap: 30px; }
.f-row-gap10px { row-gap: 10px; }
.f-row-gap20px { row-gap: 20px; }
.f-row-gap30px { row-gap: 30px; }
@media screen and (min-width: 600px) {
  .pc_d-flex { display: flex; }
  .pc_fd-column { flex-direction: column; }
  .pc_fd-column-reverse { flex-direction: column-reverse; }
  .pc_fw-wrap { flex-wrap: wrap; }
  .pc_fw-nowrap { flex-wrap: nowrap; }
  .pc_jc-start { justify-content: flex-start; }
  .pc_jc-end { justify-content: flex-end; }
  .pc_jc-center { justify-content: center; }
  .pc_jc-between { justify-content: space-between; }
  .pc_jc-around { justify-content: space-around; }
  .pc_jc-evenly { justify-content: space-evenly; }
  .pc_ai-start { align-items: flex-start; }
  .pc_ai-end { align-items: flex-end; }
  .pc_ai-center { align-items: center; }
  .pc_f-clm-gap10px { column-gap: 10px; }
  .pc_f-clm-gap20px { column-gap: 20px; }
  .pc_f-clm-gap30px { column-gap: 30px; }
  .pc_f-clm-gap40px { column-gap: 40px; }
  .pc_f-clm-gap50px { column-gap: 50px; }
  .pc_f-row-gap10px { row-gap: 10px; }
  .pc_f-gap10px { gap: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_d-flex { display: flex; }
  .sp_fd-column { flex-direction: column; }
  .sp_fd-column-reverse { flex-direction: column-reverse; }
  .sp_fw-wrap { flex-wrap: wrap; }
  .sp_fw-nowrap { flex-wrap: nowrap; }
  .sp_jc-start { justify-content: flex-start; }
  .sp_jc-end { justify-content: flex-end; }
  .sp_jc-center { justify-content: center; }
  .sp_jc-between { justify-content: space-between; }
  .sp_jc-around { justify-content: space-around; }
  .sp_jc-evenly { justify-content: space-evenly; }
  .sp_ai-start { align-items: flex-start; }
  .sp_ai-end { align-items: flex-end; }
  .sp_ai-center { align-items: center; }
  .sp_f-clm-gap10px { column-gap: 10px; }
  .sp_f-row-gap10px { row-gap: 10px; }
  .sp_f-gap10px { gap: 10px; }
}

/*===================================================================================
横幅（width）
===================================================================================*/
.min-w80px { min-width: 80px; }
.min-w90px { min-width: 90px; }
.min-w100px { min-width: 100px; }
.max-w100px { max-width: 100px; }
.w100px { width: 100px; }

.w50per { width: 50%; }
@media screen and (min-width: 600px) {
  .pc_min-w100px { min-width: 100px; }
  .pc_max-w100px { max-width: 100px; }
  .pc_w100px { width: 100px; }
  .pc_w720px { width: 720px; }

  .pc_w30per { width: 30%; }
  .pc_w33per { width: 33%; }
  .pc_w40per { width: 40%; }
  .pc_w48per { width: 48%; }
  .pc_w50per { width: 50%; }
  .pc_w60per { width: 60%; }
  .pc_w70per { width: 70%; }
  .pc_w80per { width: 80%; }
}
@media screen and (max-width: 599px) {
  .sp_min-w100px { min-width: 100px; }
  .sp-max-w100px { max-width: 100px; }
  .sp_w100px { width: 100px; }

  .sp_w50per { width: 50%; }
}

/*===================================================================================
縦幅（height）
===================================================================================*/
.min-h100px { min-height: 100px; }
.max-h100px { max-height: 100px; }
.h60px { height: 60px !important; }
.h100px { height: 100px; }

.h50per { height: 50%; }
@media screen and (min-width: 600px) {
  .pc_min-h100px { min-height: 100px; }
  .pc_max-h100px { max-height: 100px; }
  .pc_h100px { height: 100px; }

  .pc_h50per { height: 50%; }
}
@media screen and (max-width: 599px) {
  .sp_min-h100px { min-width: 100px; }
  .sp-max-h100px { max-width: 100px; }
  .sp_h100px { width: 100px; }

  .sp_w50per { width: 50%; }
}

/*===================================================================================
マージン（margin）
===================================================================================*/
.mgauto { margin: auto; }
.mg5px { margin: 5px; }
.mg10px { margin: 10px; }
.mg15px { margin: 15px; }
.mg20px { margin: 20px; }
.mg25px { margin: 25px; }
.mg30px { margin: 30px; }
.mg35px { margin: 35px; }
.mg40px { margin: 40px; }
.mg45px { margin: 45px; }
.mg50px { margin: 50px; }
.mg55px { margin: 55px; }
.mg60px { margin: 60px; }
.mg65px { margin: 65px; }
.mg70px { margin: 70px; }
.mg75px { margin: 75px; }
.mg80px { margin: 80px; }
.mg85px { margin: 85px; }
.mg90px { margin: 90px; }
.mg95px { margin: 95px; }
.mg100px { margin: 100px; }

.mg10per { margin: 10%; }
.mg20per { margin: 20%; }
.mg30per { margin: 30%; }
.mg40per { margin: 40%; }
.mg50per { margin: 50%; }

.mg1em { margin: 1em; }
.mg2em { margin: 2em; }
.mg3em { margin: 3em; }
.mg4em { margin: 4em; }
.mg5em { margin: 5em; }
.mg1rem { margin: 1rem; }
.mg2rem { margin: 2rem; }
.mg3rem { margin: 3rem; }
.mg4rem { margin: 4rem; }
.mg5rem { margin: 5rem; }

/* top */
.mtauto { margin-top: auto; }
.mt5px { margin-top: 5px; }
.mt10px { margin-top: 10px; }
.mt15px { margin-top: 15px; }
.mt20px { margin-top: 20px; }
.mt25px { margin-top: 25px; }
.mt30px { margin-top: 30px; }
.mt35px { margin-top: 35px; }
.mt40px { margin-top: 40px; }
.mt45px { margin-top: 45px; }
.mt50px { margin-top: 50px; }
.mt55px { margin-top: 55px; }
.mt60px { margin-top: 60px; }
.mt65px { margin-top: 65px; }
.mt70px { margin-top: 70px; }
.mt75px { margin-top: 75px; }
.mt80px { margin-top: 80px; }
.mt85px { margin-top: 85px; }
.mt90px { margin-top: 90px; }
.mt95px { margin-top: 95px; }
.mt100px { margin-top: 100px; }

.mt10per { margin-top: 10%; }
.mt20per { margin-top: 20%; }
.mt30per { margin-top: 30%; }
.mt40per { margin-top: 40%; }
.mt50per { margin-top: 50%; }

.mt1em { margin-top: 1em; }
.mt2em { margin-top: 2em; }
.mt3em { margin-top: 3em; }
.mt4em { margin-top: 4em; }
.mt5em { margin-top: 5em; }
.mt1rem { margin-top: 1rem; }
.mt2rem { margin-top: 2rem; }
.mt3rem { margin-top: 3rem; }
.mt4rem { margin-top: 4rem; }
.mt5rem { margin-top: 5rem; }

/* left */
.mlauto { margin-left: auto; }
.ml5px { margin-left: 5px; }
.ml10px { margin-left: 10px; }
.ml15px { margin-left: 15px; }
.ml20px { margin-left: 20px; }
.ml25px { margin-left: 25px; }
.ml30px { margin-left: 30px; }
.ml35px { margin-left: 35px; }
.ml40px { margin-left: 40px; }
.ml45px { margin-left: 45px; }
.ml50px { margin-left: 50px; }
.ml55px { margin-left: 55px; }
.ml60px { margin-left: 60px; }
.ml65px { margin-left: 65px; }
.ml70px { margin-left: 70px; }
.ml75px { margin-left: 75px; }
.ml80px { margin-left: 80px; }
.ml85px { margin-left: 85px; }
.ml90px { margin-left: 90px; }
.ml95px { margin-left: 95px; }
.ml100px { margin-left: 100px; }

.ml10per { margin-left: 10%; }
.ml20per { margin-left: 20%; }
.ml30per { margin-left: 30%; }
.ml40per { margin-left: 40%; }
.ml50per { margin-left: 50%; }

.ml1em { margin-left: 1em; }
.ml2em { margin-left: 2em; }
.ml3em { margin-left: 3em; }
.ml4em { margin-left: 4em; }
.ml5em { margin-left: 5em; }
.ml1rem { margin-left: 1rem; }
.ml2rem { margin-left: 2rem; }
.ml3rem { margin-left: 3rem; }
.ml4rem { margin-left: 4rem; }
.ml5rem { margin-left: 5rem; }

/* right */
.mrauto { margin-right: auto; }
.mr5px { margin-right: 5px; }
.mr10px { margin-right: 10px; }
.mr15px { margin-right: 15px; }
.mr20px { margin-right: 20px; }
.mr25px { margin-right: 25px; }
.mr30px { margin-right: 30px; }
.mr35px { margin-right: 35px; }
.mr40px { margin-right: 40px; }
.mr45px { margin-right: 45px; }
.mr50px { margin-right: 50px; }
.mr55px { margin-right: 55px; }
.mr60px { margin-right: 60px; }
.mr65px { margin-right: 65px; }
.mr70px { margin-right: 70px; }
.mr75px { margin-right: 75px; }
.mr80px { margin-right: 80px; }
.mr85px { margin-right: 85px; }
.mr90px { margin-right: 90px; }
.mr95px { margin-right: 95px; }
.mr100px { margin-right: 100px; }

.mr10per { margin-right: 10%; }
.mr20per { margin-right: 20%; }
.mr30per { margin-right: 30%; }
.mr40per { margin-right: 40%; }
.mr50per { margin-right: 50%; }

.mr1em { margin-right: 1em; }
.mr2em { margin-right: 2em; }
.mr3em { margin-right: 3em; }
.mr4em { margin-right: 4em; }
.mr5em { margin-right: 5em; }
.mr1rem { margin-right: 1rem; }
.mr2rem { margin-right: 2rem; }
.mr3rem { margin-right: 3rem; }
.mr4rem { margin-right: 4rem; }
.mr5rem { margin-right: 5rem; }

/* bottom */
.mbauto { margin-bottom: auto; }
.mb5px { margin-bottom: 5px; }
.mb10px { margin-bottom: 10px; }
.mb15px { margin-bottom: 15px; }
.mb20px { margin-bottom: 20px; }
.mb25px { margin-bottom: 25px; }
.mb30px { margin-bottom: 30px; }
.mb35px { margin-bottom: 35px; }
.mb40px { margin-bottom: 40px; }
.mb45px { margin-bottom: 45px; }
.mb50px { margin-bottom: 50px; }
.mb55px { margin-bottom: 55px; }
.mb60px { margin-bottom: 60px; }
.mb65px { margin-bottom: 65px; }
.mb70px { margin-bottom: 70px; }
.mb75px { margin-bottom: 75px; }
.mb80px { margin-bottom: 80px; }
.mb85px { margin-bottom: 85px; }
.mb90px { margin-bottom: 90px; }
.mb95px { margin-bottom: 95px; }
.mb100px { margin-bottom: 100px; }

.mb10per { margin-bottom: 10%; }
.mb20per { margin-bottom: 20%; }
.mb30per { margin-bottom: 30%; }
.mb40per { margin-bottom: 40%; }
.mb50per { margin-bottom: 50%; }

.mb1em { margin-bottom: 1em; }
.mb2em { margin-bottom: 2em; }
.mb3em { margin-bottom: 3em; }
.mb4em { margin-bottom: 4em; }
.mb5em { margin-bottom: 5em; }
.mb1rem { margin-bottom: 1rem; }
.mb2rem { margin-bottom: 2rem; }
.mb3rem { margin-bottom: 3rem; }
.mb4rem { margin-bottom: 4rem; }
.mb5rem { margin-bottom: 5rem; }
@media screen and (min-width: 600px) {
  .pc_mg10px { margin: 10px; }

  /* top */
  .pc_mt10px { margin-top: 10px; }
  .pc_mt20px { margin-top: 20px; }
  .pc_mt30px { margin-top: 30px; }
  .pc_mt40px { margin-top: 40px; }
  .pc_mt50px { margin-top: 50px; }
  .pc_mt150px { margin-top: 150px; }

  /* left */
  .pc_ml10px { margin-left: 10px; }

  /* right */
  .pc_mr10px { margin-right: 10px; }

  /* bottom */
  .pc_mb10px { margin-bottom: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_mg10px { margin: 10px; }

  /* top */
  .sp_mt10px { margin-top: 10px; }
  .sp_mt20px { margin-top: 20px; }
  .sp_mt30px { margin-top: 30px; }
  .sp_mt40px { margin-top: 40px; }
  .sp_mt50px { margin-top: 50px; }
  .sp_mt60px { margin-top: 60px; }

  /* left */
  .sp_ml10px { margin-left: 10px; }

  /* right */
  .sp_mr10px { margin-right: 10px; }

  /* bottom */
  .sp_mb10px { margin-bottom: 10px; }
}

/*===================================================================================
パディング（padding）
===================================================================================*/
.pd5px { padding: 5px; }
.pd10px { padding: 10px !important; }
.pd15px { padding: 15px !important; }
.pd20px { padding: 20px; }
.pd25px { padding: 25px; }
.pd30px { padding: 30px; }
.pd35px { padding: 35px; }
.pd40px { padding: 40px; }
.pd45px { padding: 45px; }
.pd50px { padding: 50px; }
.pd55px { padding: 55px; }
.pd60px { padding: 60px; }
.pd65px { padding: 65px; }
.pd70px { padding: 70px; }
.pd75px { padding: 75px; }
.pd80px { padding: 80px; }
.pd85px { padding: 85px; }
.pd90px { padding: 90px; }
.pd95px { padding: 95px; }
.pd100px { padding: 100px; }

.pd10per { padding: 10%; }
.pd20per { padding: 20%; }
.pd30per { padding: 30%; }
.pd40per { padding: 40%; }
.pd50per { padding: 50%; }

.pd1em { padding: 1em !important; }
.pd2em { padding: 2em; }
.pd3em { padding: 3em; }
.pd4em { padding: 4em; }
.pd5em { padding: 5em; }
.pd1rem { padding: 1rem; }
.pd2rem { padding: 2rem; }
.pd3rem { padding: 3rem; }
.pd4rem { padding: 4rem; }
.pd5rem { padding: 5rem; }

/* top */
.pt5px { padding-top: 5px; }
.pt10px { padding-top: 10px; }
.pt15px { padding-top: 15px; }
.pt20px { padding-top: 20px; }
.pt25px { padding-top: 25px; }
.pt30px { padding-top: 30px; }
.pt35px { padding-top: 35px; }
.pt40px { padding-top: 40px; }
.pt45px { padding-top: 45px; }
.pt50px { padding-top: 50px; }
.pt55px { padding-top: 55px; }
.pt60px { padding-top: 60px; }
.pt65px { padding-top: 65px; }
.pt70px { padding-top: 70px; }
.pt75px { padding-top: 75px; }
.pt80px { padding-top: 80px; }
.pt85px { padding-top: 85px; }
.pt90px { padding-top: 90px; }
.pt95px { padding-top: 95px; }
.pt100px { padding-top: 100px; }

.pd10per { padding-top: 10%; }
.pd20per { padding-top: 20%; }
.pd30per { padding-top: 30%; }
.pd40per { padding-top: 40%; }
.pd50per { padding-top: 50%; }

.pt1em { padding-top: 1em; }
.pt2em { padding-top: 2em; }
.pt3em { padding-top: 3em; }
.pt4em { padding-top: 4em; }
.pt5em { padding-top: 5em; }
.pt1rem { padding-top: 1rem; }
.pt2rem { padding-top: 2rem; }
.pt3rem { padding-top: 3rem; }
.pt4rem { padding-top: 4rem; }
.pt5rem { padding-top: 5rem; }

/* left */
.pl5px { padding-left: 5px; }
.pl10px { padding-left: 10px; }
.pl15px { padding-left: 15px; }
.pl20px { padding-left: 20px; }
.pl25px { padding-left: 25px; }
.pl30px { padding-left: 30px; }
.pl35px { padding-left: 35px; }
.pl40px { padding-left: 40px; }
.pl45px { padding-left: 45px; }
.pl50px { padding-left: 50px; }
.pl55px { padding-left: 55px; }
.pl60px { padding-left: 60px; }
.pl65px { padding-left: 65px; }
.pl70px { padding-left: 70px; }
.pl75px { padding-left: 75px; }
.pl80px { padding-left: 80px; }
.pl85px { padding-left: 85px; }
.pl90px { padding-left: 90px; }
.pl95px { padding-left: 95px; }
.pl100px { padding-left: 100px; }

.pl10per { padding-left: 10%; }
.pl20per { padding-left: 20%; }
.pl30per { padding-left: 30%; }
.pl40per { padding-left: 40%; }
.pl50per { padding-left: 50%; }

.pl1em { padding-left: 1em !important; }
.pl2em { padding-left: 2em; }
.pl3em { padding-left: 3em; }
.pl4em { padding-left: 4em; }
.pl5em { padding-left: 5em; }
.pl1rem { padding-left: 1rem; }
.pl2rem { padding-left: 2rem; }
.pl3rem { padding-left: 3rem; }
.pl4rem { padding-left: 4rem; }
.pl5rem { padding-left: 5rem; }

/* right */
.pr5px { padding-right: 5px; }
.pr10px { padding-right: 10px; }
.pr15px { padding-right: 15px; }
.pr20px { padding-right: 20px; }
.pr25px { padding-right: 25px; }
.pr30px { padding-right: 30px; }
.pr35px { padding-right: 35px; }
.pr40px { padding-right: 40px; }
.pr45px { padding-right: 45px; }
.pr50px { padding-right: 50px; }
.pr55px { padding-right: 55px; }
.pr60px { padding-right: 60px; }
.pr65px { padding-right: 65px; }
.pr70px { padding-right: 70px; }
.pr75px { padding-right: 75px; }
.pr80px { padding-right: 80px; }
.pr85px { padding-right: 85px; }
.pr90px { padding-right: 90px; }
.pr95px { padding-right: 95px; }
.pr100px { padding-right: 100px; }

.pr10per { padding-right: 10%; }
.pr20per { padding-right: 20%; }
.pr30per { padding-right: 30%; }
.pr40per { padding-right: 40%; }
.pr50per { padding-right: 50%; }

.pr1em { padding-right: 1em !important; }
.pr2em { padding-right: 2em; }
.pr3em { padding-right: 3em; }
.pr4em { padding-right: 4em; }
.pr5em { padding-right: 5em; }
.pr1rem { padding-right: 1rem; }
.pr2rem { padding-right: 2rem; }
.pr3rem { padding-right: 3rem; }
.pr4rem { padding-right: 4rem; }
.pr5rem { padding-right: 5rem; }

/* bottom */
.pb5px { padding-bottom: 5px; }
.pb10px { padding-bottom: 10px; }
.pb15px { padding-bottom: 15px; }
.pb20px { padding-bottom: 20px; }
.pb25px { padding-bottom: 25px; }
.pb30px { padding-bottom: 30px; }
.pb35px { padding-bottom: 35px; }
.pb40px { padding-bottom: 40px; }
.pb45px { padding-bottom: 45px; }
.pb50px { padding-bottom: 50px; }
.pb55px { padding-bottom: 55px; }
.pb60px { padding-bottom: 60px; }
.pb65px { padding-bottom: 65px; }
.pb70px { padding-bottom: 70px; }
.pb75px { padding-bottom: 75px; }
.pb80px { padding-bottom: 80px; }
.pb85px { padding-bottom: 85px; }
.pb90px { padding-bottom: 90px; }
.pb95px { padding-bottom: 95px; }
.pb100px { padding-bottom: 100px; }

.pb10per { padding-bottom: 10%; }
.pb20per { padding-bottom: 20%; }
.pb30per { padding-bottom: 30%; }
.pb40per { padding-bottom: 40%; }
.pb50per { padding-bottom: 50%; }

.pb1em { padding-bottom: 1em; }
.pb2em { padding-bottom: 2em; }
.pb3em { padding-bottom: 3em; }
.pb4em { padding-bottom: 4em; }
.pb5em { padding-bottom: 5em; }
.pb1rem { padding-bottom: 1rem; }
.pb2rem { padding-bottom: 2rem; }
.pb3rem { padding-bottom: 3rem; }
.pb4rem { padding-bottom: 4rem; }
.pb5rem { padding-bottom: 5rem; }
@media screen and (min-width: 600px) {
  .pc_pd10px { padding: 10px; }
  .pc_pd1em { padding: 1em; }

  /* top */
  .pc_pt10px { padding-top: 10px; }

  /* left */
  .pc_pl10px { padding-left: 10px; }

  /* right */
  .pc_pr10px { padding-right: 10px; }

  /* bottom */
  .pc_pb10px { padding-bottom: 10px; }
}
@media screen and (max-width: 599px) {
  .sp_pd10px { padding: 10px; }
  .sp_pd0\.5em { padding: 0.5em; }

  /* top */
  .sp_pt10px { padding-top: 10px; }

  /* left */
  .sp_pl10px { padding-left: 10px; }

  /* right */
  .sp_pr10px { padding-right: 10px; }

  /* bottom */
  .sp_pb10px { padding-bottom: 10px; }
}

/*===================================================================================
カラー（color）
===================================================================================*/
.col-white01 { color: var(--white01); }
.col-black01 { color: var(--black01); }
.col-gray01 { color: var(--gray01); }
.col-green01 { color: var(--green01) !important; }
.col-orange01 { color: var(--orange01); }
.col-beige01 { color: var(--beige01); }
.col-beige02 { color: var(--beige02); }
.col-beige03 { color: var(--beige03); }
.col-blue01 { color: var(--blue01); }
.col-blue02 { color: var(--blue02); }
.col-blue03 { color: var(--blue03); }
.col-red01 { color: var(--red01); }

/*===================================================================================
フォントサイズ（font-size）
===================================================================================*/
.fs10px { font-size: 10px; }
.fs11px { font-size: 11px; }
.fs12px { font-size: 12px; }
.fs13px { font-size: 13px; }
.fs14px { font-size: 14px; }
.fs15px { font-size: 15px; }
.fs16px { font-size: 16px; }
.fs17px { font-size: 17px; }
.fs18px { font-size: 18px; }
.fs19px { font-size: 19px; }
.fs20px { font-size: 20px; }
.fs21px { font-size: 21px; }
.fs22px { font-size: 22px; }
.fs23px { font-size: 23px; }
.fs24px { font-size: 24px; }
.fs25px { font-size: 25px; }
.fs26px { font-size: 26px; }
.fs27px { font-size: 27px; }
.fs28px { font-size: 28px; }
.fs29px { font-size: 29px; }
.fs30px { font-size: 30px; }

.fs50per { font-size: 50%; }
.fs60per { font-size: 60%; }
.fs70per { font-size: 70%; }
.fs80per { font-size: 80%; }
.fs90per { font-size: 90%; }
.fs100per { font-size: 100%; }

.fs1em { font-size: 1em; }
.fs2em { font-size: 2em; }
.fs3em { font-size: 3em; }
.fs4em { font-size: 4em; }
.fs5em { font-size: 5em; }
.fs1rem { font-size: 1rem; }
.fs2rem { font-size: 2rem; }
.fs3rem { font-size: 3rem; }
.fs4rem { font-size: 4rem; }
.fs5rem { font-size: 5rem; }
@media screen and (min-width: 600px) {
  .pc_fs16px { font-size: 16px; }
}
@media screen and (max-width: 599px) {
  .sp_fs16px { font-size: 16px; }
}

/*===================================================================================
フォントウェイト（font-weight）
===================================================================================*/
.fw100 { font-weight: 100; }
.fw200 { font-weight: 200; }
.fw300 { font-weight: 300; }
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw700 { font-weight: 700; }
.fw800 { font-weight: 800; }
.fw900 { font-weight: 900; }

/*===================================================================================
ラインハイト（line-height）
===================================================================================*/
.lh10 { line-height: 1.0 !important; }
.lh11 { line-height: 1.1 !important; }
.lh12 { line-height: 1.2 !important; }
.lh13 { line-height: 1.3 !important; }
.lh14 { line-height: 1.4 !important; }
.lh15 { line-height: 1.5 !important; }
.lh16 { line-height: 1.6 !important; }
.lh17 { line-height: 1.7 !important; }
.lh18 { line-height: 1.8 !important; }
.lh19 { line-height: 1.9 !important; }
.lh20 { line-height: 2.0 !important; }
@media screen and (max-width: 600px) {
  .sp_lh15 { line-height: 1.5; }
}

/*===================================================================================
背景色（background-color）
===================================================================================*/
.bgcol-white01 { background-color: var(--white01); }
.bgcol-black01 { background-color: var(--black01); }
.bgcol-gray01 { background-color: var(--gray01); }
.bgcol-gray02 { background-color: var(--gray02); }
.bgcol-green01 { background-color: var(--green01); }
.bgcol-green02 { background-color: var(--green02) !important; }
.bgcol-orange01 { background-color: var(--orange01); }
.bgcol-beige01 { background-color: var(--beige01); }
.bgcol-blue04 { background-color: var(--blue04); }

/*===================================================================================
ボーダー（border）
===================================================================================*/
.bod-none { border: none; }
.bod-1px-black01 { border: 1px solid var(--black01); }
.bod-1px-black02 { border: 1px solid var(--black02); }
.bod-1px-white01 { border: 1px solid var(--white01); }
.bod-1px-gray01 { border: 1px solid var(--gray01); }
.bod-1px-gray02 { border: 1px solid var(--gray02); }
.bod-2px-black01 { border: 2px solid var(--black01); }
.bod-2px-white01 { border: 2px solid var(--white01); }
.bod-2px-green01 { border: 2px solid var(--green01); }
.bod-2px-orange01 { border: 2px solid var(--orange01); }

/* top */
.bdt-1px-black01 { border-top: 1px solid var(--black01); }
.bdt-1px-black02-dt { border-top: 1px dotted var(--black02); }
.bdt-1px-green01 { border-top: 1px solid var(--green01) !important; }
@media (min-width: 600px) {
  .pc_bdt-1px-white01 { border-top: 1px solid var(--white01) !important; }
  .pc_bdt-1px-green01 { border-top: 1px solid var(--green01) !important; }
}

/* left */
.bdl-1px-black01 { border-left: 1px solid var(--black01); }

/* right */
.bdr-1px-black01 { border-right: 1px solid var(--black01); }

/* bottom */
.bdb-1px-black01 { border-bottom: 1px solid var(--black01); }
.bdb-1px-black02 { border-bottom: 1px solid var(--black02); }

/*===================================================================================
角丸（border-radius）
===================================================================================*/
.bdr10px { border-radius: 10px; }

.bdr50per { border-radius: 50%; }

/*===================================================================================
ポジション（position）
===================================================================================*/
.pos-static { position: static; }
.pos-relative { position: relative; }
.pos-absolute { position: absolute; }
.pos-fixed { position: fixed; }
.pos-sticky { position: sticky; }
.pos-top0 { top: 0; }
.pos-top10px { top: 10px; }
.pos-top20px { top: 20px; }
.pos-top30px { top: 30px; }
.pos-top40px { top: 40px; }
.pos-top50px { top: 50px; }
.pos-left0 { left: 0; }
.pos-left10px { left: 10px; }
.pos-left20px { left: 20px; }
.pos-left30px { left: 30px; }
.pos-left40px { left: 40px; }
.pos-left50px { left: 50px; }
.pos-right0 { right: 0; }
.pos-right10px { right: 10px; }
.pos-right20px { right: 20px; }
.pos-right30px { right: 30px; }
.pos-right40px { right: 40px; }
.pos-right50px { right: 50px; }
.pos-bottom0 { bottom: 0; }
.pos-bottom10px { bottom: 10px; }
.pos-bottom20px { bottom: 20px; }
.pos-bottom30px { bottom: 30px; }
.pos-bottom40px { bottom: 40px; }
.pos-bottom50px { bottom: 50px; }

/*===================================================================================
重なり順（z-index）
===================================================================================*/
/* 正 */
.z-index1 { z-index: 1; }
.z-index2 { z-index: 2; }
.z-index3 { z-index: 3; }
.z-index4 { z-index: 4; }
.z-index5 { z-index: 5; }
.z-index6 { z-index: 6; }
.z-index7 { z-index: 7; }
.z-index8 { z-index: 8; }
.z-index9 { z-index: 9; }
.z-index10 { z-index: 10; }

/* 負 */
.z-index-1 { z-index: -1; }
.z-index-2 { z-index: -2; }
.z-index-3 { z-index: -3; }
.z-index-4 { z-index: -4; }
.z-index-5 { z-index: -5; }
.z-index-6 { z-index: -6; }
.z-index-7 { z-index: -7; }
.z-index-8 { z-index: -8; }
.z-index-9 { z-index: -9; }
.z-index-10 { z-index: -10; }

/*===================================================================================
デコレーション（text-decoration）
===================================================================================*/
.td-none { text-decoration: none; }
.td-underline { text-decoration: underline; }
.td-double { text-decoration: double; }
.td-dashed { text-decoration: dashed; }
.td-dotted { text-decoration: dotted; }
.td-wavy { text-decoration: wavy; }

/*===================================================================================
インデント（text-indent）
===================================================================================*/
.ti-1em { text-indent: 1em; }
.ti-m1em { text-indent: -1em; }

/*===================================================================================
ボタン（button）
===================================================================================*/
.button-typeA { display: inline-block; padding: 1em 1.5em; color: var(--black01); font-size: 1rem; background-color: var(--white01); border: 1px solid var(--black02); line-height: 1.5; transition: 0.75s; }
.button-typeA:hover { color: var(--white01); background-color: var(--orange01); opacity: 0.8; }

/*===================================================================================
見出し（headline）
===================================================================================*/
.headline-typeA { color: var(--black01); }
.hl6.--blue { background: var(--blue04); color: var(--blue03); }
.hl6.--beige { background: var(--beige01); color: var(--beige02); }
.hl6.--orange { background: var(--beige01); color: var(--orange01); }

/*===================================================================================
リスト（list）
===================================================================================*/
.list-typeA .item { padding-left: 1.5em; text-indent: -1.5em; }

/*===================================================================================
テーブル（table）
===================================================================================*/
.table-typeA { width: 100%; border-collapse: collapse; }
.table-typeA th, .table-typeA td { padding: 0.5em; border: 1px solid var(--green01); }
.table-typeA .title01 { color: var(--white01); background: var(--green01); }
.table-typeA .title02 { min-width: 90px; color: var(--green01); background: var(--green02); }
.table-typeA .price { min-width: 90px; }
@media screen and (min-width: 600px) {
  .table-typeA th, .table-typeA td { padding: 1em; }
}
.table-typeB { width: 100%; border-collapse: collapse; }
.table-typeB th, .table-typeB td { display: block; padding: 0.5em; border: 1px solid var(--green01); text-align: center; }
.table-typeB th { color: var(--white01); background: var(--green01); }
.table-typeB td { border-top: none; }

@media screen and (min-width: 600px) {
  .table-typeB th, .table-typeB td { display: table-cell; padding: 1em; }
}

/*===================================================================================
透過（opacity）
===================================================================================*/
.link-opa:hover { opacity: .8; }

/*===================================================================================
テキストアライン（text-align）
===================================================================================*/
.ta-center { text-align: center; }
.ta-left { text-align: left !important; }
.ta-right { text-align: right; }
.ta-justify { text-align: justify; }
@media screen and (min-width: 600px) {
  .pc_ta-center { text-align: center; }
}
@media screen and (max-width: 599px) {
  .sp_ta-center { text-align: center; }
}



/*-----------------------------------------------------------------------------------

Costom（独自で使うもの）

-----------------------------------------------------------------------------------*/
/*--- nav ---*/
@media screen and (min-width: 600px) {
  .gNav ul a:hover, .gNav ul .stay { color: var(--black01); }
  .gNav .parent:hover a{ color: var(--black01); }
}
/*--- 3bees ---*/
.waiting-board iframe { width: 100%; height: 100%; min-height: 235px; }
/*--- page-title ---*/
.pp1ttl { color: var(--black02); }

/*===================================================================================
トップ
===================================================================================*/
@media screen and (min-width: 600px) {
  #index .sec2 .pht2 {
    background: url(images/01_futures_laser@2x.png) no-repeat top center / cover;
  }
}
@media screen and (max-width: 599px) {
  #index .sec2 .pht2 {
    background: url(images/sp_01_futures_laser@2x.png) no-repeat top center / cover;
  }
}
/*--- お知らせ横のボタン ---*/
.sec1 .lstLnk2 a { height: 100%; padding: 1em 1em 1em 50px; line-height: 1; }
.sec1 .lstLnk3 a { justify-content: flex-start; height: 100%; color: #FFF; padding: 1em 1em 1em 50px; background: url(images/recruit-icon.png) no-repeat 15px center #0FA36A; background-size: 30px 30px; transition: opacity 0.75s; line-height: 1; }
@media (any-hover: hover) {
  .sec1 .lstLnk3 a:hover { opacity: .75; }
}

.youtube_1 iframe { width: 100%; height: 100%; aspect-ratio: 16 / 9;}
.sns_box{ display:flex; justify-content: space-between; }
.sns_area{display:flex; justify-content: space-between; align-items: center;}
/*.sns_area{display: grid; grid-template-columns: 80px 80px; gap:30px; justify-content: center; align-items: center;}*/

.sns_box_l{width: 65%;}
.sns_box_r{width: 31%;}

.main_video{ width: 100%;}
.video{width: 100%; height: 100%; vertical-align: bottom;}

.main_video_2{ width: 100%; aspect-ratio: 16/9; }

@media screen and (max-width: 599px) {
.sns_box{ 
   display: block;
  }
.sns_area{text-align: center; justify-content: center;}
.sns_area p{width: 40px;}
.sns_box_l,.sns_box_r{width: 100%;}
   }