/* CSS関数設定 */
:root {
/* カラーパレット */
--WHITE: #FFFFFF;
--WHITE_OP50: rgba(255, 255, 255, 0.5);
--BLACK: #000000;
--BLACK_OP50: rgba(0, 0, 0, 0.5);

--GRAY01: #F0F0F0;
--GRAY02: #A7A7A7;

--DARK01: #240000;
--dark01: #240000;

--orange01: #C4842D;
--orange01-opacity: rgba(196,132,45,.5);
--orange02: #EFECE7;
--orange03: #FAF6EC;

--red01: #A20000;

--blue01: #0064A2;

/* テキストカラー */
--TXT_COLOR_BASE: var(--DARK01);
--TXT_COLOR_WHITE: var(--WHITE);

/* 共通角丸 */
--COMMON_BDRS_S: 5px;
--COMMON_BDRS_M: 10px;
--COMMON_BDRS_L: 20px;

/* 共通ボックス影 */
--COMMON_BXSD: 0px 0px 10px rgba(0, 0, 0, 0.16);
--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY03);

/* ベース文字間隔 */
--LETTER_SPACING: 0.1em;

/* フォント */
--FF_BASE: "Noto Serif JP", serif;
--FF_NOTO: "Noto Serif JP", serif;
--FF_LIBRE: "Libre Bodoni", serif;

/* 英数字フォント */
--FF_EN: var(--FF_BASE);
--FF_NUM: var(--FF_BASE);

/* フォントウェイト */
--FF_WEIGHT_BASE: 400;

/* アニメーション */
--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

/* フォトサイズ */
--FZ_9: clamp(8px, 0.8vw, 9px);
--FZ_10: clamp(8px, 0.8vw, 10px);
--FZ_11: clamp(10px, 1.1vw, 11px);
--FZ_12: clamp(10px, 1.1vw, 12px);
--FZ_13: clamp(11px, 1vw, 13px);
--FZ_14: clamp(12px, 1.2vw, 14px);
--FZ_15: clamp(13px, 1.4vw, 15px);
--FZ_16: clamp(14px, 1.5vw, 16px);
--FZ_18: clamp(15px, 1.6vw, 18px);
--FZ_20: clamp(16px, 1.8vw, 20px);
--FZ_22: clamp(18px, 2vw, 22px);
--FZ_24: clamp(19px, 2vw, 24px);
--FZ_25: clamp(20px, 2vw, 25px);
--FZ_28: clamp(22px, 2.5vw, 28px);
--FZ_30: clamp(25px, 3vw, 30px);
--FZ_34: clamp(24px, 3vw, 34px);
--FZ_35: clamp(25px, 3vw, 35px);
--FZ_38: clamp(30px, 3.5vw, 38px);
--FZ_40: clamp(30px, 3.5vw, 40px);
--FZ_43: clamp(30px, 4vw, 43px);
--FZ_50: clamp(30px, 4vw, 50px);
--FZ_60: clamp(40px, 5vw, 60px);
--FZ_70: clamp(50px, 6vw, 70px);
--FZ_10_CONST: 10px;
--FZ_12_CONST: 12px;
--FZ_14_CONST: 14px;
--FZ_15_CONST: 15px;
--FZ_16_CONST: 16px;
--FZ_18_CONST: 18px;
--FZ_20_CONST: 20px;

/* ブロック間 */
--GAP_10: clamp( 5px, 1.1vw, 10px);
--GAP_15: clamp( 10px, 1.2vw, 15px);
--GAP_20: clamp( 15px, 1.7vw, 20px);
--GAP_25: clamp( 15px, 1.7vw, 25px);
--GAP_35: clamp( 20px, 2.5vw, 35px);
--GAP_30: clamp( 20px, 2.5vw, 30px);
--GAP_40: clamp( 30px, 3.5vw, 40px);
--GAP_50: clamp( 30px, 3.5vw, 50px);
--GAP_60: clamp( 40px, 4.5vw, 60px);
--GAP_65: clamp( 50px, 5.5vw, 65px);
--GAP_65: clamp( 55px, 6vw, 70px);
--GAP_75: clamp( 60px, 6.5vw, 75px);
--GAP_80: clamp( 50px, 5.5vw, 80px);
--GAP_90: clamp( 60px, 6.5vw, 90px);
--GAP_100: clamp( 70px, 7.5vw, 100px);
--GAP_5_CONST: 5px;
--GAP_10_CONST: 10px;
--GAP_15_CONST: 15px;
--GAP_20_CONST: 20px;
--GAP_30_CONST: 30px;
--GAP_40_CONST: 40px;

/* PCマックス幅 */
--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
--PC_MAX_WIDTH_SS: 800px;
--PC_MAX_WIDTH_S: 1000px;
--PC_MAX_WIDTH_M: 1200px;
--PC_MAX_WIDTH_L: 1400px;

/* セクション間隔半分 */
--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
:root{
--INNER_WIDTH: 95%;
--GENERALSEC: clamp(70px, 8vw, 100px);
}
}
@media screen and (max-width: 767px){
:root{
--INNER_WIDTH: 87.201%;
--GENERALSEC: 50px;
}
}
/* フェードインアニメーション */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: bold;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
display:block;
}
body{
font-family: var(--FF_BASE);
font-weight: var(--FF_WEIGHT_BASE);
font-feature-settings: "palt" 1;
letter-spacing: var(--LETTER_SPACING);
width:100%;
color: var(--TXT_COLOR_BASE);
position:relative;
z-index: 0;
overflow-x: clip;
}
#mainarea{
overflow: hidden !important;
}
a{
text-decoration: none;
outline: none;
word-wrap: break-word;
color: var(--TXT_COLOR_BASE);
cursor: pointer;
}
a img,a{
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all  0.5s;
}
img{
height: auto;
max-width: 100%;
box-sizing: unset;
vertical-align: bottom;
}
iframe{
vertical-align: bottom;
}
.formReset button,
.formReset input[type="button"],
.formReset input[type="submit"],
.formReset input[type="text"],
.formReset input[type="image"],
.formReset select{
background-color: unset;
color: var(--TXT_COLOR_BASE);
-webkit-appearance: none;
border-radius: 0;
border: none;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
font-family: var(--FF_BASE);
}
.formReset input[type="text"]{
color: var(--TXT_COLOR_BASE);
}
.formReset input[type="text"]::placeholder{
color: var(--GRAY03);
}
time{
font-family: var(--FF_NOTO);
}
/* フォントCSS */
.ff-mincho{
font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
/* imgリセット */
.imgauto{
height: auto;
width: 100%;
box-sizing: unset;
line-height: 1rem;
display: block;
}
/* セクション間隔*/
.g-mgt{
margin-top: var(--GENERALSEC);
}
.g-mgb{
margin-bottom: var(--GENERALSEC);
}
.g-pd{
padding-block: var(--GENERALSEC);
}
.g-pdt{
padding-top: var(--GENERALSEC);
}
.g-pdb{
padding-bottom: var(--GENERALSEC);
}
.g-mgt--half{
margin-top: var(--GENERALSEC_HALF);
}
.g-mgb--half{
margin-bottom: var(--GENERALSEC_HALF);
}
.g-pd--half{
padding-block: var(--GENERALSEC_HALF);
}
.g-pdt--half{
padding-top: var(--GENERALSEC_HALF);
}
.g-pdb--half{
padding-bottom: var(--GENERALSEC_HALF);
}
/* グリッド、フレックス */
.grid{
display: grid;
}
.flex{
display: flex;
}
/* スライダー読み込みまで非表示 */
.slick{
opacity: 0;
transition: opacity .3s linear;
}
.slick.slick-initialized{
opacity: 1;
}
.swiper{
overflow: hidden;
opacity: 0;
transition: opacity .3s linear;
}
.swiper.swiper-initialized{
opacity: 1;
}
/* 縦書き */
.tategaki{
writing-mode: vertical-rl;
}
/* 文字間 */
::placeholder,
input[type="text"],
[class*="ttl"],
[class*="lead"],
[class*="heading"],
a{
letter-spacing: var(--LETTER_SPACING);
}
/* テキスト行間文字間 */
[class*="txt"]{
letter-spacing: var(--LETTER_SPACING);
}
/* スクロールバー消す */
.noscrollbar,
.noscrollbar{
-ms-overflow-style: none;/* IE, Edge 対応 */
scrollbar-width: none;/* Firefox 対応 */
}
.noscrollbar::-webkit-scrollbar,
.noscrollbar::-webkit-scrollbar{/* Chrome, Safari 対応 */
display: none;
}
/* youtube */
.youtubeContainer iframe {
display: block;
width: 100%;
height: auto;
aspect-ratio: 16/9;
}
/* 改行用 */
.dib{
display: inline-block;
}
/* 非表示 */
.displaynone{
display: none;
}
/* 親要素超えて幅100% */
.widthOverParent{
width: 100vw;
--OYA: calc(50% - 50vw);;
margin-left: var(--OYA);
margin-right: var(--OYA);
}
@media (hover: hover){
.formReset button:hover,
.formReset input[type="button"]:hover,
.formReset input[type="submit"]:hover,
.formReset input[type="image"]:hover,
.formReset select:hover{
cursor: pointer;
}
a:hover{
opacity: 0.7;
text-decoration: none;
}
a:hover img{
opacity:0.75 !important;
}
}
html.no-smooth-scroll {
scroll-behavior: auto;
}
.g-inner,
.g-inner--l,
.g-inner--m,
.g-inner--s,
.g-inner--ss{
width: var(--INNER_WIDTH);
margin-inline: auto;
}
@media screen and (min-width: 768px){
html{
scroll-padding-top: 120px;
}
body{
font-size: var(--FZ_16);
line-height: 1.7;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
a[href^="tel:"] {
pointer-events: none;
}
.g-inner--pc{
width: var(--INNER_WIDTH);
margin-inline: auto;
}
.g-inner,
.g-inner--m,
.g-inner--pc{
max-width: var(--PC_MAX_WIDTH_M);
}
.g-inner--l{
max-width: var(--PC_MAX_WIDTH_L);
}
.g-inner--s{
max-width: var(--PC_MAX_WIDTH_S);
}
.g-inner--ss{
max-width: var(--PC_MAX_WIDTH_SS);
}
.g-inner--pcHasSlickGap{
--INNER_ADJUST: calc(var(--SLICK_GAP) * 2);
width: calc(var(--INNER_WIDTH) + var(--INNER_ADJUST));
max-width: calc(var(--PC_MAX_WIDTH_M) + var(--INNER_ADJUST));
margin-inline: auto;
}
.g-pd--halfPcOnly{
padding-block: var(--GENERALSEC_HALF);
}
.sp{
display: none !important;
}
.tategaki--pc{
writing-mode: vertical-rl;
}
/* pc順番付与 */
.orderPc-1st { order: 1; }
.orderPc-2nd { order: 2; }
.orderPc-3rd { order: 3; }
.orderPc-4th { order: 4; }
.orderPc-5th { order: 5; }
.orderPc-6th { order: 6; }
.orderPc-7th { order: 7; }
.orderPc-8th { order: 8; }
.orderPc-9th { order: 9; }
.orderPc-10th { order: 10; }
.orderPc-11th { order: 11; }
.orderPc-12th { order: 12; }
.orderPc-13th { order: 13; }
.orderPc-14th { order: 14; }
.orderPc-15th { order: 15; }
.orderPc-16th { order: 16; }
.orderPc-17th { order: 17; }
.orderPc-18th { order: 18; }
.orderPc-19th { order: 19; }
.orderPc-20th { order: 20; }
.orderPc-21th { order: 21; }
.orderPc-22th { order: 22; }
.orderPc-23th { order: 23; }
.orderPc-24th { order: 24; }
.orderPc-25th { order: 25; }
.orderPc-26th { order: 26; }
.orderPc-27th { order: 27; }
.orderPc-28th { order: 28; }
.orderPc-29th { order: 29; }
.orderPc-30th { order: 30; }
.orderPc-31th { order: 31; }
.orderPc-32th { order: 32; }
.orderPc-33th { order: 33; }
.orderPc-34th { order: 34; }
.orderPc-35th { order: 35; }
.orderPc-36th { order: 36; }
.orderPc-37th { order: 37; }
.orderPc-38th { order: 38; }
.orderPc-39th { order: 39; }
.orderPc-40th { order: 40; }
}
@media screen and (max-width: 767px){
html{
scroll-padding-top: 50px;
}
body{
font-size: 16px;
line-height: 1.6;
}
.g-inner--sp{
width: var(--INNER_WIDTH);
margin-inline: auto;
}
.g-pd--halfPcOnly{
padding-block: var(--GENERALSEC);
}
.pc{
display: none !important;
}
.sp-scroll--y{
overflow-y: scroll;
overflow-x: auto;
}
.sp-scroll--x{
overflow-x: scroll;
overflow-y: auto;
padding-inline: calc((100% - var(--INNER_WIDTH)) / 2);
}
.tategaki--sp{
writing-mode: vertical-rl;
}
.formReset input[type="text"],
.formReset input[type="text"]::placeholder{
font-size: 16px;
}
}
/* ■■■■■■■■■■■■■■■■■■■■■■ ---header--- ■■■■■■■■■■■■■■■■■■■■■■ */
#headerarea{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background-color: var(--WHITE);
}
@media screen and (min-width: 901px){
.header__nav-list li a{
font-size: clamp( 0px, 1.15vw, 20px);
}
}
@media screen and (min-width: 768px) and (max-width: 900px){
.header__nav-list li a{
font-size: clamp( 0px, 1.1vw, 20px);
}
}
/* pcのヘッダー */
@media screen and (min-width: 768px){
#headerarea{
padding-block: 20px;
}
.header__inner{
width: var(--INNER_WIDTH);
margin-inline: auto;
max-width: 1550px;
display: flex;
align-items: center;
}
.header__logo{
width: clamp( 0px, 18.75vw, 300px);
margin-right: clamp( 0px, 3.125vw, 50px);
}
.header__nav{
flex: 1;
}
.header__nav-list{
display: flex;
align-items: center;
}
.header__nav-list li:not(:last-child){
border-right: 1px solid var(--orange01-opacity);
}
.header__nav-list li a{
display: block;
line-height: 1.5;
padding-inline: var(--GAP_15);
}
.header__nav-list li a span{
display: block;
position: relative;
}
.header__nav-list li a span::before{
content: "";
display: inline-block;
background: var(--DARK01);
width: 0;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
transition: 0.3s;
}
}
@media (hover: hover){
.header__nav-list li a:hover span::before{
width: 100%;
}
}
/* spのヘッダー */
@media screen and (max-width: 767px){
.header__inner{
margin-left: calc((100% - var(--INNER_WIDTH)) / 2);
display: flex;
align-items: center;
height: 60px;
}
.header__logo{
width: 265px;
transform: translateY(-1px);
}
}

/* （共通）お問い合わせ・ご相談 */
.g-contact__del__tel{
color: var(--red01);
font-family: var(--FF_LIBRE);
line-height: 1;
margin-bottom: 5px;
}
.g-contact__del__tel .small{
font-size: var(--FZ_15);
}
@media screen and (min-width: 768px){
.g-contact{
display: flex;
gap: var(--GAP_10);
padding-left: var(--GAP_15);
border-left: 1px solid var(--orange01-opacity);
}
.g-contact__hd{
font-size: clamp( 0px, 0.875vw, 14px);
}
.g-contact__del__tel{
font-size: clamp( 0px, 1.6vw, 26px);
}
.g-contact__del__text{
font-size: clamp( 0px, 0.813vw, 13px);
margin-top: -5px;
}
}
/* footer */

/* ■■■■■■■■■■■■■■■■■■■■■■ ---ハンバーガー--- ■■■■■■■■■■■■■■■■■■■■■■ */
.fat-nav.fat-nav--menu.active{
background: var(--orange02);
}
.fat-nav__nav{
margin-bottom: 40px;
}
.fat-nav__nav-list > li:not(:last-child){
border-bottom: 1px solid rgba(196,132,45,.2);
}
.fat-nav__nav-item > a{
display: block;
padding: 10px 5px 10px;
font-size: 20px;
}

.g-contact--fat-nav .g-contact__hd{
width: fit-content;
font-size: 14px;
border-bottom: 1px solid;
margin-bottom: 18px;
}
.g-contact--fat-nav .g-contact__del__tel{
font-size: 30px;
line-height: 1.2;
}
.g-contact--fat-nav .g-contact__del__tel .small{
font-size: 20px;
}
.g-contact--fat-nav .g-contact__del__text{
font-size: 14px;
}

/* ■■■■■■■■■■■■■■■■■■■■■■ ---動き続けるスライダー--- ■■■■■■■■■■■■■■■■■■■■■■ */
.g-moveslide .slick-slide{
min-width: var(--WIDTH);
max-width: var(--WIDTH);
}
@media screen and (min-width: 768px){
.g-moveslide .slick-slide{
--WIDTH: 250px;
}
}
@media screen and (max-width: 767px){
.g-moveslide{
margin-bottom: 40px;
}
.g-moveslide .slick-slide{
--WIDTH: 170px;
}
}

/* ■■■■■■■■■■■■■■■■■■■■■■ ---footer--- ■■■■■■■■■■■■■■■■■■■■■■ */
#footerarea{
border-top: 5px solid var(--DARK01);
background: var(--WHITE);
}
.footerTop__logo{
margin-inline: auto;
}
.footerTop__address{
text-align: center;
}
.footerNav a{
display: block;
}
.footerCopy{
text-align: center;
}
@media screen and (min-width: 1411px){
.footerNav li:nth-child(5) a,.footerNav li:nth-child(9) a{
border-right: none;
}
}
@media screen and (min-width: 768px) and (max-width: 1410px){
.footerNav  li:nth-child(6) a,.footerNav li:nth-child(9) a{
border-right: none;
}
}
@media screen and (min-width: 768px){
.footerInner{
padding-block: var(--GAP_60) 15px;
}
.footerTop{
margin-bottom: var(--GAP_60);
}
.footerTop__logo{
width: 300px;
margin-bottom: 20px;
}

.footerBootm{
display: flex;
align-items: center;
gap: var(--GAP_40);
margin-bottom: var(--GAP_30);
}
.footerNavWrap{
flex: 1;
}
.footerNav{
display: flex;
align-items: center;
flex-wrap: wrap;
row-gap: 15px;
}
.footerNav a{
padding-inline: var(--GAP_15);
font-size: clamp( 0px, 1.25vw, 18px);
line-height: 1.5;
border-right: 1px solid var(--GRAY01);
}
.footerNav a span{
display: block;
position: relative;
}
.footerNav a span::before{
content: "";
display: inline-block;
background: var(--DARK01);
transition: 0.3s;
width: 0;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
}

.g-contact--ft{
width: fit-content;
}
.g-contact--ft__inner{
display: contents;
}

.footerCopy{
font-size: var(--FZ_12);
}
}
@media (hover: hover){
.footerNav a:hover span::before{
width: 100%;
}
}
@media screen and (max-width: 767px){
.footerInner{
padding-block: 50px 15px;
}
.footerTop{
margin-bottom: 50px;
}
.footerTop__logo{
width: 300px;
margin-bottom: 20px;
}

.footerBootm{
margin-bottom: 50px;
}
.footerNavWrap{
margin-bottom: 50px;
}
.footerNav > li > a{
font-size: 20px;
padding: 10px 5px;
}
.footerNav > li:not(:last-child){
border-bottom: 1px solid rgba(196,132,45,.2);
}
.footerNav li:first-child a{
padding-top: 0;
}
.footerNav li:last-child a{
padding-bottom: 0;
}

.g-contact--ft__inner{
display: flex;
gap: 15px;
}
.g-contact--ft__inner .g-contact__hd{
font-size: 14px;
width: fit-content;
}
.g-contact--ft__inner .g-contact__del{
flex: 1;
}
.g-contact--ft__inner .g-contact__del__tel{
font-size: 20px;
margin-bottom: 5px;
}
.g-contact--ft__inner .g-contact__del__tel small{
font-size: 12px;
}
.g-contact--ft__inner .g-contact__del__text{
font-size: 12px;
}
}





/* ページトップ */
.pagetop{
position: fixed;
z-index: 99;
border-radius: 50%;
display: none;
}
.pagetop a{
aspect-ratio: 1/1;
border-radius: 50%;
background-color: var(--TXT_COLOR_BASE);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: var(--WHITE);
}
.pagetop a::before{
content: "";
display: inline-block;
aspect-ratio: 19/10;
transition: 0.3s;
}
@media screen and (min-width: 768px){
.pagetop{
width: 90px;
bottom: 20px;
right: 3%;
}
.pagetop a{
gap: 8px;
}
.pagetop a::before{
width: 23px;
background: url(/asset2025/images/common/page-top-arrow.svg) no-repeat center center / 100%;
}
.pagetop a span{
font-size: var(--FZ_12);
}
}
@media (hover: hover){
.pagetop a:hover{
opacity: 1 !important;
}
.pagetop a:hover::before{
transform: translateY(-5px);
}
}
@media screen and (max-width: 767px){
.pagetop{
width: 65px;
bottom: 80px;
right: 10px;
}
.pagetop a{
gap: 4px;
text-align: center;
}
.pagetop a::before{
background: url(/asset2025/images/common/page-topSp-arrow.svg) no-repeat center center / 100%;
width: 14px;
}
.pagetop a span{
font-size: 10px;
}
}


/* ■■■■■■■■■■■■■■■■■■■■■■全ページ共通部分■■■■■■■■■■■■■■■■■■■■■■ */
/* 赤リンク */
.textRedLink{
color: var(--red01);
text-decoration: underline;
}
/* テキスト（赤） */
.redText{
color: var(--red01);
}
/* -------------------見出し-------------------- */
.g-heading--center > span{
text-align: center;
}
.g-heading__ja{
display: block;
font-weight: 700;
}
.g-heading__en{
display: block;
font-family: var(--FF_EN);
}
@media screen and (min-width: 768px){
.g-headingContainer{
margin-bottom: var(--GAP_30);
}
.g-heading__ja{
font-size: var(--FZ_38);
}
.g-heading__en{
font-size: var(--FZ_16);
}
}
@media screen and (max-width: 767px){
.g-headingContainer{
margin-bottom: 20px;
}
.g-heading__ja{
font-size: 26px;
}
.g-heading__en{
font-size: 16px;
}
}
/* -------------------ボタン-------------------- */
/* コンテナベース */
.g-btnContainer{
display: grid;
}
@media screen and (min-width: 768px){
.g-btnContainer{
margin-top: var(--GAP_50);
}
}
@media screen and (max-width: 767px){
.g-btnContainer{
margin-top: 20px;
}
}
/* コンテナベース - 横並び */
.g-btnContainer--horizontal{
display: flex;
justify-content: center;
}
@media screen and (min-width: 768px){
.g-btnContainer--horizontal{
gap: var(--GAP_30);
}
}
@media screen and (max-width: 767px){
.g-btnContainer--horizontal{
gap: 10px;
}
}
/* コンテナベース - PCのみ横並び */
@media screen and (min-width: 768px){
.g-btnContainer--horizontalPc{
display: flex;
justify-content: center;
gap: var(--GAP_30);
}
}
@media screen and (max-width: 767px){
.g-btnContainer--horizontalPc{
gap: 10px;
}
.g-btnContainer--horizontalPc .g-btn{
margin-inline: auto;
}
}
/* コンテナベース - 縦並び */
@media screen and (min-width: 768px){
.g-btnContainer--vertical{
gap: var(--GAP_20);
}
}
@media screen and (max-width: 767px){
.g-btnContainer--vertical{
gap: var(--GAP_20);
}
.g-btnContainer--vertical .g-btn{
margin-inline: auto;
}
}
/* ボタンベース */
.g-btn{
width: 100%;
}
.g-btn > a,
.g-btn > button{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-weight: 700;
letter-spacing: 0.2em;
position: relative;
border-radius: 4px;
padding-inline: 20px;
line-height: 1.4;
transition: 0.3s;
}
.g-btn > button{
width: 100%;
}
@media screen and (min-width: 768px){
.g-btn{
max-width: 300px;
}
.g-btn > a,
.g-btn > button{
min-height: 80px;
}
}
@media screen and (max-width: 767px){
.g-btn{
max-width: 300px;
}
.g-btn > a,
.g-btn > button{
min-height: 70px;
}
}

/* サブボタン - オレンジ */
.g-btn.g-btn--orange-sub > a{
min-height: 60px;
background: var(--WHITE);
border: 3px solid var(--orange01);
}
.g-btn.g-btn--orange-sub > a .g-btn__label{
color: var(--DARK01);
font-size: 16px;
}
@media (hover: hover){
.g-btn.g-btn--orange-sub > a:hover{
border: 3px solid #9A5800;
}
.g-btn.g-btn--orange-sub > a:hover .g-btn__label{
color: var(--WHITE);
}
}


/* ボタンベース_フォントサイズ */
.g-btn__label{
color: var(--WHITE);
}
@media screen and (min-width: 768px){
.g-btn__label{
font-size: var(--FZ_18);
}
}
@media screen and (max-width: 767px){
.g-btn__label{
font-size: 18px;
}
}
/* カラーバリエーション */
.g-btn--red > a{
background-color: var(--red01);
}
.g-btn--orange > a{
background-color: var(--orange01);
}
@media (hover: hover){
.g-btn a:hover{
opacity: 1 !important;
}
.g-btn--red > a:hover{
background: #7E0000;
}
.g-btn--orange > a:hover{
background-color: #9A5800;
}
}

/* タイプ - center */
.g-btn--center{
margin-inline: auto;
}
/* タイプ - arrow */
.g-btn--arrow > a{
position: relative;
}
.g-btn--arrow > a::after{
font-family: 'Font Awesome 5 Pro';
font-weight: 500;
content: '\f054';
position: absolute;
color: var(--WHITE);
transition: 0.3s;
}
@media screen and (min-width: 768px){
.g-btn--arrow > a::after{
font-size: 12px;
top:37%;
right: 10px;
}
}
@media (hover: hover){
.g-btn--arrow > a:hover::after{
right: 5px;
}
}
@media screen and (max-width: 767px){
.g-btn--arrow > a::after{
font-size: 14px;
top: 35%;
right: 10px;
}
}
/* タイプ - return */
.g-btn--arrow.g-btn--return a::after{
transform: rotate(180deg) translateX(5px);
right: unset;
}
@media screen and (min-width: 768px){
.g-btn--arrow.g-btn--return a::after{
left: 10px;
}
}
@media screen and (max-width: 767px){
.g-btn--arrow.g-btn--return a::after{
left: 10px;
}
}
/* タイプ - anchor */
.g-btn--arrow.g-btn--anchor > a::after{
transform: rotate(90deg);
}
@media screen and (min-width: 768px){
.g-btn--arrow.g-btn--anchor > a::after{
font-size: 12px;
top: 35%;
right: 10px;
}
}
@media screen and (max-width: 767px){
.g-btn--arrow.g-btn--anchor > a::after{
font-size: 10px;
top: 37%;
right: 10px;
}
}
/* タイプ - pdf */
.g-btn--pdf > a{
gap: 5px;
}
.g-btn--pdf > a::after{
content: "";
display: inline-block;
background: url(/asset2025/images/common/pdf.png) no-repeat center center / 100%;
aspect-ratio: 1/1;
width: 20px;
flex-shrink: 0;
}


/* -------------------g-slickArrow---------------------- */
[class*="g-slickArrow--"]{
width: var(--SLICK_ARROW_SIZE);
background-image: unset;
border-radius: 50%;
aspect-ratio: 1/1;
display: inline-block;
position: absolute;
z-index: 2;
}
[class*="g-slickArrow--"]::before{
content: "";
display: inline-block;
--MASK: var(--ICON_SLIDE_ARROW) no-repeat center center;
mask: var(--MASK);
-webkit-mask: var(--MASK);
aspect-ratio: 1/1;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.g-slickArrow--prev{
left: var(--SLICK_ARROW_TO_BODY);
}
.g-slickArrow--next{
right: var(--SLICK_ARROW_TO_BODY);
transform: rotate(180deg);
}
.g-slickArrow--white{
background-color: var(--WHITE);
}
.g-slickArrow--white::before{
background-color: var(--BLACK);
}
.g-slickArrow--black{
background-color: var(--BLACK);
}
.g-slickArrow--black::before{
background-color: var(--WHITE);
}
@media (hover: hover){
[class*="g-slickArrow--"]{
transition: .3s;
}
[class*="g-slickArrow--"]:hover{
cursor: pointer;
}
.g-slickArrow--white:hover{
background-color: var(--BLACK);
}
.g-slickArrow--white:hover::before{
background-color: var(--WHITE);
}
.g-slickArrow--black:hover{
background-color: var(--BLACK);
}
.g-slickArrow--black:hover::before{
background-color: var(--WHITE);
}
}
@media screen and (min-width: 768px){
.g-hasSlickArrow{
--SLICK_ARROW_SIZE: clamp( 30px, 3.2vw, 40px);
--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
}
[class*="g-slickArrow--"]::before{
mask-size: 35%;
}
}
@media screen and (max-width: 767px){
.g-hasSlickArrow{
--SLICK_ARROW_SIZE: 30px;
--SLICK_ARROW_TO_BODY: calc(0px - var(--SLICK_ARROW_SIZE) + var(--SLICK_GAP) - 5px);
}
[class*="g-slickArrow--"]::before{
mask-size: 40%;
}
}
/* -------------------g-slickDots-------------------- */
.slick:has(.g-slickDots){
margin-bottom: 0;
}
.g-slickDots{
display: flex;
justify-content: center;
gap: 15px;
}
.g-slickDots li{
aspect-ratio: 1/1;
position: relative;
}
.g-slickDots button{
font-size: 0;
background-color: var(--GRAY02);
aspect-ratio: 1/1;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.g-slickDots .slick-active button{
background-color: var(--red01)
}
@media screen and (min-width: 768px){
.g-slickDots li{
width: 15px;
margin-top: 10px;
}
.g-slickDots button{
width: 8px;
}
}
@media screen and (max-width: 767px){
.g-slickDots li{
width: 15px;
margin-top: 10px;
}
.g-slickDots button{
width: 8px;
}
}


/* -----------------タブ切り替え共通css----------------- */
.tab-nav{
display: flex;
}
.tab-btn{
flex: 1;
}
.tab-contents {
height: 0;
overflow: hidden;
opacity: 0;
}
.tab-contents.show {
cursor: auto;
height: auto;
overflow: unset;
opacity: 1;
transition: .5s opacity;
}
@media screen and (min-width: 768px){
.tab-btn:hover{
cursor: pointer;
}
.tab-btn.show{
cursor: auto;
}
}

/* -------------------is-targetBlank-------------------- */
.is-targetBlank{
display: inline-block;
position: relative;
padding-right: 17px;
}
.is-targetBlank::after{
content: "";
display: inline-block;
--MASK: var(--ICON_TARGET_BLANK) no-repeat center center / 100%;
mask: var(--MASK);
-webkit-mask: var(--MASK);
aspect-ratio: 1/1;
width: 13px;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.is-targetBlank--brown::after{
background-color: var(--TXT_COLOR_BASE);
}
.is-targetBlank--white::after{
background-color: var(--TXT_COLOR_WHITE);
}

/* -----------------ポップアップ共通css----------------- */
body.fixed {
position: fixed;
width: 100%;
overflow: hidden;
}
.popup-overlay{
display: none;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.popup-overlay.fixed{
position: fixed;
top: 0;
left: 0;
z-index: 9998;
}
.popup-content{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: var(--WHITE);
overflow: hidden;
box-shadow: var(--COMMON_BXSD);
padding: 10px;
}
.popup-overlay .popup-box{
overflow: hidden;
}
.popup-overlay .popup-box img{
overflow: hidden;
}
.popup-overlay button.closePopup{
position: absolute;
width: fit-content;
display: flex;
align-items: center;
z-index: 999;
top: 9px;
right: 9px;
background: var(--WHITE);
}
.popup-overlay button.closePopup::before{
content: "";
display: inline-block;
aspect-ratio: 1/1;
background: url(/asset2025/images/common/popup-closed.svg) no-repeat center center / 100%;
transform: translateY(1px);
}
.popup-overlay button.closePopup::after{
content: 'CLOSE';
display: inline-block;
font-size: var(--FZ_14);
font-family: var(--FF_BASE);
}
@media screen and (min-width: 768px){
.popup-overlay .popup-content{
width: 95%;
max-width: 900px;
}
.popup-overlay .popup-box{
max-height: 90vh;
}
.popup-overlay button.closePopup{
gap: 5px;
padding: 8px 15px;
}
.popup-overlay button.closePopup::before{
width: 9px;
}
}
@media (hover: hover){
.popup-overlay button.closePopup:hover{
cursor: pointer;
}
}
@media screen and (max-width: 767px){
.popup-overlay .popup-content{
width: 90%;
}
.popup-overlay .popup-box{
max-height: 80vh;
}
.popup-overlay button.closePopup{
gap: 5px;
padding: 8px 12px;
}
.popup-overlay button.closePopup::before{
width: 9px;
}
}

/* ハンバーガー・フッターアコーディオン */
.g-aco{
padding: 10px 5px 10px;
font-size: 20px;
position: relative;
}
.g-aco-btn{
display: inline-block;
width: 20px;
aspect-ratio: 1 / 1;
position: absolute;
top: 15px;
right: 8px;
}
.g-aco-btn::before,.g-aco-btn::after{
content: "";
display: inline-block;
background: var(--DARK01);
width: 80%;
height: 2px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.g-aco-btn::after{
transition: .3s;
transform: translate(-50%, -50%) rotate(90deg);
}
.g-aco.active .g-aco-btn::after{
transform: translate(-50%,-50%) rotate(180deg);
}

/* 子カテゴリ */
.g-acoList{
display: none;
padding-bottom: 15px;
}
.g-acoList a{
padding-left: 5px;
line-height: 2.25;
font-size: 16px;
display: block;
}

.g-acoList li a.pdf::after{
content: "";
display: inline-block;
background: url(/asset2025/images/common/pdf.png) no-repeat center center / 100%;
aspect-ratio: 1 / 1;
width: 20px;
margin-left: 5px;
transform: translateY(4px);
}

/* 共通でpdf追加 */
.g-pdf{
display: inline-block;
}
.g-pdf::after{
content: "";
display: inline-block;
background: url(/asset2025/images/common/pdf.png) no-repeat center center / 100%;
aspect-ratio: 1 / 1;
width: 20px;
margin-left: 5px;
transform: translateY(4px);
}