@charset "utf-8";
/* CSS Document */

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

li{list-style:none;}

a:active,
a:hover {
	outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: auto; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }



* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		 -o-box-sizing: border-box;
		-ms-box-sizing: border-box;
			box-sizing: border-box;
}

img {
  max-width: 100%;
	vertical-align: bottom;
	height: auto;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

span.sub_title:before{
   content: "\A" ;
   white-space: pre ;
}

*:focus {
	outline: none;
}

/*h2 , h3 , h4 , p , a , li a , span , span a{
	transform: rotate(.03deg);
}*/

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

/*a:hover img{
	opacity: 0.7;
	transition: 0.6s ;
}*/

	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
}

/* ------------------------------------------
  STYLES
--------------------------------------------- */

:root {
  --key-color: #e50012;
  --font-color: #221714;
  --color-red: #a2000d;
  --color-gray: #fbfaf8;
  --container-width: 1200px;
  --container-width-wide: 1500px;
  --transition: all 0.6s ease;
  --letter-spacing: .3rem;
}

html,body,main{width: 100%;}
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: var(--font-color);
	font-size: 16px;
	font-weight: 500;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
	line-height: 1.6;
	letter-spacing:-0.001em;
	word-wrap: break-word;
	position:relative;
	min-width: var(--container-width);
  text-align: justify;
  font-feature-settings: "palt";
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


a /*, p , div , ul , img , h1*/{
	color: var(--font-color);
	transition: var(--transition);
  text-decoration: none;
}

main{
  padding-top: 100px;
}

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

	main{
		min-height: 70%;
	}
  
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  main{
    padding-top: 75px;
  }

}

section{
	width:100%;
	margin-bottom: 100px;
}
section .inner{
	width: var(--container-width);
	margin-left:auto;
	margin-right:auto;
	padding:0 50px;
}
section .wide{
  width: 100%;
	max-width: var(--container-width-wide);
	margin-left:auto;
	margin-right:auto;
	padding:0 50px;
}
section .narrow{
	width:1000px;
	margin-left:auto;
	margin-right:auto;
	padding:0 50px;
}
section .narrow700{
	width:800px;
	margin-left:auto;
	margin-right:auto;
	padding:0 50px;
}

#a01 , #a02 , #a03 , #a04 , #a05 , #a06 , #a07 , #a08 , #a09 , #a10 , #a11 , #a12 , #a13 , #a14 , #a15{
  margin-top:-130px;
  padding-top:130px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	body , header {
		min-width: 320px;
	}
	section{
		width:100%;
		margin-bottom: 50px;
	}
	section .wide , section .inner , section .narrow , section .narrow700{
		width:100%;
		padding:0 25px;
	}
  
	#a01 , #a02 , #a03 , #a04 , #a05 , #a06 , #a07 , #a08 , #a09{
	  margin-top:-50px;
	  padding-top:50px;
	}

}


.pagetop {
	display: none;
	position: fixed;
	bottom: 55px;
	right: 45px;
	z-index:999;
}
.pagetop a {
  height: 50px;
  width: 50px;
  background: rgba(255,255,255,0.6);
  border: solid 2px var(--key-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagetop a::after {
  content: '';
  display: inline-block;
  height: 10px;
  width: 10px;
  border-top: 3px solid var(--key-color);
  border-right: 3px solid var(--key-color);
  transform: translateY(20%) rotate(-45deg);
}


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

	汎用CSS
	
*******************************************************************************************/
/*div幅指定用*/


.w100 {width: 100%;}

.w70 {width: 70%;}
.w60 {width: 60%;}
.w50 {width: 50%;}
.w40 {width: 40%;}
.w30 {width: 30%;}
.w33 {width: 33%;}

.w70-w100 {width: 70%;}
.w60-w100 {width: 60%;}
.w50-w100 {width: 50%;}
.w40-w100 {width: 40%;}
.w30-w100 {width: 30%;}

.mb0 {margin-bottom: 0 !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mt0 {margin-top: 0 !important;}
.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.ml10 {margin-left: 10px;}
.ml20 {margin-left: 20px;}
.ml30 {margin-left: 30px;}
.mr10 {margin-right: 10px;}
.mr20 {margin-right: 20px;}
.mr30 {margin-right: 30px;}

.mt40 , .mt50 , .mt60 , .mt70 , .mt80 , .mt90 , .mt100 {margin-top: 30px;}

.mb40 , .mb50 , .mb60 , .mb70 , .mb80 , .mb90 , .mb100 , .mb120 , .mb130 , .mb150 , .mb200 , .mb230 {margin-bottom: 30px;}
.pb50 , .pb60 , .pb70 , .pb80 {padding-bottom: 40px;}

.pb0{padding-bottom:0 !important;}

.margin-auto{margin: 0 auto;}

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

	/*マージン調整用*/

	.mb0-pc{margin-bottom: 0 !important;}

	.ml10 {margin-left: 10px;}
	.ml20 {margin-left: 15px;}

	.mr0 {margin-right: 0 !important;}

	.mt40 {margin-top: 40px;}
	.mt50 {margin-top: 50px;}
	.mt60 {margin-top: 60px;}
	.mt70 {margin-top: 70px;}
	.mt80 {margin-top: 80px;}
	.mt90 {margin-top: 90px;}
	.mt100 {margin-top: 100px;}

	.mb10-1000 {margin-bottom: 10px;}

	.mb15 {margin-bottom: 15px !important;}
	.mb40 {margin-bottom: 40px !important;}
	.mb50 {margin-bottom: 50px !important;}
	.mb60 {margin-bottom: 60px !important;}
	.mb70 {margin-bottom: 70px !important;}
	.mb80 {margin-bottom: 80px !important;}
	.mb90 {margin-bottom: 90px !important;}
	.mb100 {margin-bottom: 100px !important;}
	.mb120 {margin-bottom: 120px !important;}
	.mb130 {margin-bottom: 130px !important;}
	.mb150 {margin-bottom: 150px !important;}
	.mb200 {margin-bottom: 200px !important;}
	.mb230 {margin-bottom: 230px !important;}

	.pb15 {padding-bottom: 15px !important;}
	.pb40 {padding-bottom: 40px !important;}
	.pb50 {padding-bottom: 50px !important;}
	.pb60 {padding-bottom: 60px !important;}
	.pb70 {padding-bottom: 70px !important;}
	.pb80 {padding-bottom: 80px !important;}
	.pb90 {padding-bottom: 90px !important;}
	.pb100 {padding-bottom: 100px !important;}
	.pb110 {padding-bottom: 110px !important;}
	.pb120 {padding-bottom: 120px !important;}
	.pb130 {padding-bottom: 130px !important;}

	
	.mb120-pc {margin-bottom: 120px !important;}

	
	/*フォント用*/
	.fs80 {font-size: 80%;}
	.fs90 {font-size: 90%;}

	.talg_C_pc {
		text-align: center;
	}

}

.fs80{font-size: 80%;}
.fs90{font-size: 90%;}
.fs110{font-size: 110%;}
.fs115{font-size: 115%;}
.fs120{font-size: 120%;}
.fs125{font-size: 125%;}
.fs130{font-size: 130%;}
.fs135{font-size: 135%;}
.fs140{font-size: 140%;}
.fs145{font-size: 145%;}
.fs150{font-size: 150%;}

.fs13{font-size: 13px;}
.fs14{font-size: 14px;}
.fs15{font-size: 15px;}
.fs16{font-size: 16px;}
.fs17{font-size: 17px;}
.fs18{font-size: 18px;}
.fs19{font-size: 19px;}
.fs20{font-size: 20px;}
.fs21{font-size: 21px;}
.fs22{font-size: 22px;}
.fs23{font-size: 23px;}
.fs24{font-size: 24px;}
.fs25{font-size: 25px;}
.fs26{font-size: 26px;}
.fs27{font-size: 27px;}
.fs27{font-size: 27px;}
.fs28{font-size: 28px;}
.fs29{font-size: 29px;}
.fs30{font-size: 30px;}

.lh2{line-height: 2em;}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.w70-w100 , .w60-w100 , .w50-w100 , .w40-w100 , .w30-w100 {width: 100%;}
	
	.mb0-sp{margin-bottom: 0 !important;}
  .mb10-sp {margin-bottom: 10px !important;}
  .mb20-sp {margin-bottom: 20px !important;}
  .mb30-sp {margin-bottom: 30px !important;}
  .mb40-sp {margin-bottom: 40px !important;}
  .mb50-sp {margin-bottom: 50px !important;}

	.fs17, .fs18, .fs19, .fs20, .fs21, .fs22{
		font-size: 17px;
	}

	.fs23 , .fs24 , .fs25 , .fs26 , .fs27, .fs28 , .fs29 , .fs30{
		font-size: 16px;
	}
	
}

/*パディング調整用*/
.pl20 {padding-left: 20px;}
.pr20 {padding-right: 20px;}

.mincho , .mintyo{
	font-family: 'Noto Serif JP', serif,游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,"ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝",メイリオ,Meiryo,serif !important;
}
.gothic{
	font-family: 'Noto Sans JP', sans-serif, '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif !important;
}

.red{
	color:#dc001e;
}
.blue{
	color:#03004c;
}
.bg-white {
  background-color: #FFFFFF;
}

/*フロート用*/
.fleft {
	float: left;
}
.fright {
	float: right;
}
/*text-align用*/
.talg_C {
	text-align: center !important;
}

.bg-blue{
	background-color: #e4eef3;
	padding: 120px 0 140px 0;
}

/* ------------------------ パソコン ------------------------ */
@media screen and (min-width: 768px) {

  .talg_C_pc{
    text-align: center !important;
  }
  .talg_R_pc {
    text-align: right !important;
  }

}

.talg_L {
	text-align: left !important;
}
.talg_R {
	width: 100%;
	text-align: right !important;
}

.talg_R_C {
	width: 100%;
	text-align: right !important;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.talg_R_C {
		text-align: center !important;
	}
	
	.bg-blue{
		padding: 50px 0 60px 0;
	}

}

.clear_both{
	clear:both;
}
.over-hidden{
	overflow: hidden;
}
.over-visible{
	overflow: visible;
}
.vertical{
	vertical-align:middle;
}
.border-none{
  border: none !important;
}
.palt{
  font-feature-settings: "palt";
}
.jisage , .jisage02 , .jisage03 , .jisage04{font-feature-settings: normal;}

/* 字下げ */
.jisage{
	padding-left:1em;
	text-indent:-1em;
}
.jisage02{
	padding-left:1.5em;
	text-indent:-1.5em;
}
.jisage03{
	padding-left:2em;
	text-indent:-2em;
}
.jisage04{
	padding-left:2.5em;
	text-indent:-2.5em;
}

.pointer{
	cursor: pointer;
}
.youtube {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.youtube-vertical {
   position: relative;
   padding-bottom: 177.8761%;
   height: 0;
   overflow: hidden;
}
.youtube-vertical iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
video{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* スクロールするとふわっと現れる文字や画像 */
.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1.5s;
 -ms-animation-duration:1.5s;
 animation-duration:1.5s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}

@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

input, select, textarea {
	padding: 5px 10px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	.scroll{
		overflow-x: scroll;
	}
	
	.scroll table{
		width: 1000px !important;
		margin-bottom: 20px;
	}

}


.scroll-element {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  transform: translateZ(0);
}

.no-link{
  pointer-events: none;
}

/* ------------------------------------------
  ヘッダー
--------------------------------------------- */

header h1 {
	position: absolute;
	top: 15px;
	left: 30px;
	line-height: 1.5;
	font-family: "Shippori Mincho", serif;
}
header h1 a {
	font-size: 22px;
	font-weight: 600;
	display: block;
}
header h1 a font {
	font-size: 16px;
	font-weight: 600;
}

/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }

.nav-overlay__link {
  display: inline-block;
  padding: 15px;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
  transition: color .3s;
	font-family: "Shippori Mincho", serif;
}

.nav-overlay__link:hover {
  color: var(--key-color);
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	header {
		position: fixed;
		width: 100%;
		height: 60px;
		top: 0;
		left: 0;
		z-index: 1000;
		background-color: #FFFFFF;
	}
	header h1 {
		top: 10px;
		left: 20px;
		line-height: 1.3;
	}
	header h1 a {
		font-size: 18px;
	}
	header h1 a font {
		font-size: 13px;
	}
	.hamburger-overlay {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 48px;
		height: 48px;
	}
	.nav-overlay__link {
		display: block;
		padding: 10px;
		font-size: 18px;
	}

}


/*============================
フッター
============================*/

footer {
  padding: 70px 0 80px;
  text-align: center;
}
footer h2 {
  font-size: 27px;
  font-weight:  600;
	font-family: "Shippori Mincho", serif;
  margin-bottom: 30px;
}
footer img {
	width: 100px;
	margin-bottom: 20px;
}
footer ul {
	margin-bottom: 30px;
}
footer ul li {
	display: inline-block;
}
footer ul li a {
	display: inline-block;
	padding: 7px 10px;
}
footer .copyright {
  font-size: 13px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	footer {
		padding: 40px 0 40px;
	}
	footer h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	footer ul {
		margin-bottom: 20px;
	}
	footer ul li a {
		padding: 7px 10px;
	}
	footer .copyright {
		font-size: 13px;
	}

}


ul.column02{
	display:flex; 
	flex-wrap: wrap;
}

ul.column02 li{
	width:50%;
}

ul.column02 li img{
  width: 100%;
  height: auto;
}

ul.column02-2{
	display:flex; 
	flex-wrap: wrap;
}

ul.column02-2 li{
	width:48%;
	margin-right:4%;
	margin-bottom:30px;
}

ul.column02-2 li:nth-child(2n){
	margin-right:0;
}

ul.column02-2 li img{
	width:100%;
	height:auto;
	margin-bottom: 10px;
}

ul.column02-3{
	display:flex; 
	flex-wrap: wrap;
}

ul.column02-3 li{
	width:28%;
	margin-right:4%;
	margin-bottom:30px;
}

ul.column02-3 li:nth-child(2n){
	width:68%;
	margin-right:0;
}

ul.column02-3 li img{
	width:100%;
	height:auto;
	margin-bottom: 10px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	ul.column02{
		margin-bottom:10px;
	}

	ul.column02 li{
		width:100%;
		margin-bottom: 30px;
	}

	ul.column02-2 li{
		width:100%;
		margin-right:0;
	}
	
	ul.column02-3 li , ul.column02-3 li:nth-child(2n){
		width:100%;
		margin-right:0;
	}

  ul.column02-2 li:last-child{
    margin-bottom: 0;
  }
  
}

ul.column03 , ul.column03-2 , ul.column03-3{
	display:flex; 
	flex-wrap: wrap;
}
ul.column03.center {
	justify-content: center;
}

ul.column03 li , ul.column03-2 li{
	width:30.6666%;
	margin-right:4%;
  margin-bottom: 30px;
}

ul.column03-3 li{
	width: calc(100%/3 - 20px);
	margin-right: 10px;
  margin-bottom: 10px;
}

/* ------------------------ パソコン ------------------------ */
@media only screen and (min-width:768px){

	ul.column03 li:nth-child(3n) , ul.column03-2 li:nth-child(3n) , ul.column03-3 li:nth-child(3n) , ul.column03 li:last-child{
		margin-right:0;
	}

}

ul.column03 li img , ul.column03-2 li img{
	width:100%;
	margin-bottom:15px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	ul.column03 li{
		width:100%;
		margin-right:0;
		margin-bottom: 30px;
	}
	ul.column03-2 li{
		width:48%;
		margin-right:4%;
		position:relative;
    margin-bottom: 30px;
	}
  ul.column03-3 li{
    width: calc(100%/2 - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
  }
	ul.column03-2 li:nth-child(2n) , ul.column03-3 li:nth-child(2n){
		margin-right:0;
	}

	ul.column03 li img , ul.column03-2 li img{
		margin-bottom:20px;
	}

}

ul.column04{
	display:flex; 
	flex-wrap: wrap;
}

ul.column04 li{
	width:22.75%;
	margin-right:3%;
  margin-bottom: 30px;
}


/* ------------------------ パソコン ------------------------ */
@media only screen and (min-width:768px){


ul.column04 li:nth-child(4n){
	margin-right:0;
}

}

ul.column04 li img{
	width:100%;
	height:auto;
	margin-bottom:20px;
}

ul.column04 li h3{
	text-align:center;
	font-size:18px;
}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

	ul.column04{
		margin-bottom:30px;
	}

	ul.column04 li{
		width:47%;
		margin-right:6%;
		margin-bottom:20px;
	}

	ul.column04 li:nth-child(2n){
		margin-right:0;
	}

	ul.column04 li h3{
		font-size:17px;
	}

}

.flex {
	display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
}
.flex-center {
	display: flex;
  flex-wrap: wrap;
	justify-content: center;
}

.width-10{width: 10%}
.width-15{width: 15%}
.width-20{width: 20%}
.width-25{width: 25%}
.width-30{width: 30%}
.width-35{width: 35%}
.width-40{width: 40%}
.width-45{width: 45%}
.width-47{width: 47%}
.width-48{width: 48%}
.width-49{width: 49%}
.width-50{width: 50%}
.width-55{width: 55%}
.width-60{width: 60%}
.width-65{width: 65%}
.width-70{width: 70%}
.width-75{width: 75%}
.width-80{width: 80%}
.width-85{width: 85%}

/* ------------------------ スマートフォン ------------------------ */
@media only screen and (max-width:768px){

  .flex,
  .flex-center{
    display: flex;
  }
  .flex.r-fast div:nth-child(1),
  .flex-center.r-fast div:nth-child(1){
    order: 2;
  }
  .flex.r-fast div:nth-child(2),
  .flex-center.r-fast div:nth-child(2){
    order: 1;
    margin-bottom: 30px;
  }
  .width-10,
  .width-15,
  .width-20,
  .width-25,
  .width-30,
  .width-35,
  .width-40,
  .width-45,
  .width-47,
  .width-48,
  .width-49,
  .width-50,
  .width-55,
  .width-60,
  .width-65,
  .width-70,
  .width-75,
  .width-80,
  .width-85{width: 100%}	  
  
}

@media only screen and (min-width:1500px){
  
  .pc-1500 {display:none !important;}
  
}

.sp , .sp-block{display:none !important;}

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

.pc {display:none !important;}

.sp{display:inline !important;}

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

}

