@charset "utf-8";
/*-----------------------------------------------------
Reset
----------------------------------------------------- */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul { list-style: none; line-height: 1; }
table { border-collapse: collapse; border-spacing: 0; }

* { margin: 0; padding: 0; min-height: 0; min-width: 0; }
img { max-width: 100%; width: 100%; height: auto; vertical-align: top; image-rendering: -webkit-optimize-contrast; }
picture { display: block; }

/*html { font-size: 62.5%; }*/
html { scroll-behavior: smooth; }
body { line-height: 1; margin: 0; padding: 0; height: 100%; font-family: "Noto Sans JP", serif; letter-spacing : 0.05em; color: #141414; }
a {	text-decoration: none; color: inherit; transition: 0.3s ease-in-out; cursor: pointer; }
@media (min-width: 1025px) {
	a[href*="tel:"] { pointer-events: none; cursor: default; text-decoration: none;}
}
p , li { line-height: 1.5; }
span { line-height: 1; }
span.bold { font-weight: 700; }
p , div { text-align: justify; }
h1 , h2 , h3 { font-weight: 700; line-height: 1.3; }
p.txt { font-size: clamp(0.875rem, 0.844rem + 0.16vw, 1rem); }

:root {
/*	--main-font-color: #;*/
	--color-green: #00411c;
	--bg-blue: #F5F5F9;
	--gothic-font: 'Noto Sans JP', serif;
	--serif-font: 'Noto Serif JP', serif;
}

[data-overDirection="full"] { width: 100vw; margin: 0 calc(50% - 50vw); }
[data-size="w650"]{ max-width: 650px; margin: 0 auto; }
[data-size="w800"]{ max-width: 800px; margin: 0 auto; }
[data-size="w1000"]{ max-width: 1000px; width: 90%; margin: 0 auto; }
[data-size="w1200"]{ max-width: 1200px; width: 90%; margin: 0 auto; }
.pc { display: block; }
.sp { display: none; }

/*オーバーレイ*/
.overlay { background: #fff; position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 10000; }

/*fade*/
/* ▼ 基本的に非表示にしたい要素 共通*/
.blur , .fade , .fadeup, .fadeleft { opacity: 0; }

/* ▼ 共通のinviewアニメーション開始スタイル 共通*/
.js-inview.is_inview { opacity: 1; transform: none; }

/* ▼ blurの個別演出 */
.blur { opacity: 0.1; filter: blur(20px); transition: opacity .8s ease-out, filter .8s ease-out; }
.blur.is_inview { opacity: 1; filter: blur(0px); transition-delay: .2s; }

/* ▼ fadeの個別演出 */
.fade { transition: opacity 1.4s ease-out, transform 1.4s ease-out; }
.fade.is_inview { transition-delay: .2s; }

/* ▼ fadeupの個別演出 */
.fadeup { opacity: 0; transform: translateY(20px); transition: opacity 1s ease-out, transform .8s ease-out; }
.fadeup.is_inview { opacity: 1; transform: translateY(0); }
.fadeup02 { opacity: 0; transform: translateY(20px); transition: opacity 1s ease-out, transform 1s ease-out; transition-delay: .4s; }
.fadeup02.is_inview { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.fadeup03 { opacity: 0; transform: translateY(20px); transition: opacity 1s ease-out, transform 1.2s ease-out; }
.fadeup03.is_inview { opacity: 1; transform: translateY(0); transition-delay: .6s; }

/* ▼ fadeleftの個別演出 */
.fadeleft { transform: translateX(-20px); transition: opacity 0.8s ease-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.fadeleft.is_inview { transform: translateX(0); transition-delay: .4s; }

/*animation*/
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

/*光るボタン*/
.btn-flash { overflow: hidden; border-radius: 50px; }
.btn-flash::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%); transition: .5s; }
/* ホバー時のスタイル */
.btn-flash:hover::before { top: 0; left: 100%; }

/*グラデボタン*/
.grade_linkbtn { background: linear-gradient(90deg, #b5943e 0%, #eddd94 50%, #b5943e 100%); color: var(--txt-navy); font-weight: 700; border: 2px solid #fff; border-radius: 10px; display: block; text-align: center; margin: 0 auto; padding: 10px 5px; box-sizing: border-box; position: relative; line-height: 1.3; transition: .2s; font-size: clamp(1.063rem, 1.047rem + 0.08vw, 1.125rem); }

/*ライトのように光る*/
.btn-light { transition: .15s ease; }
/* ホバー時のスタイル */
.btn-light:hover { background-color: rgb(29, 167, 217); background-color: #B5943E; box-shadow: 0 0 15px -4px rgba(255, 255, 255, 1); }


/* ---------------------------------------------
  header
--------------------------------------------- */
header .line { width: 100%; height: 10px; background: #F5C900;background: linear-gradient(90deg, rgba(245, 201, 0, 1) 0%, rgba(255, 245, 203, 1) 25%, rgba(245, 201, 0, 1) 50%, rgba(237, 219, 133, 1) 75%, rgba(245, 201, 0, 1) 100%); }
header .header_inner { padding: 15px 5%; box-sizing: border-box; }
header { background: #00411c; }
header h1 { font-size: clamp(1.563rem, 0.703rem + 4.3vw, 5rem); background: linear-gradient(90deg, #f5c900 0%, #fff5cb 25%, #f5c900 50%, #fff5cb 75%, #f5c900 100%);
color: transparent; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-fill-color: transparent; font-family: var(--serif-font);}
header .header_sub { font-size: clamp(1rem, 0.859rem + 0.7vw, 1.563rem); text-align: center; color: #fff; display: block; font-weight: 700; line-height: 1; margin-bottom: 3px; }
header .header_flex { display: flex; align-items: center; justify-content: center; }
header .header_flex img { max-width: 430px; width: 100%; margin-right: 10px; }

/* ---------------------------------------------
  kv
--------------------------------------------- */
.kv { background: url("../images/kv.png")no-repeat; background-size: cover; width: 100%; height: 755px; position: relative; z-index:0; background-position: center; }
.kv::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: rgba(0, 0, 0, 0.4); z-index: -1; }
/*.kv .kv_inner { padding: 5%; box-sizing: border-box; z-index: 1; position: absolute; }*/
.kv h2 span { font-size: clamp(1.25rem, 0.781rem + 2.34vw, 3.125rem); display: block; margin-bottom: 10px; }
.kv h2 { font-size: clamp(1.5rem, 0.938rem + 2.81vw, 3.75rem); font-weight: 700; color: #fff; position: absolute; left: 5%; top: 10%; }
.kv a.stv { max-width: min( 500px , 100%); width: 100%; display: block; position: absolute; bottom: 10%; left: 5%; }
.kv a.stv:hover {  }
.kv .kv_cv_btn { max-width: min( 150px , 100%); width: 100%; display: block; position: absolute; bottom: 10%; right: 5%; animation: floating-y 1.8s ease-in-out infinite alternate-reverse; }

/* ---------------------------------------------
  main
--------------------------------------------- */
.intro { display: flex; align-items: center; }
.intro_bg { width: 50% }
.intro p.txt { color: var(--color-green); width: 50%; margin-right: 0; margin-left: auto; position: relative; line-height: 1.6; }
.intro p.txt::after { content: ''; background: url("../images/into_bg.png")no-repeat; background-size: contain; aspect-ratio: 375 / 360; width: 50%; display: block; position: absolute; right: 0; top: 50%; transform: translateY(-50%); -webkit-transform: translateY(-50%); z-index: -1; }

.about { background: #000000; padding: 60px 0 0; }
.about h3 { font-size: clamp(1.375rem, 1.094rem + 1.41vw, 2.5rem); display: flex; align-items: center; color: #fff; margin-bottom: 30px; }
.about h3::before { content: ''; display: inline-block; background: url("../images/catch_logo.png")no-repeat; aspect-ratio: 100 / 95; width: 100px; background-size: contain; margin-right: 20px; }
.about .about_flex { display: flex; }
.about .about_flex img { max-width: 343px; margin-right: 30px; }
.about p.txt { color: #fff; line-height: 1.8; }


.plan { background: #000000 url("../images/plan_bg.png")no-repeat; padding: 60px 0 100px; background-size: contain; background-position: bottom center; }
.plan h3.h_kira { text-align: center; font-size: clamp(1.375rem, 1.094rem + 1.41vw, 2.5rem); color: #fff; position: relative; margin-bottom: 30px; z-index: 0; }
.plan h3.h_kira::before { content: ''; display: inline-block; background: url("../images/kira.png")no-repeat; background-size: contain; aspect-ratio: 116 / 119; width: 116px; position: absolute; left: 0; mix-blend-mode: lighten; }
.plan h3.h_kira::after { content: ''; display: inline-block; background: url("../images/kirakira.png")no-repeat; background-size: contain; aspect-ratio: 120 / 126; width: 120px; position: absolute; right: 0; top: -20px; mix-blend-mode: lighten; }
.plan h3.h_kira span.yellow { color: #f6d15a; }
.plan article { background: #F5C900;background: linear-gradient(90deg, rgba(245, 201, 0, 1) 0%, rgba(255, 245, 203, 1) 25%, rgba(245, 201, 0, 1) 50%, rgba(237, 219, 133, 1) 75%, rgba(245, 201, 0, 1) 100%); max-width: 1000px; margin: 0 auto; padding-bottom: 3%; }
.plan article { margin-bottom: 50px; }
.plan article:last-of-type { margin-bottom: 10px; }
.plan article h4 { font-size: clamp(1.25rem, 0.859rem + 1.95vw, 2.813rem); color: var(--color-green); font-family: var(--serif-font); font-weight: 700; text-align: center; padding: 20px; line-height: 1.3; }
.plan article h4 span { font-size: 75%; display: block; margin-bottom: 10px; }
.plan article h4 span::before { content: ''; display: inline-block; background: url("../images/icon_flag.svg")no-repeat; background-size: contain; aspect-ratio: 31 / 30; width: 31px; margin-right: 5px; }
.plan .plan_txtbox { width: 95%; background: #f1ede0; padding: 0 10px; margin: 0 auto; box-sizing: border-box; padding: 40px;}
.plan .point_wrap { max-width: 850px; display: flex; justify-content: space-between; margin: 0 auto 30px; gap: 15px; }
.plan .point_box { text-align: center; font-weight: 700; background: #1E5736; background: linear-gradient(90deg, rgba(30, 87, 54, 1) 0%, rgba(0, 48, 28, 1) 100%); border-radius: 10px; color: #fff; font-size: clamp(1.125rem, 1.047rem + 0.39vw, 1.438rem); display: flex; align-items: center; justify-content: center; flex: 1; padding: 15px; line-height: 1.3; }
.plan .point_txt_wrap_inner { max-width: 850px; margin: 0 auto;}
.plan .point_txt_wrap h5 { margin-bottom: 10px; text-align: center; color: #fff; background: #F1EDE0;
background: linear-gradient(90deg, rgba(241, 237, 224, 1) 0%, rgba(217, 57, 36, 1) 50%, rgba(241, 237, 224, 1) 100%); padding: 10px; font-size: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem); font-family: var(--serif-font); }
.plan .point_txt { font-size: clamp(1.25rem, 1.016rem + 1.17vw, 2.188rem); font-weight: 700; line-height: 1.3; }
.plan .point_txt:not(:last-child) { margin-bottom: 10px; }
.plan .point_txt::before { content: ''; background: url("../images/icon_check.svg")no-repeat; aspect-ratio: 35 / 30; width: 35px; display: inline-block; background-size: contain; margin-right: 5px; }
.plan span.red { color: #d93924; }
.plan span.small { font-size: 60%; }
.plan .price::before { content: ''; display: inline-block; background: url("../images/icon_arrow.svg")no-repeat; background-size: contain; aspect-ratio: 45 / 39; width: 38px; margin-right: 10px; }
.plan .price { text-align: right; font-size: clamp(1.375rem, 1.094rem + 1.41vw, 2.5rem); font-weight: 700; line-height: 1; margin-top: 10px; }
.plan .price span { font-size: 65%; }
.plan article + p.right { color: #fff; text-align: right; }

.reason { background: #1E5736;
background: linear-gradient(0deg, rgba(30, 87, 54, 1) 0%, rgba(0, 48, 28, 1) 100%); padding: 100px 0; }
.reason h3 { font-size: clamp(1.375rem, 1.094rem + 1.41vw, 2.5rem); color: #f6d15a; text-align: center; margin-bottom: 50px; }
.reason h3::before { content: ''; display: block; background: url("../images/catch_logo.png")no-repeat; margin: 0 auto 15px; aspect-ratio: 100 / 95; width: 100px; background-size: contain; }
.reason .reason_flex { display: flex; justify-content: space-between; flex-wrap: wrap; }
.reason .reason_blk { width: 48%; position: relative; display: flex; flex-direction: column; }
.reason .reason_blk:nth-child(-n+4) { margin-bottom: 50px; }
.reason .reason_blk h4 { font-size: clamp(1.063rem, 0.953rem + 0.55vw, 1.5rem); font-weight: 700; color: #fff; padding-left: 70px; margin-bottom: 20px; line-height: 1.3; }
.reason .reason_blk h4::before { content: ''; display: inline-block;  aspect-ratio: 61 / 50; width: 10%; position: absolute; left: 0; top: 8px; z-index: -1; }
.reason .reason_blk:nth-child(1) h4::before { background: url("../images/num01.svg")no-repeat; }
.reason .reason_blk:nth-child(2) h4::before { background: url("../images/num02.svg")no-repeat; }
.reason .reason_blk:nth-child(3) h4::before { background: url("../images/num03.svg")no-repeat; }
.reason .reason_blk:nth-child(4) h4::before { background: url("../images/num04.svg")no-repeat; }
.reason .reason_blk:nth-child(5) h4::before { background: url("../images/num05.svg")no-repeat; }
.reason .reason_blk:nth-child(6) h4::before { background: url("../images/num06.svg")no-repeat; }
.reason .reason_blk img { margin-bottom: 10px; /*margin-top: auto;*/ }
.reason .reason_blk p.txt { color: #fff; }

.shop_info { margin: 0 auto; padding: 100px 0; }
.shop_info h3 { font-size: clamp(1.5rem, 1.328rem + 0.86vw, 2.188rem); }
.shop_info h3::before { content: ''; display: inline-block; background: url("../images/shop_icon.png")no-repeat; aspect-ratio: 39 / 75; width: 39px; background-size: contain; }
.shop_info_flex { display: flex; justify-content: space-between; }
.shop_info dl { display: flex; flex-wrap: wrap; width: 700px; margin-bottom: 50px; margin-left: 50px; font-size: clamp(0.875rem, 0.844rem + 0.16vw, 1rem); }
.shop_info dt { width: 8em; border-bottom: 1px solid #cdcdcd; padding: 20px 0; line-height: 1.4; }
.shop_info dd { width: calc(100% - 8em); border-bottom: 1px solid #cdcdcd; padding: 20px 0; line-height: 1.4; }
.shop_info .map { max-width: 1000px; }

/* ---------------------------------------------
  cv
--------------------------------------------- */
.cv_area { background: #e6e5d5; padding: 80px 5%; }
.cv_area .cv_txt { text-align: center; font-size: clamp(1.5rem, 1.328rem + 0.86vw, 2.188rem); font-weight:
700; }
.cv_btn { color: #fff; text-align: center; max-width: 320px; margin: 30px auto; }
.cv_btn a { display: block; padding: 20px 15px; border-radius: 50px; background: #f66300; }
.cv_btn a:hover { background: #000; border-radius: 50px; }
.cv_btn a::before { content: ''; display: inline-block; background: url("../images/icon_mail.svg")no-repeat; aspect-ratio: 30 / 18; background-size: contain; width: 30px; margin-right: 10px; }
.cv_btn span { font-size: clamp(1.125rem, 1.094rem + 0.16vw, 1.25rem); font-weight: 700; }
.tel_btn { text-align: center; }
.tel_btn span { display: block; font-size: clamp(1.125rem, 1.094rem + 0.16vw, 1.25rem); margin-bottom: 10px; }
.tel_btn a { font-size: clamp(1.5rem, 1.328rem + 0.86vw, 2.188rem); font-weight: 700; color: #f66300; display: block; margin-bottom: 10px; }
.tel_btn a::before { content: ''; display: inline-block; background: url("../images/icon_tel.svg")no-repeat; background-size: contain; aspect-ratio: 16 / 21; width: 16px; margin-right: 5px; }
.tel_btn p.open_time { font-size: 15px; text-align: center; }

/* ---------------------------------------------
  footer メインサイトまま(common.css)
--------------------------------------------- */
p.copy_txt { text-align: center; }
#footer {
  background: #393939;
  color: #ffffff;
  font-size: 14px;
}
#footer .inner {
  max-width: 1081px;
  text-align: center;
  margin: auto;
  padding-top: 35px;
  padding-bottom: 35px;
}
#footer .iconmenu {
  display: flex;
  width: fit-content;
  margin: auto;
  column-gap: 24px;
}
@media screen and (max-width: 890px) {
  #footer .iconmenu {
    margin-bottom: 20px;
  }
}
#footer .iconmenu li img {
  max-width: 24px;
}
#footer .submenu {
  display: flex;
  column-gap: 20px;
  margin: auto;
  width: fit-content;
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 890px) {
  #footer .submenu {
    display: block;
    margin-top: 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 890px) {
  #footer .submenu li {
    margin-bottom: 10px;
  }
}
#footer .submenu li a {
  color: #ffffff;
  font-weight: bold;
  border-right: 1px solid #ffffff;
  padding-right: 20px;
}
@media screen and (max-width: 890px) {
  #footer .submenu li a {
    border-right: none;
    font-size: 12px;
    padding-right: 0;
  }
}
#footer .submenu li:last-child a {
  border-right: none;
}
#copyright {
  padding-top: 40px;
  background: #231815;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 35px;
  padding-bottom: 35px;
}
@media screen and (max-width: 890px) {
  #copyright {
    font-size: 10px;
    padding-bottom: 80px;
  }
}
#copyright .img {
  margin: auto;
  max-width: 135px;
  margin-bottom: 35px;
}
@media screen and (max-width: 890px) {
  #copyright .img {
    max-width: 80px;
    margin-bottom: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
    .topics__link:hover .topics__ttl {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1000px) {
	header .header_sub { margin-bottom: 10px; }
	header .header_flex { flex-direction: column; gap: 3px; }
	header .header_flex img { width: 80%; margin-right: 0; }
	.kv { height: 450px; }
	.kv .kv_cv_btn { width: 25%; }
	.kv a.stv { width: 60%; }
	.intro { display: block }
	.intro_bg { width: 100%; }
	.intro p.txt { width: 90%; margin: 30px auto; }
	.about .about_flex { display: block; }
	.about .about_flex img { max-width: initial; margin: 0 auto 20px; }
	.plan { padding-bottom: 60px; }
	.plan .point_wrap { display: block; margin-bottom: 20px; }
	.plan .point_box:not(:last-child) { margin-bottom: 10px; }
	.plan h3.h_kira::before { width: 56px; bottom: -20px; }
	.plan h3.h_kira::after { width: 50px; top: -40px; }
	.plan .plan_txtbox { padding: 30px 20px; }
	.plan span.small { display: block; }
	.plan .point_txt::before { width: 21px; }
	.reason .reason_flex { display: block; }
	.reason .reason_blk { width: 100%; }
	.reason .reason_blk:nth-child(-n+5) { margin-bottom: 50px; }
	.shop_info_flex { display: block; }
	.shop_info dl { width: 100%; margin-left: 0; display: flex }
	.about h3::before { width: 60px; margin-right: 15px; }
	.reason h3 { margin-bottom: 30px; }
	.reason h3::before { width: 60px; margin-bottom: 15px; }
	.reason .reason_blk h4 { padding-left: 40px; }
	.shop_info h3::before { width: 30px; }

}

@media screen and (max-width: 600px) {
	.sp { display: block; }
	.pc { display: none; }
	.reason , .shop_info { padding: 60px 0; }
	.cv_area { padding: 60px 5%; }
}

@media screen and (max-width: 414px) {
}

@media screen and (max-width: 360px) {
}
