@charset "utf-8";

* {
	box-sizing: border-box;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 62.5%;
}
body {
	font-family:  'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	min-width: 1200px;
	color: #333;
	line-height: 1.8;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	letter-spacing: 1px;
}
::selection {
  background: #d6e9ff;
}
::-moz-selection {
  background: #d6e9ff;
}
.s-ttit_price {
    background: url(../img/second/tit_price.jpg);
}

/*---------------------------------------------
	clearfix
---------------------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	zoom: 1;
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	padding: 23px 2%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	transition: .3s;
	z-index: 100;
	background-image: linear-gradient(90deg, rgba(245,100,144, 1.1) 23%, rgba(248, 108, 130, 0.6) 48%, rgba(243, 200, 0, 0.6));
}
#bottom-menu br {
	margin-top:10px;
}
header .logo {
	display: inline-block;
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
	font-weight:bold;
	text-decoration:none;
	color:#333;
}
header h1 {
		width:20%;
	}
header.scroll {
	background-image: linear-gradient(90deg, rgba(247, 93, 139, 0.9) 23%, rgba(248, 108, 130, 0.9) 48%, rgba(243, 200, 0, 0.9));
}
header.scroll .logo img {
	max-width: 200px;
}

/* nav
------------------------------------------------------------*/
nav.pc-menu ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
nav.pc-menu ul li:not(:last-of-type) {
	margin-right: 2.5vw;
}
nav.pc-menu ul li a {
	text-shadow: 2px 2px 2px #005c93;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	position: relative;
}
nav.pc-menu ul li a::before {
	content: "";
	width: 0;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	top: calc(100% + 5px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .3s;
}
nav.pc-menu ul li.ac a::before,
nav.pc-menu ul li a:hover::before {
	width: 100%;
}
/* スマホメニューここから */
#drawer {
	display: none;
}
.sp-mbox label {
	cursor: pointer;
	position: fixed;
}
.open-dra {
	z-index: 1000;
	top: 17px;
	right: 5%;
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: #ff325f;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open-dra::before,
.open-dra::after {
	content: "";
}
.open-dra span,
.open-dra::before,
.open-dra::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open-dra::before {
	transform: translateY(-8px);
}
.open-dra::after {
	transform: translateY(8px);
}
.close-dra {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open-dra {
	background: #ff325f;
	transform: translateX(-280px);
}
#drawer:checked + .open-dra span {
	transform: scaleX(0);
}
#drawer:checked + .open-dra::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open-dra::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close-dra {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu-dra {
	z-index: 1000;
	position: fixed;
	overflow: auto;
	top: 0;       
	right: 0;   
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(56, 56, 56, .7);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-dra h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu-dra ul {
	margin: 0;
	padding: 0;
}
.menu-dra li {
	line-height: 1.4;
}
.menu-dra li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu-dra a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu-dra a:hover {
	background: #fff;
    color: #333;
}
#drawer:checked ~ .menu-dra {
	transform: none;
}

/* アコーディオンメニュー */
.menu-dra .ac-menu-inside a{
	padding:10px;
}
.ac-menu:last-child {
  margin-bottom: 60px;
}
.ac-menu input {
  display: none;
}
.ac-menu label {
  color: #fff;
  padding: 1em 2em;
  cursor: pointer;
  position: relative;
  display: block;
}
.ac-menu label:after {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
  content: "＋";
}
.ac-menu input:checked ~ label::after {
  content: "−";
}
.ac-menu div {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
}
.ac-menu input:checked ~ div {
  height: auto;
  opacity: 1;
  padding: 20px;
}
.ac-menu-inside {
  color: #333;
  font-size: 17px;
  line-height: 2;
}
.tit-big-jp {
    font-size: 36px;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-weight: bold;
}
.top-news time {
    margin-left: 10px;
}
.top-news time, .top-news .category, .top-news .news-tit {
    float: left;
}
.news-right {
    float: left;
}
.top-news .arrow-box {
    float: right;
    margin-right: 40px;
}
.tit-big-eng {
    font-size: 27px;
    font-family: "Lato";
    font-style: Italic;
    font-weight: bold;
	 background: linear-gradient(90deg, #ff325f 20%, #ff325f 30%, #e41aac 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tit-box {
    margin-bottom: 80px;
}
.center {
    text-align: center;
}
.top-news {
    margin-bottom: 40px;
    max-width: 960px;
    margin: 0 auto;
	
	padding:20px;
	}
.top-news article {
    border-bottom: 1px solid #555333;
    line-height: 80px;
    box-sizing: border-box;
}
.top-news article:first-child{
    border-top: 1px solid #555333;
}
.logo-bg {
    position: relative;
	background-color:#F7F7F7;
}
.top-news .category {
    margin: 0 20px;
}
.top-news time, .top-news .category, .top-news .news-tit {
    float: left;
}
.ptb80 {
    padding: 80px 0;
}
.link-btn {
    width: 240px;
    height: 56px;
    margin: 0 auto;
}
.link-btn a {
    display: block;
    line-height: 56px;
    text-decoration: none;
    background-color: #5e8c5e;
    color: white;
    text-align: center;
    border-radius: 5px;
    -moz-border-radius: 5px;
}
.link-arrow {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
 a:visited {
    text-decoration: underline;
}
.n-arrow {
    position: relative;
    display: inline-block;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: middle;
    width: 19px;
}
a {
    color: #000;
    outline: none;
	transition: opacity 0.5s ease-out;
}
/* スマホメニューここまで */

/* footer
------------------------------------------------------------*/
footer {
	background:#f7f9fd;
	padding: 20px 0;
	text-align: center;
}
.f-inn{
	margin-left:10px;
}
.f-inner{
	max-width:1000px;
	margin:0 auto;
	padding:0 10px;
}
.f-inner nav{
	float:left;
}
.f-inner nav ul{
	display:block;
	float:left;
}
.f-inner li{
	text-align:left;
	margin-top:10px;
	height:30px;
	font-size:16px;
}
.f-inner li a{
	color:#333;
}
.f-inner li:before{
	content:"";
	display: inline-block;
	width:30px;
	height:30px;
	background:url(../img/icon/fnav-icon.png);
	background-size: contain;
	vertical-align: middle;
	margin-right:10px;
}
.f-inner li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.f-inner li a:hover::after {
  transform: scale(1, 1);
}
.f-btm{
	float:right;
}
.f-logo{
	width:350px;
	margin:0 auto;
	font-size:32px;
}
.f-info{
	text-align:left;
}
.f-info dt, .f-info dd{
	float:left;
}
.f-info dd:before{
	content:"：";
}
.f-info dt{
	width:85px;
}
@media screen and (max-width:1200px){
	body{
		min-width:auto;
	}
	header.scroll .logo img {
		max-width: 180px;
	}
}
@media screen and (min-width: 801px){
	#bottom-menu, .sp-mbox{display:none;}
}
@media screen and (max-width:800px) {
	
	* {
		-webkit-appearance: none;
	}
	body {
		min-width: inherit;
		line-height: 1.5;
		letter-spacing: 0;
	}


	/* header
	------------------------------------------------------------*/
	header {
		background:rgba(245, 100, 144, 1.);
		padding: 15px 3%;
		display:block;
		position:unset;
		background-image: linear-gradient(90deg, rgba(245, 100, 144, 1.1) 29%, rgba(248, 108, 130, 0.6) 48%, rgba(243, 200, 0, 0.6));
	}
	header h1 {
		width:35%;
	}
	
	/* nav
	------------------------------------------------------------*/
	nav.pc-menu ul {
		display: none;
	}
	/* 下部固定メニュー */
	#bottom-menu{
		position: fixed;
		bottom:0;
		width: 100%;
		height: 60px;
		background:rgba(247, 93, 139, 0.6);
		left: 0;
		z-index:100;
	}
	#bottom-menu.fixed{
		display:block;
	}
	#bottom-menu li{
		float:left;
		width:25%;
		border-right:1px solid #ccc;
		box-sizing:border-box;
	}
	#bottom-menu li:last-child{border-right:none;}
	#bottom-menu li a{
		color:#fff;
		font-weight:bold;
		font-size:10px;
		text-align:center;
		height: 60px;
		display: block;
		padding-top:9px;
	}	

	/* footer
	------------------------------------------------------------*/
	.f-inner{
		padding-bottom:30px;
	}
	.f-inner nav, .f-btm{
		float:none;
	}
	.f-inner nav{
		width:315px;
		margin:0 auto;
	}
	.f-inner li:before{margin-right:5px;}
	nav ul li:not(:last-of-type){
		margin-right:10px;
	}
	.f-logo{
		font-size:30px;
		margin-top:20px;
	}
	.f-info{
		margin-bottom:30px;
	}
	.f-info dt {width: 65px;}
	.f-info dl{
		width:318px;
		margin:0 auto;
	}
	.f-info dd{font-size:14px;}
}
@media screen and (max-width:650px) {
	header h1 {
		width:50%;
	}
}
@media screen and (max-width:430px) {
	.open-dra {
		top: 13px;
		right: 8%;
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width:400px) {
.f-inner li a{
	font-size:14px;
}
}
