@charset "UTF-8";


/* *********************************

   common.css

	- Variable
	- Reset
	- Base
	- Layout
	- Navigation
	- Component
	- Animation
	- Utility

********************************* */



/* ========================================================
  
  Variable

======================================================== */
:root {
	--fw-bold: 600;

	--font-min: normal normal 400 100%/1.6 "Shippori Mincho B1", serif;
	--font-en: normal normal 500 100%/1 "Montserrat", sans-serif;
	--color-base: #3a5037;
	--color-bdr: #e1e1dc;
	--color-mgrn: #3fcbc0;
	--color-bgrn: #3fc3b2;
	--color-grn: #4c9266;
	--color-lgrn: #97d679;
	--color-pgrn: #d8e9d4;
	--color-lblu: #11dde7;
	--color-lyel: #ffffda;
	--color-och: #d6ae47;
	--color-org: #f6812d;
	--color-pnk: #f6b29e;
	--color-bei: #f0f3ec;
	--color-ivo: #fbfef9;

	--color-news: #3fb5a5;
	--color-blog: #d5ac55;
}






/* ========================================================
  
  Reset

======================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fildset,p,blockquote,
figure,figcaption,hr {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: inherit;
}

ul{
	list-style:none;
}

img{
	display:block;
	max-width:100%;
	height:auto;
}

picture {
	display:block;
}

table {
	width:100%;
	font-size:inherit;
	font:100%;
	border-collapse:separate;
	border-spacing:0;
}






/* ========================================================
  
  Base

======================================================== */
html {
	font-size: 15px;
}
body {
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック","Yu Gothic",Meiryo,sans-serif;
	font-style: normal;
	color: var(--color-base);
	letter-spacing: .14em;
	line-height: 2.2;
	font-feature-settings: "palt";
	padding: 0;
	margin: 0;
	-webkit-text-size-adjust: 100%;
}

main {
	position: relative;
}

a {
	color: inherit;
	text-decoration: none;
	outline: 0;
	transition: color 1s, background-color 1s;
}
a:hover {
	transition: color .6s, background-color .6s;
}

address {
	font-style: normal;
}

section {
	position: relative;
}

main {
	position: relative;
}

cite {
	display: block;
	text-align: right;
	font-size: 94%;
	font-style: normal;
	line-height: 1.4;
	margin-top: 1em;
}

sup {
	font-size:60%;
}

hr {
	display: block;
	height: 1px;
	background: #e6e6e6;
	width: 100%;
	border: none;
	margin: 7% auto;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

body {
	line-height: 1.9;
}
}

@media(min-width: 768px) {
/* PC時はaタグ無効 */
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/* スマホのときはビューポートを基準にサイズ調節する */
/* スマホ時：emまたは%で指定する */
/* スマホ以外でビューポート基準にするときは、その都度「vw」で指定する */
html {
	font-size: 4vw;
}
body {
	line-height: 1.8;
	letter-spacing: .1em;
}
cite {
	font-size: 80%;
}
hr {
	margin: 12% auto;
}
}






/* ========================================================
  
  Layout

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

/*-----------------------------------------------
 Layout - header
-----------------------------------------------*/
header {
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
	padding: min(3.4vw,50px) min(6.6vw,100px) 30px;
	z-index: 100;
}
.h_logo {
	display: block;
	width: 20vw;
	max-width: 259px;
}
.h_txt {
	position: relative;
	font-size: 86%;
	line-height: 2;
	letter-spacing: .14em;
}
.fv_area.has-mimg .h_txt {
	color: #FFF;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.h_inbox {
	display: flex;
	justify-content: space-between;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
header {
	padding: 6vw;
}
.h_logo {
	width: 36vw;
}
.h_txt {
	font-size: 2.6vw;
	line-height: 1.6;
	letter-spacing: .1em;
}
.h_right {
	display: none;
}
}

/*-----------------------------------------------
 Layout - m_nav_area
-----------------------------------------------*/
.m_nav_area {
	position: relative;
}

.fv_area.has-mimg .m_nav_area {
	color: #FFF;
}

.contentpage .m_nav_area {
	margin-left: auto;
	margin-right: min(100px,6.6%);
}
.contentpage .m_nav_area .m_nav {
	justify-content: flex-end;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.m_nav_area {
	display: none;
}
}

/*-----------------------------------------------
 Layout - scl_header
-----------------------------------------------*/
#scl_header {
	position: fixed;
	background-color: #fff;
	z-index: 500;
	left: 0;
	top: 0;
	width: 100%;
	padding: min(1.6vw,25px) 2.6%;
	translate: 0 -101%;
}
#scl_header.is-show {
	display: block;
	translate: 0 0;
	opacity: 1;
    animation: sclAnimation 1.0s;
}
#scl_header .scl_col {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#scl_header .com_ctc_list {
	width: auto;
}
@keyframes sclAnimation {
	0% {
		translate: 0 -100%;
	}
	100% {
		translate: 0 0;
	}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#scl_header {
	display: none !important;
}
}

/*-----------------------------------------------
 Layout - drawer
-----------------------------------------------*/
.drw_inbox {
	padding: 10% 6%;
}
.drw_home {
	font: var(--font-en);
	font-size: 3.4vw;
	margin-bottom: 10%;
}
.drw_home a {
	position: relative;
	background: url(../images/common/logo-mark.svg) no-repeat left center;
	background-size: 2em auto;
	padding: .5em 0 .5em 3em;
}
.drw_inbox .com_menu__col {
	justify-content: center;
	margin-top: 10%;
}

/*-----------------------------------------------
 Layout - footer
-----------------------------------------------*/
footer {
	position: relative;
	color: #FFF;
	background-color: rgba(63,61,63, 0.8);
	padding: min(3.4vw,50px);
}
footer .com_bg__img.size__max {
	-webkit-mask-image: linear-gradient(to bottom, transparent 10%, black 20%);
	mask-image: linear-gradient(to bottom, transparent 10%, black 20%);
	inset: auto 0 0 auto;
}
.f_inbox {
	background-color: rgba(255,255,255,0.1);
	padding: min(6vw,85px) 7%;
	border-radius: 60px;
	border: 1px solid #FFF;
}

.f_btm {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: min(5vw,70px);
	margin-top: min(5vw,70px);
}
.copyright {
	display: block;
	color: rgba(255,255,255,0.4);
	font: var(--font-en);
	font-size: 86%;
	line-height: 1.4;
	letter-spacing: .14em;
	margin-top: min(5vw,70px);
}
#page_top {
	display: block;
	max-width: max-content;
	font: var(--font-en);
	padding-right: 2.4em;
	margin-left: auto;
	margin-right: -2em;
}
#page_top .com_arw {
	position: absolute;
	right: 0;
	bottom: 0;
	rotate: -90deg;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

footer {
	padding: 8% 5% 25%;
}
footer .com_bg__img.size__max {
	width: 110vw;
}
.f_inbox {
	padding: 10% 7%;
	border-radius: 8vw;
}

.f_btm {
	padding-top: 10%;
	margin-top: 12%;
}
.f_btm .open_btn {
	text-align: center;
	font: var(--font-en);
	margin-bottom: 1em;
}
.copyright {
	font-size: 65%;
	margin-top: 10%;
}

#page_top {
	font-size: 70%;
	margin-right: 0;
}
}

/* Layout - footer - f_info
-----------------------------------------------*/
footer iframe {
	display: block;
	border-radius: 20px;
}
footer address {
	font-weight: var(--fw-bold);
	margin-top: 1.5em;
	margin-bottom: 3em;
}
.f_info .fs__17 {
	font-weight: var(--fw-bold);
	line-height: 1.5;
	letter-spacing: .25em;
	margin-bottom: 1em;
}
footer .com_timetable {
	margin-bottom: 6%;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.f_info {
	max-width: 1200px;
	margin-inline: auto;
}
.f_info .f_col_2 {
	display: grid;
	justify-content: space-between;
	grid-template-columns: min(510px,48%) 48%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.f_info .f_col_2 > div:nth-of-type(n+2) {
	margin-top: 7%;
}
footer iframe {
	height: 70vw;
	border-radius: 10px;
}
footer address {
	margin-bottom: 2em;
}
}

/* Layout - footer - f_sitemap
-----------------------------------------------*/
.f_sitemap__index {
	color: rgba(255,255,255,0.4);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	white-space: nowrap;
}
.sitemap__trt {
	margin: 3em auto;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.f_btm .open_btn {
	display: none;
}
.f_sitemap {
	max-width: 1000px;
}
.f_sitemap__wrap {
	display: flex;
	column-gap: 3%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.f_sitemap {
	display: none;
}
.f_sitemap__index {
	font-size: 90%;
	margin-bottom: .8em;
}
.sitemap__trt {
	margin: 10% auto;
}
}

/*-----------------------------------------------
 Layout - sp_footer
-----------------------------------------------*/
#sp_footer {
	position: fixed;
	width: 100%;
	padding: 4% 3%;
	inset: auto 0 0 0;
	z-index: 100;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#sp_footer {
	display: none !important;
}
}

/*-----------------------------------------------
 Layout - FV
-----------------------------------------------*/
.fv_area {
	position: relative;
	width: 100%;
}
.fv_area.has-mimg::before {
	position: absolute;
	content: "";
	background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0));
	width: 100%;
	height: 225px;
	inset: 0 0 auto 0;
}
.m_img {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	inset: 0;
	margin: auto;
	z-index: -1;
}






/* ========================================================
  
  Navigation

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

/*-----------------------------------------------
 Navigation - m_nav
-----------------------------------------------*/
.m_nav {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 1.6em;
	font-size: min(1.4vw,1rem);
	font-weight: var(--fw-bold);
	letter-spacing: .2em;
	line-height: 1.3;
	font-feature-settings: "halt";
}
.m_nav > li {
	position: relative;
}
.m_nav > li.menu_hom {
	font: var(--font-en);
}
.m_nav > li > a {
	position: relative;
	display: block;
	text-align: center;
	padding: .7em 0;
}
.m_nav > li.has-inmenu > a {
	padding-right: 1.2em;
}
.m_nav .icon_open {
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
.m_nav > li > a::before {
	position: absolute;
	content: "";
	background-color: currentColor;
	width: 0;
	height: 1px;
	left: 50%;
	bottom: 0;
	translate: -50% 0;
	transition: width .3s;
}
.m_nav > li > a:hover::before,
.m_nav > li.is-active > a::before {
	width: .8em;
}
.m_nav > li > a br {
	display: none;
}
.m_nav > li:has(.in_menu.in_width) {
	position: static;
}

#scl_header .m_nav {
	column-gap: 1.4em;
	font-size: min(1.2vw,.93rem);
	font-feature-settings: "palt";
}

@media only screen and (min-width: 768px) and (max-width: 1430px) {

#scl_header .m_nav > li > a br {
	display: block;
}
}
@media only screen and (min-width: 768px) and (max-width: 1320px) {

.m_nav > li > a br {
	display: block;
}
}

/* Navigation - m_nav - in_menu
-----------------------------------------------*/
.in_menu {
	display: none;
	position: absolute;
	width: 12em;
	text-align: center;
	font-size: min(1.1vw,.95rem);
	letter-spacing: .2em;
	line-height: 1.3;
	font-feature-settings: "palt";
	right: 50%;
	top: calc(100% + 1em);
	translate: 50% 0;
	color: var(--color-base);
	background: rgba(246,247,245,0.85);
	padding: 1em;
	border-radius: 1.4em;
	z-index: 999;
}
.in_menu.in_width {
	width: 90vw;
	max-width: 1050px;
	right: 0;
	translate: none;
	padding: 1.2em 2em;
}
.open_top .in_menu {
	top: auto;
	bottom: calc(100% + 1em);
}

.frontpage .m_nav_area .in_menu.in_width,
#scl_header .in_menu.in_width {
	left: 0;
	translate: none;
}
/* list */
.in_menu.in_long li:nth-of-type(n+2) {
	border-top: 1px solid var(--color-bdr);
}
.in_menu.in_long li a {
	display: block;
	padding: 1em 0;
}
.in_menu.in_long li a:hover {
	color: var(--color-grn);
}

.in_menu .com_menu__med > li > a {
	border-color: #e6e6dc;
}


/*-----------------------------------------------
 Navigation - menu
-----------------------------------------------*/

/* Navigation - menu - com_menu__bdr
-----------------------------------------------*/
.com_menu__bdr {
	display: grid;
	justify-content: space-between;
	row-gap: .6em;
}
.com_menu__bdr > li {
	border-bottom: 1px solid var(--color-bdr);
}
.com_menu__bdr > li > a {
	position: relative;
	height: 2.8em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: min(1.6vw,1rem);
	font-weight: var(--fw-bold);
	letter-spacing: .14em;
	font-feature-settings: "halt";
	line-height: 1.3;
	padding: .2em 0 .2em 1.8em;

	word-break: keep-all;
	overflow-wrap: break-word;
}
.com_menu__bdr > li > a::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e801';
	left: .6em;
	top: 50%;
	translate: 0 -50%;
}
.com_menu__bdr > li > a:hover {
	color: var(--color-mgrn);
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_menu__bdr {
	grid-template-columns: repeat(2,47%);
	row-gap: .6em;
}
.com_menu__bdr > li > a {
	font-size: 85%;
	letter-spacing: .08em;
}
}

/* Navigation - menu - com_menu__med
-----------------------------------------------*/
.com_menu__med {
	display: grid;
	justify-content: space-between;
	row-gap: .6em;
	color: var(--color_base);
	text-align: left;
	font-size: min(1.15vw,1.06rem);
	font-weight: var(--fw-bold);
	letter-spacing: .1em;
	line-height: 1.3;
	font-feature-settings: "palt";
}
.com_menu__med > li > a {
	position: relative;
	height: 4.6em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	color: var(--color-base);
	background-color: #fff;
	padding: .8em .5em;
	border-radius: 1em;
	border: 1px solid #4c9266;

	overflow: hidden;
	isolation: isolate;
	transition: transform .4s;
}

.com_menu__med > li > a::before {
	position: absolute;
	content: "";
	background-color: var(--color-lyel);
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: transform .4s;
	transform-origin: right top;
    transform: scaleX(0);
}
.com_menu__med > li > a:hover::before {
	transform-origin: left top;
    transform: scaleX(1);
}

.com_menu__med a > p {
	position: relative;
}
.com_menu__med a > div {
	position: relative;
	padding-left: 3em;
}
.com_menu__med a > div::before {
	position: absolute;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 2.4em;
	height: 2.4em;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	transition: background-color .5s;
}

/* menu_etc */
.com_menu__med.menu_etc > li > a {
	color: #FFF;
	background-color: var(--color-base);
	border-color: #FFF;
}
.com_menu__med.menu_etc > li > a::before {
	background-color: var(--color-grn);
}

.com_menu__med > li.menu_prv > a > div::before {background-image: url(../images/common/icon-trt-prv.svg);}
.com_menu__med > li.menu_car > a > div::before {background-image: url(../images/common/icon-trt-car.svg);}
.com_menu__med > li.menu_roo > a > div::before {background-image: url(../images/common/icon-trt-roo.svg);}
.com_menu__med > li.menu_per > a > div::before {background-image: url(../images/common/icon-trt-per.svg);}
.com_menu__med > li.menu_kid > a > div::before {background-image: url(../images/common/icon-trt-kid.svg);}
.com_menu__med > li.menu_mat > a > div::before {background-image: url(../images/common/icon-trt-mat.svg);}
.com_menu__med > li.menu_ort > a > div::before {background-image: url(../images/common/icon-trt-ort.svg);}
.com_menu__med > li.menu_cer > a > div::before {background-image: url(../images/common/icon-trt-cer.svg);}
.com_menu__med > li.menu_whi > a > div::before {background-image: url(../images/common/icon-trt-whi.svg);}
.com_menu__med > li.menu_den > a > div::before {background-image: url(../images/common/icon-trt-den.svg);}
.com_menu__med > li.menu_sur > a > div::before {background-image: url(../images/common/icon-trt-sur.svg);}
.com_menu__med > li.menu_imp > a > div::before {background-image: url(../images/common/icon-trt-imp.svg);}
.com_menu__med > li.menu_case > a > div::before {background-image: url(../images/common/icon-case.svg);}
.com_menu__med > li.menu_pri > a > div::before {background-image: url(../images/common/icon-price.svg);}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.com_menu__med {
	display: grid;
	grid-template-columns: repeat(6,15.8%);
	justify-content: space-between;
	gap: 1em 1.04%;
}

.com_menu__med.menu_etc {
	display: flex;
	justify-content: center;
	margin-top: 1em;
}
.com_menu__med.menu_etc > li {
	width: 23%;
}
.com_menu__med.menu_etc > li > a > div {
	max-width: max-content;
	margin-inline: auto;
}

.in_menu .com_menu__med {
	font-size: min(1.1vw,0.86rem);
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.com_menu__med {
	grid-template-columns: repeat(4,24%);
	font-size: min(1.5vw,1.06rem);
}
.com_menu__med.menu_etc > li {
	width: 30%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_menu__med {
	grid-template-columns: repeat(2,49%);
	font-size: 3.2vw;
	letter-spacing: .08em;
}
.com_menu__med > li > a {
	height: 3.6em;
}
.com_menu__med a > div {
	padding-left: 2.5em;
}

.com_menu__med.menu_etc {
	margin-top: .6em;
}
}

/* Navigation - menu - com_menu__arw
-----------------------------------------------*/
.com_menu__arw {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
	font-size: 94%;
	line-height: 1.4;
}
.com_menu__arw a {
	position: relative;
	display: block;
	padding-left: 1.4em;
}
.com_menu__arw a::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e801';
	left: 0;
	top: 0;
}
.com_menu__arw a:hover {
	color: var(--color-mgrn);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_menu__arw {
	display: grid;
	grid-template-columns: repeat(2,50%);
	column-gap: 1em;
	font-size: 82%;
	font-feature-settings: "palt"
}
}

/* Navigation - menu - com_menu__col
-----------------------------------------------*/
.com_menu__col {
	display: flex;
	flex-wrap: wrap;
	row-gap: .6em;
	font-size: 94%;
	font-weight: var(--fw-bold);
	line-height: 1.2;
	letter-spacing: .12em;
}
.com_menu__col > li:not(:last-of-type)::after {
	display: inline-block;
	content: "";
	background-color: currentColor;
	width: 1px;
	height: 1em;
	margin: 0 1.4em;
	vertical-align: -0.2em;
}
.com_menu__col a {
	position: relative;
	display: inline-block;
}
.com_menu__col > li.menu_insta a {
	font: var(--font-en);
}
.com_menu__col > li.menu_insta a::before {
	display: inline-block;
	content: "";
	background: url(../images/common/icon-insta@2x.png) no-repeat center center;
	background-size: contain;
	width: 1em;
	height: 1em;
	vertical-align: -0.1em;
	margin-right: .4em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_menu__col {
	font-size: 80%;
}
}


/*-----------------------------------------------
 Navigation - bnr
-----------------------------------------------*/

/* Navigation - bnr - com_bnr_rec
-----------------------------------------------*/
.com_bnr_rec a {
	position: relative;
	height: 100%;
	height: 11.4em;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #FFF;
	font-size: min(1.3vw,100%);
	line-height: 1.4;
	white-space: nowrap;
	background: url(../images/common/bnr-recruit-bg@2x.jpg) no-repeat center center;
	background-size: cover;
	border-radius: 2em;
	padding: 3% 12%;
}
.com_bnr_rec .rec_txt {
	display: flex;
	align-items: flex-end;
	column-gap: 1em;
}
.com_bnr_rec .ft_min {
	font-size: 268%;
	letter-spacing: .2em;
}
.com_bnr_rec .ft_en {
	position: relative;
	display: inline-block;
	font-size: 133%;
	padding-right: 2.5em;
	margin-bottom: .4em;
}
.com_bnr_rec .rec_txt b {
	display: block;
	font-size: 94%;
	margin-bottom: .3em;
}
.com_bnr_rec .com_arw {
	position: absolute;
	font-size: 87%;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}

.com_bnr_rec .com_corner_wrap {
	width: calc(100% - 2.5em);
	height: calc(100% - 2.5em);
}
.com_bnr_rec .com_corner {
	color: var(--color-pnk);
	filter: drop-shadow(0 0 .5em rgba(0,0,0,0.1));
}
.com_bnr_rec .com_corner:nth-of-type(2),
.com_bnr_rec .com_corner:nth-of-type(3) {
	color: #fbe655;
}

.f_bnr .com_bnr_rec .com_corner {
	width: 1.8em;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_bnr_rec a {
	height: auto;
	font-size: 60%;
	padding: 8% 11%;
	border-radius: 6vw;
}
.com_bnr_rec .ft_min {
	font-size: 268%;
}
.com_bnr_rec .ft_en {
	font-size: 133%;
}
.com_bnr_rec .rec_txt b {
	position: absolute;
	left: 11%;
	top: 20%;
}
}

/* Navigation - bnr - com_bnr_insta
-----------------------------------------------*/
.com_bnr_insta a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	font-size: min(1.5vw,100%);
	border-radius: 2em;
}
.com_bnr_insta .insta_txt::before {
	display: block;
	content: "";
	background: url(../images/common/icon-insta@2x.png) no-repeat center center;
	background-size: contain;
	width: 2.6em;
	height: 2.6em;
	margin: 0 auto 1em;
}
.com_bnr_insta .com_arw {
	font-size: 78%;
	margin: 1em auto 0;
}
.com_bnr_insta .ft_en {
	font-size: 133%;
	letter-spacing: .14em;
}

.com_bnr_insta .com_corner_wrap {
	width: 100%;
	height: 100%;
}
.com_bnr_insta .com_corner {
	color: #ebeee6;
}
.f_bnr .com_bnr_insta a {
	background-color: #f6f8f1;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_bnr_insta a {
	font-size: 80%;
	padding: 10% 5%;
	border-radius: 6vw;
}
}






/* ========================================================
  
  Component

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


/*-----------------------------------------------
 Component - text
-----------------------------------------------*/
.com_txt_link {
	text-decoration: underline;
	text-underline-offset: .1em;
}
.com_txt_link:hover {
	text-decoration: none;
	color: var(--color-grn);
}

.aster_txt {
	display: block;
	color: #999;
	font-size: 80%;
	line-height: 1.8;
	letter-spacing: .08em;
	margin-top: 1em;
}
ul.aster_txt {
	display: grid;
	row-gap: .2em;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.aster_txt {
	font-size: 78%;
	letter-spacing: .04em;
}
}


/*-----------------------------------------------
 Component - scroll
-----------------------------------------------*/
.scl_area {
	position: relative;

	--scr-bar-color: var(--color-mgrn);
	--scr-bg-color: #f0f0f0;
}
.scl_txt {
	text-align: center;
	color: #9194A1;
	font-size: 80%;
	letter-spacing: .1em;
	line-height: 1.4;
	margin-bottom: 1em;
}
/* scrollbar */
.scl_area::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}

.scl_area::-webkit-scrollbar-track {
	background: var(--scr-bg-color);
	border-radius: 0;
}

.scl_area::-webkit-scrollbar-thumb {
	background-color: var(--scr-bar-color);
	border-radius: 0;
}

.scl_area::-webkit-scrollbar-thumb:hover {
	background-color: #555;
}

/* Firefox */
@-moz-document url-prefix(){
.scl_area {
	scrollbar-width: thin;         /* auto, thin, none */
	scrollbar-color: var(--scr-bar-color) transparent; /* thumb track */
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.scl_area {
	overflow-x: scroll;
	padding-bottom: 8%;
}
}

/*-----------------------------------------------
 Component - accordion
-----------------------------------------------*/
.open_btn {
	position: relative;
	cursor: pointer;
	transition: color .5s, background-color .5s;
}
.open_box {
	display: none;
}
/*icon_open*/
.icon_open {
	position: relative;
	letter-spacing: normal;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	width: 1.4em;
	height: 1.4em;
	border-radius: 50%;
	translate: 0 -0.1em;
	transition: background-color .5s;
}
.icon_open::before,
.icon_open::after {
	content: "";
	position: absolute;
	width: .7em;
	height: 1px;
	background: currentcolor;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.icon_open::after {
	transform: rotate(90deg);
	transition: transform 0.4s;
}
.active .icon_open::after {
	transform: rotate(0deg);
}

/*-----------------------------------------------
 Component - hover
-----------------------------------------------*/
.com_hov_img {
	position: relative;
	overflow: hidden;
}
.com_hov_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateZ(0);
	transition: scale .6s;
}
a:hover .com_hov_img img {
	scale: 1.08;
}


/*-----------------------------------------------
 Component - contact
-----------------------------------------------*/

/* Component - contact - com_ctc_btn
-----------------------------------------------*/
.com_ctc_btn {
	position: relative;
}
.com_ctc_btn a {
	position: relative;
	width: 14em;
	max-width: 100%;
	height: 5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: min(1.7vw,1.08rem);
	font-weight: var(--fw-bold);
	letter-spacing: .1em;
	line-height: 1.3;
	white-space: nowrap;
	color: #FFF;
	border-radius: 100vmax;
	padding: .2em 2em;
	transition: background-color .5s;
}
.com_ctc_btn a::before {
	display: inline-block;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	min-width: 3.6em;
	min-height: 2.2em;
	margin-bottom: .2em;
}
.com_ctc_btn a div {
	position: relative;
}
.com_ctc_btn a span {
	display: inline-block;
	font: var(--font-en);
	font-size: 107%;
	line-height: 0.8;
	letter-spacing: .1em;
}

.com_ctc_btn.btn__tel > a {	background-color: var(--color-mgrn);}
.com_ctc_btn.btn__tel > a::before {	background-image: url(../images/common/icon-tel.svg);}

.com_ctc_btn.btn__rsv > a {background-color: var(--color-och);}
.com_ctc_btn.btn__rsv > a:hover {background-color: #cca142;}
.com_ctc_btn.btn__rsv > a::before {	background-image: url(../images/common/icon-reserve.svg);}
.com_ctc_btn.btn__rsv span {font-size: 120%;}

.com_ctc_btn.btn__cal > a {
	flex-direction: column !important;
	color: var(--color-grn);
	width: 8.6em;
	background-color: #f6f7f5;
}
.com_ctc_btn.btn__cal > a:hover {background-color: #e9efe4;}
.com_ctc_btn.btn__cal > a::before {
	background-image: url(../images/common/icon-calendar-grn.svg);
	min-width: 3.2em;
	margin-top: -0.2em;
	margin-bottom: 0;
}
.com_ctc_btn.btn__cal span {font-size: 92%;}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
header .com_ctc_btn a {
	font-size: min(1.5vw,.94rem);
}
#scl_header .com_ctc_btn a {
	font-size: min(1vw,.94rem);
}
header .com_ctc_btn.btn__cal > a {	background-color: transparent;}

.fv_area.has-mimg header .com_ctc_btn.btn__cal > a {color: #FFF;}
.fv_area.has-mimg header .com_ctc_btn.btn__cal > a::before { background-image: url(../images/common/icon-calendar.svg);}
.fv_area.has-mimg header .com_ctc_btn.btn__cal > a:hover {background-color: rgba(255,255,255,0.2);}

/* type__content */
.com_ctc_list.type__content {
	justify-content: center;
	margin-inline: auto;
	margin-top: 2em;
}
.com_ctc_list.type__content .com_ctc_btn a {
	flex-direction: row;
	width: 17.8em;
	height: 3.5em;
	font-size: min(1.7vw,1.3rem);
}
.com_ctc_list.type__content .com_ctc_btn a::before {
	min-width: 2.6em;
	min-height: 2em;
	margin-left: -0.5em;
	margin-bottom: 0;
}
.com_ctc_list.type__content .com_ctc_btn.btn__tel div {
	padding-top: .2em;
}
.com_ctc_list.type__content .com_ctc_btn.btn__tel span {
	font-size: 128%;
}
.com_ctc_list.type__content .com_ctc_btn.btn__rsv a::before {
	margin-right: .5em;
}
.com_ctc_list.type__content .com_ctc_btn.btn__rsv span {
	padding-left: .5em;
	margin-left: .4em;
	border-left: 1px solid currentColor;
}
.com_ctc_list.type__content .com_ctc_btn.btn__cal a {
	width: 8.6em;
}
.com_ctc_list.type__content .com_ctc_btn.btn__cal a::before {
	margin: 0 auto -0.5em;
}
.com_ctc_list.type__content .com_ctc_btn.btn__cal span {font-size: 78%;}

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_ctc_btn a {
	flex-direction: row;
	width: auto;
	height: 3.6em;
	font-size: 2.8vw;
	padding: .2em 1em;
}
.com_ctc_btn a::before {
	min-width: 2.6em;
	min-height: 2em;
	margin-bottom: 0;
	margin-left: -0.2em;
}

.com_ctc_btn.btn__rsv a::before {
	margin-right: .5em;
}
.com_ctc_btn.btn__rsv small {
	font-size: 78%;
}

.com_ctc_btn.btn__cal a {
	width: 5.8em;
}
.com_ctc_btn.btn__cal a::before {
	min-width: 2.2em;
	margin-bottom: -0.6em;
}
.com_ctc_btn.btn__cal span {
	font-size: 62%;
}

#sp_footer .com_ctc_btn a,
#drawer .com_ctc_btn a {
	font-size: 3.2vw;
}
#drawer .com_ctc_btn.btn__cal a {
	background-color: #fff;
}
}

/* Component - contact - com_ctc_list
-----------------------------------------------*/
.com_ctc_list {
	position: relative;
	width: 100%;
	max-width: 940px;
	display: flex;
	column-gap: 2%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_ctc_list {
	justify-content: center;
	left: 50%;
	translate: -50% 0;
}
}

/* Component - contact - com_ctc_wrap
-----------------------------------------------*/
.com_ctc_wrap {
	text-align: center;
}
.contact_title {
	text-align: center;
	font-size: 106%;
	font-weight: var(--fw-bold);
	line-height: 1.5;
	margin-bottom: 1em;
}
.com_ctc_wrap .com_ctc_list {
	margin-top: 0;
}
.com_ctc_wrap .com_sche_txt {
	justify-content: center;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.contact_title {
	font-size: 95%;
}
}


/*-----------------------------------------------
 Component - heading
-----------------------------------------------*/
.com_h__min {
	position: relative;
	font: var(--font-min);
	font-size: min(200%,2.7vw);
	line-height: 1.5;
	letter-spacing: .06em;
	margin-bottom: .6em;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.com_h__min.has-icon::before {
	font-size: 80%;
	top: .2em;
}
.com_h__min .q_mark {
	display: inline-block;
	rotate: 15deg;
	margin-right: -0.4em;
}
.com_h__min small {
	font-size: 75%;
}

.com_h__bdr {
	position: relative;
	text-align: center;
	font: var(--font-min);
	font-size: min(3.2vw,264%);
	line-height: 1.4;
	letter-spacing: .06em;
	padding-bottom: .8em;
	margin-bottom: 1em;
	border-bottom: 1px solid currentColor;
}

.com_h__bbl {
	position: relative;
	text-align: center;
	color: var(--color-nvy);
	font: var(--font-min);
	font-size: min(2.8vw,188%);
	line-height: 1.5;
	letter-spacing: .04em;
	/* color: var(--color-base); */
	background-color: #fff;
	border-radius: .6em;
	padding: .6em 1em;
	margin-bottom: .6em;
	box-shadow: 0 0 7px rgba(0,0,0,0.1);
}
.com_h__bbl small {
	font-size: 82%;
}
.com_h__bbl span {
	color: var(--color-taq);
}
.com_h__bbl::before {
	position: absolute;
	content: "";
	background-color: inherit;
	width: 1em;
	height: .7em;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	inset: auto 0 -0.6em 0;
	margin: auto;
}

.com_h__bld {
	position: relative;
	font-size: min(2.4vw,166%);
	font-weight: var(--fw-bold);
	line-height: 1.6;
	letter-spacing: .1em;
	font-feature-settings: "halt";
	margin-bottom: .5em;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.com_h__bld span {
	display: inline-block;
}
.com_h__bld .pattern {
	color: var(--color-mgrn);
	font-size: 80%;
	margin-right: .2em;
}
.com_h__bld small {
	font-size: 76%;
}
.com_flt .com_h__bld.has-icon {
	display: block;
}


.has-icon {
	display: inline-block;
	padding-left: 1.5em;
}
.has-icon::before {
	position: absolute;
	font-family: 'fontello';
	content: '\e802';
	left: 0;
	top: 0;
}

.h__center {
	text-align: center;
}

.h__20 {font-size: min(2vw,133%);}
.h__21 {font-size: min(2vw,140%);}
.h__25 {font-size: min(2.2vw,166%);}
.h__35 {font-size: min(3.2vw,233%);}
.h__40 {font-size: min(3.6vw,266%);}
.h__50 {font-size: min(4.4vw,333%);}
.h__70 {font-size: min(5vw,466%);}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_h__min {
	font-size: 125%;
	letter-spacing: .02em;
}

.com_h__bbl {
	font-size: 120%;
}

.com_h__bdr {
	font-size: 130%;
}

.com_h__bld {
	font-size: 115%;
	letter-spacing: .05em;
}

.h__20,
.h__21 {font-size: 115%;}
.h__25 {font-size: 120%;}
.h__28 {font-size: 122%;}
.h__35 {font-size: 135%;}
.h__40 {font-size: 140%;}
.h__50 {font-size: 150%;}
.h__70 {font-size: 170%;}
}

/* Component - heading - deco
-----------------------------------------------*/
.com_h__en {
	position: relative;
	font: var(--font-en);
	font-size: min(2vw,1rem);
	letter-spacing: .15em;
	margin-bottom: 1.4em;
}

.com_h__deco {
	--deco-color: #FFF;
	--deco-bg-color: var(--color-bei);

	position: relative;
	text-align: center;
	color: var(--deco-color);
	font: var(--font-en);
	font-size: min(6.6vw,466%);
	letter-spacing: .15em;
	margin-bottom: .1em;
}
.com_h__deco span {
	position: relative;
	color: transparent;
	-webkit-text-fill-color: var(--deco-bg-color);
	/* -webkit-text-stroke: 1px rgba(255,255,255,0.6);
	text-stroke: 1px rgba(255,255,255,0.6); */

	text-shadow:
		1px 0 0 var(--deco-color),
		-1px 0 0 var(--deco-color),
		0 1px 0 var(--deco-color),
		0 -1px 0 var(--deco-color),
		1px 1px 0 var(--deco-color),
		-1px 1px 0 var(--deco-color),
		1px -1px 0 var(--deco-color),
		-1px -1px 0 var(--deco-color);
}
/* 透過の場合は画像化 */
.com_h__deco img {
	width: auto;
	height: 0.71em;
	margin: 0 auto .2em;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_h__en {
	font-size: 2.8vw;
}
.com_h__deco {
	font-size: 8vw;
}
}

/* Component - heading - wp
-----------------------------------------------*/
.com_h__wp {
	display: flex;
	flex-wrap: wrap;
	column-gap: .6em;
	font: var(--font-min);
	font-size: min(1.5vw,120%);
	line-height: 1.5;
	letter-spacing: .15em;
}
.com_h__wp .ft_en {
	color: var(--wp-accent-color);
	font-size: 166%;
	letter-spacing: .1em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_h__wp {
	font-size: 85%;
	letter-spacing: .1em;
}
}


/*-----------------------------------------------
 Component - text_deco
-----------------------------------------------*/
.marker {
	position: relative;
}
.marker::before {
	position: absolute;
	content: "";
	background-color: rgba(57,158,177,0.2);
	width: 100%;
	height: .25em;
	border-radius: .2em;
	left: 0;
	bottom: -0.18em;
}
.marker span {
	position: relative;
}
.bg__nvy .marker::before {
	background-color: rgba(17,221,231,0.3);
}
/*com_fuki*/
.com_fuki {
	position: relative;
	text-align: center;
	max-width: max-content;
	font-size: min(2vw,125%);
	letter-spacing: .12em;
	line-height: 1.5;
	margin: 0 auto 1.5em;
}
.com_fuki::before,
.com_fuki::after {
	position: absolute;
	display: inline-block;
	content: "";
	background-color: currentColor;
	width: 1px;
	height: 1.2em;
	bottom: 0;
}
.com_fuki::before {
	rotate: -28deg;
	right: calc(100% + 1em);
}
.com_fuki::after {
	rotate: 28deg;
	left: calc(100% + 1em);
}
/*com_txt__ccl */
.com_txt__ccl {
    position: relative;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	/* font-size: min(2vw,1.35rem); */
    letter-spacing: .08em;
    line-height: 1.2;
    width: min(8.2em);
	min-width: 8.2em;
	aspect-ratio: 1;
	color: var(--color-base);
	background-color: #fff;
    box-sizing: border-box;
    border-radius: 50%;
	transition-duration: .5s;
	transition-property: color, background-color, scale;
}
.com_txt__ccl.pdg_t {
	padding-top: .5em;
}
/* com_arw__grd */
.com_arw__grd {
	position: absolute;
	content: "";
	background: linear-gradient(to top, var(--color-lblu), transparent 90%);
	width: 150px;
	aspect-ratio: 2/1;
	inset: auto 0 0 0;
	margin: auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	translate: 0 40%;

	opacity: 0;
	transition: opacity .8s, translate .8s;
}
.com_arw__grd.anime_on {
	opacity: 1;
	translate: 0 50%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*com_fuki*/
.com_fuki {
	font-size: 120%;
	letter-spacing: .1em;
}

/* com_arw__grd */
.com_arw__grd {
	width: 25vw;
}
}


/*-----------------------------------------------
 Component - list
-----------------------------------------------*/
.com_list {
	display: grid;
	row-gap: .6em;
}
.com_list > li {
	position: relative;
	text-align: left;
	line-height: 1.5;
	padding-left: 1em;
}
.com_list > li::before {
	position: absolute;
	content: "";
	font-weight: normal;
	left: 0;
	top: 0;
}

.list__point > li::before {
	display: block;
	background-color: var(--color-grn);
	width: .5em;
	height: .5em;
	border-radius: 50%;
	top: .5em;
}
.list__dot > li::before {
	content: "・";
}
.list__dash > li::before {
	content: '-';
}
.list__mer > li,
.list__dem > li {
	padding-left: 1.7em;
}
.list__mer > li::before,
.list__dem > li::before {
	font-family: 'fontello';
	font-size: 120%;
	top: -0.1em;
}
.list__mer > li::before {
	content: '\e80e';
	color: rgba(63,195,178,0.5);
}
.list__dem > li::before {
	content: '\e80f';
	color: rgba(150,150,150,0.5);
}

.aster_list {
	text-align: left;
	line-height: 1.6;
	margin-top: 1em;
}
.aster_list > li {
	text-indent: -1em;
	padding-left: 1em;
	margin-top: .5em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.com_list.list__col2 {
	column-count: 2;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_list {
	row-gap: .4em;
}

.aster_list {
	font-size: 90%;
}
}


/*-----------------------------------------------
 Component - bg
-----------------------------------------------*/
.com_bg__color {
	position: absolute;
	background-color: #f7f7f7;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100vw;
	height: 100%;
	left: 0;
	top: 0;
	margin-inline: calc(50% - 50vw);
	z-index: -2;
	overflow: clip;
	pointer-events: none;
}

.com_bg__img {
	position: absolute;
	height: auto;
	max-height: 100%;
	left: 0;
	top: 0;
	z-index: -2;
	overflow: clip;
}
.com_bg__img img {
	width: 100%;
	pointer-events: none;
}
.com_bg__img.size__max {
	width: 100vw;
	-webkit-mask-image: linear-gradient(to top, transparent 10%, black 80%);
	mask-image: linear-gradient(to top, transparent 10%, black 80%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: auto;
    mask-size: auto;
}

.com_bg__img.pos__l,
.com_bg__img.pos__r {
	width: 54%;
	/* --color-bg: #FFF;
	background-color: var(--color-bg); */
}
/* .com_bg__img.pos__l::after,
.com_bg__img.pos__r::after {
	position: absolute;
	content: "";
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(to right, transparent 50%, var(--color-bg) 100%),
		linear-gradient(to left, transparent 80%, var(--color-bg) 100%),
		linear-gradient(to top, transparent 50%, var(--color-bg) 100%),
		linear-gradient(to bottom, transparent 50%, var(--color-bg) 100%);
} */
.com_bg__img.pos__l {
	left: calc(50% - 50vw);
}
.com_bg__img.pos__r {
	left: auto;
	right: calc(50% - 50vw);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_bg__img.pos__l,
.com_bg__img.pos__r {
	width: 70vw;
}
}


/*-----------------------------------------------
 Component - border/padding
-----------------------------------------------*/
.com_pdg__s,
.com_pdg__m {
	position: relative;
}
.com_pdg__s {
	padding: min(6vw,60px) 0;
}
.com_pdg__m {
	padding: min(8vw,100px) 0;
}
.com_pdg__l {
	padding: min(10vw,120px) 0;
}

.bdr_b {
	padding-bottom: min(5%,50px);
	margin-bottom: min(5%,50px);
	border-bottom: 1px solid #e6e6e6;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_pdg__s {
	padding: 10% 0;
}
.com_pdg__m {
	padding: 12% 0;
}
.com_pdg__l {
	padding: 14% 0;
}
.bdr_b {
	padding-bottom: 10%;
	margin-bottom: 10%;
}
.sp_bdr_b {
	padding-bottom: 10%;
	margin-bottom: 10%;
	border-bottom: 1px solid #e6e6e6;
}
}


/*-----------------------------------------------
 Component - box
-----------------------------------------------*/
.com_inbox {
	width: 94%;
	max-width: 1200px;
	margin-inline: auto;
}


/*-----------------------------------------------
 Component - float
-----------------------------------------------*/
.com_flt {
	position: relative;
	text-align: left;
}
.com_flt::after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.com_flt .img_l,
.com_flt .img_r {
	position: relative;
	max-width: max-content;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.com_flt .img_l,
.com_flt .img_r {
	width: 37.5%;
	margin-bottom: .5em;
}
.com_flt .img_l {
	margin-right: 4%;
}
.com_flt .img_r {
	margin-left: 4%;
}
.com_flt .img_r,
.com_flt .txt_r {
	float: right;
}
.com_flt .img_l,
.com_flt .txt_l {
	float: left;
}
.com_flt .txt_l,
.com_flt .txt_r {
	width: 58%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_flt .sp_img_w {
	width: 45%;
}
.com_flt .txt_l,
.com_flt .txt_r {
	width: 100% !important;
	float: none;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_flt .img_l,
.com_flt .img_r {
	width: 80%;
	margin: 0 auto 6%;
}
.com_flt .sp_img_w {
	width: 96%;
}
}

/*-----------------------------------------------
 Component - com_arw
-----------------------------------------------*/
.com_arw {
    position: relative;
	display: block;
    text-align: center;
	letter-spacing: normal;
	color: #FFF;
	line-height: 1.6;
	background-color: var(--color-base);
    border-radius: 100vmax;
    width: 2.4em;
	height: 1.6em;
	overflow: hidden;
	transition: color .4s, background-color .4s;
}
.com_arw::before,
.com_arw::after {
	position: absolute;
	display: block;
	font-family: 'fontello';
	content: '\e800';
	font-weight: normal;
	text-align: center;
	width: 100%;
	left: 0;
	top: 0;
	transition: all .4s;
	animation-delay: 0.1s;
	animation-fill-mode: both;
	animation-duration: 0.6s;
}
.com_arw.wh {
	color: var(--color-base);
	background-color: #FFF;
}

.hov_arrow:hover .com_arw,
a:hover .com_arw {
	background-color: var(--color-grn);
}
.hov_arrow:hover .com_arw.wh,
a:hover .com_arw.wh {
	color: #FFF;
}

.hov_arrow:hover .com_arw:before,
a:hover .com_arw:before {
	animation-name: transformRightLeft;
}
.hov_arrow:hover .com_arw:after,
a:hover .com_arw:after {
	animation-name: transformLeftRight;
}
@keyframes transformLeftRight {
	0% {	translate: -100% 0;}
	100% {	translate: 0 0;}
}
@keyframes transformRightLeft {
	0% {	translate:  0 0;}
	100% {	translate:  100% 0;}
}


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

/* Component - link - com_btn__bdr
-----------------------------------------------*/
.com_btn__bdr {
	margin-top: 1.2em;
}
.com_btn__bdr > a {
	position: relative;
	height: 2.8em;
	min-width: 11em;
	max-width: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	font: var(--font-min);
	font-size: min(1.8vw,1.2rem);
	letter-spacing: .1em;
	line-height: 1.3;
	padding: .1em 4em .2em 1em;
	border-bottom: 1px solid rgba(58,80,55,0.2);
}
.com_btn__bdr .com_arw {
	position: absolute;
	font-size: 60%;
	right: 2em;
	top: 50%;
	translate: 0 -50%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_btn__bdr {
	text-align: center;
	margin-top: .8em;
}
.com_btn__bdr a {
	font-size: 3.6vw;
}
}

/* Component - link - com_btn__icon
-----------------------------------------------*/
.com_btn__icon > a {
	position: relative;
	display: block;
	max-width: max-content;
	font: var(--font-min);
	font-size: min(1.7vw,1.2rem);
	letter-spacing: .1em;
	line-height: 1.3;
	padding-right: 2.4em;

	white-space: nowrap;
}
.com_btn__icon .com_arw {
	position: absolute;
	font-size: 60%;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_btn__icon {
	text-align: center;
	margin-top: 1em;
}
.com_btn__icon a {
	font-size: 3.6vw;
}
}

/* Component - link - com_btn__lg
-----------------------------------------------*/
.com_btn__lg {
	margin-top: 1.6em;
}
.com_btn__lg > a {
	position: relative;
	max-width: 40em;
	height: 5.6em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: min(1.7vw,1.05rem);
	font-weight: var(--fw-bold);
	letter-spacing: .14em;
	line-height: 1.3;
	background-color: #fff;
	padding: 1em;
	border-radius: 100vmax;
	margin-inline: auto;
}
.com_btn__lg .com_arw {
	font-size: 70%;
	margin-left: .8em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_btn__lg {
	margin-top: 1em;
}
.com_btn__lg > a {
	height: 5em;
	font-size: 90%;
	letter-spacing: .14em;
}
}

/* Component - link - com_btn__sns
-----------------------------------------------*/
.com_btn__sns a {
	position: relative;
	display: block;
	max-width: max-content;
	color: var(--color-base);
	background-color: #FFF;
	font: var(--font-en);
	font-size: 86%;
	letter-spacing: .14em;
	padding: .5em 2em .4em 2.5em;
	border-radius: 2em;
}
.com_btn__sns a::before {
	position: absolute;
	content: "";
	background: url(../images/common/icon-insta@2x.png) no-repeat center center;
	background-size: .93em auto;
	width: 1em;
	height: 1em;
	left: 1em;
	top: 50%;
	translate: 0 -50%;
}
.com_btn__sns a::after {
	position: absolute;
	font-family: 'fontello';
	content: '\e801';
	right: .6em;
	top: 50%;
	translate: 0 -50%;
}
.com_btn__sns a:hover {
	background-color: rgba(255,255,255,0.8);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_btn__sns a {
	font-size: 2.8vw;
} 
footer .com_btn__sns {
	margin-top: 8%;
}
footer .com_btn__sns a {
	margin: auto;
}
}

/* Component - link - com_link__en
-----------------------------------------------*/
.com_link__en {
	font: var(--font-en);
	font-size: min(1.6vw,1rem);
	margin-top: 1.2em;
}
.com_link__en a {
	position: relative;
	display: inline-block;
	letter-spacing: .1em;
	padding-right: 1.5em;
}
.com_link__en i {
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
}
.com_link__en a:hover {
	color: var(--color-mgrn);
}
.com_link__en.bdr a {
	padding: .8em 2em .8em 1em;
	border-bottom: 1px solid rgba(58,80,55,0.2);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_link__en {
	font-size: 85%;
}
}

/* Component - link - com_btn_list
-----------------------------------------------*/
.com_btn_list {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 3%;
	margin-top: 1.4em;
}
.com_btn_list > * {
	margin-top: 0;
}
.com_btn_list.jus_c {
	justify-content: center;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_btn_list {
	justify-content: center;
}
}


/*---------------------------------------------------------
 Component - info
---------------------------------------------------------*/
address {
	font-size: min(1.6vw,100%);
	line-height: 1.5;
	letter-spacing: .14em;
}
.com_cliname {
	font: var(--font-min);
	font-size: min(3vw,266%);
	letter-spacing: .1em;
	line-height: 1.4;
	margin-bottom: .4em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
address {
	font-size: 90%;
	letter-spacing: .1em;
}
.com_cliname {
	font-size: 150%;
}
}

/* Component - info - com_timetable
-----------------------------------------------*/
.com_timetable {
	width: 100%;
	font-size: min(1.5vw,1.06rem);
	line-height: 1.2;
	border-collapse: separate;
	border-spacing: .8em .8em;
	background-color: #fff;
	border-radius: .6em;
	padding: 2% 4%;
}
.com_timetable thead,
.com_timetable tbody {
	color: var(--color-base);
}
.com_timetable th,
.com_timetable td {
	text-align: center;
	font-weight: var(--fw-bold);
	vertical-align: middle;
	white-space: nowrap;
}
.com_timetable th {
	width: 37%;
	letter-spacing: .14em;
}
.com_timetable td {
	width: 9%;
}
.com_timetable thead th {
	letter-spacing: .4em;
}
.com_timetable tbody th {
	font: var(--font-en);
	letter-spacing: .04em;
}
.com_timetable tbody td {
	font-size: 80%;
	font-weight: normal;
	vertical-align: middle;
}
.com_timetable caption {
	caption-side: bottom;
	white-space: wrap;
}

footer .com_timetable {
	max-width: 510px;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_timetable {
	font-size: 3.2vw;
	padding: 2% 3%;
}
}

/* Component - info - com_sche_txt
-----------------------------------------------*/
.com_sche_txt {
	display: flex;
	flex-wrap: wrap;
	gap: .2em 1em;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: .12em;
	margin-top: 1em;
}
.com_sche_txt span {
	color: var(--color-och);
}
.com_timetable .com_sche_txt {
	font-size: min(1.5vw,.94rem);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_sche_txt {
	font-size: 85%;
	letter-spacing: .08em;
	font-feature-settings: "halt";
	margin-top: .8em;
}
.com_timetable .com_sche_txt {
	font-size: 95%;
}
}

/* Component - info - com_acslist
-----------------------------------------------*/
.com_acslist {
	display: flex;
	justify-content: center;
	column-gap: 6%;
	row-gap: .5em;
	text-align: left;
	font-size: min(1.4vw,.94rem);
	font-weight: var(--fw-bold);
	letter-spacing: .12em;
	line-height: 1.4;
	font-feature-settings: "halt";
	margin-top: 1.4em;
}
.com_acslist li {
	display: flex;
	align-items: center;
	gap: .6em;
}
.com_acslist li img {
	width: 2.86em;
}

footer .com_acslist {
	font-size: min(1.35vw,1rem);
	margin-top: 5%;
}
footer .com_acslist li img {
	width: 3.68em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_acslist {
	display: block;
	max-width: max-content;
	font-size: 85%;
	letter-spacing: .06em;
	margin-top: 1em;
	margin-inline: auto;
}

footer .com_acslist {
	font-size: 90%;
	margin-bottom: 6%;
}
}

/*---------------------------------------------------------
 Component - calendar
---------------------------------------------------------*/
.com_calendar {
	font-size: min(100%,1.5vw);
}
.com_calendar .eo-fullcalendar {
	font-size: 100%;
}
/*ヘッダー*/
.com_calendar .eo-fullcalendar .fc-toolbar {
	font: var(--font-en);
	font-size: 95%;
}
.com_calendar .eo-fullcalendar .fc-toolbar * {
	margin: 0;
	line-height: 1.0em;
}
.com_calendar .eo-fullcalendar .fc-toolbar .fc-right {
	display: flex;
	justify-content: flex-end;
}
/*コンテナ*/
.com_calendar .eo-fullcalendar .fc-view-container {
	margin-top: 1em;
}
/*カレンダー全体*/
.com_calendar .eo-fullcalendar table {
	font-weight: var(--fw-bold);
	border-collapse: separate;
	border-spacing: 1px;
}
.com_calendar .eo-fullcalendar table,
.com_calendar .eo-fullcalendar thead,
.com_calendar .eo-fullcalendar tbody {
	background: transparent !important;
}
.com_calendar .eo-fullcalendar table th,
.com_calendar .eo-fullcalendar table td {
	position: relative;
	border: none;
	background: transparent;
}
/*曜日*/
.com_calendar .fc-widget-header thead th {
	font-size: 84%;
	line-height: 2.0em;
}
.com_calendar .fc-widget-header .fc-day-header.fc-sat {	color: #3fb5a5;}
.com_calendar .fc-widget-header .fc-day-header.fc-sun {	color: #d5ac55;}

/*日付：背景色*/
.com_calendar .fc-widget-content .fc-bg .fc-day {
	position: relative;
	background-color: #f6f8f1;
}
.com_calendar .fc-widget-content .fc-bg .fc-today {
	
}
.com_calendar .fc-widget-content .fc-bg .fc-sat::before {
	position: absolute;
	content: "";
	background-color: #e1e5e1;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.com_calendar .fc-widget-content .fc-bg .fc-thu,
.com_calendar .fc-widget-content .fc-bg .fc-sun {background-color: #e1e5e1;}

/*日付：テキスト*/
.com_calendar .fc-ltr .fc-basic-view .fc-day-number {
	background-color: transparent;
	text-align: left;
	font: var(--font-en);
	font-size: 95%;
	padding: .5em .6em 1em !important;
}
.com_calendar .fc-ltr .fc-basic-view .fc-day-number.fc-today {
	text-decoration: underline;
}
/*日別予定のスタイル*/
.com_calendar .fc-widget-content .fc-day-grid-event {
	overflow: hidden;	/*高さの上限を設定（overflowとmax-heightを消すと予定タイトルが全て表示されます）*/
	max-height: 3em;	
	margin: 1px 2px 0;
	padding: .2em;
	color: #fff !important;
	font-size: 80%;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.4em;
	white-space: nowrap;
}
.com_calendar .fc-widget-content .fc-day-grid-event:not(:hover) {
	text-decoration: underline;
}
.com_calendar .fc-widget-content .fc-event-container .fc-day-grid-event:not([class*="category"]) {
	background: #5c4b41 !important;	/*カテゴリ未選択時の色*/
	color: #fff !important;
}
.com_calendar .fc-widget-content .fc-event-container .fc-time {
	display: none;	/*予定詳細の時間を非表示*/
}

/*button*/
.com_calendar .fc-button {
	width: auto;
	height: auto;
	background-color: transparent;
	border: none;
	box-shadow: none;
	font-size: 100%;
}
.com_calendar .fc-button .fc-icon {
	font-size: 100%;
}
.com_calendar .fc-button .fc-icon:after {
	display: inline-block;
	font-family: 'fontello';
	content: '\e801';
	font-weight: normal;
}
.com_calendar .fc-button .fc-icon-left-single-arrow:after {
	scale: -1 1;
}
/* PC調整
------------------------------------------*/
@media only screen and (min-width: 1200px) {

/*ヘッダー*/
.com_calendar .eo-fullcalendar .fc-toolbar {
	position: absolute;
	margin-bottom: 0;
	right: 0;
	top: 0;
	translate: 0 -2.6em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_calendar {
	font-size: 85%;
}
/*日付：テキスト*/
.com_calendar .fc-ltr .fc-basic-view .fc-day-number {
	font-size: 85%;
}
}

/* Component - calendar - caption
-----------------------------------------------*/
.com_calendar .caption {
	display: flex;
	flex-wrap: wrap;
	gap: .2em 1em;
	line-height: 1.4;
	margin-top: 1em;
}
.com_calendar .caption > li {
	position: relative;
	padding-left: 1.4em;
}
.com_calendar .caption > li::before {
	position: absolute;
	display: block;
	content: "";
	width: 1.1em;
	height: 1.1em;
	background-color: #e1e5e1;
	left: 0;
	top: 50%;
	translate: 0 -50%;
}
.com_calendar .caption > li.cap-am::before {
	background: linear-gradient(-45deg, transparent 50%, #e1e5e1 50%);
}
.com_calendar .caption > li.cap-pm::before {
	background: linear-gradient(-45deg, #e1e5e1 50%, transparent 50%);
}


/*---------------------------------------------------------
 Component - com_corner
---------------------------------------------------------*/
.com_corner_wrap {
	position: absolute;
	width: calc(100% - min(6vw,80px));
	height: calc(100% - min(6vw,80px));
	inset: 0;
	margin: auto;
	pointer-events: none;
}
.com_corner {
	position: absolute;
	display: block;
	width: min(2.8vw,34px);
	aspect-ratio: 1;
	fill: none;
	stroke: currentColor;
	stroke-width: 5px;

	transition-property: transform, opacity, filter;
	transition-duration: 1s;
	transition-timing-function: cubic-bezier(.2,.8,.2,1);
}
.corner-tl { top: 0; left: 0; }
.corner-tr { top: 0; right: 0; scale: -1 1; }
.corner-bl { bottom: 0; left: 0; scale: 1 -1; }
.corner-br { bottom: 0; right: 0; scale: -1 -1; }

.com_corner_wrap.anime .com_corner {
	opacity: 0;
	filter: blur(3px);
	transform: translate(-6px,-6px);
	transition-delay: .5s;
}
.com_corner_wrap.anime_on .com_corner {
	opacity: 1;
	filter: blur(0);
	transform: translate(0,0);
}

a:hover .com_corner {
	transform: translate(5px,5px);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.com_corner_wrap {
	width: calc(100% - 8vw);
	height: calc(100% - 8vw);
}
.com_corner {
	width: 4vw;
}
}


/*---------------------------------------------------------
 Component - slider
---------------------------------------------------------*/
.tic_slide .splide__track {
	overflow: visible;
}
.tic_slide .splide__slide {
	width: 52vw !important;
	max-width: max-content;
}
/* dot */
.splide__pagination {
	gap: 14px;
	margin-top: 15px;
}
.splide__pagination button {
	display: block;
	background-color: var(--color-base);
	border: none;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	padding: 0;
	opacity: 0.4;
	transition: opacity .5s;
	cursor: pointer;
	outline: none;
}
.splide__pagination button.is-active,
.splide__pagination button:hover {
	opacity: 1;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.tic_slide .splide__slide {
	width: 60vw !important;
}
}


/* ========================================================
  
  Animation

======================================================== */
.anm__fade,
.fade_list > * {
	opacity: 0;
	transition: opacity 1.5s ease;
}
.anime_on .anm__fade,
.anime_on.anm__fade,
.fade_list.anime_on > *,
.anime_on .fade_list > * {
	opacity: 1;
}
.fade_list > *:nth-of-type(2) {transition-delay: .2s}
.fade_list > *:nth-of-type(3) {transition-delay: .4s}
.fade_list > *:nth-of-type(4) {transition-delay: .6s}
.fade_list > *:nth-of-type(5) {transition-delay: .8s}
.fade_list > *:nth-of-type(6) {transition-delay: 1.0s}
.fade_list > *:nth-of-type(7) {transition-delay: 1.2s}

.anm__up {
	opacity: 0;
	translate: 0 10px;
	transition: opacity 1s .2s, translate 1s .2s;
}
.anime_on .anm__up,
.anime_on.anm__up{
	opacity: 1;
	translate: 0 0;
}

.anm__zoom {
	opacity: 0;
	scale: 0.7;
	transition: scale .8s .3s, opacity .8s .4s;
}
.anime_on .anm__zoom,
.anime_on.anm__zoom {
	opacity: 1;
	scale: 1;
}

/* cross */
.anm__cross {
    animation: cross 1.6s linear;
}
.com_h__min.has-icon.anime_on::before,
.com_h__en.has-icon.anime_on::before {
	animation: cross 1.4s .8s;
}
@keyframes cross {
    0% {rotate: 0;}
	50% {rotate: 90deg;}
	55% {rotate: 90deg;}
}

/* com_spl_txt */
.com_spl_txt {
	white-space: nowrap;
}
.com_spl_txt span {
	display: inline-block;
}
.spl_txt > span {
	overflow: hidden;
}
.spl_txt > span > span {
	opacity: 0;
	translate: -1em 0;
	transition: translate .6s, opacity .6s;
}
/* .spl_txt.anime_on > span > span, */
.anime_on .spl_txt > span > span {
	opacity: 1;
	translate: 0 0;
}
/*PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {
.anm__up:nth-of-type(2),
.anm__fade:nth-of-type(2) {transition-delay: .2s}
.anm__up:nth-of-type(3),
.anm__fade:nth-of-type(3) {transition-delay: .4s}
}






/* ========================================================
  
  Utility

======================================================== */
/* layout / wrapper */
#wrapper { overflow: clip; }

/* clearfix */
.clearfix {
  min-height: 1px;
}
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
* html .clearfix {
  height: 1px;
}

/* font */
.ft_min {
	font: var(--font-min);
	letter-spacing: .06em;
}
.ft_en {
	font: var(--font-en);
	letter-spacing: .1em;
	line-height: 1;
	font-optical-sizing: auto;
}

/* Font-weight */
.fw_bold{font-weight: var(--fw-bold);}
.fw_normal{font-weight: normal;}	

/* Text-align */
.txt_al_l{text-align:left;}
.txt_al_r{text-align:right;}
.txt_al_c{text-align:center;}
.sp_txt_l{text-align:center;}

/* Float */
.flt_l{float:left;}
.flt_r{float:right;}	

/* Block-link */
.blocklink,
.blocklink_out,
.blocklink_ank{
	cursor:pointer;
}

/* Font-size */
.fs__17 {
	font-size: 113%;
	line-height: 1.9;
}
.fs__14 {
	font-size: 94%;
	line-height: 1.7;
}
.fs__13 {
	font-size: 86%;
	line-height: 1.7;
	font-feature-settings: "palt";
}

/* text color */
.mgrn { color: var(--color-mgrn);}
.grn { color: var(--color-grn);}
.mgrn { color: var(--color-mgrn);}
.bgrn { color: var(--color-bgrn);}
.lgrn { color: var(--color-lgrn);}
.och { color: var(--color-och);}
.org { color: var(--color-org);}

/* background color */
.bg__wh {background-color: #fff;}
.bg__ivo {background-color: var(--color-ivo);}
.bg__bei {background-color: var(--color-bei);}
.bg__mgrn {background-color: var(--color-mgrn);}
.bg__pgrn {background-color: var(--color-pgrn);}

/* Border-radius */
img.radi-50 {border-radius:50%;}
img.radi-10px {border-radius: 10px;}
img.radi-20px {border-radius: min(3vw,20px);}
img.radi-50px {border-radius: clamp(30px,4.5vw,50px);}
img.radi-60px {border-radius: clamp(40px,5vw,60px);}
img.shadow {box-shadow: 0 10px 20px rgba(0,0,0,0.15);}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* Text-align */
.sp_txt_l{text-align:left;}	

/* Font-size */
.fs__17 {
	font-size: 100%;
}
.fs__14 {
	font-size: 90%;
	line-height: 1.6;
}
}


/*---------------------------------------------------------
 anchor
---------------------------------------------------------*/
[id] {
	position: relative;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
[id] {
	scroll-margin-top: min(8vw,120px);
}
}

/*---------------------------------------------------------
 max-width
---------------------------------------------------------*/
.max_width,
.w1340,.w1300,
.w1280,.w1240,.w1200,
.w1100 {
	box-sizing: content-box;
	width: 92%;
	padding: 0 4%;
	margin-inline: auto;
}
.max_1500 {
	max-width: 1500px;
	margin-inline: auto;
}
.w1340 {max-width: 1340px;}
.w1300 {max-width: 1300px;}
.w1280 {max-width: 1280px;}
.w1240 {max-width: 1240px;}
.w1200 {max-width: 1200px;}
.w1100 {max-width: 1100px;}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.max_width,
.w1340,.w1300,
.w1280,.w1260,.w1200,
.w1100 {
	width: 90%;
	padding: 0 5%;
}
}

/*---------------------------------------------------------
margin
---------------------------------------------------------*/
.mgn_b_200 {margin-bottom: 200px;}
.mgn_b_150 {margin-bottom: 150px;}
.mgn_b_120 {margin-bottom: 120px;}
.mgn_b_110 {margin-bottom: 110px;}
.mgn_b_100 {margin-bottom: 100px;}
.mgn_b_90 {margin-bottom: 90px;}
.mgn_b_80 {margin-bottom: 80px;}
.mgn_b_70 {margin-bottom: 70px;}
.mgn_b_60 {margin-bottom: 60px;}
.mgn_b_50 {margin-bottom: 50px;}
.mgn_b_40 {margin-bottom: 40px;}
.mgn_b_30 {margin-bottom: 30px;}
.mgn_b_1em {margin-bottom: 1em;}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.mgn_b_200 {margin-bottom: 16%;}
.mgn_b_150 {margin-bottom: 12%;}
.mgn_b_120 {margin-bottom: 10%;}
.mgn_b_110 {margin-bottom: 9%;}
.mgn_b_100 {margin-bottom: 8%;}
.mgn_b_90 {margin-bottom: 8%;}
.mgn_b_80 {margin-bottom: 7%;}
.mgn_b_70 {margin-bottom: 6%;}
.mgn_b_60 {margin-bottom: 5%;}
.mgn_b_50 {margin-bottom: 4%;}
.mgn_b_40 {margin-bottom: 4%;}
.mgn_b_30 {margin-bottom: 3%;}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.mgn_b_200 {margin-bottom: 15%;}
.mgn_b_150 {margin-bottom: 15%;}
.mgn_b_120 {margin-bottom: 14%;}
.mgn_b_110 {margin-bottom: 14%;}
.mgn_b_100 {margin-bottom: 12%;}
.mgn_b_90 {margin-bottom: 11%;}
.mgn_b_80 {margin-bottom: 10%;}
.mgn_b_70 {margin-bottom: 9%;}
.mgn_b_60 {margin-bottom: 8%;}
.mgn_b_50 {margin-bottom: 7%;}
.mgn_b_40 {margin-bottom: 7%;}
.mgn_b_30 {margin-bottom: 7%;}
}


/* PC
------------------------------------------*/
@media only screen and (min-width: 960px)  {
.tb_only{display:none !important;}
.sp_only{display:none !important;}
.sp_tb{display:none !important;}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.pc_only{display:none !important;}
.sp_only{display:none !important;}
.sp_pc{display:none !important;}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.pc_only{display:none !important;}
.tb_only{display:none !important;}
.tb_pc{display:none !important;}
}
