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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

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

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

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

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



/*------------------------------------------------------------------
  anchor
------------------------------------------------------------------*/
.anchor{
    padding-top: 120px;
    margin-top: -120px;
    position: relative;
    z-index: -1;
}
@media screen and (max-width:767px){
    .anchor{
        padding-top: 70px;
        margin-top: -70px;
    }
}



/*------------------------------------------------------------------
  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-"]{
    padding-top: var(--section-padding);
}
/* 「bg-」が付くクラスの次のセクションにも padding-top も追加する */
[class*="bg-"] + [class*="section-"],
[class*="treat-ougi-"] + [class*="section-"]{
    padding-top: var(--section-padding);
}
/* 「breadcrumb-wrapper」の次のセクションにも padding-top も追加する */
.breadcrumb-wrapper + [class*="section-"],
.breadcrumb-wrapper + .anchor + [class*="section-"]{
    padding-top: 80px;
}
.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-xlarge,
    .section-xxlarge{
        --section-padding: 120px;
    }
}
@media screen and (max-width:991px){
    .breadcrumb-wrapper + [class*="section-"]{
        padding-top: 60px;
    }
    .section-medium{
        --section-padding: 60px;
    }
    .section-large,
    .section-xlarge,
    .section-xxlarge{
        --section-padding: 80px;
    }
}
@media screen and (max-width:767px){ 
    .breadcrumb-wrapper + [class*="section-"]{
        padding-top: 40px;
    }
    .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;
    }
}

/*------------------------------------------------------------------
  treat
------------------------------------------------------------------*/
[class*="treat-ougi-"]{
    position: relative;
    height: 31px;
    margin: -1px 0;
    border: initial;
    z-index: 10;
}
[class*="treat-ougi-"]::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
}
.treat-ougi-top::after{ background: url(../images/common/treat-ougi-top.svg) repeat-x top;}
.treat-ougi-bottom::after{ background: url(../images/common/treat-ougi-bottom.svg) repeat-x bottom;}
@media screen and (max-width:767px){ 
    [class*="treat-ougi-"]{ height: 21px;}
    [class*="treat-ougi-"]::after{ background-size: 80px;}
}

/*------------------------------------------------------------------
  container
------------------------------------------------------------------*/
.container-wide{
    width: 100%;
    max-width: 1520px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){ 
    .container-wide{
        padding: 0 6vw;
    }
}
@media print{
    .container-wide{
        padding: 0 15px !important;
    }
}

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

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

/* title-english
------------------------------------------------------------------*/
.title-english{
    margin-bottom: 1.5em;
    font-size: 2.5rem;
    line-height: 1;
}
.title-english .en{
    margin-bottom: .2em;
    font-family: var(--en-font);
    font-size: max(.75em,.75rem);
    color: var(--primary-color);
    letter-spacing: .05em;
    line-height: 1;
}
.title-english .jp{
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width:1399px){
    .title-english{ font-size: 2.25rem;}
}
@media screen and (max-width:1199px){
    .title-english{ font-size: 2rem;}
}
@media screen and (max-width:991px){
    .title-english{ font-size: 1.75rem;}
}
@media screen and (max-width:767px){
    .title-english{ font-size: 1.5rem;}
}
@media screen and (max-width:575px){
    .title-english{ font-size: 1.375rem;}
}

/* title-bold 
------------------------------------------------------------------*/
.title-bold{
    margin-bottom: 1.25em;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}

/* 文字サイズ変更 */
.title-bold.large{ font-size: 3rem; margin-bottom: 1em;}
.title-bold.small{ font-size: 1.5rem;}
.title-bold.xsmall{ font-size: 1.25rem;}


@media screen and (max-width:1399px){
    .title-bold.large{ font-size: 2.5rem;}
    .title-bold{ font-size: 1.875rem;}
}
@media screen and (max-width:991px){
    .title-bold.large{ font-size: 2rem;}
    .title-bold{ font-size: 1.75rem;}
    .title-bold.small{ font-size: 1.375rem;}
    .title-bold.xsmall{ font-size: 1.125rem;}
}
@media screen and (max-width:767px){
    .title-bold.large{ font-size: 1.75rem;}
    .title-bold{ font-size: 1.5rem;}
    .title-bold.small{ font-size: 1.25rem;}
    .title-bold.xsmall{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .title-bold.large{ font-size: 1.5rem;}
    .title-bold{ font-size: 1.375rem;}
    .title-bold.small{ font-size: 1.125rem;}
}
@media screen and (max-width:374px){
    .title-bold.large{ font-size: 1.375rem;}
    .title-bold{ font-size: 1.25rem;}
    .title-bold.small{ font-size: 1rem;}
}

/* title-leftline 
------------------------------------------------------------------*/
.title-leftline{
    padding-left: 0.5em;
    margin-bottom: 1em;
    border-left: 0.2em solid var(--primary-color);
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
}
/* 文字サイズ変更 */
.title-leftline.small{ font-size: 1.5rem;}
.title-leftline.xsmall{ font-size: 1.25rem;}
.title-leftline.xxsmall{ font-size: 1rem;}

@media screen and (max-width:1399px){
    .title-leftline{ font-size: 1.625rem;}
}
@media screen and (max-width:991px){
    .title-leftline{ font-size: 1.5rem;}
    .title-leftline.small{ font-size: 1.375rem;}
    .title-leftline.xsmall{ font-size: 1.125rem;}
}
@media screen and (max-width:767px){
    .title-leftline{ font-size: 1.375rem;}
    .title-leftline.small{ font-size: 1.25rem;}
    .title-leftline.xsmall{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .title-leftline{ font-size: 1.25rem;}
    .title-leftline.small{ font-size: 1.125rem;}
}
@media screen and (max-width:374px){
    .title-leftline{ font-size: 1.125rem;}
    .title-leftline.small{ font-size: 1rem;}
    .title-leftline.xsmall{ font-size: 0.875rem;}
    .title-leftline.xxsmall{ font-size: 0.875rem;}
}

/* title-underline 
------------------------------------------------------------------*/
.title-underline{
    padding-bottom: 0.5em;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #bca299;
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
}
/* 文字サイズ変更 */
.title-underline.small{ font-size: 1.5rem;}
.title-underline.xsmall{ font-size: 1.25rem;}
.title-underline.xxsmall{ font-size: 1rem;}

@media screen and (max-width:1399px){
    .title-underline{ font-size: 1.625rem;}
}
@media screen and (max-width:991px){
    .title-underline{ font-size: 1.5rem;}
    .title-underline.small{ font-size: 1.375rem;}
    .title-underline.xsmall{ font-size: 1.125rem;}
    .title-underline.xxsmall{ font-size: 0.875rem;}
}
@media screen and (max-width:767px){
    .title-underline{ font-size: 1.375rem;}
    .title-underline.small{ font-size: 1.25rem;}
    .title-underline.xsmall{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .title-underline{ font-size: 1.25rem;}
    .title-underline.small{ font-size: 1.125rem;}
}
@media screen and (max-width:374px){
    .title-underline{ font-size: 1.125rem;}
    .title-underline.small{ font-size: 1rem;}
    .title-underline.xsmall{ font-size: 0.875rem;}
    .title-underline.xxsmall{ font-size: 0.875rem;}
}


/* title-band 
------------------------------------------------------------------*/
.title-band{
    padding: 0.4em;
    margin-bottom: 1em;
    background: #f7f5f0;
    border-left: 5px solid var(--primary-color);
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
}
/* 文字サイズ変更 */
.title-band.small{ font-size: 1.375rem;}
.title-band.xsmall{ font-size: 1.125rem;}
.title-band.xxsmall{ font-size: 1rem;}

@media screen and (max-width:991px){
    .title-band{ font-size: 1.375rem;}
    .title-band.small{ font-size: 1.25rem;}
    .title-band.xsmall{ font-size: 1.125rem;}
}
@media screen and (max-width:767px){
    .title-band{ font-size: 1.25rem;}
    .title-band.small{ font-size: 1.125rem;}
    .title-band.xsmall{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .title-band{ font-size: 1.125rem;}
    .title-band.small{ font-size: 1rem;}
}
@media screen and (max-width:374px){
    .title-band{ font-size: 1rem;}
    .title-band.small{ font-size: 0.875rem;}
    .title-band.xsmall{ font-size: 0.8125rem;}
    .title-band.xxsmall{ font-size: 0.8125rem;}
}


/* title-caption
------------------------------------------------------------------*/
.title-caption{
    margin-bottom: 10px;
    font-family: var(--en-font);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width:991px){
    .title-caption{
        margin-bottom: 5px;
        font-size: 1rem;
    }
}
/*------------------------------------------------------------------
  btn   
------------------------------------------------------------------*/

/*  btn
------------------------------------------------------------------*/
.btn{
    position: relative;
    display: inline-block;
    min-width: 250px;
    padding: 1.25em 3em;
    background: var(--black-color);
    border-radius: 2em;
    color: #fff;
    text-align: center;
    line-height: 1;
    transition: .2s;
    z-index: 1;
}
.btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}

/* ボタン色変更 */
.btn.accent{ background: var(--accent-color);}

/* ボタンサイズ変更 */
.btn.small{ min-width: 180px; padding: 1em 3em; font-size: .875rem;}
.btn.large{ min-width: 300px; font-size: 1.125rem;}

/* ボタンアイコン変更 */
.btn.i-noarrow::after{ display: none;}
.btn.i-prev::after{ content: "\f137"; right: initial; left: 1em;}
.btn.i-location::before{ content: "\f3c5"; font-family: "Font Awesome 6 Free"; font-weight: bold; margin-right: 10px;}
.btn.i-location::after{ display: none;}

/* ホバー時動作 */
@media (hover:hover) {
    /* 通常 */
    .btn:hover{ background: var(--accent-color);}
    .btn:hover::after{ right: .3em;}
    
    /* ボタン色変更 */
    .btn.accent:hover{ background: #ffc904;}

    /* ボタンアイコン「i-prev」 */
    .btn.i-prev:hover::after{ right: initial; left: .3em;}
}
@media screen and (max-width:991px){
    .btn.large{ min-width: 250px; font-size: 1rem;}
}

/*  btn-file
------------------------------------------------------------------*/
.btn-file{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 2em;
    background: var(--primary-light-color);
    border-radius: 2.5em;
    text-align: center;
    line-height: 1.3;
    transition: .2s;
}
.btn-file::before{
    display: inline-block;
    margin-right: 5px;
    content: url(../img/etc.gif);
    transition: .2s;
}
/* pdf */
.btn-file.pdf::before{
    content: url(../img/pdf.gif);
}
/* word */
.btn-file.word::before{
    content: url(../img/word.gif);
}
/* excel */
.btn-file.excel::before{
    content: url(../img/excel.gif);
}
/* ホバー時動作 */
@media (hover:hover) {
    .btn-file:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .btn-file{
        width: 100%;
        padding: 0.8em 1em;
    }
}

/*  btn-category
------------------------------------------------------------------*/
.btn-category{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.5em;
    padding: 0 1em;
    background: #e0e0e0;
    border-radius: 2em;
    transition: .2s ease-out;
    font-size: 0.875rem;
    color: #999;
    text-align: center;
    line-height: 1;
}
/* アクティブ時動作 */
.btn-category.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .btn-category:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media (hover:none) {
    .btn-category:active{
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .btn-category{
        font-size: 0.75rem;
    }
}

/*  btn-block
------------------------------------------------------------------*/
.btn-block{
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.5em 48px 1.5em 2.5em;
    border-bottom: 1px solid #bca299;
    transition: .2s ease-out;
    line-height: 1.2;
}
.btn-block::before{
    position: absolute;
    top: 50%;
    left: .5em;
    transform: translateY(-50%);
    display: block;
    width: 1.5em;
    aspect-ratio: 3 / 4;
    margin-right: 10px;
    content: "";
}
.btn-block.pdf::before{
    background: url(../img/pdf.png) no-repeat center / contain;
}
.btn-block.word::before{
    background: url(../img/word.png) no-repeat center / contain;
}
.btn-block.excel::before{
    background: url(../img/excel.png) no-repeat center / contain;
}
.btn-block.detail::before{
    background: url(../img/detail.png) no-repeat center / contain;
}
.btn-block.gform::before{
    background: url(../img/gform.png) no-repeat center / contain;
}
.btn-block.price::before{
    background: url(../img/price.png) no-repeat center / contain;
}
.btn-block::after{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.625rem;
    font-weight: bold;
    transition: .3s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .btn-block:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    .btn-block:hover::after{
        transform: translateY(-50%) scale(0.8);
        background: var(--black-color);
        border-color: var(--black-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .btn-block{
        padding-right: 30px;
        font-size: 0.875rem;
    }
    .btn-block::after{
        width: 28px;
    }
}

/*  btn-card
------------------------------------------------------------------*/
.btn-card{
    display: flex;
    align-items: center;
    padding: 10px 16px 10px 10px;
    column-gap: 16px;
    border: 1px solid #ccc;
    overflow: hidden;
    transition: .2s ease-out;
}
.btn-card .image{
    flex-shrink: 0;
    width: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.btn-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.btn-card .detail{
    width: 100%;
}
.btn-card .caption{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: .75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.btn-card .title{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1;
}
.btn-card .arrow{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    border: 1px solid #aaa;
    border-radius: 50%;
    font-size: 10px;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .btn-card:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    .btn-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.7);
    }
    .btn-card:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .btn-card{
        padding: 8px 12px 8px 8px;
        column-gap: 12px;
    }
    .btn-card .image{
        width: 60px;
    }
    .btn-card .title{
        font-size: 1rem;
    }
    .btn-card .arrow{
        width: 32px;
    }
}

/*------------------------------------------------------------------
  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: #cc0000;
}

/* 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(--accent-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;
}
/* 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 #bca299;
}
.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-box ----------------------------------------*/
.table01-box{
    padding: 8px 30px;
    background: #fff;
    border-radius: 10px;
}
@media screen and (max-width:575px){
    .table01-box{
        padding: 8px 16px;
    }
}
/* table01 ----------------------------------------*/
.table01{
    width: 100%;
    line-height: 1.5;
}
.table01 > tbody > tr > th,
.table01 > tbody > tr > td{
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #bca299;
    background: #fff;
}
.table01 > tbody > tr > th{
    width: 28%;
}
.table01-box .table01 > tbody > tr:last-of-type > th,
.table01-box .table01 > tbody > tr:last-of-type > td{
    border-bottom: initial;
}
@media screen and (max-width:991px){
    .table01 > tbody > tr > th,
    .table01 > tbody > tr > td{
        display: block;
    }
    .table01 > tbody > tr > th{
        border-bottom: initial;
        width: 100%;
        padding: 10px 0 0;
    }
    .table01 > tbody > tr > td{
        padding: 5px 0 10px;
    }
}

/* table02 ----------------------------------------*/
.table02{
    width: 100%;
}
.table02 > tbody > tr > th,
.table02 > tbody > tr > td{
    padding: 12px 15px;
    border: 1px solid #ccc;
    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 #aaa;
    font-weight: bold;
}
@media screen and (max-width:991px){
    .table02{
        border-bottom: 1px solid #ccc;
    }
    .table02 > tbody > tr > th,
    .table02 > tbody > tr > td{
        display: block;
        border-bottom: initial;
    }
    .table02 > tbody > tr > th{
        width: 100%;
        padding: 10px;
    }
    .table02 > tbody > tr > td{
        padding: 10px;
    }
}

/* table03 ----------------------------------------*/
.table03{
    width: 100%;
}
.table03 > thead > tr > th,
.table03 > tbody> tr > th,
.table03 > tbody> tr > td{
    padding: 0.7em 1em;
    border: 1px solid #bca299;
    text-align: center;
    line-height: 1.2;
    vertical-align: middle;
}
.table03 > thead > tr > th{
    background: var(--black-color);
    color: #fff;
}
.table03 > tbody> tr > th{
    background: var(--primary-light-color);
    text-align: left;
}
.table03 > tbody> tr > td{
    background: #fff;
}
@media screen and (max-width:767px){
    .table03 > thead > tr > th,
    .table03 > tbody > tr > td{
        padding: 0.7em 0.5em;
    }
}

/* subtable01 ----------------------------------------*/
.subtable01 > tbody > tr > th,
.subtable01 > tbody > tr > td{
    padding-bottom: 4px;
    vertical-align: top;
    font-size: .875rem;
}
.subtable01 > tbody > tr:last-of-type > th,
.subtable01 > tbody > tr:last-of-type > td{
    padding-bottom: 0;
}
.subtable01 > tbody> tr > th{
    padding-right: 1em;
    font-weight: normal;
    white-space: nowrap;
}

/* subtable02 ----------------------------------------*/
.subtable02{
    width: 100%;
}
.subtable02 > tbody > tr > th,
.subtable02 > tbody > tr > td{
    padding: .7em 0;
    border-bottom: 1px dashed #ccc;
    vertical-align: top;
    font-size: .875rem;
}
.subtable02 > tbody > tr > th{
    padding-right: 1em;
    white-space: nowrap;
}

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

/*------------------------------------------------------------------
  img-radius
------------------------------------------------------------------*/
.img-radius{
    overflow: hidden;
    border-radius: 15px;
}
@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-wide
------------------------------------------------------------------*/
.img-wide{
    height: 300px;
    overflow: hidden;
}
.img-wide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .img-wide{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/*------------------------------------------------------------------
  catalog
------------------------------------------------------------------*/
.catalog-text a{
    color: var(--primary-color);
    text-decoration: underline;
    transition: .2s;
}
.catalog-text a:hover{
    color: var(--accent-color);
}

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

/* link-text ----------------------------------------*/
a.link-text{
    color: #318bd8;
    text-decoration: underline;
    transition: .2s;
}
a.link-text:hover{
    color: var(--accent-color);
}
a.link-img img{ transition: .2s;}
a.link-img:hover img{ opacity: 0.6;}

/* link-external-text ----------------------------------------*/
a.link-external-text{
    color: #318bd8;
    text-decoration: underline;
    transition: .2s ease-out;
}
a.link-external-text::after{
    margin-left: 5px;
    content: "\f08e";
    font-family: "Font Awesome 6 Free";
    font-size: 0.85em;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.link-external-text:hover{
        color: var(--accent-color);
    }
}

/*------------------------------------------------------------------
  photo-ofi
------------------------------------------------------------------*/
.photo-ofi {
    height: 0;
    display: block;
    overflow: hidden;
    position: relative;
    padding-bottom: 66.66666%;
}
.photo-ofi.wide{
    padding-bottom: 56.25%;
}
.photo-ofi.narrow{
    padding-bottom: 75%;
}
.photo-ofi.square {
    padding-bottom: 100%;
}
.photo-ofi img {
    max-width: inherit;
    max-height: inherit;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    font-family: 'object-fit: contain;';
    position: absolute;
    left: 0;
    top: 0;
}
.photo-ofi.fit{
    height: 100%;
    background: transparent;
}
.photo-ofi.fit img{
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

/*------------------------------------------------------------------
  zoom-photo
------------------------------------------------------------------*/
.zoom-photo {
    position: relative;
    display: block;
    z-index: 1;
}
.zoom-photo::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 1.25rem;
    color: #fff;
    z-index: 2;
}
.zoom-photo::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    content: "";
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .zoom-photo:hover::before{
        opacity: 1;
        visibility: visible;
    }
    .zoom-photo:hover::after{
        opacity: 0.6;
        visibility: visible;
    }
}
@media screen and (max-width:767px){
    .zoom-photo{
        font-size: 12px;
    }
}

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

/* required ----------------------------------------*/
.required {
    display: inline-block;
    flex-shrink: 0;
    background-color: var(--red-color);
    padding: 5px 8px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
}
th .required{
    float: right;
}

/* placeholder ----------------------------------------*/
.placeholder{
    padding-left: 2em;
    margin-top: 4px;
    font-size: .875rem;
    color: #8d7c77;
    line-height: 1.4;
    text-indent: -2em;
}

/* policy ----------------------------------------*/
.policy{
    height: 300px;
    padding: 15px;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid #666;
    overflow-y: scroll;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* form-style ----------------------------------------*/
.form-xs { width: 150px;}
.form-s { width: 200px;}
.form-m { width: 300px;}
.form-l { width: 500px;}
.form-xl { width: 100%;}
.form-order{ width: 120px;}
.form-year{ width: 120px;}
.form-date{ width: 60px; text-align: center;}
.form-h { width: 100%; min-height: 150px; resize: none;}
@media screen and (max-width: 991px) {
    .form-xs, .form-s, .form-m, .form-l, .form100 {
        width: 100%;
    }
    .form-h {min-height: 100px;}
    .form-order{ width: 80px;}
    .form-year{ width: 100px;}
    .form-date{ width: 60px;}
}

/* select-box ----------------------------------------*/
.select-box {
    position: relative;
    display: inline-block;
}
.select-box::after {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    pointer-events: none;
}
@media screen and (max-width: 991px) {
    .select-box {
        display: block;
    }
    .select-box.date {
        display: inline-block;
    }
}

/* radio ----------------------------------------*/
.radio{
    position:relative;
    display: inline-block;
    padding-left: 1.5em;
}
.radio input {
    display: none;
}
.radio span::before{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    z-index: 1;
}
.radio input:checked + span::before{
    content: "\f192";
    color: var(--primary-color);
}

@media screen and (max-width:991px){
    .radio{
        display: block;
    }
}
/* radio-list ----------------------------------------*/
.radio-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
}
@media screen and (max-width:991px){
    .radio-list{
        flex-direction: column;
    }
    .radio-list li {
        padding: 8px;
        background: #fff;
        border: 1px solid #bca299;
        border-radius: 3px;
    }
}

/* radio-list-1row ----------------------------------------*/
.radio-list-1row{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
@media screen and (max-width:991px){
    .radio-list-1row li {
        padding: 8px;
        background: #fff;
        border: 1px solid #bca299;
        border-radius: 3px;
    }
}

/* checkbox ----------------------------------------*/
.checkbox{
    position: relative;
    display: inline-block;
    padding-left: 1.5em;
}
.checkbox input{
    display: none;
}
.checkbox input + span::before{
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    margin-right: 5px;
    content: "\f0c8";
    font-family: "Font Awesome 6 Free";
}
.checkbox input:checked + span::before{
    content: "\f14a";
    color: var(--primary-color);
}
@media screen and (max-width:991px){
    .checkbox{
        display: block;
    }
}

/* checkbox-list ----------------------------------------*/
.checkbox-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}
@media screen and (max-width:991px){
    .checkbox-list{
        flex-direction: column;
    }
    .checkbox-list li {
        padding: 8px;
        background: #fff;
        border: 1px solid #bca299;
        border-radius: 3px;
    }
}

/* checkbox-list-1row ----------------------------------------*/
.checkbox-list-1row{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
@media screen and (max-width:991px){
    .checkbox-list-1row li {
        padding: 8px;
        background: #fff;
        border: 1px solid #bca299;
        border-radius: 3px;
    }
}