@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

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

/*------------------------------------------------------------------
  container
------------------------------------------------------------------*/
.container,
.container-fluid{
    width: 100%;
    max-width: initial;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (min-width:768px){
    .container,
    .container-fluid{
        padding-left: 60px;
        padding-right: 60px;
    }
}
@media screen and (min-width:1200px){
    .container{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media print{
    .container,
    .container-fluid{
        padding: 0 30px !important;
    }
}

/*------------------------------------------------------------------
  section
------------------------------------------------------------------*/
/* 「section-」を含むクラスの padding-bottom は変数「--section-padding」で定義 */
[class*="section-"]{
    position: relative;
    --section-padding: 0;
    padding-bottom: var(--section-padding);
    z-index: 1;
}
/* 「section-」に「bg-」から始まる背景色を定義するクラスを付けた場合は padding-top も追加する */
[class*="section-"][class*="bg-"],
[class*="bg-"] + [class*="section-"],
.page-top + [class*="section-"]{
    padding-top: var(--section-padding);
}

.section-xsmall{ --section-padding: 40px;}
.section-small{ --section-padding: 60px;}
.section-medium{ --section-padding: 80px;}
.section-large{ --section-padding: 100px;}
.section-xlarge{ --section-padding: 120px;}
.section-xxlarge{ --section-padding: 150px;}
@media screen and (max-width:1399px){
    .section-xxlarge{
        --section-padding: 120px;
    }
}
@media screen and (max-width:1199px){
    .section-medium{
        --section-padding: 60px;
    }
    .section-large,
    .section-xlarge,
    .section-xxlarge{
        --section-padding: 80px;
    }
}
@media screen and (max-width:767px){ 
    .section-xsmall{
        --section-padding: 30px;
    }
    .section-large,
    .section-xlarge,
    .section-xxlarge{
        --section-padding: 60px;
    }
    .breadcrumb-wrapper + [class*="section-"]{
        padding-top: 40px;
    }
}
@media print {
    .section-xlarge{
        --section-padding: 100px;
    }
    .section-xxlarge{
        --section-padding: 100px;
    }
}

/*------------------------------------------------------------------
  background
------------------------------------------------------------------*/
.bg-white{
    position: relative;
    background-color: #fff !important;
    z-index: 1;
}
.bg-primary-light{
    position: relative;
    background-color: var(--primary-light-color) !important;
    z-index: 1;
}

/*------------------------------------------------------------------
  title
------------------------------------------------------------------*/

/* title-english
------------------------------------------------------------------*/
.title-english{
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    z-index: 1;
}
.title-english .en{
    font-family: var(--en-font);
    font-size: 150px;
    font-weight: 600;
    color: var(--primary-light-color);
    line-height: .8;
}
.title-english .jp{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .title-english .en{
        font-size: 100px;
    }
    .title-english .jp{
        font-size: 18px;
    }
}
@media screen and (max-width:767px){
    .title-english .en{
        font-size: 60px;
    }
    .title-english .jp{
        font-size: 16px;
    }
}

/* title-bold 
------------------------------------------------------------------*/
.title-bold{
    margin-bottom: 1em;
    font-size: 30px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .title-bold{ font-size: 27px;}
}
@media screen and (max-width:575px){
    .title-bold{ font-size: 23px;}
}

/* title-band 
------------------------------------------------------------------*/
.title-band{
    padding: 1em;
    margin-bottom: 14px;
    background: var(--primary-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
}

/*------------------------------------------------------------------
  btn   
------------------------------------------------------------------*/

/*  btn
------------------------------------------------------------------*/
.btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    min-width: 300px;
    padding: 1em 2em;
    color: #fff;
    text-align: center;
    line-height: 1.1;
    transition: .2s ease-out;
    z-index: 1;
}
.btn::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2em;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
.btn .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 16px;
    height: 16px;
    column-gap: 16px;
    overflow: hidden;
    transition: .4s ease-out;
    z-index: 1;
}
.btn .arrow::before,
.btn .arrow::after{
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/common/icon-arrow-white.svg) no-repeat center / contain;
    content: "";
    flex-shrink: 0;
    transform: translateX(-200%);
    transition: .4s ease-out;
}
.btn .arrow::before{
    opacity: 0;
}
.btn .arrow::after{
    opacity: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .btn:hover::after{ 
        transform: scale(1.1);    
    }
    .btn:hover .arrow::before,
    .btn:hover .arrow::after{
        transform: translateX(0);
    }
    .btn:hover .arrow::before{
        opacity: 1;
    }
    .btn:hover .arrow::after{
        opacity: 0;
    }
}
@media (hover:none) {
    .btn:active::after{ 
        transform: scale(1.1);    
    }
    .btn:active .arrow::before,
    .btn:active .arrow::after{
        transform: translateX(0);
    }
    .btn:active .arrow::before{
        opacity: 1;
    }
    .btn:active .arrow::after{
        opacity: 0;
    }
}
@media screen and (max-width:575px){
    .btn{
        width: 100%;
    }
}

/*------------------------------------------------------------------
  list-style
------------------------------------------------------------------*/

/* list-disc ----------------------------------------*/
.list-disc{
    line-height: 1.5;
}
.list-disc > li{
    position: relative;
    padding-left: 1em;
}
.list-disc > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "・";
}

/* list-decimal ----------------------------------------*/
.list-decimal{
    line-height: 1.5;
}
.list-decimal > li {
    position: relative;
    padding-left: 1.3em;
	counter-increment: cnt;
}
.list-decimal > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: ""counter(cnt)".";
}

/* list-bracket ----------------------------------------*/
.list-bracket{
    line-height: 1.5;
}
.list-bracket > li{
    position: relative;
    padding-left: 2em;
	counter-increment: cnt;
}
.list-bracket > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "("counter(cnt)")";
}

/* list-asterisk ----------------------------------------*/
.list-asterisk{
    line-height: 1.5;
}
.list-asterisk > li{
    position: relative;
    padding-left: 1.25em;
}
.list-asterisk > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※";
}

/* list-asterisk-bracket ----------------------------------------*/
.list-asterisk-bracket{
    line-height: 1.5;
}
.list-asterisk-bracket > li{
    position: relative;
    padding-left: 2em;
	counter-increment: cnt;
}
.list-asterisk-bracket > li::before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "※"counter(cnt)"";
    color: var(--red-color);
}

/* list-check ----------------------------------------*/
.list-check{
    line-height: 1.5;
}
.list-check > li{
    position: relative;
    padding-left: 1.5em;
}
.list-check > li::before{
    position: absolute;
    top: 0.05em;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
}
/* list-block ----------------------------------------*/
.list-block{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    line-height: 1;
    --letter-spacing: 0;
}
.list-block li{
    padding: 0.5em 0.8em;
    background: #e0e0e0;
    border-radius: 4px;
}
/* list-block-white ----------------------------------------*/
.list-block-white{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    line-height: 1;
    --letter-spacing: 0;
}
.list-block-white li{
    padding: 0.5em 0.8em;
    background: #fff;
    border-radius: 4px;
}
/* list-indent ----------------------------------------*/
.list-indent{
    line-height: 1.5;
}
.list-indent > li{
    padding-left: 1em;
    text-indent: -1em;
}

/* list-line-dashed ----------------------------------------*/
.list-line-dashed > li{
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px dashed #bbb;
}
.list-line-dashed > li:last-of-type{
    margin-bottom: 0;
}

/*------------------------------------------------------------------
  list-margin
------------------------------------------------------------------*/
.list-margin-small > li{ margin-bottom: 0.7em;}
.list-margin-medium > li{ margin-bottom: 1em;}
.list-margin-large > li{ margin-bottom: 1.3em;}

.list-margin-small > li:last-of-type,
.list-margin-medium > li:last-of-type,
.list-margin-large > li:last-of-type{ margin-bottom: 0;}


/*------------------------------------------------------------------
  table
------------------------------------------------------------------*/

/* wrap-table ----------------------------------------*/
.wrap-table{
    overflow-x: auto;
}
@media screen and (max-width:575px){
    .wrap-table table{
        width: 600px;
    }
}
/* table01 ----------------------------------------*/
.table01{
    width: 100%;
    line-height: 1.5;
}
.table01 > tbody > tr > th,
.table01 > tbody > tr > td{
    padding: 1em;
    vertical-align: middle;
    border-bottom: 1px solid #bec8d3;
}
.table01 > tbody > tr > th{
    width: 28%;
    background: var(--primary-color);
    color: #fff;
}
.table01 > tbody > tr > td{
    background: var(--primary-light-color);
}
@media screen and (max-width:991px){
    .table01 > tbody > tr > th,
    .table01 > tbody > tr > td{
        display: block;
        padding: .7em;
    }
    .table01 > tbody > tr > th{
        border-bottom: initial;
        width: 100%;
    }
}

/* table02 ----------------------------------------*/
.table02{
    width: 100%;
}
.table02 > tbody > tr > th,
.table02 > tbody > tr > td{
    padding: 1em;
    border: 1px solid #b6bec8;
    vertical-align: middle;
    line-height: 1.4;
}
.table02 > tbody > tr > th{
    width: 30%;
    background: #efefef;
}
.table02 > tbody > tr > td{
    background: #fff;
}
.table02 .table-title{
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #b6bec8;
    font-weight: bold;
}
@media screen and (max-width:991px){
    .table02{
        border-bottom: 1px solid #b6bec8;
    }
    .table02 > tbody > tr > th,
    .table02 > tbody > tr > td{
        display: block;
        border-bottom: initial;
    }
    .table02 > tbody > tr > th{
        width: 100%;
        padding: .7em;
    }
    .table02 > tbody > tr > td{
        padding: .7em;
    }
}

/*------------------------------------------------------------------
  box
------------------------------------------------------------------*/
[class^="box-"]{
    position: relative;
    padding: 60px;
    border-radius: 10px;
    z-index: 1;
}
[class^="box-"].small{
    padding: 30px;
}
[class^="box-"].xsmall{
    padding: 20px;
}
[class^="box-"].xxsmall{
    padding: 15px 0;
}
.box-white{
    background: #fff;
}
.box-gray{
    background: #efefef;
}
.box-primary-light{
    background: var(--primary-light-color);
}
.box-line{
    background: #fff;
    border: 1px solid var(--primary-color);
}
@media screen and (max-width:991px){
    [class^="box-"],
    [class^="box-"].small{
        padding: 36px 30px;
    }
}
@media screen and (max-width:575px){
    [class^="box-"],
    [class^="box-"].small{
        padding: 36px 20px;
    }
}

/*------------------------------------------------------------------
  img-radius
------------------------------------------------------------------*/
.img-radius{
    overflow: hidden;
    border-radius: 20px;
}
@media screen and (max-width:575px){
    .img-radius{
        border-radius: 10px;
    }
}

/*------------------------------------------------------------------
  img-fit
------------------------------------------------------------------*/
.img-fit{
    height: 100%;
    overflow: hidden;
}
.img-fit img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/*------------------------------------------------------------------
  link
------------------------------------------------------------------*/

/* link-text ----------------------------------------*/
a.link-text{
    color: #727171;
    text-decoration: underline;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.link-text:hover{ color: var(--primary-color);}
}
@media (hover:none) {
    a.link-text:active{ color: var(--primary-color);}
}

/* link-external-text ----------------------------------------*/
a.link-external-text{
    color: #727171;
    text-decoration: underline;
    transition: .2s ease-out;
}
a.link-external-text::after{
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 5px;
    background: url(../images/common/icon-external.svg) no-repeat center / cover;
    filter: brightness(0) saturate(100%) invert(81%) sepia(52%) saturate(3972%) hue-rotate(120deg) brightness(92%) contrast(80%);
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    a.link-external-text:hover{ color: var(--primary-color);}
}
@media (hover:none) {
    a.link-external-text:active{ color: var(--primary-color);}
}

/*------------------------------------------------------------------
  form
------------------------------------------------------------------*/
