@charset "utf-8";


/** font
===================================*/
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&family=Rubik:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap'); */

/** base
===================================*/
.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 {
}
/* 
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
} */


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


/** オンマウス
===================================*/
a:hover img {
}

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;
}


/** 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;
}

/** 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
===================================*/
.rowflex {
	display: flex;
    flex-wrap: wrap;
}

.row1 > * {
	width: 100%:
}

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

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

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

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

.row4 > * {
	float: left;
	width: 23.5%;
	margin-right: 2%;
}

.row4 > *:nth-child(4n) {
	margin-right: 0;
}

.row5 > * {
	float: left;
	width: 18.4%;
	margin-right: 2%;
}

.row5 > *:nth-child(5n) {
	margin-right: 0;
}

.row6 > * {
	float: left;
	width: 15%;
	margin-right: 2%;
}

.row6 > *:nth-child(6n) {
	margin-right: 0;
}

.row7 > * {
	float: left;
	width: 12.57%;
	margin-right: 2%;
}

.row7 > *:nth-child(7n) {
	margin-right: 0;
}

.row8 > * {
	float: left;
	width: 10.75%;
	margin-right: 2%;
}

.row8 > *:nth-child(8n) {
	margin-right: 0;
}


/** 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;
}

.container {
	max-width: 1070px;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
}

.container_l {
	max-width: 1230px;
	padding-left: 15px;
	padding-right: 15px;
	margin: auto;
    overflow: hidden;
}

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


/** 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 {
}

.container {
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

/* 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 */


