@charset "UTF-8";

/*2*/
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) , print { /*PC&TB*/
}

/*3*/
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) and ( max-width:1023px) { /*TB*/
}
@media screen and (min-width:1024px) , print { /*PC*/
}

/*TB*/
@media screen and (max-width:1023px) { /*TB&SP*/
}
@media screen and (min-width:1024px) , print { /*PC*/
}

/* contentsWidth */
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) and ( max-width:1059px) { /*TB*/
}
@media screen and (min-width:1060px) , print { /*PC*/
}

/************************************************************/
/*   基本   */
/************************************************************/
:root {
    /* カラー */
    --brown01: #fbf7f3;
    --brown02: #e9e0d6;
    --brown03: #c7b299;
    --brown04: #8C6239;
    --brown05: #573A0C;
    --red01: #ed1c24;
    --red02: #c1272d;
    --orange01: #f7931e;
    --green01: #39b54a;
    --green02: #4a7937;
    --blue01: #29abe2;
    --blue02: #59719c;
}
/* フォント */
.fontcolor-red{
    color: var(--red02);
}
.font-semibold{
    font-weight: 600;
}

/* リンク設定 */
.ho:hover{
    opacity: 0.8;
}
.hbd{
    position: relative;
}
.hbd::after{
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scale(0,1);
    transform-origin: right top;
    transition: transform 0.3s ease;
}
.hbd:hover::after{
    transform: scale(1,1);
    transform-origin: left top;
}

/* 動画 */
.mvi_box{
    width: 100%;
    aspect-ratio: 16 / 9;
    height: min-content;
}
.mvi_box iframe{
    width: 100%; height: 100%;
}

/* URL折り返し */
.url_wb{
    overflow-wrap: anywhere;
    word-break: break-word;
}

/************************************************************/
/*   wordpress   */
/************************************************************/
/* 区切り線 */
/* 共通スタイル */
hr.wp-block-separator {
  border: none;
  border-bottom: 2px solid currentColor;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.75em;
  margin-top: 1.75em;
  opacity: 0.4;
}

/* has-alpha-channel-opacity クラス付きの場合 */
hr.wp-block-separator.has-alpha-channel-opacity {
  opacity: 0.4;
}

/* wide（横いっぱい） */
hr.wp-block-separator.is-style-wide {
  border-bottom-width: 1px;
  width: 100%;
}

/* dots（点線スタイル） */
hr.wp-block-separator.is-style-dots {
  background: none;
  border: none;
  text-align: center;
  height: auto;
  line-height: 1;
}

hr.wp-block-separator.is-style-dots::before {
  color: currentColor;
  content: '···';
  font-size: 1.5em;
  letter-spacing: 1em;
  padding-left: 1em;
}

/* リスト */
ul.wp-block-list{
    list-style: disc;
    padding-left: 1.5rem;
}
ol.wp-block-list{
    list-style: decimal;
    padding-left: 1.5rem;
}

/* 余白、リンク */
.wp_blockeditor{
    /* display: grid;
    gap: 1rem; */
}
.wp-block-column{
    /* display: grid;
    gap: 1rem; */
}
.wp_blockeditor a{
    color: var(--blue01);
    text-decoration: underline;
}
.wp_blockeditor a:hover{
    opacity: 0.8;
}

/************************************************************/
/*   ヘッダー   */
/************************************************************/
/* 枠組み・ロゴ */
@media screen and (max-width:767px) { /*SP*/
    .HD_set{
        width: 100%;
        height: 120px;
        padding: 10px 10px 10px 30px;
        display: flex;
        align-items: center;
    }
    .HD_logo_box{
        width: 50vw;
		max-width: 365px;
    }
    .HD_logo_box a{
        display: block;
    }
    .HD_logo_text{
        display: none;
    }
}
@media screen and (min-width:768px) and ( max-width:1059px) { /*TB*/
    .HD_set{
        width: 100%;
        /* padding: 80px 0 30px; */
        padding: 7.55vw 0 2.83vw;
        display: grid;
        justify-items: center;
    }
    .HD_logo_box{
		/* width: 446px; */
		width: 42.08vw;
        /* margin: 0 0 40px; */
        margin: 0 0 3.77vw;
    }
    .HD_logo_box a{
        display: block;
    }
    .HD_logo_text{
        /* width: 442px; */
        width: 41.70vw;
        /* margin: 0 0 20px; */
        margin: 0 0 1.89vw;
    }
}
@media screen and (min-width:1060px) , print { /*PC*/
    .HD_set{
        width: 100%;
        padding: 80px 0 30px;
        display: grid;
        justify-items: center;
    }
    .HD_logo_box{
		width: 446px;
        margin: 0 0 40px;
    }
    .HD_logo_box a{
        display: block;
    }
    .HD_logo_text{
        width: 442px;
        margin: 0 0 20px;
    }
}

/* ナビ */
@media screen and (max-width:767px) { /*SP*/
    .HD_box{
        position: fixed;
        z-index: 1000;
		right: 0;
		top: 0;
        width: 100%;
        height: 100%;
		padding: 0px 30px 30px;
        background-color: #333;
        transform: translateX(100%);
		transition: var(--transition);
    }
    .HD_box._is_open{
        transform: translateX(0%);
    }
    .HD_inner_logo{
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
    }
    .HD_inner_logo a{
        width: 50vw;
		max-width: 365px;
    }
    .HD_nav_set{
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        width: 100%;
		display: block;
		overflow-y: auto;
		height: calc(100% - 120px);
		padding: 0px 20px;
    }
    .HD_nav_box{
        border-bottom: 1px solid #fff;
    }
    .HD_nav01{
        padding: 10px 0px;
        font-size: var(--font19);
        color: #fff;
        display: grid;
        grid-template-columns: 1fr 20px;
        gap: 10px;
    }
    .HD_nav01::after{
        content: '＞';
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    .HD_box{
    }
    .HD_inner_logo{
        display: none;
    }
    .HD_nav_set{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        border-left: 1px solid #000;
    }
    .HD_nav_box{
        border-right: 1px solid #000;
    }
    .HD_nav01{
        display: block;
        padding: 0px 10px;
        font-size: var(--font16);
    }
    .HD_nav01:hover{
        background-color: var(--brown02);
    }
}

/* ハンバーガーメニュー */
@media screen and (max-width:767px) { /*SP*/
    #HD_SP_open{
        position: fixed;
		z-index: 2000;
		top: 30px;
		right: 15px;
        width: 60px;
        height: 60px;
		padding: 15px 10px;
        display: grid;
        align-content: space-between;
		background-color: rgba(255,255,255,0.7);
		border-radius: 10px;
        cursor: pointer;
    }
    #HD_SP_open span{
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        transition: var(--transition);
    }
    #HD_SP_open._is_open{
		background-color: rgba(255,255,255,0.0);
    }
    #HD_SP_open._is_open span:nth-of-type(1) {
		transform: translateY(14px) rotate(-135deg);
		background-color: #fff;
    }
    #HD_SP_open._is_open span:nth-of-type(2) {
		opacity: 0;
    }
    #HD_SP_open._is_open span:nth-of-type(3) {
		transform: translateY(-14px) rotate(135deg);
		background-color: #fff;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #HD_SP_open{
        display: none;
    }
}

/************************************************************/
/*   フッター - 共通   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .FT_set{
        width: 100%;
        padding: 60px 0 30px;
        display: grid;
        justify-items: center;
    }
    .FT_logo{
        width: 47px;
        margin: 0 0 30px;
    }
    .FT_navi_set{
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 10px;
    }
    .FT_navi_set li::before{
        content: '▶';
        font-size: var(--font14);
    }
    .FT_navi_box{
        font-size: var(--font14);
    }
    .FT_copy{
        font-size: var(--font12);
        margin: 20px 0 0;
        text-align: center;
    }
}
@media screen and (min-width:768px) and ( max-width:1059px) { /*TB*/
.FT_set{
    width: 100%;
    /* padding: 90px 0 60px; */
    padding: 8.49vw 0 5.66vw;
    display: grid;
    justify-items: center;
}
.FT_logo{
    /* width: 47px; */
    width: 4.43vw;
    /* margin: 0 0 60px; */
    margin: 0 0 5.66vw;
}
.FT_navi_set{
    width: 100%;
    display: flex;
    justify-content: center;
    /* gap: 10px; */
    gap: 0.94vw;
}
.FT_navi_set li::before{
    content: '▶';
}
.FT_copy{
    font-size: var(--font12);
    /* margin: 10px 0 0; */
    margin: 0.94vw 0 0;
}
}
@media screen and (min-width:1060px) , print { /*PC*/
    .FT_set{
        width: 100%;
        padding: 90px 0 60px;
        display: grid;
        justify-items: center;
    }
    .FT_logo{
        width: 47px;
        margin: 0 0 60px;
    }
    .FT_navi_set{
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    .FT_navi_set li::before{
        content: '▶';
    }
    .FT_copy{
        font-size: var(--font12);
        margin: 10px 0 0;
    }
}

/************************************************************/
/*   ページトップボタン   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    #pagetop{
        position: fixed;
        z-index: 100;
        bottom: 20px;
        right: 15px;
        padding: 10px 10px;
        background-color: #333;
        border-radius: 5px;
        font-size: var(--font13);
        color:#fff;
        opacity: 0.8;
    }
    #pagetop:hover{
	    background-color: #666;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #pagetop{
        position: fixed;
        z-index: 100;
        bottom: 60px;
        right: 40px;
        padding: 15px 10px;
        background-color: #333;
        border-radius: 5px;
        color:#fff;
        opacity: 0.8;
    }
    #pagetop:hover{
	    background-color: #666;
    }
}