@charset "utf-8";


/** font
===================================*/
/* Open Sans */
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); */

/* Noto Serif JP */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap'); */

/* Noto Sans JP */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap'); */



/** base
===================================*/
* {
	box-sizing: border-box;
}

body {

}


h1,h2,h3,h4,h5,h6 {

}

/* img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

iframe {
	max-width: 100%;
	vertical-align: middle;
}

em {
	font-style: normal;
	font-weight: bold;
}

address {
	font-style: normal;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
} */

.flbox {
	display: flex;
	flex-wrap: wrap;
}

.fll {
	float: left;
}

.flr {
	float: right;
}

/* ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

dl {
	margin: 0;
	padding: 0;
}

dt {
	margin: 0;
	padding: 0;
}

dd {
	margin: 0;
	padding: 0;
} */


.nop p {
	margin-bottom: 0;
}

hr.onepx {
	border: 0;
	height: 0;
	border-top: 1px solid #ccc;
}

.noapear {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}



/** ロード時にフェードイン
===================================*/
@keyframes fxFadeIn {
  0% {
	opacity: 0;
  }

  100% {
	opacity: 1;
  }
}

.fx-fade-in {
  animation-name: fxFadeIn;
  animation-fill-mode: both;
  animation-duration: 1.0s;
}



/** 表示制御
===================================*/
.visible-pc {
}

.hidden-pc {
	display: none !important;
}

.visible-tb {
	display: none;
}

.hidden-tb {
}

.visible-sp {
	display: none !important;
}

.hidden-sp {
}



/** pを中央配置
===================================*/
.ycenter p {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


/** オンマウス
===================================*/



/** underline
===================================*/
.underline {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

.underline::after {
  background-color: currentcolor;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  position: absolute;
  transition: .5s all;
  width: 0;
}

.underline:hover::after {
  width: 100%;
}

.underline_links > li > a {
  position: relative;
  padding-bottom: 5px;
}

.underline_links > li > a::after {
  background-color: currentcolor;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  // left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}

.underline_links > li > a:hover::after {
  width: 100%;
}

.u_link {
  text-decoration: underline;
}

.u_link:hover {
  text-decoration: none;
}

a.uline_link {
	text-decoration: underline;
}

a.uline_link:hover {
	text-decoration: none;
}

.uline_link_box a {
	text-decoration: underline;
}

.uline_link_box a:hover {
	text-decoration: none;
}



/** リンク動作：上部
===================================*/
a.up_hover_link {
	position: relative;
	top: 0;
	transition: 0.3s;
}

a.up_hover_link:hover {
	top: -3px;
}

.up_hover_links a {
	position: relative;
	top: 0;
	transition: 0.3s;
}

.up_hover_links a:hover {
	top: -3px;
}



/** ul li 横並び
===================================*/
ul.sbs1 {
	font-size: 0;
	list-style: none;
}

ul.sbs1 > li {
	font-size: 12px;
	display: inline-block;
}

ul.sbs1 > li:last-child {
	border-right: 0;
	margin-right: 0 !important;
}

ul.sbs2 {
}

ul.sbs2:before,
ul.sbs2:after {
	content: " ";
	display: table;
}

ul.sbs2:after {
	clear: both;
}

ul.sbs2 {
	*zoom: 1;
}

ul.sbs2 > li {
	float: left;
}

ul.sbs2 > li:last-child {
	border-right: 0;
	margin-right: 0 !important;
}


/** テーブルセルを縦並びに .smptable
===================================*/
table.smptable,
table.smptable caption,
table.smptable thead,
table.smptable tbody,
table.smptable tr,
table.smptable tr th,
table.smptable tr td {
	display:block;
}
table.smptable tr th,
table.smptable tr td {
	margin:-1px; /* borderが二重になるのを防ぐ */
}


/** 白縁取りとbox-shadow
===================================*/
.wb {
	border: 5px solid #fff;
	border-radius: 5px;
	box-shadow: 0px 0px 5px 3px #ddd;
}

/** box-shadow
===================================*/
.shadow {
	/* box-shadow: 1px 1px 3px #888; */
	filter: drop-shadow(3px 3px 8px #000);
}

/** page-top
===================================*/
#page-top {
	display: none;
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 1;
}

#page-top a {
	background: #333;
	opacity: 0.5;
	text-decoration: none;
	color: #fff;
	width: 39px;
	padding: 10px 0;
	text-align: center;
	display: block;
	border-radius: 0px;
	border: 0px solid #fff;
	font-size: 18px;
	line-height: 1;
}

/* ＞上 */
.page-top-chevron-up {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

/** 横スクロール
===================================*/
.ho_scroll {
	overflow: scroll;
}

.ho_scroll > * {
	flex-wrap: nowrap;
	width: fit-content;
}

/** SmartPhoneのみ */
@media screen and (max-width: 767px) {
.ho_scroll_sp {
	overflow: scroll;
}

.ho_scroll_sp > * {
	flex-wrap: nowrap;
	width: fit-content;
}
}/* @media */


/** youtube埋め込み
===================================*/
.youtube_wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.youtube_wrap iframe {
	position: relative;
}

.size_16_9 {
	position: relative;
	padding-top: 56.25%;
}

.size_16_9 iframe {
}

.size_3_2 {
	position: relative;
	padding-top: 66.66%;
}

.size_3_2 iframe {
}

.size_3_2 {
	position: relative;
	padding-top: 66.666%;
}

.size_3_2 iframe {
}



/** colmun
===================================*/
:root {
  --gap-rowf-h: 20px;
  --gap-rowf-v: 20px;
}

.rowf {
	display: flex;
	flex-wrap: wrap;
	gap:var(--gap-rowf-v) var(--gap-rowf-h);
}

.rowf1 {
}

.rowf1 > * {
	width: calc(100%);
}

.rowf2 {
}

.rowf2 > * {
	width: calc(50% - var(--gap-rowf-h) / 2);
}

.rowf3 {
}

.rowf3 > * {
	width: calc(33.333% - var(--gap-rowf-h) * 2 / 3);
}

.rowf4 {
}

.rowf4 > * {
	width: calc(25% - var(--gap-rowf-h) * 3 / 4);
}

.rowf5 {
}

.rowf5 > * {
	width: calc(20% - var(--gap-rowf-h) * 4 / 5);
}

.rowf6 {
}

.rowf6 > * {
	width: calc(16.666% - var(--gap-rowf-h) * 5 / 6);
}

.rowf7 {
}

.rowf7 > * {
	width: calc(14.285% - var(--gap-rowf-h) * 6 / 7);
}

.rowf8 {
}

.rowf8 > * {
	width: calc(12.5% - var(--gap-rowf-h) * 7 / 8);
}

.rowf9 {
}

.rowf9 > * {
	width: calc(11.111% - var(--gap-rowf-h) * 8 / 9);
}

.rowf10 {
}

.rowf10 > * {
	width: calc(10% - var(--gap-rowf-h) * 9 / 10);
}


/** SmartPhone column
===================================*/
@media screen and (max-width: 767px) {
.rowf.rowf_sp1 {
}

.rowf.rowf_sp1 > * {
	width: calc(100%);
}

.rowf.rowf_sp2 {
}

.rowf.rowf_sp2 > * {
	width: calc(50% - var(--gap-rowf-h) / 2);
}

.rowf.rowf_sp3 {
}

.rowf.rowf_sp3 > * {
	width: calc(33.333% - var(--gap-rowf-h) * 2 / 3);
}

.rowf.rowf_sp4 {
}

.rowf.rowf_sp4 > * {
	width: calc(25% - var(--gap-rowf-h) * 3 / 4);
}

.rowf.rowf_sp5 {
}

.rowf.rowf_sp5 > * {
	width: calc(20% - var(--gap-rowf-h) * 4 / 5);
}
}/* @media */





/** 8の倍数margin
===================================*/
.mb8_0 {
  margin-bottom: 0;
}

.mb8_1 {
  margin-bottom: 8px;
}

.mb8_2 {
  margin-bottom: 16px;
}

.mb8_3 {
  margin-bottom: 24px;
}

.mb8_4 {
  margin-bottom: 32px;
}

.mb8_5 {
  margin-bottom: 40px;
}

.mb8_6 {
  margin-bottom: 72px;
}

.mb8_7 {
  margin-bottom: 56px;
}

.mb8_8 {
  margin-bottom: 64px;
}

.mb8_9 {
  margin-bottom: 72px;
}

.mb8_10 {
  margin-bottom: 80px;
}

.mb8_11 {
  margin-bottom: 88px;
}

.mb8_12 {
  margin-bottom: 96px;
}

.mb8_13 {
  margin-bottom: 104px;
}

.mb8_14 {
  margin-bottom: 112px;
}


/* future-shop適応 */
.fs-l-page {
	padding-top: 100px;
}

.fs-l-header {
	padding: 0;
}

.fs-body-top .fs-l-main {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: 100%;
	display: block;
	justify-content: unset;
}

.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-footer__contents {
	margin: auto;
	max-width: 100%;
}

.fs-l-footer__contents > * {
	padding: 0;
}


/** base
===================================*/
#wrap-all {
	width: 100%;
	padding: 0;
}

.overflow_hidden {
	overflow: hidden;
}



.fullWidth {
	position: relative;
	width: 100vw;
	left: calc((-100vw + 100%) / 2);
	overflow: hidden;
}

.full_left {
	overflow: hidden;
	position: relative;
	width: calc(50vw);
	margin-left: calc(50% - 50vw);
}

.full_right {
	overflow: hidden;
	position: relative;
	width: calc(50vw);
	margin-right: calc(50% - 50vw);
}


/** header
===================================*/
#header {
}

.headline-wrap {
}

.headline {
}

.header-inner {
}

.logo {
}

.logo img {
}

.right-information {
}


/** navi
===================================*/
#gnav {
}

.gnavi {
	display: flex;
	flex-wrap: wrap;
}

.gnavi li {
}

.gnavi li a {
}



/** eyecatch
===================================*/


/** contents
===================================*/
#contents-wrap {
}

#main-contents {
}

#main-wrap {
}

#home-article {
}



/** side
===================================*/
#side {
}



/** footer
===================================*/
#footer {
}

.footer-inner {
}

.copyright {
	text-align: center;
}

.copyright address {
	font-style: normal;
	font-size: 0.8;
}


/** slideMenu
===================================*/
#slideMenu {
}





/*--------------------------------------------------------------------
  === [MEDIA QUERY] ====================================
--------------------------------------------------------------------*/

/** PC only
===================================*/
@media screen and (min-width: 1230px) {

}/* @media */



/** small-PC
===================================*/
@media screen and (max-width: 1229px) {
.conteiner_l {
}

}/* @media */



/** mini-PC
===================================*/
@media screen and (max-width: 1129px) {
.conteiner_l {
}

}/* @media */



/** Tablet
===================================*/
@media screen and (max-width: 1039px) {
/* base */
.visible-pc {
	display: none;
}

.hidden-pc {
}

.visible-tb {
	display: block;
}

.hidden-tb {
	display: none;
}

.visible-sp {
}

.hidden-sp {
}



/* header */


/* navi */


/* eyecatch */


/* contents */


/* side */


/* footer */



}/* @media */






/** SmartPhone
===================================*/
@media screen and (max-width: 767px) {
/* base */
.visible-pc {
}

.hidden-pc {
}

.visible-tb {
}

.hidden-tb {
}

.visible-sp {
	display: block !important;
}

.hidden-sp {
	display: none !important;
}

.nbr br:not(.vsp) {
	display: none;
}

a:hover {
	opacity: 1;
}


/* colmun */
.rowsp1 > * {
	float: none;
	width: 100%;
	margin-right: 0% !important;
}

.rowsp2 > * {
	float: left;
	width: 49%;
	margin-right: 2% !important;
}

.rowsp2 > *:nth-child(2n) {
	margin-right: 0 !important;
}

.rowsp3 > * {
	float: left;
	width: 32%;
	margin-right: 2% !important;
}

.rowsp3 > *:nth-child(3n) {
	margin-right: 0 !important;
}


/* header */


/* navi */


/* eyecatch */


/* contents */


/* side */


/* footer */


}/* @media */


/*--------------------------------------------------------------------
  === [機能追加] ====================================
--------------------------------------------------------------------*/

/* 展開でプラスマイナス付与 */
.plus_toggle {
	position: relative;
	cursor: pointer;
}

.plus_toggle::before, .plus_toggle::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 1px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background-color: currentcolor;
	transition: 0.3s;
}

.plus_toggle::after {
	transform: rotate(90deg);
}

.plus_toggle.opened::before {
	opacity: 0;
}

.plus_toggle.opened::after {
	transform: translateY(-50%) rotate(180deg);
}







