/******************************************************************
Theme Name: KHS
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 2.0
******************************************************************/

/* --------------------------------------------------
 common
--------------------------------------------------- */

/* font setting
--------------------------------------------------- */

@charset "UTF-8";


/* reset
--------------------------------------------------- */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid Highlight;outline-offset:2px;scroll-margin-block:10vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* root setting
--------------------------------------------------- */

:root {
    --font-en-01: "Jost", sans-serif;
	--font-en-02: "Bebas Neue", sans-serif;
	--font-jp: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-min: 'Noto Serif JP', serif;
    --color-bbk: #000000;
	--color-bk: #222222;
	--color-bgy: #333333;
	--color-dgy: #606060;
	--color-gy: #b7b7b7;
	--color-dwgy: #ddd;
	--color-wgy: #f1f1f1;
	--color-wh: #fff;
	
	--color-kbl: #59acd6;
	--color-tbl: #1fbccc;
	
	--color-lbl: #accbcc;
	--color-sbl: #84b2ce;
	--color-dbl: #3783a0;
	--color-beg: #ededeb;
	--color-lbr: #a08e75;
	--color-lrd: #dd6b6b;
	
	--color-bl: #3477a5;
    --color-nv: #073149;
	--color-kh: #aeb08f;
    --color-dkh: #727267;
    --color-rd: #b50000;
	--color-line: #e2e2e2;
}

/* layout
--------------------------------------------------- */

html {
    height: 100%;
    font-size: 100%;
    background-color: var(--color-wh)!important;
}
body {
    height: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-bk);
    background-color: var(--color-wh)!important;
    overflow-y: scroll;
}
body::after {
    z-index: 9999;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bk);
    pointer-events: none;
    animation-name: fadeOut;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
body.viewtrans::after {
    animation-name: fadeIn;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
a {
    display: block;
    color: var(--color-bk);
    text-decoration: none;
	outline: none;
    cursor: pointer;
}
p a {
	display: inline;
}
img,
svg {
    width: 100%;
    height: auto;
}

.wrap {
    z-index: 99;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
	overflow-x: hidden;
	transition: 1s;
}

/*
.bg {
    z-index: 98;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.bg span {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100vh;
    background: var(--color-line);
}
.bg span:nth-of-type(1) {
    left: 50%;
    transform: translate(-50%, 0);
}
.bg span:nth-of-type(2) {
    left: 25%;
}
.bg span:nth-of-type(3) {
    right: 25%;
}
*/

.mask {
    width: auto;
    height: auto;
    overflow: hidden;
}
.mask .mask__inner {
    width: inherit;
    height: inherit;
    opacity: 0;
    overflow: hidden;
}
.mask .mask__inner.inview {
    position: relative;
    animation-name: maskIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 1 !important;
}
.mask .mask__inner.inview:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-nv);
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}

@keyframes maskIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes maskOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(101%);
    }
}
.fade {
    opacity: 0;
    transform: translate(0, 1em);
}
.fade.inview {
    position: relative;
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 0;
    transform: translate(0, 0);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    br.is-pc {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    br.is-sp {
        display: none;
    }
}

.en-text {
	font-family: var(--font-en-01);
	font-weight: 400;
}
.jp-text {
	font-family: var(--font-jp);
}

svg.filter {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.effect-text {
    overflow: hidden;
    line-height: 1;
}
.effect-text span {
    display: inline-block;
    opacity: 0;
    transform: translate(0, 1em);
    transition: all .3s ease-out;
}
.inview .effect-text span {
    transform: translate(0, 0);
    opacity: 1;
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}
@media screen and (min-width: 768px) {
    p {
        font-size: 1rem;
    }
}
@media screen and (min-width: 1280px) {
    p {
        font-size: 1.05rem;
    }
}

/* --------------------------------------------------
 common pager
--------------------------------------------------- */

/*.pager {
    padding: 0 0 50px;
    text-align: center;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 400;
}
.pager a {
    color: var(--color-gy);
    transition: .3s;
}
.pager a:hover {
    color: var(--color-bk);
}
.pager .page-numbers {
    display: inline-block;
    width: 35px;
    padding: 5px;
    text-align: center;
}
.pager .prev, .pager .next {
    width: 50px;
}
.pager .current {
    position: relative;
    color: var(--color-bk);
}
.pager .current:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background-color: var(--color-bk);
}
@media screen and (min-width: 1280px) {
    .pager {
        padding-bottom: 80px;
    }
}*/

.pager {
	display: flex;
	justify-content: center;
	gap: 6px;
	width: 100%;
	font-size: 0.8rem;
}
.pager .page-numbers {
	padding: 3px 8px;
	background: var(--color-wh);
}
.pager .current {
	background: var(--color-rd);
	color: var(--color-wh);
}
.news__list .pager,
.championship-list .pager {
	margin-top: 30px;
}
@media screen and (min-width: 768px) {
	.pager {
		padding: 20px;
		font-size: 0.9rem;
	}
	.pager .page-numbers {
		padding: 5px 12px;
	}
}
@media screen and (min-width: 1024px) {
	.pager {
		gap: 8px;
		padding: 20px;
		font-size: 0.95rem;
	}
	.pager .page-numbers {
		padding: 8px 18px;
	}
}

/* --------------------------------------------------
 header
--------------------------------------------------- */

.header {
    z-index: 94;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	height: 64px;
    transition: .3s;
    background: var(--color-wh);
    border-bottom: 1px solid var(--color-line);
}
.header__inner {
    z-index: 3;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
	width: 100%;
    height: 100%;
	padding: 0 20px 0 15px;
}
.header__inner .logo {
    z-index: 10000;
    position: relative;
    width: 250px;
}
.header__inner .logo a {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}
.header__inner .logo a .logo__img {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 768px) {
    .header {
        height: 80px;
    }
	.header__inner .logo {
		width: 250px;
    }
}
@media screen and (min-width: 1024px) {
    .header {
        height: 70px;
    }
    .header::before {
        display: none;
    }
    .header__inner {
        align-items: center;
        padding: 0 30px;
    }
    .header__inner .logo {
		width: 230px;
    }
}
@media screen and (min-width: 1280px) {
    .header {
        height: 110px;
    }
    .header::before {
        display: none;
    }
    .header__inner {
		display: flex;
		flex-wrap: wrap;
		gap: 0;
        align-items: center;
        max-width: 1420px;
        height: 60px;
        margin: auto;
        padding: 0 0 0 30px;
    }
    .header__inner .logo {
		width: 300px;
		height: 60px;
    }
}
@media screen and (min-width: 1451px) {
    .header__inner {
        padding: 0;
    }
}

/*
@media screen and (min-width: 1601px) {
	.header__inner {
		gap: 25px;
        padding: 0 30px;
    }
	.header__inner .logo {
		width: 260px;
    }
}*/

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

.menu-btn {
    z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
	cursor: pointer;
}
.menu-btn__inner {
	position: absolute;
	width: 40px;
	height: 40px;
    border-radius: 100%;
}
@media screen and (min-width: 768px) {
	.menu-btn {
        width: 80px;
		height: 80px;
	}
}
@media screen and (min-width: 1024px) {
	.menu-btn {
        width: 70px;
		height: 70px;
	}
}
@media screen and (min-width: 1280px) {
    .menu-btn {
		display: none;
	}
}

.menu-btn__inner span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: var(--color-bk);
	transform: translate(-50%, -50%);
    transition: .3s;
}
.menu-btn__inner span:nth-of-type(1) {
    margin-top: -8px;
}
.menu-btn__inner span:nth-of-type(3) {
    margin-top: 8px;
}
.menu-btn.active .menu-btn__inner span:nth-of-type(1) {
    margin: 0;
    transform: translate(-50%,-50%) rotate(-42deg);
}
.menu-btn.active .menu-btn__inner span:nth-of-type(2) {
	display: none;
}
.menu-btn.active .menu-btn__inner span:nth-of-type(3) {
	margin: 0;
    transform: translate(-50%,-50%) rotate(42deg);
}


/* g-nav
--------------------------------------------------- */

.g-nav {
    z-index: 9998;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: .3s;
	background: var(--color-wh);
    opacity: 0;
    pointer-events: none;
}
.g-nav.open {
    opacity: 1;
    pointer-events: painted;
}
.g-nav.open::before {
    z-index: 6;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: var(--color-wh);
}
.g-nav__inner {
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 45px;
	position: relative;
	padding: 90px 0 80px;
}
@media screen and (min-width: 768px) {
    .g-nav.open::before {
        height: 80px;
    }
    .g-nav__inner {
        padding: 190px 60px 80px;
    }
}
@media screen and (min-width: 1280px) {
	.g-nav {
		display: none;
	}
}
/*@media screen and (min-width: 1280px) {
	.g-nav {
		position: relative;
		width: auto;
		height: auto;
		margin-left: auto;
		opacity: 1;
		pointer-events: painted;
	}
	.g-nav__inner {
		padding: 0;
	}
}*/

/*
@media screen and (min-width: 1024px) {
    .g-nav.open::before {
        height: 74px;
    }
    .g-nav__inner {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 900px;
        padding: 0;
        transform: translate(-50%, -50%);
    }
}
@media screen and (min-width: 1280px) {
    .g-nav__inner {
        min-width: 1100px;
    }
}*/

.g-nav__list {
	z-index: 3;
	position: relative;
	width: 100%;
    background: var(--color-wh);
}
.g-nav__list ul {
    display: flex;
    flex-wrap: wrap;
}
.g-nav__list ul li {
    width: 100%;
}
.g-nav__list > ul > li {
    border-bottom: 1px solid var(--color-wgy);
}

.g-nav__list ul li a {
	position: relative;
    width: 100%;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
}
.g-nav__list > ul > li > a {
    font-size: 0.95rem;
    font-weight: 700;
}
.g-nav__list ul.child li a {
    font-size: 0.9rem;
    padding-left: 40px;
}
.g-nav__list ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-bk);
    border-right: 1px solid var(--color-bk);
    transform: translate(0, -50%) rotate(45deg);
    opacity: 0.8;
}
.g-nav__list ul.child li a::before {
    border-top: 1px solid var(--color-wh);
    border-right: 1px solid var(--color-wh);
}
.g-nav__list ul li.has-child > a {
    padding-right: 70px;
}
.g-nav__list ul li.has-child > a::before {
    right: 70px;
}
.g-nav__list ul li.has-child {
    position: relative;
}
.g-nav__list ul li.has-child span {
    z-index: 99;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    border-left: 1px solid var(--color-wgy);
}
.g-nav__list ul li.has-child span::before,
.g-nav__list ul li.has-child span::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-bk);
    transform: translate(-50%, -50%);
}
.g-nav__list ul li.has-child span::before {
    width: 12px;
    height: 1px;
}
.g-nav__list ul li.has-child span::after {
    width: 1px;
    height: 11px;
}
.g-nav__list ul li.has-child.open > span::after {
    display: none;
}
.g-nav__list ul li ul.child li {
    background: var(--color-nv);
}
.g-nav__list ul.child li:nth-last-of-type(1) {
    border: none;
}
.g-nav__list ul.child {
    display: none;
    padding: 20px 0;
    background: var(--color-nv);
}
.g-nav__list ul.child li a {
    color: var(--color-wh);
}
@media screen and (min-width: 768px) {
    .g-nav__list ul li a {
        height: 65px;
        line-height: 65px;
    }
    .g-nav__list > ul > li > a {
        font-size: 1rem;
    }
    .g-nav__list ul.child li a {
        font-size: 0.95rem;
        padding-left: 40px;
    }
    .g-nav__list ul li.has-child span {
        width: 65px;
        height: 65px;
        border-right: 1px solid var(--color-wgy);
    }
    .g-nav__list ul li a::before {
        right: 31px;
        width: 7px;
        height: 7px;
    }
    .g-nav__list ul li.has-child > a::before {
        right: 82px;
    }
}
@media screen and (min-width: 1280px) {
	.g-nav__list > ul {
		gap: 20px;
	}
	.g-nav__list ul li {
		width: auto;
		border: 0;
	}
	.g-nav__list ul li a {
		height: auto;
		line-height: 1;
		padding: 0;
	}
	.g-nav__list ul li a::before {
		display: none;
	}
	.g-nav__list > ul > li > a {
        font-size: 0.85rem;
    }
	.g-nav__list ul li.has-child > a {
		padding-right: 10px;
	}
	
}




/*
@media screen and (min-width: 1024px) {
    .g-nav__list > ul {
        display: grid;
        grid-template-columns: repeat(24, 1fr);
        gap: 10px;
    }
    .g-nav__list > ul > li:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 2; }
    .g-nav__list > ul > li:nth-child(3) { grid-column: 1 / 5; grid-row: 2 / 3; }
    .g-nav__list > ul > li:nth-child(7) { grid-column: 1 / 5; grid-row: 3 / 5; }
    .g-nav__list > ul > li:nth-child(2) { grid-column: 5 / 10; grid-row: 1 / 5; }
    .g-nav__list > ul > li:nth-child(4) { grid-column: 10 / 15; grid-row: 1 / 5; }
    .g-nav__list > ul > li:nth-child(5) { grid-column: 15 / 20; grid-row: 1 / 5; }
    .g-nav__list > ul > li:nth-child(6) { grid-column: 20 / 25; grid-row: 1 / 5; }
    
    .g-nav__list ul.child {
        display: block;
        background: none;
        margin: 15px 0;
        padding: 0;
        border-left: 1px solid var(--color-line);
    }
    .g-nav__list > ul > li {
        width: 100%;
        border-bottom: 0;
    }
    .g-nav__list > ul > li:nth-last-child(1) {
        padding: 0;
    }
    .g-nav__list > ul > li > a {
        font-size: 0.95rem;
    }
    .g-nav__list ul.child li a {
        font-size: 0.9rem;
        color: var(--color-bk);
    }
    .g-nav__list ul li a {
        height: auto;
        line-height: 1.8;
        padding: 0;
    }
    .g-nav__list ul li a:hover {
        text-decoration: underline;
    }
    .g-nav__list ul li ul.child li {
        background: none;
    }
    .g-nav__list ul.child li a {
        padding-left: 8px;
    }
    .g-nav__list ul li a::before,
    .g-nav__list ul li.has-child span {
        display: none;
    }
}
@media screen and (min-width: 1280px) {
    .g-nav__list > ul {
        gap: 40px;
    }
    .g-nav__list > ul > li > a {
        font-size: 1.05rem;
    }
    .g-nav__list ul.child li a {
        padding: 3px 0 3px 13px;
        font-size: 1rem;
        color: var(--color-bk);
    }
}
*/

/*
.pc-nav,
.pc-head-search,
.pc-head-link {
    display: none;
}
@media screen and (min-width: 1280px) {
	.pc-nav,
	.pc-head-link {
		display: flex;
	}
	.pc-nav {
		margin-left: auto;
	}
	.pc-nav__list ul {
		display: flex;
	}
	.pc-nav__list > ul {
		display: flex;
		gap: 14px;
	}
	.pc-nav__list > ul > li {
		display: flex;
		align-items: center;
		height: 74px;
	}
	.pc-nav__list > ul > li > a {
		position: relative;
		padding-top: 2px;
		font-size: 0.9rem;
		font-weight: 700;
		line-height: 1;
	}
	.pc-nav__list > ul > li.has-child > a {
        padding-right: 10px;
    }
	.pc-nav__list > ul > li.has-child > a::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }
    .pc-nav__list > ul > li.has-child > a::after {
        top: 50%;
        right: 0;
        width: 4px;
        height: 4px;
        border-bottom: 1px solid var(--color-bk);
        border-right: 1px solid var(--color-bk);
        transform: translate(0, -50%) rotate(45deg);
    }
	
	.pc-nav__list > ul > li.has-child > .child {
        position: fixed;
		top: 74px;
        left: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
		background: #cadce5;
    }
	.pc-nav__list > ul > li.has-child:hover > .child {
        width: 100%;
        opacity: 1;
        max-height: 600px;
        pointer-events: painted;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }
	
	.pc-head-search {
		display: block;
		width: 46px;
		height: 46px;
		padding: 12px;
		background: var(--color-dgy);
		border-radius: 6px;
	}
	
	.pc-head-link .pc-head-tel,
	.pc-head-link .pc-head-contact a {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 13px 12px 11px;
		color: var(--color-wh);
		line-height: 1;
	}
	.pc-head-link .pc-head-tel {
		font-family: var(--font-en-02);
		font-size: 1.2rem;
		font-weight: 500;
		background: var(--color-sbl);
	}
	.pc-head-link .pc-head-contact a {
		font-size: 0.95rem;
		font-weight: 700;
		background: var(--color-lrd);
	}
	.pc-head-link .pc-head-tel span.icon,
	.pc-head-link .pc-head-contact a span.icon {
		display: flex;
		align-items: center;
		width: 26px;
		height: 26px;
		background: var(--color-wh);
		border-radius: 100%;
	}
	.pc-head-link .pc-head-tel span.text,
	.pc-head-link .pc-head-contact a span.text {
		padding-top: 2px;
	}
}
@media screen and (min-width: 1601px) {
	.pc-nav__list > ul {
		gap: 20px;
	}
	.pc-head-link .pc-head-contact a {
		font-size: 1rem;
	}
	.pc-head-link .pc-head-tel {
		font-size: 1.4rem;
	}
	.pc-head-link .pc-head-contact a {
		font-size: 1rem;
	}
	.pc-head-link .pc-head-tel,
	.pc-head-link .pc-head-contact a {
		gap: 12px;
		padding: 15px 20px 13px;
	}
	.pc-head-link .pc-head-tel span.icon,
	.pc-head-link .pc-head-contact a span.icon {
		width: 30px;
		height: 30px;
	}
	.pc-head-link .pc-head-tel span.text {
		padding-top: 4px;
	}
	.pc-head-link .pc-head-contact a span.text {
		padding-top: 2px;
	}
}
*/


/*

@media screen and (min-width: 1280px) {
    
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: 74px;
        margin-left: auto;
        margin-right: 25px;
        background: none;
        overflow: inherit;
    }
    .pc-nav__inner {
        flex-direction: row;
        height: 74px;
        padding: 0;
    }
    .pc-nav__list > ul {
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        height: 74px;
    }
    .pc-nav__list > ul > li {
        height: 74px;
    }
    .pc-nav__list > ul > li > a {
        display: flex;
        align-items: center;
        position: relative;
        height: 74px;
        font-size: 0.85rem;
        font-weight: 700;
        line-height: 1;
    }
    .pc-nav__list > ul > li.has-child > a {
        padding-right: 20px;
    }
    .pc-nav__list > ul > li.has-child > a::before,
    .pc-nav__list > ul > li.has-child > a::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }
    .pc-nav__list > ul > li.has-child > a::before {
        right: 0;
        width: 14px;
        height: 14px;
        background: var(--color-rd);
    }
    .pc-nav__list > ul > li.has-child > a::after {
        top: 50%;
        right: 5px;
        width: 4px;
        height: 4px;
        border-bottom: 1px solid var(--color-wh);
        border-right: 1px solid var(--color-wh);
        transform: translate(0, -50%) rotate(45deg);
    }
    
    .pc-nav__list > ul > li.has-child > .child {
        position: fixed;
		top: 74px;
        left: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
    }
    .pc-nav__list > ul > li.has-child:hover > .child {
        width: 100%;
        opacity: 1;
        max-height: 600px;
        pointer-events: painted;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }
    .pc-nav__list > ul > li.has-child > .child ul {
        width: 100%;
		padding: 25px;
		background: var(--color-sbl);
    }
    .pc-nav__list > ul > li.has-child > .child ul li {
        width: 100%;
        border-bottom: 1px solid var(--color-ord);
    }
    .pc-nav__list > ul > li.has-child > .child ul li a {
        position: relative;
        width: 100%;
		padding: 8px 15px;
		color: var(--color-wh);
        font-size: 0.85rem;
        font-weight: 700;
        transition: .2s;
    }
    .pc-nav__list > ul > li.has-child > .child ul li a::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 15px;
        width: 6px;
        height: 6px;
        border-top: 1px solid var(--color-wh);
        border-right: 1px solid var(--color-wh);
        transform: translate(0, -50%) rotate(45deg);
        transition: .2s;
    }
    .pc-nav__list > ul > li.has-child > .child ul li a:hover {
        background: var(--color-wh);
        color: var(--color-bk);
    }
    .pc-nav__list > ul > li.has-child > .child ul li a:hover::before {
        border-top: 1px solid var(--color-bk);
        border-right: 1px solid var(--color-bk);
    }
    .pc-head-link {
        position: relative;
        bottom: 30px;
        left: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
        padding-right: 30px;
        background: var(--color-wh);
    }
    .pc-head-contact a {
        display: flex;
        align-items: center;
        position: relative;
        height: 50px;
        padding: 0 25px;
        background: var(--color-nv);
        color: var(--color-wh);
    }
    .pc-head-link .pc-head-sns ul {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .pc-head-link .pc-head-sns ul li {
        width: 24px;
    }
}
@media screen and (min-width: 1280px) {
    .pc-nav {
        height: 74px;
    }
    .pc-nav__inner {
        height: 74px;
    }
    .pc-nav__list > ul {
        gap: 30px;
        height: 74px;
    }
    .pc-nav__list > ul > li {
        height: 74px;
    }
    .pc-nav__list > ul > li > a {
        height: 74px;
        font-size: 0.95rem;
    }
    .pc-nav__list > ul > li.has-child > .child ul li a {
        font-size: 0.95rem;
    }
    .pc-head-link {
        position: relative;
        bottom: auto;
        left: auto;
        width: auto;
        margin-right: 40px;
        padding-right: 0;
        background: none;
    }
    .pc-head-contact a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 1px;
        height: 30px;
        background: var(--color-bk);
        transform: translate(0, -50%);
    }
    .pc-head-contact a {
        display: flex;
        align-items: center;
        height: 74px;
        font-size: 0.95rem;
        font-weight: 700;
        background: none;
        color: var(--color-bk);
    }
}*/

.pc-links,
.pc-nav {
	display: none;
}
@media screen and (min-width: 1280px) {
	.pc-links,
	.pc-nav {
		display: block;
	}
	.pc-links {
		width: calc(100% - 300px);
	}
	.pc-links__inner {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		height: 60px;
		padding: 10px 0;
	}
	.pc-links-search {
		display: flex;
		align-items: center;
		margin-right: 40px;
	}
	.searchbox {
		display: flex;
		align-items: center;
		width: 100%;
		max-width: 500px;
		background: #fff;
		border: 1px solid #ccc;
		overflow: hidden;
	}
	.searchbox input[type="text"] {
		display: flex;
		align-items: center;
		flex: 1;
		min-width: 300px;
		height: 40px;
		padding: 5px 16px;
		border: none;
		outline: none;
		color: #333;
		line-height: 1;
	}
	.searchbox input[type="text"]::placeholder {
		color: #aaa;
	}
	.searchbox input[type="submit"] {
		display: flex;
		align-items: center;
		height: 40px;
		background: #333;
		color: #fff;
		border: none;
		padding: 5px 20px;
		cursor: pointer;
		transition: background 0.3s ease;
		line-height: 1;
	}

.searchbox input[type="submit"]:hover {
  background: #555;
}
	.pc-links-tel {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
		width: 200px;
		height: 60px;
		background: var(--color-kbl);
		color: var(--color-wh);
		font-weight: 700;
	}
	.pc-links-tel .icon {
		width: 30px;
		height: 30px;
		background: var(--color-wh);
		border-radius: 100%;
	}
	.pc-links-contact a {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 15px;
		width: 200px;
		height: 60px;
		background: var(--color-lrd);
		color: var(--color-wh);
		font-weight: 700;
	}
	.pc-links-contact a .icon {
		width: 30px;
		height: 30px;
		background: var(--color-wh);
		border-radius: 100%;
	}
	.pc-links-contact a .text {
		padding-top: 2px;
	}
	
	
	.pc-nav {
		width: 100%;
        background: var(--color-wgy);
	}
	
	.pc-nav__inner {
		width: 100%;
	}
	.pc-nav__menu {
		width: 100%;
	}
	.pc-nav__menu > ul {
        display: flex;
        flex-direction: row;
        gap: 35px;
		justify-content: center;
        align-items: center;
		width: 100%;
        height: 50px;
    }
    .pc-nav__menu > ul > li {
        height: 50px;
    }
    .pc-nav__menu > ul > li > a {
        display: flex;
        align-items: center;
        position: relative;
        height: 50px;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1;
    }
    .pc-nav__menu > ul > li.has-child > a {
        padding-right: 25px;
    }
    .pc-nav__menu > ul > li.has-child > a::before,
    .pc-nav__menu > ul > li.has-child > a::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }
	/*
    .pc-nav__menu > ul > li.has-child > a::before {
        right: 0;
        width: 14px;
        height: 14px;
        background: var(--color-rd);
    }*/
    .pc-nav__menu > ul > li.has-child > a::after {
        top: 50%;
        right: 5px;
        width: 6px;
        height: 6px;
        border-bottom: 1px solid var(--color-bk);
        border-right: 1px solid var(--color-bk);
        transform: translate(0, -50%) rotate(45deg);
    }
    
    .pc-nav__menu > ul > li.has-child > .child {
        position: fixed;
		top: 110px;
        left: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
    }
    .pc-nav__menu > ul > li.has-child:hover > .child {
        width: 100%;
        opacity: 1;
        max-height: 600px;
        pointer-events: painted;
        transition: opacity 0.3s ease, max-height 0.3s ease;
		background: var(--color-kbl);
    }
    .pc-nav__menu > ul > li.has-child > .child ul {
		display: flex;
		flex-wrap: wrap;
        width: 100%;
		max-width: 1400px;
		margin: auto;
		padding: 40px 25px 30px;
    }
    .pc-nav__menu > ul > li.has-child > .child ul li {
        width: 25%;
        border-bottom: 1px solid var(--color-ord);
    }
    .pc-nav__menu > ul > li.has-child > .child ul li a {
        position: relative;
        width: 100%;
		padding: 8px 15px;
		color: var(--color-wh);
        font-size: 0.85rem;
        font-weight: 700;
        transition: .2s;
    }
	.pc-nav__menu > ul > li.has-child > .child ul li a span {
		display: block;
	}
	.pc-nav__menu > ul > li.has-child > .child ul li a span.image {
		width: 100%;
		height: 120px;
		transition: .5s;
	}
	.pc-nav__menu > ul > li.has-child > .child ul li a:hover .image {
		opacity: 0.8;
	}
	.pc-nav__menu > ul > li.has-child > .child ul li a span.image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.pc-nav__menu > ul > li.has-child > .child ul li a span.text {
		padding: 5px 0;
		font-size: 0.95rem;
	}
}

/* --------------------------------------------------
 page common
--------------------------------------------------- */

main {
    flex: 1;
    padding-top: 64px;
}
.main__inner {
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    main {
        padding-top: 80px;
    }
    .main__inner {
        padding-bottom: 60px;
    }
}
@media screen and (min-width: 1024px) {
    main {
        padding-top: 70px;
    }
    .main__inner {
        padding-bottom: 80px;
    }
}
@media screen and (min-width: 1280px) {
    main {
        padding-top: 74px;
    }
}
.is-top .main__inner {
    padding-bottom: 0;
}

.jp__text {
    font-family: var(--font-jp);
}
.en__text {
    font-family: var(--font-en);
}

.breadcrumb {
    z-index: 1;
    position: relative;
    width: 100%;
}
.breadcrumb__inner {
    z-index: 2;
    position: relative;
    width: 100%;
}
.breadcrumb__inner ul {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding: 20px;
}
.breadcrumb__inner ul li {
    position: relative;
    font-size: 0.75rem;
}
.breadcrumb__inner ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 1px;
    height: 12px;
    background: var(--color-bk);
    transform: translate(0,-50%) rotate(40deg);
}
.breadcrumb__inner ul li:nth-last-child(1)::before {
    display: none;
}
@media screen and (min-width: 768px) {
    .breadcrumb__inner ul {
		max-width: 1000px;
		margin: auto;
        padding: 50px 40px 20px;
    }
}
@media screen and (min-width: 1024px) {
	.breadcrumb__inner ul {
		padding: 70px 60px 20px;
    }
}
@media screen and (min-width: 1280px) {
	.breadcrumb__inner ul {
		max-width: 1400px;
	}
}


.page-product .page-header {
    z-index: 1;
    position: relative;
    width: 100%;
}
.page-product .page-header__inner {
    z-index: 4;
    display: flex;
	flex-direction: row-reverse;
	align-items: center;
    position: relative;
    width: 100%;
	height: 200px;
	background: var(--color-kbl);
	color: var(--color-wh);
	overflow: hidden;
}
.page-product .page-header__inner .image {
    width: 50%;
	height: auto;
	min-height: 280px;
    aspect-ratio: 2 / 3;
    overflow: hidden;
	border-radius: 100% 0 0 100%;
}
.page-product .page-header__inner .image__inner {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
}
.page-product .page-header__inner .image picture {
    width: 100%;
    height: 100%;
}
.page-product .page-header__inner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
	.page-product .page-header__inner {
		height: 280px;
	}
	.page-product .page-header__inner .image {
		width: 55%;
		height: auto;
		aspect-ratio: 1 / 1;
	}
}
@media screen and (min-width: 1024px) {
    .page-product .page-header__inner {
		height: 320px;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .page-header__inner {
		height: 400px;
	}
	.page-product .page-header__inner .image {
		display: flex;
		align-items: center;
		width: 52%;
		aspect-ratio: 1 / 1;
		border-radius: 100% 0 0 100%;
	}
}
@media screen and (min-width: 1601px) {
	.page-product .page-header__inner {
		height: 580px;
	}
	.page-product .page-header__inner .image {
		display: flex;
		align-items: center;
		width: 52%;
		aspect-ratio: 1 / 1;
		border-radius: 100% 0 0 100%;
	}
	.page-product .page-header__inner .image__inner {
		width: 100%;
		aspect-ratio: 16 / 12;
	}
}

.page-product .page-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
    padding: 26px 20px 20px;
}
.page-product .page-title p {
	padding-left: 0.2em;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1;
    text-align: left;
}
.page-product .page-title h1 {
    font-size: 1.2rem;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
	.page-product .page-title {
		gap: 10px;
		width: 45%;
		padding: 26px 60px 20px;
	}
	.page-product .page-title p {
		font-size: 1rem;
		letter-spacing: 0.03em;
	}
	.page-product .page-title h1 {
		font-size: 1.5rem;
		letter-spacing: 0.05em;
	}
}
@media screen and (min-width: 1024px) {
    .page-product .page-title {
		gap: 10px;
		width: 45%;
		padding: 26px 80px 20px;
	}
	.page-product .page-title p {
		font-size: 1.1rem;
		letter-spacing: 0.03em;
	}
	.page-product .page-title h1 {
		font-size: 1.7rem;
		letter-spacing: 0.05em;
	}
}
@media screen and (min-width: 1401px) {
    .page-product .page-title {
		gap: 20px;
		width: 44%;
		padding: 26px 80px 20px calc((100vw - 1600px) / 2);
	}
	.page-product .page-title p {
		font-size: 1.3rem;
		letter-spacing: 0.05em;
	}
	.page-product .page-title h1 {
		font-size: 2rem;
		letter-spacing: 0.1em;
	}
}


.page-product-new .page-header {
	position: relative;
	width: 100%;
}
.page-product-new .page-header__inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	position: relative;
	width: 100%;
	height: 140px;
	overflow: hidden;
	background: var(--color-kbl);
}
.page-product-new .page-header__inner .image {
	width: 45%;
}
.page-product-new .page-header__inner .image__inner {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 100% 0 0 100%;
	overflow: hidden;
}
.page-product-new .page-header__inner .image__inner picture {
	width: 100%;
}
.page-product-new .page-header__inner .image__inner picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-product-new .page-header__inner .title {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 55%;
	height: 100%;
	padding: 20px;
}
.page-product-new .page-header__inner .title .jp-text {
	font-size: 1.2rem;
	letter-spacing: .05em;
	color: var(--color-wh);
}
.page-product-new .page-header__inner .title .en-text {
	padding-left: 0.2em;
	letter-spacing: .05em;
	color: var(--color-wgy);
}
@media screen and (min-width: 768px) {
    .page-product-new .page-header__inner {
        height: 250px;
    }
    .page-product-new .page-header__inner .image {
        width: 55%;
    }
    .page-product-new .page-header__inner .image__inner {
        aspect-ratio: 4 / 5;
        border-radius: 100% 0 0 100%;
    }
    .page-product-new .page-header__inner .title {
        width: 45%;
        padding: 40px;
    }
    .page-product-new .page-header__inner .title .jp-text {
        font-size: 1.5rem;
    }
    .page-product-new .page-header__inner .title .en-text {
        padding-left: 0.2em;
        letter-spacing: .05em;
    }
}
@media screen and (min-width: 1024px) {
    .page-product-new .page-header__inner {
        height: 350px;
    }
    .page-product-new .page-header__inner .image {
        width: 50%;
    }
	.page-product-new .page-header__inner .title {
		gap: 8px;
        width: 50%;
        padding: 60px;
    }
    .page-product-new .page-header__inner .title .jp-text {
        font-size: 1.8rem;
    }
    .page-product-new .page-header__inner .title .en-text {
		font-size: 1.2rem;
    }
}
@media screen and (min-width: 1280px) {
    .page-product-new .page-header__inner {
        height: 400px;
    }
    .page-product-new .page-header__inner .image {
        width: 45%;
    }
    .page-product-new .page-header__inner .image__inner {
        aspect-ratio: 1 / 1;
    }
    .page-product-new .page-header__inner .title {
		gap: 8px;
        width: 55%;
        padding: 60px 60px 60px calc((100vw - 1200px) / 2);
    }
    .page-product-new .page-header__inner .title .jp-text {
        font-size: 2rem;
    }
    .page-product-new .page-header__inner .title .en-text {
		font-size: 1.3rem;
    }
}
@media screen and (min-width: 1401px) {
    .page-product-new .page-header__inner .title {
		gap: 8px;
        width: 55%;
        padding: 60px 60px 60px calc((100vw - 1400px) / 2);
    }
}

.page-base .page-header {
    z-index: 1;
    position: relative;
    width: 100%;
}
.page-base .page-header__inner {
    z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
    width: 100%;
}
.page-base .page-header__inner .image {
	width: 100%;
	height: 200px;
}
.page-base .page-header__inner .image__inner {
	width: 100%;
	height: 100%;
}
.page-base .page-header__inner .image__inner picture {
	width: 100%;
	height: 100%;
}
.page-base .page-header__inner .image__inner picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-base .page-header__inner .title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 20px;
}
.page-base .page-header__inner .title .jp-text {
	font-size: 1.2rem;
	letter-spacing: .05em;
	text-indent: .05em;
}
.page-base .page-header__inner .title .en-text {
	letter-spacing: .05em;
	text-indent: .05em;
}
@media screen and (min-width: 768px) {
	.page-base .page-header__inner .image {
		height: 280px;
	}
	.page-base .page-header__inner .title {
		gap: 10px;
		padding: 40px;
	}
	.page-base .page-header__inner .title .jp-text {
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 1024px) {
	.page-base .page-header__inner .image {
		height: 320px;
	}
	.page-base .page-header__inner .title {
		padding: 60px;
	}
	.page-base .page-header__inner .title .jp-text {
		font-size: 1.4rem;
	}
}
@media screen and (min-width: 1280px) {
	.page-base .page-header__inner .image {
		height: 450px;
	}
	.page-base .page-header__inner .title {
		padding: 60px;
	}
	.page-base .page-header__inner .title .jp-text {
		font-size: 1.6rem;
	}
}

.c-inner {
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
.c-inner p {
    font-size: 0.95rem;
}
@media screen and (min-width: 768px) {
    .c-inner {
        max-width: 1000px;
        margin: auto;
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (min-width: 1024px) {
    .c-inner {
        padding-left: 60px;
        padding-right: 60px;
    }
    .c-inner p {
        font-size: 1rem;
        line-height: 2;
    }
}
@media screen and (min-width: 1280px) {
    .c-inner {
        max-width: 1400px;
    }
}
@media screen and (min-width: 1401px) {
    .c-inner {
        max-width: 1400px;
    }
}

.c-head {
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}
.c-head__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 20px 20px 19px;
}
.c-head__inner p {
    font-family: var(--font-en-01);
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 1;
}
.c-head h2 {
    font-size: 0.8rem;
    letter-spacing: .05em;
    text-indent: .05em;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .c-head__inner {
        gap: 15px;
        max-width: 1000px;
        margin: auto;
        padding: 20px 40px 19px;
    }
    .c-head__inner p {
        font-size: 2.4rem;
    }
    .c-head h2 {
        font-size: 0.9rem;
    }
}
@media screen and (min-width: 1024px) {
    .c-head__inner {
        gap: 15px;
        padding: 20px 60px 19px;
    }
    .c-head__inner p {
        font-size: 2.4rem;
    }
    .c-head h2 {
        font-size: 0.9rem;
    }
}
@media screen and (min-width: 1280px) {
    .c-head__inner {
        max-width: 1400px;
        padding: 31px 60px 29px;
    }
    .c-head__inner p {
        font-size: 2.6rem;
    }
    .c-head h2 {
        font-size: 1rem;
    }
}



/* --------------------------------------------------
 front page
--------------------------------------------------- */

/* top section common
--------------------------------------------------- */

.top-section__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.top-section__head p {
	font-family: var(--font-en-01);
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1;
	color: var(--color-lbr);
}
.top-section__head h2 {
	font-size: 0.8rem;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	.top-section__head {
		gap: 12px;
	}
	.top-section__head p {
		font-size: 2.7rem;
	}
	.top-section__head h2 {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1024px) {
	.top-section__head {
		gap: 12px;
	}
	.top-section__head p {
		font-size: 3.2rem;
	}
	.top-section__head h2 {
		font-size: 1rem;
	}
	.top-merit__inner .top-section__head {
		align-items: flex-start;
		margin-bottom: -70px;
	}
	.top-news__inner .top-section__head {
		align-items: flex-start;
	}
}
@media screen and (min-width: 1280px) {
	.top-section__head {
		gap: 16px;
	}
	.top-section__head p {
		font-size: 3.6rem;
		letter-spacing: .03em;
	}
	.top-section__head h2 {
		font-size: 1.05rem;
		letter-spacing: .05em;
	}
	.top-merit__inner .top-section__head {
		align-items: flex-start;
		margin-bottom: -70px;
	}
	.top-news__inner .top-section__head {
		align-items: flex-start;
	}
}

/* mv
--------------------------------------------------- */

.mv {
	z-index: 1;
	position: relative;
	width: 100%;
}
.mv__inner {
	z-index: 2;
    position: relative;
	width: 100%;
}
.mv__splide .splide__slide .card {
	z-index: 1;
	position: relative;
    width: 100%;
	aspect-ratio: 1 / 1.4;
	overflow: hidden;
}
.mv__splide .splide__slide .card .card__image {
	z-index: 2;
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv__splide .splide__slide .card .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv__splide .splide__slide .card .card__desc {
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: 250px;
}
.mv__splide .splide__slide .card .card__title {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	align-items: flex-start;
}
.mv__splide .splide__slide .card .card__title span {
	display: inline;
	position: relative;
	width: auto;
	padding: 10px;
	color: var(--color-bk);
	font-family: var(--font-min);
	font-size: 1.55rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
}
.mv__splide .splide__slide .card .card__title span::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transiton: 1s;
	transition-delay: .5s;
	background: var(--color-wh);
}
.mv__splide .splide__slide.active .card .card__title span::before {
	width: 0;
	-webkit-animation: bg 0.7s ease-in-out 0.5s forwards;
	animation: bg 0.7s ease-in-out 0.5s forwards;
}
@-webkit-keyframes bg {
    0% {
        width: 0px;
    }
    to {
        width: 100%;
    }
}
@keyframes bg {
    0% {
        width: 0px;
    }
    to {
        width: 100%;
    }
}


.mv__splide .splide__slide .card .card__btn {
	position: relative;
	margin-top: 20px;
	margin-left: 10px;
	padding: 8px 34px 8px 8px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .1em;
	border-bottom: 1px solid var(--color-bk);
	line-height: 1;
}
.mv__splide .splide__slide .card .card__btn::before,
.mv__splide .splide__slide .card .card__btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
}
.mv__splide .splide__slide .card .card__btn::before {
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.mv__splide .splide__slide .card .card__btn::after {
	width: 15px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}

.mv__splide .splide__pagination {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    bottom: 30px;
}
.mv__splide .splide__pagination li {
    width: 100%;
    max-width: 30px;
    height: 3px;
}
.mv__splide .splide__pagination li button {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--color-wh);
}
.mv__splide .splide__pagination li button.is-active {
    width: 100%;
    transform: scale(1);
    background: var(--color-rd);
}
.mv__splide .splide__arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    background: #aaa;
}
.mv__splide .splide__arrow {
	display: none;
    width: 50px;
    height: 50px;
    background: var(--color-nv);
    opacity: 1;
}
.mv__splide .splide__arrow--prev {
    left: -25px;
}
.mv__splide .splide__arrow--next {
    right: -25px;
}
.mv__splide .splide__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--color-wh);
}
.mv__splide .splide__arrow--prev::before {
    right: 10px;
    border-left: 2px solid var(--color-wh);
    transform: translate(0, -50%) rotate(-45deg);
}
.mv__splide .splide__arrow--next::before {
    left: 10px;
    border-right: 2px solid var(--color-wh);
    transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
    .mv__splide .splide__slide .card {
        height: 540px;
    }
    .mv__splide .splide__slide .card .card__desc {
		top: 40px;
		left: 40px;
		height: 300px;
	}
	.mv__splide .splide__slide .card .card__title span {
		font-size: 1.8rem;
	}
	.mv__splide .splide__slide .card .card__btn {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1024px) {
    .mv__splide .splide__slide .card {
        height: auto;
		aspect-ratio: 16 / 9;
    }
	.mv__splide .splide__slide .card .card__desc {
		top: 40px;
		left: 10vw;
		height: 300px;
	}
	.mv__splide .splide__slide .card .card__title span {
		font-size: 2rem;
		letter-spacing: .1em;
	}
	.mv__splide .splide__pagination li {
		max-width: 50px;
		height: 4px;
	}
}
@media screen and (min-width: 1280px) {
	.mv__splide .splide__slide .card {
		height: calc(100svh - 74px);
	}
	.mv__splide .splide__slide .card .card__desc {
		top: 0;
		left: 8vw;
		height: 70%;
	}
	.mv__splide .splide__slide .card .card__title span {
		font-size: 2.8rem;
		letter-spacing: .2em;
		padding: 15px 10px 15px 20px;
	}
	.mv__splide .splide__slide .card .card__btn {
		margin-top: 25px;
		font-size: 1rem;
	}
}
@media screen and (min-width: 1401px) {
	.mv__splide .splide__slide .card .card__desc {
		left: 10vw;
	}
}

.mv-bg {
	z-index: 2;
	position: absolute;
	bottom: 20px;
	left: 0;
    right: 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}
.mv-bg ul {
	display: flex;
    width: 100%;
	gap: 20px;
}
.mv-bg ul li {
	flex: 0 0 auto;
    padding-left: 0.5em;
	font-family: var(--font-en-01);
	font-size: 4.5rem;
	font-weight: 600;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
	color: var(--color-wh);
}
.mv-bg ul li:nth-child(odd) {
    -webkit-animation: loop 180s -90s linear infinite;
    animation: loop 180s -90s linear infinite;
}
.mv-bg ul li:nth-child(even) {
    -webkit-animation: loop2 180s linear infinite;
    animation: loop2 180s linear infinite;
}
@-webkit-keyframes loop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@keyframes loop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}
@-webkit-keyframes loop2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}
@keyframes loop2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}
@media screen and (min-width: 768px) {
    .mv-bg {
	}
    .mv-bg ul li {
        font-size: 7rem;
    }
}
@media screen and (min-width: 1024px) {
    .mv-bg {
        bottom: 35px;
    }
}
@media screen and (min-width: 1280px) {
    .mv-bg {
        bottom: 45px;
    }
    .mv-bg ul li {
        font-size: 9rem;
    }
}

/* top about
--------------------------------------------------- */

.top-about {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.top-about::before {
	z-index: -1;
	content: "";
	position: absolute;
	top: -50px;
	left: -100px;
	width: 500px;
	height: 500px;
	border: 1px solid #efdad5;
	border-radius: 100%;
	opacity: 0.5;
}
.top-about__inner {
	display: flex;
	flex-direction: column;
	gap: 70px;
    position: relative;
	width: 100%;
	padding: 40px 0 70px;
}
.top-about__desc {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	padding: 0 20px;
}
.top-about__desc .text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}
.top-about__desc .text h2 {
	font-size: 1.1rem;
	line-height: 1.8;
	white-space: nowrap;
}
.top-about__desc .link {
	display: flex;
	width: 100%;
}
.top-about__desc .link a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	width: auto;
	padding: 14px 10px 14px 12px;
	background: var(--color-wh);
	color: var(--color-bk);
	border: 1px solid var(--color-bk);
	border-radius: 5px;
	font-weight: 700;
	line-height: 1;
}
.top-about__desc .link a span.link__icon {
	width: 25px;
	height: 25px;
	border-radius: 100%;
	background: var(--color-wh);
}
.top-about__desc .link a span.link__text {
	position: relative;
	padding-right: 40px;
}
.top-about__desc .link a span.link__text::before,
.top-about__desc .link a span.link__text::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
}
.top-about__desc .link a span.link__text::before {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.top-about__desc .link a span.link__text::after {
	width: 20px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
.top-about__image {
	display: flex;
	position: relative;
}
.top-about__image .image {
	z-index: 2;
	position: relative;
	width: calc(100% - 20px);
	height: 250px;
	margin-left: auto;
}
.top-about__image .image img {
	z-index: 3;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px 0 0 6px;
}
.top-about__image .image::before {
	z-index: 1;
	content: "";
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	background: var(--color-beg);
	border-radius: 0 6px 6px 0;
}
@media screen and (min-width: 768px) {
	.top-about::before {
		top: -150px;
		left: -200px;
		width: 800px;
		height: 800px;
	}
	.top-about__inner {
		gap: 100px;
		padding: 60px 0 90px;
	}
	.top-about__desc {
		gap: 50px;
		padding: 0 40px;
	}
	.top-about__desc .text h2 {
		font-size: 1.4rem;
	}
	.top-about__image .image {
		width: calc(100% - 60px);
		height: 450px;
	}
	.top-about__image .image::before {
		top: -40px;
		left: -60px;
	}
}
@media screen and (min-width: 1024px) {
	.top-about::before {
		top: -250px;
		left: -160px;
		width: 800px;
		height: 800px;
	}
	.top-about__inner {
		gap: 70px;
		flex-direction: row;
		align-items: flex-end;
		padding: 110px 60px 100px;
	}
	.top-about__desc {
		padding: 0 0 40px;
	}
	.top-about__image .image {
		width: calc(100% - 30px);
		height: 450px;
	}
	.top-about__image .image::before {
		top: -30px;
		left: -30px;
	}
	.top-about__image .image img {
		border-radius: 6px;
	}
	.top-about__image .image::before {
		border-radius: 6px;
	}
}
@media screen and (min-width: 1280px) {
	.top-about__inner {
		gap: 100px;
		max-width: 1600px;
		margin: auto;
	}
	.top-about__desc {
		width: 40%;
	}
	.top-about__image {
		width: 60%;
	}
	.top-about__inner {
		gap: 70px;
		flex-direction: row;
		align-items: flex-end;
		padding: 140px 90px 120px;
	}
}
@media screen and (min-width: 1601px) {
	.top-about::before {
		top: -190px;
		left: 320px;
		width: 900px;
		height: 900px;
		opacity: .7;
	}
	.top-about__inner {
		padding: 180px 90px 150px;
	}
	.top-about__desc {
		gap: 60px;
		width: 45%;
	}
	.top-about__desc .text {
		gap: 40px;
	}
	.top-about__desc .text h2 {
		font-size: 1.6rem;
	}
	.top-about__image {
		width: 55%;
		padding-left: 90px;
	}
}



/* top product
--------------------------------------------------- */

.top-product {
	z-index: 4;
	position: relative;
	width: 100%;
}
.top-product::before {
	z-index: 2;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(-70deg, #bbdaea 0%, #bbdaea 50%, #ededeb 50%, #ededeb 100%);
}
.top-product__inner {
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 40px;
    position: relative;
	width: 100%;
	padding: 60px 0 40px;
}
.top-product__list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0 20px;
}
.top-product__list ul li {
	width: calc(50% - 10px);
}
.top-product__list ul li a {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	overflow: hidden;
	color: var(--color-wh);
}
.top-product__list ul li a span {
	display: block;
}
.top-product__list ul li a .desc {
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
}
.top-product__list ul li a .desc .icon {
	width: 70px;
}
.top-product__list ul li a .image::before {
	z-index: 2;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bk);
	opacity: 0.45;
}
.top-product__list ul li a .image {
	z-index: 1;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.top-product__list ul li a .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 768px) {
	.top-product::before {
		height: 80%;
	}
	.top-product__inner {
		gap: 60px;
		padding: 90px 0 40px;
	}
	.top-product__list ul {
		gap: 20px;
		padding: 0 40px;
	}
	.top-product__list ul li {
		width: calc(25% - (60px / 4));
	}
	.top-product__list ul li a .desc {
		gap: 5px;
	}
	.top-product__list ul li a .desc .icon {
		width: 80px;
	}
}
@media screen and (min-width: 1024px) {
	.top-product::before {
		background: linear-gradient(-40deg, #bbdaea 0%, #bbdaea 50%, #ededeb 50%, #ededeb 100%);
	}
	.top-product__inner {
		gap: 60px;
		padding: 120px 0 40px;
	}
	.top-product__list ul {
		gap: 25px;
		padding: 0 60px;
	}
	.top-product__list ul li {
		width: calc(25% - (75px / 4));
	}
	.top-product__list ul li a .desc {
		font-size: 1.05rem;
	}
	.top-product__list ul li a .desc .icon {
		width: 90px;
	}
}
@media screen and (min-width: 1280px) {
	.top-product__inner {
		max-width: 1600px;
		margin: auto;
	}
	.top-product__list ul {
		gap: 35px;
		padding: 0 90px;
	}
	.top-product__list ul li {
		width: calc(25% - (105px / 4));
	}
}
@media screen and (min-width: 1601px) {
	.top-product::before {
		height: 85%;
	}
	.top-product__inner {
		gap: 90px;
		padding: 150px 0 60px;
	}
	.top-product__list ul {
		gap: 40px;
	}
	.top-product__list ul li {
		width: calc(25% - (120px / 4));
	}
	.top-product__list ul li a {
		aspect-ratio: 6 / 5;
	}
	.top-product__list ul li a .image {
		aspect-ratio: 6 / 5;
	}
	.top-product__list ul li a .desc {
		font-size: 1.15rem;
	}
}


/* top merit
--------------------------------------------------- */

.top-merit {
	z-index: 3;
	position: relative;
	width: 100%;
}
.top-merit::before,
.top-merit::after {
	z-index: 1;
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border: 1px solid #efdad5;
	border-radius: 100%;
	opacity: 0.5;
}
.top-merit::before {
	top: -90px;
	right: -180px;
}
.top-merit::after {
	bottom: 140px;
	left: -180px;
}
.top-merit__inner {
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 40px;
    position: relative;
	width: 100%;
	padding: 40px 0;
}
.top-merit__list ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.top-merit__list ul li .image {
	width: 100%;
	height: 250px;
}
.top-merit__list ul li .image .mask,
.top-merit__list ul li .image .mask__inner {
	width: 100%;
	height: 100%;
}
.top-merit__list ul li .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-merit__list ul li .desc {
	padding: 20px;
}
.top-merit__list ul li .desc__head {
	display: flex;
	align-items: center;
	gap: 15px;
}
.top-merit__list ul li .desc__head .num {
	font-family: var(--font-en-02);
	font-size: 3.2rem;
	letter-spacing: -.05em;
	color: var(--color-lbl);
}
.top-merit__list ul li .desc__head h3 {
	font-size: 1.1rem;
}
.top-merit__list ul li .desc__text {
	z-index: 2;
	position: relative;
}
.top-merit__list ul li .desc__text p span {
	font-size: 0.85rem;
}
@media screen and (min-width: 768px) {
	.top-merit::before,
	.top-merit::after {
		width: 600px;
		height: 600px;
	}
	.top-merit::before {
		top: -90px;
		right: -100px;
	}
	.top-merit::after {
		bottom: 100px;
		left: -120px;
	}
	.top-merit__inner {
		gap: 60px;
		padding: 90px 0 40px;
	}
	.top-merit__list ul {
		gap: 80px;
	}
	.top-merit__list ul li {
		display: flex;
		flex-direction: row-reverse;
		align-items: flex-end;
		gap: 20px;
	}
	.top-merit__list ul li:nth-child(2n+2) {
		flex-direction: row;
	}
	.top-merit__list ul li .image {
		width: 40%;
		height: 300px;
		overflow: hidden;
	}
	.top-merit__list ul li .image {
		border-radius: 8px 0 0 8px;
	}
	.top-merit__list ul li:nth-child(2n+2) .image {
		border-radius: 0 8px 8px 0;
	}
	.top-merit__list ul li .desc {
		width: calc(60% - 20px);
		padding: 40px;
	}
	.top-merit__list ul li .desc__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.top-merit__list ul li .desc__head .num {
		font-size: 5rem;
		letter-spacing: -.03em;
		line-height: 1;
	}
	.top-merit__list ul li .desc__head h3 {
		font-size: 1.2rem;
		line-height: 2;
	}
}
@media screen and (min-width: 1024px) {
	.top-merit::before,
	.top-merit::after {
		width: 700px;
		height: 700px;
	}
	.top-merit::before {
		top: 120px;
		right: -90px;
	}
	.top-merit::after {
		bottom: 20px;
		left: -120px;
	}
	.top-merit__inner {
		gap: 60px;
		padding: 110px 60px 60px;
	}
	.top-merit__list ul {
		gap: 100px;
	}
	.top-merit__list ul li {
		gap: 60px;
	}
	.top-merit__list ul li .image {
		width: 50%;
		height: 360px;
		border-radius: 8px!important;
	}
	.top-merit__list ul li .desc {
		width: calc(50% - 60px);
		padding: 0 0 60px;
	}
	.top-merit__list ul li .desc__head h3 {
		font-size: 1.4rem;
	}
	.top-merit__list ul li .desc__text {
		padding-top: 20px;
	}
	.top-merit__list ul li .desc__text p {
		font-size: 1.05rem;
	}
	.top-merit__list ul li .desc__text p span {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1280px) {
	.top-merit::before,
	.top-merit::after {
		width: 900px;
		height: 900px;
	}
	.top-merit::before {
		top: 120px;
		right: -120px;
	}
	.top-merit::after {
		bottom: -50px;
		left: -120px;
	}
	.top-merit__inner {
		max-width: 1600px;
		margin: auto;
		padding: 140px 90px 90px;
	}
	.top-merit__list ul {
		gap: 100px;
	}
	.top-merit__list ul li {
		gap: 120px;
	}
	.top-merit__list ul li .image {
		width: calc(50% - 60px);
		height: 380px;
	}
	.top-merit__list ul li .desc {
		width: calc(50% - 60px);
		padding: 0 0 60px;
	}
	.top-merit__list ul li .desc__head .num {
		font-size: 7rem;
	}
	.top-merit__list ul li .desc__head h3 {
		font-size: 1.5rem;
		line-height: 1.8;
	}
}
@media screen and (min-width: 1601px) {
	.top-merit::before,
	.top-merit::after {
		width: 1100px;
		height: 1100px;
	}
	.top-merit::before {
		top: 120px;
		right: 100px;
	}
	.top-merit::after {
		bottom: -50px;
		left: -120px;
	}
	.top-merit__list ul li .image {
		height: 420px;
		border-radius: 10px!important;
	}
}


/* top topics
--------------------------------------------------- */

.top-topics {
    position: relative;
    width: 100%;
    padding: 30px 0 60px;
}
@media screen and (min-width: 768px) {
    .top-topics {
        padding: 80px 0;
    }
}
@media screen and (min-width: 1024px) {
    .top-topics {
        padding: 100px 0;
    }
}
@media screen and (min-width: 1280px) {
    .top-topics {
        padding: 120px 0;
    }
}

.topics__splide {
    z-index: 7;
    position: relative;
    padding-top: 40px;
}
.topics__splide .splide__wrapper {
	z-index: 1;
	position: relative;
}
.topics__splide .splide__slide {
	border-radius: 6px;
	overflow: hidden;
	background: var(--color-nv);
}
.topics__splide .image {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	background: var(--color-wh);
	overflow: hidden;
}
.topics__splide .image .mask,
.topics__splide .image .mask__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.topics__splide .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.topics__splide .desc {
    z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
    position: relative;
	padding: 25px 20px 20px;
	color: var(--color-wh);
}
.topics__splide .desc__head {
	width: 100%;
	font-weight: 700;
	font-size: 1.1rem;
}
.topics__splide .desc__text {
	width: 100%;
	font-size: 0.9rem;
	line-height: 1.5;
	text-align: justify;
}

.topics__splide .splide__controller {
	display: none;
}
@media screen and (min-width: 768px) {
    .topics__splide {
        padding-top: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .topics__splide {
        padding-top: 70px;
    }
}

/* top news
--------------------------------------------------- */

.top-news {
    position: relative;
    width: 100%;
	background: var(--color-sbl);
	padding: 60px 20px 70px;
}
.top-news__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	position: relative;
	padding: 60px 20px 70px;
	background: linear-gradient(-70deg, #fff 0%, #fff 50%, #fafafa 50%, #fafafa 100%);
	border-radius: 4px;
}
.top-news__contents {
	width: 100%;
}
.top-news__contents .news-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}
.top-news__contents .news-list .news-item {
	width: 100%;
}
.top-news__contents .news-list .news-item a {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid var(--color-gy);
}
.top-news__contents .news-list .news-item a .post-head {
	display: flex;
	align-items: center;
	gap: 20px;
}
.top-news__contents .news-list .news-item a .post-head .post-category {
	display: flex;
	justify-content: center;
	width: 140px;
	padding: 8px 20px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .05em;
	text-indent: .05em;
	line-height: 1;
	text-align: center;
	color: var(--color-wh);
	border-radius: 20px;
}
.top-news__contents .news-list .news-item a .post-head .category-information {
	background: var(--color-sbl);
}
.top-news__contents .news-list .news-item a .post-head .category-campaign {
	background: var(--color-lrd);
}
.top-news__contents .news-list .news-item a .post-desc {
	display: flex;
	gap: 15px;
}
.top-news__contents .news-list .news-item a .post-desc h3 {
	width: calc(100% - 40px);
	font-size: 1rem;
	font-weight: 500;
}
.top-news__contents .news-list .news-item a .post-desc .btn {
	position: relative;
	width: 25px;
	height: 25px;
	border-radius: 100%;
	border: 1px solid var(--color-dgy);
}
.top-news__contents .news-list .news-item a .post-desc .btn::before,
.top-news__contents .news-list .news-item a .post-desc .btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
}
.top-news__contents .news-list .news-item a .post-desc .btn::before {
	margin-left: 5px;
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--color-dgy);
	border-right: 1px solid var(--color-dgy);
	transform: translate(-50%, -50%) rotate(45deg);
}
.top-news__contents .news-list .news-item a .post-desc .btn::after {
	width: 12px;
	height: 1px;
	background: var(--color-dgy);
	transform: translate(-50%, -50%);
}
.top-news__more {
	position: absolute;
	bottom: -20px;
	left: 50%;
	width: 200px;
	transform: translate(-50%, 0);
}
.top-news__more a {
	width: 100%;
	padding: 10px 10px 8px;
	background: var(--color-bgy);
	color: var(--color-wh);
	font-family: var(--font-en-02);
	font-size: 1.25rem;
	line-height: 1;
	text-align: center;
	border-radius: 20px;
}
@media screen and (min-width: 768px) {
	.top-news {
		padding: 80px 40px 90px;
	}
	.top-news__inner {
		gap: 40px;
		padding: 60px 40px 70px;
	}
	.top-news__more a {
		padding: 12px 10px 10px;
		font-size: 1.4rem;
		border-radius: 30px;
	}
}
@media screen and (min-width: 1024px) {
	.top-news {
		padding: 80px 60px 90px;
	}
	.top-news__inner {
		flex-direction: row;
		padding: 60px 60px 90px;
		background: linear-gradient(-20deg, #fff 0%, #fff 50%, #fafafa 50%, #fafafa 100%);
	}
	.top-news__head {
		padding-top: 30px;
	}
	.top-news__contents {
		padding-left: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.top-news {
		padding: 100px 90px 110px;
	}
	.top-news__inner {
		max-width: 1420px;
		margin: auto;
		padding: 110px 90px 140px;
	}
	.top-news__more {
		width: 280px;
	}
}
@media screen and (min-width: 1601px) {
	.top-news {
		padding: 150px 90px 160px;
	}
	.top-news__contents {
		padding-left: 80px;
	}
	.top-news__contents .news-list .news-item a {
		flex-direction: row;
		align-items: center;
		padding: 30px;
	}
	.top-news__contents .news-list .news-item a .post-head {
		width: 250px;
	}
	.top-news__contents .news-list .news-item a .post-desc {
		width: calc(100% - 250px);
	}
	.top-news__contents .news-list .news-item a .post-desc .btn {
		margin-left: auto;
	}
	.top-news__more a {
		padding: 16px 10px 14px;
		font-size: 1.5rem;
		border-radius: 40px;
	}
}


/* top archive
--------------------------------------------------- */

.top-archive__inner {
	padding: 80px 0 40px;
}
.top-archive__list {
	padding: 35px 0 20px;
}
.top-archive__list ul {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--color-gy);
}
.top-archive__list ul li {
	width: 33.3333%;
	border-bottom: 1px solid var(--color-gy);
	border-right: 1px solid var(--color-gy);
}
.top-archive__list ul li:nth-child(3n+3) {
	border-right: 0;
}
.top-archive__list ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 15px 10px;
}
.top-archive__list ul li a .desc {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.top-archive__list ul li a .desc .icon {
	width: 90px;
}
.top-archive__list ul li a .desc .text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	font-size: 0.85rem;
	line-height: 1.5;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.top-archive__inner {
		padding: 100px 0 60px;
	}
	.top-archive__list {
		padding: 50px 40px 30px;
	}
	.top-archive__list ul {
		gap: 30px;
		border: 0;
	}
	.top-archive__list ul li {
		width: calc(33.3333% - (60px / 3));
		aspect-ratio: 1 / 1;
		border: 10px solid var(--color-wgy)!important;
		border-radius: 100%;
	}
	.top-archive__list ul li a {
		height: 100%;
	}
	.top-archive__list ul li a .desc {
		height: 100%;
	}
	.top-archive__list ul li a .desc .icon {
		width: 120px;
	}
	.top-archive__list ul li a .desc .text {
		font-size: 0.95rem;
	}
}
@media screen and (min-width: 1024px) {
	.top-archive__list {
		padding: 50px 60px 30px;
	}
	.top-archive__list ul {
		justify-content: center;
	}
	.top-archive__list ul li {
		width: 250px;
		border: 12px solid var(--color-wgy)!important;
	}
	.top-archive__list ul li a .desc .icon {
		width: 130px;
	}
	.top-archive__list ul li a .desc .text {
		font-size: 1rem;
	}
}
@media screen and (min-width: 1280px) {
	.top-archive__list {
		padding: 70px 90px 50px;
	}
	.top-archive__list ul {
		gap: 50px;
	}
	.top-archive__list ul li {
		width: 280px;
		border: 14px solid var(--color-wgy)!important;
	}
	.top-archive__list ul li a .desc {
		gap: 8px;
	}
	.top-archive__list ul li a .desc .icon {
		width: 150px;
	}
	.top-archive__list ul li a .desc .text {
		font-size: 1.05rem;
	}
}


/* --------------------------------------------------
 page product parent
--------------------------------------------------- */

.product-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 20px 20px 0;
}
.product-card {
	width: calc(50% - 5px);
}
.product-card a {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.product-card a h3 {
	font-size: 0.9rem;
	font-weight: 400;
	text-align: center;
}
.product-thumb {
	width: 100%;
	aspect-ratio: 5 / 3;
	overflow: hidden;
}
.product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 768px) {
	.product-list {
		gap: 20px;
		max-width: 1200px;
		margin: auto;
		padding: 0 40px 0;
	}
	.product-card {
		width: calc(33.3333% - (40px / 3));
	}
}
	

/* --------------------------------------------------
 page product
--------------------------------------------------- */

.page-product {
	background: var(--color-wgy);
	padding-bottom: 0;
}
.page-product .section-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding-top: 30px;
}

.page-product .product-section {
	margin-top: -90px;
	padding: 90px 0 0;
}
.page-product .product-section .section-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.page-product .section-wrapper {
		gap: 80px;
	}
	.page-product .product-section {
		margin-top: -160px;
		padding: 160px 0 0;
	}
	.page-product .product-section .section-inner {
		padding: 0 40px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product .section-wrapper {
		padding-top: 70px;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .section-wrapper {
		padding-top: 90px;
	}
}

.page-product .product-main .section-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.page-product .product-main .section-inner {
		gap: 60px;
	}
}
@media screen and (min-width: 768px) {
	.page-product .product-section .section-text {
		width: 100%;
	}
	.page-product .product-main .section-text p {
		text-align: center;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .product-main .section-inner {
		gap: 60px;
	}
}

.page-product .product-section .section-lhead {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding-bottom: 20px;
}
.page-product .product-section .section-lhead__icon {
	display: flex;
	align-items: center;
	width: 90px;
	aspect-ratio: 1 / 1;
	background: var(--color-kbl);
	border-radius: 100%;
}
.page-product .product-section .section-lhead__text {
	padding-top: 15px;
}
.page-product .product-section .section-lhead__text h2 {
	font-size: 1.1rem;
}
.page-product .product-section .section-lhead__deco {
    z-index: 4;
    position: relative;
    width: 100%;
	height: 20px;
}
.page-product .product-section .section-lhead__deco span {
    position: absolute;
    top: 0;
    width: calc(50% - 10px);
    height: 100%;
    border-top: 1px solid var(--color-bk);
}
.page-product .product-section .section-lhead__deco span:nth-child(1) {
    left: 0;
}
.page-product .product-section .section-lhead__deco span:nth-child(2) {
    right: 0;
}
.page-product .product-section .section-lhead__deco span:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -5px;
    width: 1px;
    height: 100%;
    background: var(--color-bk);
    transform: rotate(30deg);
}
@media screen and (min-width: 1024px) {
	.page-product .product-section .section-lhead {
		gap: 30px;
		max-width: 1200px;
		margin: auto;
		padding-bottom: 25px;
	}
	.page-product .product-section .section-lhead__icon {
		width: 140px;
	}
	.page-product .product-section .section-lhead__text {
		padding: 20px 0 10px;
	}
	.page-product .product-section .section-lhead__text h2 {
		font-size: 1.3rem;
	}
	.page-product .product-section .section-lhead__deco {
		width: 60%;
		min-width: 600px;
		height: 30px;
	}
	.page-product .product-section .section-lhead__deco span:nth-child(2)::before {
		left: -7px;
	}
}


.page-product .product-section .section-links {
	width: 100%;
}
.page-product .product-section .section-links ul {
	display: flex;
	width: 100%;
}
.page-product .product-main .section-links ul {
	gap: 10px;
}
.page-product .product-main .section-links ul li {
	width: 100%;
	background: var(--color-wh);
}
.page-product .product-main .section-links ul li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	position: relative;
	width: 100%;
	padding: 15px 0 35px;
	font-size: 0.8rem;
}
.page-product .product-main .section-links ul li a::before {
	content: "";
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid var(--color-kbl);
	border-right: 2px solid var(--color-kbl);
	transform: translate(-50%, 0) rotate(45deg);
}
.page-product .product-main .section-links ul li a span {
	display: block;
}
.page-product .product-main .section-links ul li a span.section-links__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	aspect-ratio: 1 / 1;
	background: var(--color-kbl);
	border-radius: 100%;
}
@media screen and (min-width: 768px) {
	.page-product .product-main .section-links ul {
		gap: 15px;
	}
	.page-product .product-main .section-links ul li a {
		font-size: 0.9rem;
	}
	.page-product .product-main .section-links ul li a span.section-links__icon {
		width: 90px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product .product-main .section-links ul {
		gap: 20px;
	}
	.page-product .product-main .section-links ul li a {
		gap: 15px;
		padding: 25px 0 45px;
		font-size: 1rem;
	}
	.page-product .product-main .section-links ul li a::before {
		bottom: 20px;
		width: 8px;
		height: 8px;
	}
	.page-product .product-main .section-links ul li a span.section-links__icon {
		width: 100px;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .product-section .section-links {
		max-width: 1200px;
		margin: auto;
	}
}

.page-product .product-section .section-blocks {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}
.page-product .product-section .block-box {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.page-product .product-section .block-box__head {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 15px;
	background: var(--color-tbl);
	color: var(--color-wh);
}
.page-product .product-section .block-box__head .block-box__head-deco {
	display: flex;
	gap: 4px;
}
.page-product .product-section .block-box__head .block-box__head-deco span {
	width: 5px;
	height: 5px;
	background: var(--color-wh);
	border-radius: 100%;
}
.page-product .product-section .block-box__head .block-box__head-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.page-product .product-section .block-box__head .block-box__head-text h3 {
	font-size: 0.8rem;
}
.page-product .product-section .block-box__head .block-box__head-text h2 {
	font-size: 1.05rem;
	letter-spacing: .03em;
}
.page-product .product-section .block-box__head .block-box__head-text h2 span {
	color: #ffde8d;
}

.page-product .product-section .block-box__contents {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
	background: var(--color-wh);
}
.page-product .product-section .block-box__contents .block-text {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0 20px;
}
.page-product .product-section .block-box__contents .block-text p {
	font-size: 0.9rem;
}
.page-product .product-section .block-box__contents .block-text p span {
	font-size: 0.8rem;
}
.page-product .product-section .block-box__contents .block-attention {
	margin: -20px 0 0;
	padding: 12px 20px;
	background: var(--color-dwgy);
}
.page-product .product-section .block-box__contents .block-attention p {
	font-size: 0.8rem;
	text-align: center;
}
.page-product .product-section .block-box__contents .block-image {
	padding: 0 20px;
}
.page-product .product-section .block-box__contents .block-columns {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.page-product .product-section .block-box__contents .block-columns .column-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 20px;
	border-bottom: 1px solid var(--color-wgy);
}
.page-product .product-section .block-box__contents .block-columns .column-item .image {
	display: flex;
	align-items: center;
	width: 160px;
	margin-bottom: 10px;
	padding: 15px;
	aspect-ratio: 1 / 1;
	border: 8px solid var(--color-wgy);
	border-radius: 100%;
}
.page-product .product-section .block-box__contents .block-columns .column-item h4 {
	text-align: center;
	line-height: 1.6em;
	color: var(--color-kbl);
}
.page-product .product-section .block-box__contents .block-link {
	padding: 20px;
}
.page-product .product-section .block-box__contents .block-link a {
	position: relative;
	padding: 15px;
	font-weight: 700;
	line-height: 1;
	background: var(--color-kbl);
	color: var(--color-wh);
}
.page-product .product-section .block-box__contents .block-link a::before,
.page-product .product-section .block-box__contents .block-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
}
.page-product .product-section .block-box__contents .block-link a::before {
	width: 6px;
	height: 6px;
	border-top: 1.2px solid var(--color-wh);
	border-right: 1.2px solid var(--color-wh);
	transform: translate(0, -50%) rotate(45deg);
}
.page-product .product-section .block-box__contents .block-link a::after {
	width: 24px;
	height: 1.2px;
	background: var(--color-wh);
	transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
	.page-product .product-section .block-box__head {
		gap: 25px;
		padding: 20px;
	}
	.page-product .product-section .block-box__head .block-box__head-deco {
		gap: 5px;
	}
	.page-product .product-section .block-box__head .block-box__head-deco span {
		width: 5px;
		height: 5px;
	}
	.page-product .product-section .block-box__head .block-box__head-text {
		gap: 5px;
	}
	.page-product .product-section .block-box__head .block-box__head-text h3 {
		font-size: 0.9rem;
	}
	.page-product .product-section .block-box__head .block-box__head-text h2 {
		font-size: 1.15rem;
	}
	.page-product .product-section .block-box__contents {
		gap: 40px;
		padding: 40px 0;
	}
	.page-product .product-section .block-box__contents .block-text {
		gap: 15px;
		padding: 0 30px;
	}
	.page-product .product-section .block-box__contents .block-text p {
		font-size: 0.95rem;
	}
	.page-product .product-section .block-box__contents .block-text p span {
		font-size: 0.85rem;
	}
	.page-product .product-section .block-box__contents .block-attention {
		margin: -40px 0 0;
		padding: 12px 30px;
	}
	.page-product .product-section .block-box__contents .block-attention p {
		font-size: 0.85rem;
	}
	.page-product .product-section .block-box__contents .block-image {
		padding: 0 30px;
	}
	.page-product .product-section .block-box__contents .block-columns {
		gap: 30px;
		align-items: flex-start;
		padding: 5px 30px 0;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item {
		gap: 10px;
		width: calc(33.33333% - 20px);
		padding: 0;
		border-bottom: 0;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item .image {
		width: 160px;
		margin-bottom: 0;
		padding: 15px;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item h4 {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 60px;
		font-size: 1rem;
		line-height: 1.4em;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	.page-product .product-section .block-box__contents .block-link {
		display: flex;
		justify-content: center;
		padding: 15px 20px 15px;
	}
	.page-product .product-section .block-box__contents .block-link a {
		width: 250px;
		padding: 20px 25px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product .product-section .block-box__head {
		gap: 30px;
		padding: 30px 40px;
	}
	.page-product .product-section .block-box__head .block-box__head-deco {
		gap: 8px;
	}
	.page-product .product-section .block-box__head .block-box__head-deco span {
		width: 7px;
		height: 7px;
	}
	.page-product .product-section .block-box__head .block-box__head-text {
		gap: 8px;
	}
	.page-product .product-section .block-box__head .block-box__head-text h3 {
		font-size: 1rem;
	}
	.page-product .product-section .block-box__head .block-box__head-text h2 {
		font-size: 1.3rem;
	}
	.page-product .product-section .block-box__contents {
		gap: 50px;
		padding: 40px 0 60px;
	}
	.page-product .product-section .block-box__contents .block-text {
		gap: 20px;
		padding: 0 60px;
	}
	.page-product .product-section .block-box__contents .block-text p {
		font-size: 1rem;
		line-height: 1.8;
	}
	.page-product .product-section .block-box__contents .block-text p span {
		font-size: 0.9rem;
	}
	.page-product .product-section .block-box__contents .block-attention p {
		font-size: 0.95rem;
	}
	.page-product .product-section .block-box__contents .block-image {
		padding: 0 60px;
	}
	.page-product .product-section .block-box__contents .block-columns {
		gap: 45px;
		padding: 5px 60px 0;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item {
		gap: 15px;
		width: calc(33.33333% - (90px / 3));
		padding: 0;
		border-bottom: 0;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item .image {
		width: 200px;
		margin-bottom: 0;
		padding: 15px;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item h4 {
		height: 80px;
		font-size: 1.2rem;
		line-height: 1.4em;
	}
	.page-product .product-section .block-box__contents .block-link a {
		width: 270px;
		padding: 25px 30px;
		font-weight: 700;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .product-section .section-blocks {
		max-width: 1200px;
		margin: auto;
	}
	.page-product .product-section .block-box__contents .block-text {
		padding: 0 90px;
	}
	.page-product .product-section .block-box__contents .block-image {
		padding: 0 90px;
	}
	.page-product .product-section .block-box__contents .block-columns {
		padding: 5px 90px 0;
	}
	.page-product .product-section .block-box__contents .block-columns .column-item .image {
		width: 260px;
		margin-bottom: 0;
		padding: 25px;
		border-width: 12px;
	}
}

.page-product .product-section .section-points {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
}
.page-product .product-section .point-block {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding: 30px 20px;
	background: var(--color-wh);
	border-radius: 8px;
}
.page-product .product-section .point-block .point-head {
	display: flex;
	flex-direction: column-reverse;
	gap: 20px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--color-dwgy);
}
.page-product .product-section .point-block .point-head .point-head__desc {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.page-product .product-section .point-block .point-head .point-head__desc .point-number {
	font-family: var(--font-en-01);
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: .05em;
	color: var(--color-lbl);
}
.page-product .product-section .point-block .point-head .point-head__desc h3 {
	font-size: 1.15rem;
	letter-spacing: .03em;
}
.page-product .product-section .point-block .point-head .point-head__desc h3 span {
	color: var(--color-tbl);
}
.page-product .product-section .point-block .point-head .point-head__desc p span {
	display: block;
	font-size: 0.8rem;
	line-height: 1.6;
}
.page-product .product-section .point-block .point-head .point-head__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.page-product .product-section .point-block .point-head .point-head__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-product .product-section .point-block .point-desc {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.page-product .product-section .point-block .point-desc__sub p {
	font-size: 0.8rem;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.page-product .product-section .point-block {
		gap: 40px;
		padding: 40px 30px;
	}
	.page-product .product-section .point-block .point-head {
		flex-direction: row;
		align-items: center;
		gap: 50px;
		padding-bottom: 40px;
	}
	.page-product .product-section .point-block .point-head .point-head__image {
		width: 42%;
		height: auto;
		aspect-ratio: 1 / 1;
		overflow: hidden;
		border-radius: 100%;
	}
	.page-product .product-section .point-block .point-head .point-head__desc {
		gap: 25px;
		width: calc(58% - 50px);
	}
	.page-product .product-section .point-block .point-head .point-head__desc .point-number {
		font-size: 1.8rem;
	}
	.page-product .product-section .point-block .point-head .point-head__desc h3 {
		font-size: 1.25rem;
	}
	.page-product .product-section .point-block .point-head .point-head__desc p span {
		font-size: 0.85rem;
	}
	.page-product .product-section .point-block .point-desc {
		gap: 25px;
	}
	.page-product .product-section .point-block .point-desc__sub p {
		font-size: 0.85rem;
	}
}
@media screen and (min-width: 1024px) {
	.page-product .product-section .point-block {
		gap: 60px;
		padding: 60px 60px;
	}
	.page-product .product-section .point-block .point-head {
		gap: 70px;
		padding-bottom: 60px;
	}
	.page-product .product-section .point-block .point-head .point-head__image {
		width: 42%;
	}
	.page-product .product-section .point-block .point-head .point-head__desc {
		gap: 28px;
		width: calc(58% - 70px);
	}
	.page-product .product-section .point-block .point-head .point-head__desc .point-number {
		font-size: 1.8rem;
	}
	.page-product .product-section .point-block .point-head .point-head__desc h3 {
		font-size: 1.4rem;
	}
	.page-product .product-section .point-block .point-head .point-head__desc p span {
		font-size: 0.9rem;
	}
	.page-product .product-section .point-block .point-desc {
		gap: 30px;
	}
	.page-product .product-section .point-block .point-desc__sub p {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1280px) {
	.page-product .product-section .section-points {
		max-width: 1200px;
		margin: auto;
	}
	.page-product .product-section .point-block {
		gap: 60px;
		padding: 60px 90px;
	}
	.page-product .product-section .point-block .point-head .point-head__image {
		width: 36%;
	}
	.page-product .product-section .point-block .point-head .point-head__desc {
		gap: 28px;
		width: calc(64% - 70px);
	}
}

.page-product .product-faq .section-inner {
	padding: 40px 20px;
	background: var(--color-wh);
}
@media screen and (min-width: 768px) {
	.page-product .product-faq .section-inner {
		padding: 50px 40px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product .product-faq .section-inner {
		padding: 60px 0 80px;
	}
	.page-product .product-faq .section-inner .section-text {
		width: 100%;
		max-width: 900px;
		margin: auto;
		padding: 0 60px;
	}
	.page-product .product-faq .section-inner .section-text p {
		font-size: 1rem;
		line-height: 2;
		text-align: justify;
	}
}


.page-product-new .section-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 15px 0 0;
}
.page-product-new .product-section {
	margin-top: -90px;
	padding: 90px 0 0;
}
.page-product-new .product-section .section-inner {
	display: flex;
	flex-direction: column;
	gap: 25px;
} 
.page-product-new .product-main .section-inner {
    padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section {
		margin-top: -140px;
		padding: 140px 0 0;
	}
    .page-product-new .product-main .section-inner {
        gap: 40px;
        padding: 0 40px;
    }
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-main .section-inner {
        gap: 40px;
        padding: 0 60px;
    }
}
@media screen and (min-width: 1280px) {
    .page-product-new .product-section .section-inner {
        max-width: 1200px;
        margin: auto;
    }
    .page-product-new .product-intro .section-inner,
    .page-product-new .product-partner .section-inner {
        max-width: calc(100% - 40px);
    }
}
@media screen and (min-width: 1401px) {
    .page-product-new .product-section .section-inner {
        max-width: 1200px;
        margin: auto;
    }
    .page-product-new .product-intro .section-inner,
    .page-product-new .product-partner .section-inner {
        max-width: calc(100% - 40px);
    }
}

.page-product-new .product-section .section-lhead {
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}
.page-product-new .product-section .section-lhead .section-lhead__icon {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--color-kbl);
    border-radius: 100%;
}
.page-product-new .product-section .section-lhead .section-lhead__text {
    max-width: calc(100% - 65px);
	padding: 6px 8px;
    border-bottom: 3px solid var(--color-kbl);
}
.page-product-new .product-section .section-lhead .section-lhead__text h2 {
    font-size: 1.15rem;
    text-align: justify;
}
.page-product-new .product-section .section-lhead .section-lhead__text h2 span {
	font-size: 80%;
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .section-lhead {
        justify-content: center;
        padding: 0 90px 20px 40px;
    }
    .page-product-new .product-section .section-lhead .section-lhead__icon {
        width: 50px;
        height: 50px;
    }
    .page-product-new .product-section .section-lhead .section-lhead__text {
        width: auto;
        margin: 0;
        padding: 6px 8px;
    }
    .page-product-new .product-section .section-lhead .section-lhead__text h2 {
        font-size: 1.3rem;
    }
}



.page-product-new .product-section .section-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}
.page-product-new .product-main .section-text {
    padding: 20px;
	background: var(--color-wgy);
	border-radius: 8px;
}
.page-product-new .product-faq .section-text p span {
	font-weight: 700;
	color: var(--color-lrd);
}

.page-product-new .product-main .section-links {
	width: 100%;
}
.page-product-new .product-main .section-links ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.page-product-new .product-main .section-links ul li {
	width: 100%;
}
.page-product-new .product-main .section-links ul li a {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
	width: 100%;
}
.page-product-new .product-main .section-links ul li a span.section-links__icon {
	display: flex;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--color-kbl);
	border-radius: 100%;
}
.page-product-new .product-main .section-links ul li a::after {
	content: "";
	width: 5px;
	height: 5px;
	margin-left: auto;
	margin-right: 10px;
	border-right: 1px solid var(--color-bk);
	border-bottom: 1px solid var(--color-bk);
	transform: translate(0, 0) rotate(45deg);
}
.page-product-new .product-main .section-links ul li a::before {
	z-index: -1;
	content: "";
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-wgy);
}
@media screen and (min-width: 768px) {
    .page-product-new .product-main .section-links ul {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .page-product-new .product-main .section-links ul li {
        width: calc(33.3333% - (40px / 3));
    }
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-main .section-text {
		padding: 30px;
	}
    .page-product-new .product-main .section-links ul {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    .page-product-new .product-main .section-links ul li {
        width: calc(25% - (75px / 4));
    }
	.page-product-new .product-main .section-links ul li a span.section-links__icon {
		width: 50px;
		height: 50px;
	}
}
@media screen and (min-width: 1280px) {
	.page-product-new .product-main .section-text p {
		text-align: center;
    }
}


.page-product-new .product-intro {
	
}
.page-product-new .product-intro .section-inner {
	padding: 50px 0;
	background: var(--color-wgy);
}
.page-product-new .product-intro .section-blocks .block-box {
	background: var(--color-wh);
}
.page-product-new .product-partner .section-inner {
	padding: 50px 0;
	background: var(--color-wgy);
}
/*
.page-product-new .product-recommend .section-inner {
	padding: 50px 0;
	background: var(--color-wgy);
}*/


.page-product-new .product-section .section-blocks {
    display: flex;
	flex-direction: column;
	gap: 30px;
    padding: 0 20px;
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .section-blocks {
        padding: 0 40px;
    }
	.page-product-new .product-recommend .section-blocks .block-box {
		background: var(--color-wgy);
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-intro .section-inner {
		padding: 70px 0;
	}
	.page-product-new .product-section .section-blocks {
        padding: 0 60px;
    }
}
@media screen and (min-width: 1280px) {
    .page-product-new .product-intro .section-blocks {
        max-width: 1200px;
        margin: auto;
    }
}
@media screen and (min-width: 1401px) {
    .page-product-new .product-intro .section-blocks {
        max-width: 1200px;
        margin: auto;
    }
}


.page-product-new .product-section .block-box__head {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 15px;
	background: var(--color-nv);
	color: var(--color-wh);
}
/*.page-product-new .product-section .block-box__head .block-box__head-deco {
	display: flex;
	gap: 4px;
}
.page-product-new .product-section .block-box__head .block-box__head-deco span {
	width: 5px;
	height: 5px;
	background: var(--color-wh);
	border-radius: 100%;
}*/
.page-product-new .product-section .block-box__head .block-box__head-deco {
	display: none;
}
.page-product-new .product-section .block-box__head .block-box__head-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.page-product-new .product-section .block-box__head .block-box__head-text h3 {
	font-size: 0.8rem;
}
.page-product-new .product-section .block-box__head .block-box__head-text h2 {
	font-size: 1.05rem;
	letter-spacing: .03em;
}

.page-product-new .product-section .block-box__contents {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
	background: var(--color-wh);
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .block-box__contents {
        gap: 30px;
        padding: 30px 0;
    }
	.page-product-new .product-section .block-box__head .block-box__head-text h3 {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .block-box__head .block-box__head-text h2 {
		font-size: 1.2rem;
	}
	.page-product-new .product-recommend .section-blocks .block-box__contents {
		background: var(--color-wgy);
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .block-box__contents {
        gap: 30px;
        padding: 40px 0;
    }
}

.page-product-new .product-section .block-box__contents .block-text {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 0 20px;
}
.page-product-new .product-recommend .block-box__contents .block-text {
    margin-top: -20px;
    padding: 20px;
    background: var(--color-wgy);
}
.page-product-new .product-section .block-box__contents .block-text p {
	font-size: 0.9rem;
}
.page-product-new .product-section .block-box__contents .block-text p span {
	font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .block-box__contents .block-text {
        gap: 20px;
        padding: 0 30px;
    }
    .page-product-new .product-recommend .block-box__contents .block-text {
        margin-top: -30px;
        padding: 30px;
    }
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .block-box__contents .block-text {
        gap: 20px;
        padding: 0 40px;
    }
	.page-product-new .product-recommend .block-box__contents .block-text {
		gap: 20px;
		margin-top: -30px;
		padding: 30px 40px;
	}
	.page-product-new .product-section .block-box__contents .block-text p {
		font-size: 1rem;
	}
	.page-product-new .product-section .block-box__contents .block-text p span {
		font-size: 0.9rem;
	}
}


.page-product-new .product-section .block-box__contents .block-attention {
	margin: -20px 0 0;
	padding: 12px 20px;
	background: var(--color-dwgy);
}
.page-product-new .product-section .block-box__contents .block-attention p {
	font-size: 0.8rem;
	text-align: center;
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .block-box__contents .block-attention {
        margin: -30px 0 0;
        padding: 12px 30px;
    }
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .block-box__contents .block-attention {
        margin: -40px 0 0;
        padding: 18px 30px;
    }
	.page-product-new .product-section .block-box__contents .block-attention p {
		font-size: 0.95rem;
	}
}


.page-product-new .product-section .block-box__contents .block-image {
	padding: 0 20px;
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .block-box__contents .block-image {
        padding: 0 30px;
    }
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .block-box__contents .block-image {
		width: calc(100% - 80px);
		margin: auto;
        padding: 30px;
		border: 1px solid var(--color-wgy);
    }
	.page-product-new .product-section .block-box__contents .block-image img {
		width: auto;
		max-height: 400px;
		margin: auto;
	}
}


.page-product-new .product-section .block-box__contents .block-columns {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.page-product-new .product-section .block-box__contents .block-columns .column-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 20px;
	border-bottom: 1px solid var(--color-wgy);
}
.page-product-new .product-recommend .block-box__contents .block-columns {
    gap: 20px;
}
.page-product-new .product-recommend .block-box__contents .block-columns .column-item {
    border: 1px solid var(--color-gy);
}
.page-product-new .product-section .block-box__contents .block-columns .column-item .image {
	display: flex;
	align-items: center;
	width: 160px;
	margin-bottom: 10px;
	padding: 15px;
	aspect-ratio: 1 / 1;
	border: 8px solid var(--color-wgy);
	border-radius: 100%;
}
.page-product-new .product-section .block-box__contents .block-columns .column-item h4 {
	text-align: center;
	line-height: 1.6em;
	color: var(--color-kbl);
}
.page-product-new .product-section .block-box__contents .block-link {
	padding: 20px;
}
.page-product-new .product-section .block-box__contents .block-link a {
	position: relative;
	padding: 15px;
	font-weight: 700;
	line-height: 1;
	background: var(--color-kbl);
	color: var(--color-wh);
}
.page-product-new .product-section .block-box__contents .block-link a::before,
.page-product-new .product-section .block-box__contents .block-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
}
.page-product-new .product-section .block-box__contents .block-link a::before {
	width: 6px;
	height: 6px;
	border-top: 1.2px solid var(--color-wh);
	border-right: 1.2px solid var(--color-wh);
	transform: translate(0, -50%) rotate(45deg);
}
.page-product-new .product-section .block-box__contents .block-link a::after {
	width: 24px;
	height: 1.2px;
	background: var(--color-wh);
	transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
	.page-product-new .product-recommend .block-box__contents .block-columns {
		margin-top: -20px;
		padding: 0 30px;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item {
		flex-direction: row;
		gap: 50px;
		width: 100%;
		padding: 30px 40px;
		background: var(--color-wh);
		border: 0;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item .image {
		width: 200px;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item .text {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: calc(100% - 250px);
	}
	.page-product-new .product-section .block-box__contents .block-columns .column-item h4 {
		font-size: 1.1rem;
	}
	.page-product-new .product-section .block-box__contents .block-link a {
		max-width: 350px;
		margin: auto;
		padding: 25px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-recommend .block-box__contents .block-columns {
		gap: 20px;
		margin-top: -30px;
		padding: 0 40px;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item {
		flex-direction: column;
		justify-content: flex-start;
		gap: 20px;
		width: calc(33.3333% - (40px / 3));
		padding: 30px 20px;
		background: var(--color-wh);
		border: 0;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item .image {
		width: 180px;
	}
	.page-product-new .product-recommend .block-box__contents .block-columns .column-item .text {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: 100%;
	}
	.page-product-new .product-section .block-box__contents .block-columns .column-item h4 {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
		font-size: 1.1rem;
	}
	.page-product-new .product-section .block-box__contents .block-link a {
		max-width: 350px;
		margin: auto;
		padding: 25px;
	}
}



.page-product-new .product-section .section-points {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 12px;
}
.page-product-new .product-section .section-points .point-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
	padding: 0 20px;
}
.page-product-new .product-section .section-points .point-block .point-head {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}
.page-product-new .product-section .section-points .point-block .point-head .point-number {
    width: 70px;
	padding: 5px 0;
    font-family: var(--font-en-01);
    font-size: 1rem;
    color: var(--color-nv);
}
.page-product-new .product-section .section-points .point-block .point-head .point-number span {
    font-size: 1.6rem;
}
.page-product-new .product-section .section-points .point-block .point-head h3 {
    display: flex;
    align-items: center;
    width: calc(100% - 70px);
    padding: 15px;
    background: var(--color-nv);
    color: var(--color-wh);
    font-size: 1rem;
	text-align: justify;
}
.page-product-new .product-section .section-points .point-block .point-image {
	width: 100%;
}
.page-product-new .product-section .section-points .point-block .point-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.page-product-new .product-section .section-points .point-block .point-subtext p {
	font-size: 0.85rem;
}
.page-product-new .product-section .section-points .point-block .point-2column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.page-product-new .product-section .section-points .point-block .point-2column .image {
	width: 100%;
	height: 220px;
	padding: 8px;
	border: 4px solid var(--color-wgy);
}
.page-product-new .product-section .section-points .point-block .point-2column .image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.page-product-new .product-section .section-points .point-block .point-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.page-product-new .product-section .section-points .point-block .point-list .point-list__item {
	width: 100%;
}
.page-product-new .product-section .section-points .point-block .point-list .point-list__item .head {
	padding: 10px;
	text-align: center;
	font-weight: 700;
	background: var(--color-kbl);
	color: var(--color-wh);
}
.page-product-new .product-section .section-points .point-block .point-list .point-list__item .desc {
	padding: 0 20px 20px;
	border: 2px solid var(--color-wgy);
}
.page-product-new .product-section .section-points .point-block .point-list2 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item {
	width: calc(50% - 5px);
}
.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item .head {
	padding: 10px;
	text-align: center;
	font-weight: 700;
	background: var(--color-lrd);
	color: var(--color-wh);
	font-size: 0.9rem;
	line-height: 1.6;
	border: 1px solid var(--color-lrd);
}
.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item .image {
	padding: 15px 10px;
	border: 1px solid var(--color-gy);
}

.page-product-new .product-section .section-points .point-block .point-desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-points {
		gap: 30px;
		padding-top: 0;
	}
	.page-product-new .product-section .section-points .point-block {
		gap: 25px;
		width: calc(100% - 80px);
		margin: auto;
		padding: 40px;
		border: 1px solid var(--color-wgy);
	}
	.page-product-new .product-section .section-points .point-block .point-head .point-number {
		width: 90px;
		font-size: 1.1rem;
	}
	.page-product-new .product-section .section-points .point-block .point-head .point-number span {
		font-size: 1.8rem;
	}
	.page-product-new .product-section .section-points .point-block .point-head h3 {
		width: calc(100% - 90px);
		padding: 15px 25px;
		font-size: 1.2rem;
	}
	.page-product-new .product-section .section-points .point-block .point-2column {
		flex-direction: row;
		align-items: center;
		gap: 15px;
	}
	.page-product-new .product-section .section-points .point-block .point-2column .image {
		width: calc(40% - 15px);
		height: 220px;
		padding: 8px;
		border: 4px solid var(--color-wgy);
	}
	.page-product-new .product-section .section-points .point-block .point-2column .text {
		width: 60%;
	}
	.page-product-new .product-section .section-points .point-block .point-list2 {
		gap: 10px;
	}
	.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item {
		width: calc(33.3333% - (20px / 3));
	}
	.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item .head {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
		line-height: 1.4;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-points .point-block {
		gap: 30px;
		width: calc(100% - 120px);
		padding: 40px 60px;
	}
	.page-product-new .product-section .section-points .point-block .point-head {
		padding-bottom: 20px;
	}
	.page-product-new .product-section .section-points .point-block .point-subtext p {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-points .point-block .point-2column {
		gap: 30px;
	}
	.page-product-new .product-section .section-points .point-block .point-2column .text {
		width: calc(60% - 15px);
	}
	.page-product-new .product-section .section-points .point-block .point-list {
		flex-direction: row;
		gap: 20px;
	}
	.page-product-new .product-section .section-points .point-block .point-list .point-list__item {
		width: calc(33.3333% - (40px / 3));
	}
	.page-product-new .product-section .section-points .point-block .point-list2 {
		gap: 20px;
	}
	.page-product-new .product-section .section-points .point-block .point-list2 .point-list__item {
		width: calc(33.3333% - (40px / 3));
	}
	
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-points .point-block .point-image {
		width: calc(100% - 80px);
		margin: auto;
        padding: 30px;
		border: 1px solid var(--color-wgy);
    }
	.page-product-new .product-section .section-points .point-block .point-image img {
		width: auto;
		max-height: 400px;
		margin: auto;
	}
}


.page-product-new .product-section .section-cooperation {
    width: 100%;
}
.page-product-new .product-section .section-cooperation ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    gap: 20px;
    padding: 0 20px;
}
.page-product-new .product-section .section-cooperation ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--color-wh);
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-cooperation ul {
		padding: 0 40px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-cooperation ul {
		padding: 0 60px;
	}
	.page-product-new .product-section .section-cooperation ul li {
		width: calc(33.3333% - (40px / 3));
	}
}
@media screen and (min-width: 1280px) {
    .page-product-new .product-section .section-cooperation ul {
        max-width: 1200px;
        margin: auto;
    }
}
@media screen and (min-width: 1401px) {
    .page-product-new .product-section .section-cooperation ul {
        max-width: 1400px;
        margin: auto;
    }
}

.page-product-new .product-section .section-cooperation ul li .section-cooperation__name {
    width: 100%;
    padding: 20px;
    font-weight: 700;
    line-height: 1;
    border-bottom: 1px solid var(--color-gy);
}
.page-product-new .product-section .section-cooperation ul li .section-cooperation__link {
    display: flex;
	flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 20px;
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-cooperation ul li .section-cooperation__link {
		flex-direction: row;
		gap: 20px;
	}
	.page-product-new .product-section .section-cooperation ul li .section-cooperation__link.has-estimate {
		flex-direction: column;
	}
}

.page-product-new .product-section .section-cooperation ul li .link__estimate {
	flex-direction: column;
}
.page-product-new .product-section .section-cooperation ul li .link__estimate p.link-btn__head {
	font-size: 0.9rem;
}
.page-product-new .product-section .section-cooperation ul li .link__estimate p.link-btn__text {
	font-size: 0.7rem;
}
.page-product-new .product-section .section-cooperation ul li .link__estimate__item {
	display: flex;
    gap: 10px;
    width: 100%;
}

.page-product-new .product-section .section-cooperation ul li .section-cooperation__link .link-btn {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 100%;
	
}
.page-product-new .product-section .section-cooperation ul li .section-cooperation__link .link-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
	background: #eee;
	font-size: 0.8rem;
}


/*
.page-product-new .product-section .section-cooperation ul li .section-cooperation__web {
    width: calc(50% - 5px);
}
.page-product-new .product-section .section-cooperation ul li .section-cooperation__web a {
    padding: 10px;
    background: var(--color-tbl);
    color: var(--color-wh);
    font-weight: 700;
    line-height: 1;
}
.page-product-new .product-section .section-cooperation ul li .section-cooperation__pamphlet {
    width: calc(50% - 10px);
}
.page-product-new .product-section .section-cooperation ul li .section-cooperation__pamphlet a {
    padding: 10px;
    background: var(--color-lrd);
    color: var(--color-wh);
    font-weight: 700;
    line-height: 1;
}
*/


.page-product-new .product-section .section-flow {
	padding: 40px 20px;
    background: var(--color-wgy);
}
.page-product-new .product-section .section-flow .section-flow__list {
    padding-top: 15px;
}
.page-product-new .product-section .section-flow .section-flow__list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.page-product-new .product-section .section-flow .section-flow__list ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	position: relative;
}
.page-product-new .product-section .section-flow .section-flow__list ul li::before {
	z-index: 1;
	content: "";
	position: absolute;
	top: 0;
	left: 30px;
	width: 1px;
	height: calc(100% + 20px);
	background: var(--color-wh);
}
.page-product-new .product-section .section-flow .section-flow__list ul li:nth-last-child(1)::before {
	display: none;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .num {
	z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
    width: 100%;
	height: 30px;
    background: var(--color-nv);
    color: var(--color-wh);
}
.page-product-new .product-section .section-flow .section-flow__list ul li .text {
	z-index: 3;
    display: flex;
	flex-direction: column;
    justify-content: center;
	gap: 8px;
	position: relative;
    width: 100%;
	padding: 15px 20px;
    background: var(--color-wh);
}
.page-product-new .product-section .section-flow .section-flow__list ul li .text h3 {
	font-size: 1rem;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .text p {
    font-size: 0.8rem;
    line-height: 1.5;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub {
	display: flex;
	flex-direction: column;
	gap: 8px;
    width: calc(100% - 60px);
	margin-top: 20px;
    margin-left: auto;
    padding: 20px;
	border: 4px solid var(--color-wh);
	font-size: 0.8rem;
	line-height: 1.6;
	border-radius: 6px;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub p {
	font-size: 0.8rem;
	line-height: 1.6;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-mark {
	padding: 12px;
	background: var(--color-lrd);
	color: var(--color-wh);
	font-size: 0.95rem;
	line-height: 1;
	font-weight: 700;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-text {
	font-size: 0.75rem;
	font-weight: 700;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub a {
	position: relative;
	margin-top: 15px;
	padding: 15px 25px;
	background: var(--color-tbl);
	color: var(--color-wh);
	font-weight: 700;
	border-radius: 30px;
	line-height: 1;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub a::before,
.page-product-new .product-section .section-flow .section-flow__list ul li .sub a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub a::before {
	width: 20px;
	height: 1px;
	background: var(--color-wh);
	transform: translate(0, -50%);
}
.page-product-new .product-section .section-flow .section-flow__list ul li .sub a::after {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-wh);
	border-right: 1px solid var(--color-wh);
	transform: translate(0, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-flow {
		padding: 50px 40px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul {
		gap: 40px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li::before {
		left: 40px;
		width: 2px;
		height: calc(100% + 40px);
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .num {
		width: 80px;
		height: 80px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .text {
		gap: 8px;
		width: calc(100% - 80px);
		min-height: 80px;
		padding: 0 20px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub {
		align-items: flex-start;
		width: calc(100% - 80px);
		margin-top: 30px;
		padding: 30px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box {
		align-items: flex-start;
		padding: 15px 0;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-mark {
		display: flex;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub a {
		padding: 15px 60px 15px 20px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-flow .section-flow__list {
		max-width: 920px;
		margin: auto;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul {
		gap: 40px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li::before {
		left: 45px;
		height: calc(100% + 40px);
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .num {
		width: 100px;
		height: 100px;
		font-size: 1.4rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .text {
		width: calc(100% - 100px);
		min-height: 100px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .text p {
		font-size: 0.95rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub {
		width: calc(100% - 110px);
	}
	
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub p {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-mark {
		font-size: 1rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-text {
		font-size: 0.85rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .text h3 {
		font-size: 1.05rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .text p {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1280px) {
	.page-product-new .product-section .section-flow {
		width: 100%;
		max-width: 1080px;
		margin: auto;
	}
	.page-product-new .product-section .section-flow .section-flow__list {
		max-width: 1120px;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub {
		font-size: 1rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub p {
		font-size: 1rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-mark {
		font-size: 1.05rem;
	}
	.page-product-new .product-section .section-flow .section-flow__list ul li .sub .box-text {
		font-size: 0.95rem;
	}
}

.page-product-new .product-section .section-faq-link {
	display: flex;
	justify-content: center;
	padding-top: 10px;
}
.page-product-new .product-section .section-faq-link a {
	position: relative;
	width: calc(100% - 40px);
	max-width: 400px;
	padding: 20px 50px 20px 20px;
	background: var(--color-wgy);
	color: var(--color-bk);
}
.page-product-new .product-section .section-faq-link a::before,
.page-product-new .product-section .section-faq-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
}
.page-product-new .product-section .section-faq-link a::before {
	width: 30px;
	height: 30px;
	background: var(--color-nv);
	border-radius: 100%;
	transform: translate(0, -50%);
}
.page-product-new .product-section .section-faq-link a::after {
	right: 33px;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--color-wh);
	border-right: 2px solid var(--color-wh);
	transform: translate(0, -50%) rotate(45deg);
}

.page-product-new .product-section .section-recommend {
	z-index: 1;
	position: relative;
	widh: 100%;
	padding: 0 20px;
}
.page-product-new .product-section .section-recommend .section-recommend__head {
	z-index: 3;
	position: relative;
	padding: 0 20px;
}
.page-product-new .product-section .section-recommend .section-recommend__head h2 {
	display: inline-block;
	padding: 0 20px 20px;
	font-size: 1.05rem;
	background: var(--color-wh);
	color: var(--color-kbl);
}
.page-product-new .product-section .section-recommend .recommend-list {
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: relative;
	margin-top: -35px;
	padding: 50px 20px 20px;
	border: 1px solid var(--color-gy);
}
.page-product-new .product-section .section-recommend .recommend-list li h3 {
	position: relative;
	padding: 0 0 5px 26px;
	font-size: 1rem;
	border-bottom: 1px solid var(--color-gy);
}
.page-product-new .product-section .section-recommend .recommend-list li h3::before,
.page-product-new .product-section .section-recommend .recommend-list li h3::after {
	content: "";
	position: absolute;
}
.page-product-new .product-section .section-recommend .recommend-list li h3::before {
	top: 3px;
	left: 0;
	width: 18px;
	height: 18px;
	background: var(--color-lrd);
	border-radius: 4px;
}
.page-product-new .product-section .section-recommend .recommend-list li h3::after {
	top: 6px;
	left: 6px;
	width: 6px;
	height: 10px;
	border-bottom: 2px solid var(--color-wh);
	border-right: 2px solid var(--color-wh);
	transform: rotate(40deg);
}
.page-product-new .product-section .section-recommend .recommend-list li .recommend-item__desc {
	padding-top: 8px;
	font-size: 0.95rem;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-recommend {
		padding: 0 40px 25px;
	}
	.page-product-new .product-section .section-recommend .section-recommend__head {
		padding: 0 30px;
	}
	.page-product-new .product-section .section-recommend .recommend-list {
		padding: 60px 40px 30px;
	}
	.page-product-new .product-section .section-recommend .recommend-list li h3 {
		font-size: 1.1rem;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-recommend {
		padding: 20px 60px 40px;
	}
	.page-product-new .product-section .section-recommend .section-recommend__head h2 {
		font-size: 1.15rem;
	}
}
@media screen and (min-width: 1280px) {
	.page-product-new .product-section .section-recommend .recommend-list {
		padding: 80px 60px 50px;
	}
}

.page-product-new .product-section .section-movie {
	padding: 0 20px 20px;
}
.page-product-new .product-section .section-movie .section-movie__list {
    width: 100%;
}
.page-product-new .product-section .section-movie .section-movie__list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.page-product-new .product-section .section-movie .section-movie__list ul li {
    width: 100%;
}
.page-product-new .product-section .section-movie .section-movie__list ul li a {
    position: relative;
    padding: 15px 40px 15px 15px;
    background: var(--color-tbl);
    color: var(--color-wh);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 4px;
}
.page-product-new .product-section .section-movie .section-movie__list ul li a::before,
.page-product-new .product-section .section-movie .section-movie__list ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
}
.page-product-new .product-section .section-movie .section-movie__list ul li a::before {
    z-index: 2;
    right: 15px;
    width: 18px;
    height: 18px;
    background: var(--color-wh);
    border-radius: 100%;
    transform: translate(0, -50%);
}
.page-product-new .product-section .section-movie .section-movie__list ul li a::after {
    z-index: 3;
    right: 22px;
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--color-tbl);
    border-right: 2px solid var(--color-tbl);
    transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
    .page-product-new .product-section .section-movie {
        padding: 0 40px 30px;
    }
    .page-product-new .product-section .section-movie .section-movie__list ul {
        gap: 20px;
    }
    .page-product-new .product-section .section-movie .section-movie__list ul li {
        width: calc(50% - 10px);
    }
    .page-product-new .product-section .section-movie .section-movie__list ul li a {
        display: flex;
        align-items: center;
        min-height: 70px;
        padding-right: 50px;
        line-height: 1.4;
    }
}
@media screen and (min-width: 1024px) {
    .page-product-new .product-section .section-movie .section-movie__list ul li {
        width: calc(33.3333% - (40px / 3));
    }
    .page-product-new .product-section .section-movie .section-movie__list ul li a {
        font-size: 1.05rem;
        min-height: 80px;
        padding-right: 60px;
    }
    .page-product-new .product-section .section-movie .section-movie__list ul li a::before {
        width: 22px;
        height: 22px;
    }
    .page-product-new .product-section .section-movie .section-movie__list ul li a::after {
        right: 24px;
        width: 6px;
        height: 6px;
    }
}

.page-product-new .product-section .section-range {
	padding: 0 20px 20px;
}
.page-product-new .product-section .section-range .section-range__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item {
	border: 1px solid var(--color-dwgy);
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head {
	padding: 15px;
	background: var(--color-nv);
	color: var(--color-wh);
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 {
	font-size: 1rem;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 span {
	font-size: 0.8rem;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target {
	padding: 15px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target h4 {
	border-bottom: 1px solid var(--color-dwgy);
	font-size: 0.9rem;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding-top: 15px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(50% - 5px);
	padding: 8px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.4;
	background: var(--color-tbl);
	color: var(--color-wh);
	border-radius: 4px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .text {
	padding: 0 15px 15px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner {
	padding: 15px;
	background: var(--color-wgy);
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner p {
	font-weight: 700;
	padding-bottom: 8px;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a {
	position: relative;
	padding: 15px 40px 15px 15px;
	background: var(--color-wh);
	font-size: 0.9rem;
	line-height: 1;
}
.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
	.page-product-new .product-section .section-range {
		padding: 0 40px 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner {
		gap: 25px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 {
		font-size: 1.05rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 span {
		font-size: 0.85rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target h4 {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul {
		gap: 10px;
		padding-top: 15px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul li {
		width: calc(50% - 5px);
		padding: 8px;
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .text {
		padding: 0 20px 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner p {
		padding-bottom: 8px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a {
		padding: 15px 40px 15px 15px;
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a::after {
		right: 15px;
		width: 5px;
		height: 5px;
	}
}
@media screen and (min-width: 1024px) {
	.page-product-new .product-section .section-range {
		padding: 0 60px 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner {
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 26px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item {
		width: calc(50% - 13px);
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 {
		font-size: 1.05rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .head h3 span {
		font-size: 0.85rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target h4 {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul {
		gap: 10px;
		padding-top: 15px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .target ul li {
		width: calc(50% - 5px);
		padding: 8px;
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .text {
		display: flex;
		align-items: center;
		min-height: 50px;
		margin-bottom: 20px;
		padding: 0 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__desc .text p {
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner {
		padding: 20px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner p {
		padding-bottom: 8px;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a {
		padding: 15px 40px 15px 15px;
		font-size: 0.9rem;
	}
	.page-product-new .product-section .section-range .section-range__inner .section-range__item .section-range__partner .link a::after {
		right: 15px;
		width: 5px;
		height: 5px;
	}
}

/* --------------------------------------------------
 page company
--------------------------------------------------- */

.company {
	position: relative;
	width: 100%;
}
.company__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.company__inner {
		padding: 0 40px;
	}
}
@media screen and (min-width: 1024px) {
	.company__inner {
		padding: 0 60px;
	}
}
@media screen and (min-width: 1280px) {
    .company__inner {
		gap: 80px;
        max-width: 1200px;
        margin: auto;
    }
}
@media screen and (min-width: 1401px) {
    .company__inner {
        max-width: 1280px;
        margin: auto;
    }
}

.company-main {
	padding: 20px;
	background: var(--color-wgy);
}
@media screen and (min-width: 768px) {
	.company-main {
		padding: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.company-main {
		padding: 60px;
	}
	.company-main p {
		font-size: 1.05rem;
	}
}

.company-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.company-list__item {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.company-list__item {
		display: flex;
		align-items: flex-start;
		border-bottom: 1px solid var(--color-wgy);
	}
	.company-list__item:nth-last-of-type(1) {
		border: 0;
	}
}
@media screen and (min-width: 1280px) {
	.company-list__item {
		font-size: 1.05rem;
	}
}

.company-list__item .head {
	padding: 15px 10px;
	background: var(--color-nv);
	color: var(--color-wh);
	line-height: 1;
}
.company-list__item .desc {
	padding: 15px 10px;
}
@media screen and (min-width: 1024px) {
	.company-list__item .head {
		display: flex;
		width: 200px;
		background: none;
		color: var(--color-nv);
		line-height: 1.8;
	}
	.company-list__item .desc {
		width: calc(100% - 200px);
		line-height: 1.8;
	}
}
@media screen and (min-width: 1280px) {
	.company-list__item .head {
		width: 240px;
	}
	.company-list__item .desc {
		width: calc(100% - 240px);
	}
}


.company-list__item .desc a {
	display: inline;
	text-decoration: underline;
}
.company-date {
	margin-top: -20px;
	padding: 15px;
	text-align: right;
	border-top: 1px solid var(--color-gy);
}

.company-map {
	margin-top: -80px;
	padding-top: 80px;
}
.ggmap {
    position: relative;
    width: 100%;
    padding-top: 70.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}
.ggmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
	.ggmap {
		padding-top: 52.25%;
	}
}
@media screen and (min-width: 1024px) {
	.company-map {
		margin-top: -150px;
		padding-top: 150px;
	}
	.ggmap {
		padding-top: 50.25%;
	}
}
@media screen and (min-width: 1280px) {
	.ggmap {
		padding-top: 40%;
	}
}

/* --------------------------------------------------
 page faq
--------------------------------------------------- */

.faq {
    width: 100%;
}
.faq__inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
    width: 100%;
    padding: 0 20px;
}
@media screen and (min-width: 768px) {
    .faq__inner {
        max-width: 1000px;
        margin: auto;
        padding: 0 40px;
    }
}
@media screen and (min-width: 1024px) {
    .faq__inner {
        padding: 0 60px;
    }
}
@media screen and (min-width: 1280px) {
    .faq__inner {
        max-width: calc(1400px - 120px);
        padding: 0 80px;
		background: var(--color-wh);
		border-radius: 8px;
	}
}
.faq-section {
	margin-top: -80px;
	padding-top: 80px;
}
@media screen and (min-width: 1024px) {
	.faq-section {
		margin-top: -140px;
		padding-top: 140px;
	}
}
.faq-section__head {
	padding: 0 0 20px;
}
.faq-section__head h2 {
	padding: 8px 8px 8px 15px;
	font-size: 1.1rem;
	border-left: 4px solid var(--color-kbl);
	background: var(--color-wgy);
}
@media screen and (min-width: 1024px) {
	.faq-section__head h2 {
		padding: 15px 15px 15px 15px;
	}
}
.faq-section__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.faq-item {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	border-bottom: 1px solid var(--color-gy);
	font-size: 0.95rem;
	text-align: justify;
}
.faq-item__q {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
	width: 100%;
	padding: 15px 40px 15px 0;
	cursor: pointer;
	line-height: 1.6;
}
.faq-item__q::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 14px;
	height: 8px;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	background: var(--color-gy);
	transform: translate(0, -50%);
}

.faq-item__a {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}
.faq-item__a__inner {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 15px;
	padding: 20px 20px 25px;
	background: var(--color-wgy);
}

.faq__title {
	margin-bottom: -7px;
	padding: 0 0 0 2px;
	font-size: 0.95rem;
}
.faq-item__q .faq__title {
	color: var(--color-bl);
}
.faq-item__a .faq__title {
	color: var(--color-rd);
}
.faq__text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
@media screen and (min-width: 1024px) {
	.faq-item__q .faq__title {
		margin: 0;
		padding-bottom: 0;
	}
	.faq-item .faq__text p {
		font-size: 0.95rem;
		line-height: 2;
	}
	.faq-item .faq__text .image {
		margin-top: 30px;
		padding: 60px;
		background: var(--color-wh);
	}
	.faq-item .faq__text img {
		max-width: 600px;
		margin: 0 auto;
	}
}

.faq-item__a__inner a {
	display: inline;
	position: relative;
	width: auto;
	padding: 8px 50px 8px 8px;
	font-size: 0.85rem;
	line-height: 1.5;
	border: 1px solid var(--color-bk);
}
.faq-item__a__inner a::before,
.faq-item__a__inner a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
}
.faq-item__a__inner a::before {
	width: 20px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
.faq-item__a__inner a::after {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 1024px) {
	.faq-item__a__inner a {
		display: inline-block;
		padding: 12px 55px 12px 12px;
		font-size: 0.95rem;
	}
}

/* --------------------------------------------------
 page solicitation
--------------------------------------------------- */

.solicitation {
	width: 100%;
}
.solicitation__inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-top: 20px;
}
.solicitation-basic {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.solicitation-basic p span {
	margin-right: 5px;
}
.solicitation-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.solicitation-list__block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.solicitation-list__head {
	padding-bottom: 8px;
	font-size: 1.05rem;
	border-bottom: 1px solid var(--color-gy);
}
.solicitation-list__desc {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.solicitation__inner {
		gap: 50px;
	}
	.solicitation-basic {
		gap: 10px;
	}
}
@media screen and (min-width: 1024px) {
	.solicitation__inner {
		gap: 70px;
		max-width: 1280px;
		margin: auto;
	}
	.solicitation-basic {
		gap: 5px;
		padding: 25px;
		border: 1px solid var(--color-wgy);
		background: var(--color-wgy);
	}
	.solicitation-list {
		gap: 60px;
	}
	.solicitation-list__block {
		gap: 30px;
	}
	.solicitation-list__head {
		padding-bottom: 12px;
		font-size: 1.15rem;
	}
	.solicitation-list__desc {
		gap: 25px;
	}
}
@media screen and (min-width: 1401px) {
	.solicitation__inner p {
		font-size: 1.05rem;
	}
	.solicitation-basic {
		padding: 40px 40px 35px;
	}
	.solicitation-list__head {
		font-size: 1.2rem;
	}
	.solicitation-list__desc {
		padding: 0 10px;
	}
}

/* --------------------------------------------------
 page policy
--------------------------------------------------- */

.policy {
	width: 100%;
}
.policy__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.policy-main {
	padding: 20px 0 30px;
	border-bottom: 1px solid var(--color-wgy);
}
.policy-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.policy-list__item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.policy-list__head h2 {
	position: relative;
	padding-bottom: 8px;
	font-size: 1.05rem;
}
.policy-list__head h2::before,
.policy-list__head h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	height: 2px;
}
.policy-list__head h2::before {
	left: 0;
	width: 70px;
	background: var(--color-kbl);
}
.policy-list__head h2::after {
	left: 70px;
	width: calc(100% - 70px);
	background: var(--color-wgy);
}

.policy-about {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.policy-about__head {
	background: var(--color-nv);
	color: var(--color-wh);
}
.policy-about__head h2 {
	padding: 15px;
	font-size: 1.05rem;
	text-align: justify;
}
.policy-about__block {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.policy-about__item h3 {
	padding-bottom: 8px;
	font-size: 1.05rem;
	color: var(--color-kbl);
}
.policy-about__table table {
	width: 100%;
	border-top: 1px solid var(--color-gy);
	border-left: 1px solid var(--color-gy);
}
.policy-about__table table tr td {
	padding: 8px;
	border-bottom: 1px solid var(--color-gy);
	border-right: 1px solid var(--color-gy);
	font-size: 0.9rem;
}
.policy-about__table table tr td:nth-child(1) {
	width: calc(100% - 180px);
}
.policy-about__table table tr td:nth-child(2),
.policy-about__table table tr td:nth-child(3) {
	width: 90px;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.policy-about__table table tr td:nth-child(1) {
		width: calc(100% - 240px);
	}
	.policy-about__table table tr td:nth-child(2),
	.policy-about__table table tr td:nth-child(3) {
		width: 120px;
	}
}
@media screen and (min-width: 1024px) {
	.policy-about__table table tr td {
		padding: 12px;
		font-size: 0.95rem;
	}
	.policy-about__table table tr td:nth-child(1) {
		width: calc(100% - 360px);
	}
	.policy-about__table table tr td:nth-child(2),
	.policy-about__table table tr td:nth-child(3) {
		width: 180px;
	}
}
@media screen and (min-width: 1280px) {
	.policy__inner {
		max-width: 1280px;
		margin: auto;
	}
	.policy-about__table table tr td {
		padding: 12px;
		font-size: 1rem;
	}
	.policy-about__table table tr td:nth-child(1) {
		width: calc(100% - 520px);
	}
	.policy-about__table table tr td:nth-child(2),
	.policy-about__table table tr td:nth-child(3) {
		width: 260px;
	}
}


/* --------------------------------------------------
 page category news
--------------------------------------------------- */

.news__list {
	display: flex;
	flex-direction: column;
}
.news__list .news-item {
	width: 100%;
	border-top: 1px solid var(--color-line);
}
.news__list .news-item:nth-child(1) {
	border-top: 0;
}
.news__list .news-item a {
	position: relative;
	padding: 20px 30px 20px 0;
}
.news__list .news-item a::before,
.news__list .news-item a::after {
	content: "";
	position: absolute;
	top: 50%;
}
.news__list .news-item a::before {
	right: 15px;
	width: 21px;
	height: 21px;
	border-radius: 100%;
	border: 1px solid var(--color-dgy);
	transform: translate(0, -50%);
}
.news__list .news-item a::after {
	right: 24px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-dgy);
	border-right: 1px solid var(--color-dgy);
	transform: translate(0, -50%) rotate(45deg);
}
.news__list .news-item .date {
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}
.news__list .news-item h3 {
	font-size: 1rem;
	font-weight: 500;
}
@media screen and (min-width: 1024px) {
	.news__list .news-item a {
		padding: 30px 50px 30px 30px;
	}
	.news__list .news-item .date {
		font-size: 0.95rem;
	}
	.news__list .news-item h3 {
		font-size: 1.05rem;
	}
	.news__list .news-item a::before {
		right: 20px;
		width: 27px;
		height: 27px;
	}
	.news__list .news-item a::after {
		right: 32px;
		width: 6px;
		height: 6px;
	}
}

/* --------------------------------------------------
 page archive common
--------------------------------------------------- */

.archive {
	position: relative;
	width: 100%;
}
.archive__inner {
	position: relative;
	width: 100%;
	padding: 0 20px;
}
@media screen and (min-width: 768px) {
	.archive__inner {
		padding: 0 40px;
	}
}
@media screen and (min-width: 1024px) {
	.archive__inner {
		max-width: 1400px;
		margin: auto;
		padding: 0 60px;
	}
}

/* --------------------------------------------------
 page contact claim
--------------------------------------------------- */

.claim {
	position: relative;
	width: 100%;
}
.claim__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.claim-main,
.claim-nonlife,
.claim-life {
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: relative;
	width: 100%;
}
.claim-main {
	z-index: 3;
}
.claim-nonlife,
.claim-life {
	z-index: 2;
	margin-top: -80px;
	padding-top: 80px;
}

.claim-main .head h2,
.claim-nonlife .head h2,
.claim-life .head h2 {
	padding: 15px;
	font-size: 1rem;
	background: var(--color-wgy);
	border-left: 4px solid var(--color-dwgy);
}
@media screen and (min-width: 768px) {
	.claim-nonlife,
	.claim-life {
		margin-top: -120px;
		padding-top: 120px;
	}
	.claim-main .head h2,
	.claim-nonlife .head h2,
	.claim-life .head h2 {
		font-size: 1.1rem;
	}
}
@media screen and (min-width: 1280px) {
	.claim-nonlife,
	.claim-life {
		margin-top: -150px;
		padding-top: 150px;
	}
}
.claim-main .block {
	display: flex;
	flex-direction: column;
	width: 100%;
	border: 1px solid var(--color-dwgy);
	border-radius: 4px;
}
.claim-main .block .block__head {
	width: 100%;
	padding: 10px 20px;
	border-bottom: 1px solid var(--color-dwgy);
	background: var(--color-nv);
	color: var(--color-wh);
	font-weight: 700;
}
.claim-main .block .block__desc {
	width: 100%;
	padding: 20px;
}
.claim-main .block .block__desc span.number {
	display: block;
	padding: 8px 15px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	border: 1px solid var(--color-dwgy);
}
@media screen and (min-width: 768px) {
	.claim-main .block {
		flex-direction: row;
	}
	.claim-main .block .block__head {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40%;
	}
	.claim-main .block .block__desc {
		width: 60%;
		padding: 40px 20px;
	}
}
@media screen and (min-width: 1024px) {
	.claim-main .block .block__desc {
		width: 60%;
		padding: 60px;
	}
}

.claim-main .link {
	width: 100%;
}
.claim-main .link ul {
	display: flex;
	gap: 15px;
}
.claim-main .link ul li {
	width: calc(50% - (15px / 2));
}
.claim-main .link ul li a {
	position: relative;
	background: var(--color-tbl);
	color: var(--color-wh);
	font-size: 0.95rem;
	font-weight: 700;
	padding: 10px 30px 10px 10px;
	border-radius: 4px;
}
.claim-main .link ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid var(--color-wh);
	border-right: 2px solid var(--color-wh);
	transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
	.claim-main .link ul {
		max-width: 600px;
		margin: auto;
	}
	.claim-main .link ul li a {
		font-size: 1rem;
		padding: 15px 30px 15px 15px;
	}
}


.claim-nonlife .list,
.claim-life .list {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 30px;
}
.claim-nonlife .list .list__item,
.claim-life .list .list__item {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.claim-nonlife .list .list__item,
	.claim-life .list .list__item {
		flex-direction: row;
		gap: 0;
	}
}
.claim-nonlife .list .list__item .list__item__head,
.claim-life .list .list__item .list__item__head {
	width: 100%;
	padding: 10px 20px;
	background: var(--color-kbl);
	color: var(--color-wh);
	font-weight: 700;
}
.claim-nonlife .list .list__item .list__item__desc,
.claim-life .list .list__item .list__item__desc {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.claim-nonlife .list .list__item .list__item__head,
	.claim-life .list .list__item .list__item__head {
		display: flex;
		background: none;
		width: 45%;
		padding: 40px;
		color: var(--color-bk);
		border: 1px solid var(--color-dwgy);
		border-right: 0;
	}
	.claim-nonlife .list .list__item .list__item__desc,
	.claim-life .list .list__item .list__item__desc {
		width: 55%;
	}
}
@media screen and (min-width: 1280px) {
	.claim-nonlife .list .list__item .list__item__head,
	.claim-life .list .list__item .list__item__head {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 35%;
		padding: 40px;
	}
	.claim-nonlife .list .list__item .list__item__desc,
	.claim-life .list .list__item .list__item__desc {
		width: 65%;
	}
}
.claim-nonlife .list .list__item .list__item__desc .desc-list,
.claim-life .list .list__item .list__item__desc .desc-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.claim-nonlife .list .list__item .list__item__desc .desc-list,
	.claim-life .list .list__item .list__item__desc .desc-list {
		gap: 0;
	}
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item {
	width: 100%;
}
@media screen and (min-width: 1280px) {
	.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item,
	.claim-life .list .list__item .list__item__desc .desc-list .desc-item {
		display: flex;
	}
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__head,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__head {
	padding: 15px;
	background: var(--color-wgy);
	line-height: 1.4;
	border: 1px solid var(--color-dwgy);
	border-bottom: 0;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 25px 15px 20px;
	border: 1px solid var(--color-dwgy);
}
@media screen and (min-width: 1024px) {
	.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents,
	.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents {
		padding: 40px;
		border-bottom: 0;
	}
	.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item:nth-last-child(1) .desc-item__contents,
	.claim-life .list .list__item .list__item__desc .desc-list .desc-item:nth-last-child(1) .desc-item__contents {
		border-bottom: 1px solid var(--color-dwgy);
	}
}
@media screen and (min-width: 1280px) {
	.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__head,
	.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__head {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30%;
		border-right: 0;
	}
	.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents,
	.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents {
		width: 100%;
	}
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link {
	display: flex;
	flex-direction: column;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a {
	position: relative;
	padding: 15px 30px 15px 8px;
	line-height: 1;
	font-size: 0.9rem;
	font-weight: 700;
	border: 1px solid var(--color-dwgy);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::before,
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::after,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::before,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::before,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::before {
	width: 12px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::after,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link a::after {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link span,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-link span {
	padding: 5px 8px 0;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-rd);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text p,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text p {
	font-size: 0.9rem;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.text,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.text {
	position: relative;
	padding-left: 12px;
	font-size: 0.95rem;
	font-weight: 700;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.text::before,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.text::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--color-nv);
	transform: translate(0, -50%);
	border-radius: 100%;
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number {
	display: block;
	margin: 5px 0;
	padding: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
	border: 1px solid var(--color-dwgy);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number a,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number a {
	display: inline;
	color: var(--color-wh);
}
.claim-nonlife .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number span,
.claim-life .list .list__item .list__item__desc .desc-list .desc-item .desc-item__contents .desc-item-text span.number span {
	font-size: 0.8rem;
}

/* --------------------------------------------------
 page privacy
--------------------------------------------------- */

.privacy {
    z-index: 1;
    position: relative;
    width: 100%;
}
.privacy__inner {
    z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 30px;
    position: relative;
}
.privacy__inner p {
	font-size: 0.9rem;
}

.privacy-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.privacy-block__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.5;
}
.privacy-block__item h3 {
    font-size: 0.95rem;
    font-weight: 700;
}
.privacy-block__item .text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.privacy-block__item .text p a {
	display: inline;
	word-break: break-all;
}
@media screen and (min-width: 1024px) {
	.privacy__inner {
		gap: 50px;
		max-width: 1280px;
		margin: auto;
	}
	.privacy-block {
		gap: 40px;
	}
	.privacy-block__item h3 {
		font-size: 1.1rem;
	}
	.privacy__inner p {
		font-size: 1rem;
	}
	.privacy-block__item .text {
		gap: 20px;
	}
}

/* --------------------------------------------------
 page search
--------------------------------------------------- */

.page-search {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px;
}
.page-search h1 {
	font-size: 1.05rem;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--color-gy);
}
.page-search ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 20px;
}
.page-search ul li a {
	position: relative;
	font-size: 0.9rem;
	padding: 3px 30px 3px 5px;
	border-bottom: 1px solid var(--color-dwgy);
}
.page-search ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-gy);
	border-right: 1px solid var(--color-gy);
	transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
	.page-search {
		padding: 50px 40px;
	}
}
@media screen and (min-width: 1024px) {
	.page-search {
		padding: 60px;
	}
	.page-search h1 {
		font-size: 1.2rem;
	}
	.page-search ul li a {
		font-size: 1rem;
	}
}
@media screen and (min-width: 1280px) {
	.page-search {
		padding: 100px 60px 60px;
	}
}

/* --------------------------------------------------
 page contact
--------------------------------------------------- */

.contact {
    position: relative;
    width: 100%;
}
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    width: 100%;
    padding: 0 20px;
}
.contact__inner .contact-link {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
}
.contact__inner .contact-link__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.contact__inner .contact-link .contact-link__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-wh);
    width: 100%;
    padding: 20px;
    font-weight: 700;
}
.contact__inner .contact-link .contact-link__item:nth-child(1) a {
    background: var(--color-nv);
}
.contact__inner .contact-link .contact-link__item:nth-child(2) a {
    background: var(--color-rd);
}
@media screen and (min-width: 768px) {
    .contact__inner {
        gap: 40px;
        padding: 0 40px;
    }
    .contact__inner .contact-link {
        flex-direction: row;
    }
    .contact__inner .contact-link__item {
        width: calc(50% - 15px);
    }
}
@media screen and (min-width: 1024px) {
    .contact__inner {
        gap: 40px;
        max-width: 1200px;
        margin: auto;
        padding: 50px 60px 80px;
    }
    .contact__inner .contact-link {
        gap: 50px;
    }
    .contact__inner .contact-link__item {
        width: calc(50% - 25px);
    }
    .contact__inner .contact-link .contact-link__item a {
        padding: 25px;
        font-size: 1.2rem;
    }
}

.form {
    z-index: 1;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .form__inner {
        max-width: 1000px;
    }
}
.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .form-wrap {
        gap: 60px;
    }
}
.form-text {
    width: 100%;
    line-height: 1.6;
}
@media screen and (min-width: 1024px) {
    .form-text {
        text-align: center;
	}
	.form-text p {
        text-align: center;
	}
}
.form-desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.form-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .form-item {
        flex-direction: row;
        align-items: center;
		flex-wrap: wrap;
    }
}
.form-item p.note {
	width: 100%;
}

.form-head {
    display: flex;
    flex-direction: row;
    gap: 5px 10px;
    align-items: center;
	padding-bottom: 8px;
    width: 100%;
    font-size: 1rem;
}
@media screen and (min-width: 768px) {
    .form-head {
        width: 275px;
    }
}
@media screen and (min-width: 1024px) {
	.form-head {
		width: 285px;
		font-size: 0.95rem;
	}
}

.form-head span {
    display: block;
	width: 50px;
    padding: 5px 6px 6px;
    font-family: var(--font-jp);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
	text-align: center;
	white-space: nowrap;
}
@media screen and (min-width: 1024px) {
	.form-head span {
		font-size: 0.8rem;
	}
}
.form-head span.req {
    background: var(--color-lrd);
    color: var(--color-wh);
}
.form-head span.any {
    background: var(--color-gy);
    color: var(--color-wh);
}

.form-head label {
	width: calc(100% - 50px);
}

.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .form-foot {
        width: calc(100% - 280px);
    }
}
@media screen and (min-width: 1024px) {
    .form-foot {
        width: calc(100% - 290px);
    }
}

.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"],
.form-item input[type="date"],
.form-item select,
.form-item textarea {
    display: block;
    width: 100%;
    padding: 0.7em 0.7em;
    color: var(--color-bk);
    line-height: 1;
    outline: none;
    border: none;
    border: 1px solid var(--color-gy);
}
.form-foot span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.form-wrap .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.form-wrap span.wpcf7-list-item {
    display: inline;
    position: relative;
    width: 100%;
    align-items: center;
    margin: 0 0 0 3px;
}
.form-wrap .wpcf7-list-item-label {
    position: relative;
    padding: 0;
    color: var(--color-bk);
    cursor: pointer;
}
.form-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.form-wrap .wpcf7-list-item-label:before {
    content: '';
    display: inline-block;
    position: relative;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid var(--color-gy);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 6px;
    width: 8px;
    height: 15px;
    margin-top: -4px;
    transform: translate(0, -50%) rotate(40deg);
    border-bottom: 2px solid var(--color-rd);
    border-right: 2px solid var(--color-rd);
}
.form-wrap .form-foot input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 5px;
}
.form-item .wpcf7-radio {
    display: flex;
    justify-content: flex-start;
}
.form-item .wpcf7-radio .wpcf7-list-item {
    display: flex;
    justify-content: flex-start;
    width: auto;
}
.form-item .wpcf7-radio .wpcf7-list-item.first {
    margin: 0 0 0 5px;
}
.form-item .wpcf7-radio input[type="radio"] {
    opacity: 0;
}
.form-item .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding: 0 0 0 20px;
}
.form-item .wpcf7-radio .wpcf7-list-item-label::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-gy);
    transform: translate(0, -50%);
    border-radius: 100%;
}
.form-item .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
    z-index: 3;
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    width: 10px;
    height: 10px;
    background: var(--color-gy);
    transform: translate(0, -50%);
    border-radius: 100%;
}
.form-item .wpcf7-not-valid-tip {
    color: var(--color-rd);
    font-size: 0.8rem;
}

.form-attention p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
    word-break: break-all;
}
@media screen and (min-width: 768px) {
    .form-attention p {
        font-size: 0.9rem;
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    .form-attention p {
        font-size: 0.95rem;
	}
}
.form-attention p a {
    display: inline;
    text-decoration: underline;
}
.form-attention .checkbox {
    padding: 30px 0 0;
    text-align: center;
    font-size: 0.95rem;
}
@media screen and (min-width: 768px) {
    .form-attention .checkbox {
        padding: 50px 0 0;
    }
}
.form-wrap .submit {
    padding: 0 30px;
}
.form-wrap input[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--color-dgy);
    color: var(--color-wh);
    text-align: center;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    line-height: 1;
    border: none;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.is-en-page .form-wrap input[type="submit"] {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
}
.form-wrap input[type="submit"]:hover {
    background: var(--color-bk);
}
@media screen and (min-width: 768px) {
    .form-wrap input[type="submit"] {
        max-width: 300px;
        margin: auto;
        padding: 20px;
    }
}

/* ──────────────── */
/* form-foot 内のチェックボックス横並び設定 */
/* ──────────────── */
.form-foot .wpcf7-form-control.wpcf7-checkbox {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 25px;
}

.form-foot .wpcf7-list-item {
    display: flex !important;
    align-items: center;
    width: auto !important;
    margin: 0 !important;
}

.form-foot .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 26px;
    line-height: 1.6;
}

.form-foot .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gy);
    transform: translateY(-50%);
}

.form-wrap .form-foot input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 50% !important;
}

.form-file {
	padding: 12px 0;
}
.wpcf7-file {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding-left: 0;
	font-size: 0.9rem;
}
input[type=file]::file-selector-button {
	background: var(--color-dgy);
	color: var(--color-wh);
	margin-right: 1em;
	padding: 9px 15px 8px;
	line-height: 1;
	cursor: pointer;
	border-radius: 20px;
	border: none;            /* 枠線も不要なら削除 */
    box-shadow: none;
    text-shadow: none;
	-webkit-appearance: none; /* 重要: ブラウザデフォルトの影・ボタンスタイルを無効化 */
    appearance: none;         /* 標準対応 */
}

.form .sent .form-wrap {
    display: none;
}
.form-thanks {
    display: none;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}
.form .sent .form-thanks {
    display: block;
}

/* ──────────────── */
/* acceptance （個人情報同意）用チェックボックス調整 */
/* ──────────────── */
.form-attention .wpcf7-acceptance {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-attention .wpcf7-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-attention input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.form-attention .wpcf7-list-item-label {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

/* 枠線 */
.form-attention .wpcf7-list-item-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-gy);
    transform: translateY(-50%);
}

/* ✔マーク */
.form-attention input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    width: 8px;
    height: 15px;
    transform: translate(0, -50%) rotate(40deg);
    border-bottom: 2px solid var(--color-rd);
    border-right: 2px solid var(--color-rd);
}



/* --------------------------------------------------
 single
--------------------------------------------------- */

.single {
    position: relative;
    width: 100%;
}
.single-news {
	margin-top: -30px;
	margin-bottom: -50px;
	background: var(--color-wh);
}
.single__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
    padding: 40px 0 0;
}
.single-news .single__inner {
	padding: 40px 20px 0;
}

.single-head {
    display: flex;
    flex-direction: column;
}
.single-head .category {
    width: 100%;
    padding-bottom: 20px;
}
.single-head .category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px;
    width: 100%;
}
.single-head .category ul li a {
	padding: 8px 10px;
	font-size: 0.7rem;
	line-height: 1;
	background: var(--color-nv);
	color: var(--color-wh);
	border-radius: 3px;
    transition: .3s;
}
.single-head .category ul li a:hover {
    opacity: 0.8;
}
.single-head .image {
    width: 100%;
    height: 250px;
}
.single-head .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-head h1 {
    position: relative;
    padding: 25px 10px 25px 50px;
    font-size: 1.1rem;
    background: var(--color-wh);
}
.single-head h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: var(--color-rd);
}
.single-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
    padding: 0 20px;
}
.single-block h2 {
    padding: 5px 10px;
    font-size: 1.1rem;
    border-left: 3px solid var(--color-rd);
}
.single-block .textarea {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.single-block .youtube {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background: var(--color-wh);
}
.single-block .youtube h3 {
    position: relative;
    padding: 10px;
    font-size: 1rem;
    background: var(--color-nv);
    color: var(--color-wh);
    border-radius: 4px;
}
.single-block .youtube h3::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: 30%;
    width: 12px;
    height: 12px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background: var(--color-nv);
}

.single-block .youtube .youtube__item {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.single-block .youtube .youtube__item iframe {
    width: 100%;
    height: 100%;
}

.single-block .gallery {
	width: 100%;
}
.single-block .gallery ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.single-block .gallery ul li {
	width: calc(50% - 5px);
}

.single-back {
    width: 100%;
}
.single-back a {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 10px 30px;
    background: var(--color-wh);
    font-size: 0.9rem;
    text-align: center;
}
.single-back a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--color-bk);
    border-left: 1px solid var(--color-bk);
    transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
	.single-news {
		margin-bottom: -60px;
		padding-bottom: 60px;
	}
    .single__inner {
        gap: 40px;
        width: 100%;
        margin: auto;
        padding: 0 0 20px;
    }
	.single-news .single__inner {
		max-width: 1000px;
		margin: auto;
		padding: 40px 40px 0;
	}
    .single-head .image {
        height: 350px;
    }
    .single-block {
        gap: 30px;
        padding: 0 40px;
    }
    .single-block .head,
    .single-block .mhead,
    .single-block .shead,
    .single-block .textarea {
        padding: 0 10px;
    }
    .single-block .textarea p {
        line-height: 1.8;
    }
    .single-block .youtube {
        padding: 40px;
    }
    .single-back {
        padding-top: 15px;
    }
    .single-back a {
        max-width: 350px;
        padding: 15px 40px;
        font-size: 1rem;
    }
    .single-back a::before {
        left: 25px;
    }
}
@media screen and (min-width: 1024px) {
	.single-news {
		margin-bottom: -80px;
		padding-bottom: 60px;
	}
    .single__inner {
        gap: 50px;
        max-width: 1200px;
        margin: auto;
        padding: 80px 0;
    }
	.single-news .single__inner {
		max-width: 1000px;
		margin: auto;
		padding: 80px 40px 0;
	}
    .single-head {
        padding: 0 60px;
    }
    .single-head .image {
        height: 450px;
    }
    .single-head h1 {
        font-size: 1.3rem;
    }
    .single-block {
        gap: 30px;
        padding: 0 60px;
    }
    .single-block .youtube {
        gap: 50px;
        padding: 60px;
    }
    .single-block .youtube h3 {
        padding: 20px;
        font-size: 1.1rem;
    }
    .single-block .youtube h3::after {
        bottom: -24px;
        right: 20%;
        width: 34px;
        height: 24px;
    }
	.single-block .gallery ul {
		gap: 10px;
	}
	.single-block .gallery ul li {
		width: calc(33.3333% - (20px / 3));
	}
}

.single-news .single__inner .head {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.single-news .single__inner .head h1 {
	width: 100%;
	padding: 12px 10px 10px 15px;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: 500;
	border-left: 4px solid var(--color-rd);
	border-bottom: 1px solid var(--color-gy);
}
.single-news .single__inner .head p {
	text-align: right;
	font-size: 0.8rem;
	color: var(--color-dgy);
}
.single-news .single__inner .desc {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	padding-bottom: 20px;
}
.single-news .single__inner .desc p {
	font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
	.single-news .single__inner .head h1 {
		padding: 18px 15px 16px 18px;
		font-size: 1.05rem;
		font-weight: 700;
		border-left: 5px solid var(--color-rd);
	}
	.single-news .single__inner .head p {
		font-size: 0.9rem;
	}
	.single-news .single__inner .desc {
		padding: 30px 18px;
	}
	.single-news .single__inner .desc p {
		font-size: 1rem;
	}
}

.post-navigation {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 20px 0 50px;
	border-top: 1px solid var(--color-gy);
}
.post-navigation a {
	background: var(--color-bgy);
	color: var(--color-wh);
}
.post-navigation a.btn {
	display: flex;
	align-items: center;
	position: relative;
    width: 30px;
    height: 30px;
    padding: 6px;
	font-size: 0.9rem;
	line-height: 1;
}
.post-navigation a.prev,
.post-navigation a.next {
	width: 30px;
	padding: 0;
	border-radius: 100%;
}
.post-navigation a span.arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--color-wh);
}
.post-navigation a.next span.arrow {
	margin-left: 1px;
	border-left: 1px solid var(--color-wh);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.post-navigation a.prev span.arrow {
	margin-left: -1px;
	border-right: 1px solid var(--color-wh);
	transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
	.post-navigation {
		padding-top: 40px;
		padding-bottom: 60px;
	}
	.post-navigation a.btn {
        width: 60px;
		height: 60px;
		padding: 20px;
		border-radius: 3px;
		font-size: 0.95rem;
		word-break: break-all;
	}
	.post-navigation a.prev,
	.post-navigation a.next {
		width: 220px;
		border-radius: 3px;
		font-size: 0.85rem;
        line-height: 1.4;
	}
	.post-navigation a.prev {
		padding-right: 40px;
	}
	.post-navigation a.next {
		padding-left: 40px;
	}
	.post-navigation a.next span.arrow {
		left: 15px;
		transform: translate(0, -50%) rotate(-45deg);
	}
	.post-navigation a.prev span.arrow {
		left: auto;
		right: 15px;
		transform: translate(0, -50%) rotate(45deg);
	}
}
@media screen and (min-width: 1024px) {
	.post-navigation {
        padding-top: 70px;
		padding-bottom: 70px;
	}
	.post-navigation a.btn {
        width: 70px;
		height: 70px;
    }
	.post-navigation a.prev,
	.post-navigation a.next {
        width: 320px;
        padding: 20px;
    }
	.post-navigation a.prev {
		padding-right: 40px;
	}
	.post-navigation a.next {
		padding-left: 40px;
	}
	.post-navigation a.next span.arrow {
		left: 15px;
		transform: translate(0, -50%) rotate(-45deg);
	}
	.post-navigation a.prev span.arrow {
		left: auto;
		right: 15px;
		transform: translate(0, -50%) rotate(45deg);
	}
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */

.footer {
    position: relative;
    width: 100%;
    background: var(--color-wh);
}

.footer-contact {
	background: linear-gradient(-70deg, #efefef 0%, #efefef 50%, #e3e3e3 50%, #e3e3e3 100%);
}
.footer-contact__inner {
	display: flex;
	flex-direction: column;
	gap: 35px;
	padding: 60px 20px;
}
.footer-contact__inner .footer-contact__main p {
	text-align: center;
}
.footer-contact__inner .footer-contact__list {
	width: 100%;
}
.footer-contact__inner .footer-contact__list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	width: 100%;
}
.footer-contact__inner .footer-contact__list ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
}
.footer-contact__inner .footer-contact__list ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	width: 100%;
	padding: 25px;
	color: var(--color-wh);
	font-size: 1.3rem;
	line-height: 1;
	font-weight: 700;
	border-radius: 4px;
}
.footer-contact__inner .footer-contact__list ul li.f-tel a {
	font-family: var(--font-en-02);
	font-size: 1.8rem;
	font-weight: 500;
	background: var(--color-kbl);
}
.footer-contact__inner .footer-contact__list ul li.f-contact a {
	background: var(--color-lrd);
}
.footer-contact__inner .footer-contact__list ul li.f-consult a {
	background: #aaa487;
}

.footer-contact__inner .footer-contact__list ul li a span {
	display: block;
}
.footer-contact__inner .footer-contact__list ul li a span.icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--color-wh);
	border-radius: 100%;
}
@media screen and (min-width: 768px) {
	.footer-contact__inner {
		gap: 35px;
		padding: 90px 40px 80px;
	}
	.footer-contact__inner .footer-contact__main p {
		font-size: 1.1rem;
		font-weight: 700;
	}
	.footer-contact__inner .footer-contact__list ul {
		gap: 40px;
	}
	.footer-contact__inner .footer-contact__list ul li a {
		gap: 30px;
		max-width: 500px;
		padding: 25px;
		font-size: 1.45rem;
	}
	.footer-contact__inner .footer-contact__list ul li.f-tel a {
		font-size: 2rem;
	}
	.footer-contact__inner .footer-contact__list ul li a span.icon {
		width: 45px;
		height: 45px;
	}
	.footer-contact__inner .footer-contact__list ul li p {
		font-size: 1.1rem;
	}
}
@media screen and (min-width: 1024px) {
	.footer-contact {
		background: linear-gradient(-20deg, #efefef 0%, #efefef 50%, #e3e3e3 50%, #e3e3e3 100%);
	}
	.footer-contact__inner {
		gap: 50px;
		padding: 90px 60px 80px;
	}
	.footer-contact__inner .footer-contact__main p {
		font-size: 1.25rem;
	}
	.footer-contact__inner .footer-contact__list ul {
		gap: 20px;
		justify-content: center;
	}
	.footer-contact__inner .footer-contact__list ul li {
		width: 280px;
	}
	.footer-contact__inner .footer-contact__list ul li p {
		font-size: 0.9rem;
	}
}
@media screen and (min-width: 1280px) {
	.footer-contact__inner {
		gap: 70px;
		padding: 110px 90px 90px;
	}
	.footer-contact__inner .footer-contact__list ul {
		gap: 40px;
		justify-content: center;
	}
	.footer-contact__inner .footer-contact__list ul li {
		width: 320px;
	}
	.footer-contact__inner .footer-contact__list ul li p {
		font-size: 1rem;
	}
	.footer-contact__inner .footer-contact__list ul li a {
		padding: 25px;
		font-size: 1.6rem;
	}
	.footer-contact__inner .footer-contact__list ul li.f-tel a {
		font-size: 2.2rem;
	}
	.footer-contact__inner .footer-contact__list ul li.f-tel a span.desc {
		padding-top: 6px;
	}
}
@media screen and (min-width: 1601px) {
	.footer-contact__inner {
		padding: 140px 90px 120px;
	}
}



.footer-contents {
    padding: 40px 20px;
}
.footer-contents__inner {
	display: flex;
	flex-direction: column;
	gap: 35px;
}
.footer-contents__inner .footer-head {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}
.footer-contents__inner .footer-head .footer-head__logo a {
    width: 270px;
}
.footer-contents__inner .footer-head .footer-head__address {
	font-size: 0.9rem;
	line-height: 1.6;
}
.footer-contents__inner .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 35px;
	width: 100%;
}
.footer-contents__inner .footer-menu .footer-menu__item {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.footer-contents__inner .footer-menu .footer-menu__item h3 {
	width: 100%;
	font-size: 1.05rem;
	color: var(--color-sbl);
}
.footer-contents__inner .footer-menu .footer-menu__item ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-contents__inner .footer-menu .footer-menu__item ul li {
	position: relative;
	width: 100%;
	padding-left: 30px;
}
.footer-contents__inner .footer-menu .footer-menu__product ul li {
	width: calc(50% - 5px);
	padding-left: 0
}
.footer-contents__inner .footer-menu .footer-menu__product ul li a {
	position: relative;
	padding-left: 20px;
}
.footer-contents__inner .footer-menu .footer-menu__product ul li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: var(--color-sbl);
	transform: translate(0, -50%);
}

.footer-contents__inner .footer-menu .footer-menu__support ul li::before,
.footer-contents__inner .footer-menu .footer-menu__policy ul li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	width: 18px;
	height: 18px;
	border: 1px solid var(--color-bk);
	border-radius: 100%;
	transform: translate(0, -50%);
}
.footer-contents__inner .footer-menu .footer-menu__support ul li a,
.footer-contents__inner .footer-menu .footer-menu__policy ul li a {
	position: relative;
}
.footer-contents__inner .footer-menu .footer-menu__support ul li a::before,
.footer-contents__inner .footer-menu .footer-menu__policy ul li a::before,
.footer-contents__inner .footer-menu .footer-menu__support ul li a::after,
.footer-contents__inner .footer-menu .footer-menu__policy ul li a::after {
	content: "";
	position: absolute;
	top: 50%;
}
.footer-contents__inner .footer-menu .footer-menu__support ul li a::before,
.footer-contents__inner .footer-menu .footer-menu__policy ul li a::before {
	left: -17px;
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.footer-contents__inner .footer-menu .footer-menu__support ul li a::after,
.footer-contents__inner .footer-menu .footer-menu__policy ul li a::after {
	left: -21px;
	width: 8px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
	.footer-contents {
		padding: 80px 40px 60px;
	}
	.footer-contents__inner {
		gap: 50px;
	}
	.footer-contents__inner .footer-head {
		gap: 35px;
	}
	.footer-contents__inner .footer-head .footer-head__logo a {
		width: 300px;
	}
	.footer-contents__inner .footer-head .footer-head__address {
		font-size: 1.05rem;
	}
	.footer-contents__inner .footer-menu {
		flex-direction: row;
		gap: 30px;
	}
	.footer-contents__inner .footer-menu .footer-menu__item {
		position: relative;
		width: calc(33.3333% - (60px / 3));
		padding: 10px 0;
	}
	.footer-contents__inner .footer-menu .footer-menu__product {
		width: calc(28% - (60px / 3));
	}
	.footer-contents__inner .footer-menu .footer-menu__support,
	.footer-contents__inner .footer-menu .footer-menu__policy {
		width: calc(36% - (60px / 3));
	}
	.footer-contents__inner .footer-menu .footer-menu__item::before {
		content: "";
		position: absolute;
		top: 0;
		left: -18px;
		width: 1px;
		height: 100%;
		background: var(--color-bk);
		opacity: 0.2;
	}
	.footer-contents__inner .footer-menu .footer-menu__item:nth-child(1)::before {
		display: none;
	}
	
	
	.footer-contents__inner .footer-menu .footer-menu__item:nth-last-child(1) {
		border-right: 0;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li {
		width: 100%;
	}
}
@media screen and (min-width: 1024px) {
	.footer-contents {
		padding: 100px 60px 60px;
	}
    .footer-contents__inner .footer-menu .footer-menu__item h3 {
        font-size: 1rem;
    }
    .footer-contents__inner .footer-menu .footer-menu__item ul li a {
        font-size: 0.95rem;
    }
	.footer-contents__inner .footer-menu .footer-menu__product {
		width: calc(30% - (60px / 3));
	}
	.footer-contents__inner .footer-menu .footer-menu__support,
	.footer-contents__inner .footer-menu .footer-menu__policy {
		width: calc(35% - (60px / 3));
	}
	.footer-contents__inner .footer-menu .footer-menu__item::before {
		left: -22px;
	}
    .footer-contents__inner .footer-head .footer-head__address {
        font-size: 0.95rem;
    }
}
@media screen and (min-width: 1280px) {
	.footer-contents {
		padding: 100px 90px 60px;
	}
	.footer-contents__inner {
		flex-direction: row;
		gap: 35px;
		max-width: 1400px;
		margin: auto;
	}
	.footer-contents__inner .footer-head {
		padding-top: 30px;
	}
	.footer-contents__inner .footer-menu {
		margin-left: auto;
	}
	.footer-contents__inner .footer-menu .footer-menu__product {
		width: 200px;
	}
	.footer-contents__inner .footer-menu .footer-menu__support {
		width: 230px;
	}
	.footer-contents__inner .footer-menu .footer-menu__policy {
		width: 230px;
	}
}
@media screen and (min-width: 1601px) {
	.footer-contents {
		padding: 150px 90px 90px;
	}
	.footer-contents__inner {
		gap: 50px;
	}
	.footer-contents__inner .footer-menu .footer-menu__item::before {
		left: -28px;
	}
	.footer-contents__inner .footer-menu .footer-menu__product {
		width: 300px;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li {
		width: calc(50% - 5px);
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(1) {
		order: 1;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(2) {
		order: 3;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(3) {
		order: 5;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(4) {
		order: 7;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(5) {
		order: 2;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(6) {
		order: 4;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(7) {
		order: 6;
	}
	.footer-contents__inner .footer-menu .footer-menu__product ul li:nth-child(8) {
		order: 8;
	}
	.footer-contents__inner .footer-menu .footer-menu__support {
		width: 420px;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li {
		width: calc(50% - 5px);
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(1) {
		order: 1;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(2) {
		order: 3;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(3) {
		order: 5;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(4) {
		order: 7;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(5) {
		order: 2;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(6) {
		order: 4;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(7) {
		order: 6;
	}
	.footer-contents__inner .footer-menu .footer-menu__support ul li:nth-child(8) {
		order: 8;
	}
}

.footer-intro {
	padding: 10px 20px;
}
.footer-intro__inner {
	background: var(--color-wgy);
	padding: 15px;
}
.footer-intro p {
	font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
	.footer-intro {
		padding: 10px 40px;
	}
	.footer-intro__inner {
		padding: 20px;
	}
}
@media screen and (min-width: 1280px) {
	.footer-intro {
		max-width: 1580px;
		margin: auto;
		padding: 0 90px;
	}
	.footer-intro p {
		font-size: 0.8rem;
	}
}

.footer-copy {
    background: var(--color-wh);
    color: var(--color-bk);
}
.footer-copy p {
    padding: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: .05em;
    text-indent: .05em;
}
@media screen and (min-width: 768px) {
    .footer-copy p {
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1280px) {
	.footer-copy p {
		padding: 40px 90px 60px;
		max-width: 1580px;
		margin: auto;
		text-align: left;
	}
}

.pc-fix {
	display: none;
}
@media screen and (min-width: 1024px) {
	.pc-fix {
		z-index: 92;
		display: block;
		position: fixed;
		bottom: 0;
		right: 0;
	}
	.pc-fix a {
		display: flex;
		align-items: center;
		gap: 15px;
		padding: 15px 30px;
		background: var(--color-kbl);
	}
	.pc-fix a span.icon {
		width: 40px;
		padding: 8px;
		background: var(--color-wh);
		border-radius: 100%;
	}
	.pc-fix a span.text {
		padding-top: 2px;
		color: var(--color-wh);
		font-weight: 700;
	}
	.pc-fix a span.arrow {
		display: flex;
		gap: 2px;
	}
	.pc-fix a span.arrow span {
		width: 7px;
		height: 9px;
		clip-path: polygon(0 0, 0 100%, 100% 50%);
		background: var(--color-wh);
	}
}
@media screen and (min-width: 1280px) {
	.pc-fix {
		bottom: 30px;
		right: 30px;
	}
	.pc-fix a {
		border-radius: 8px;
	}
	.pc-fix a span.text {
		font-size: 1.1rem;
	}
}