@charset "UTF-8";
/* CSS スマホサイト　＿2017.12*/

/*-------------------------------------------------------
↓ 共通
-------------------------------------------------------*/
html {
	font-size : 62.5%; /*←全体の文字サイズの基準を10pxにセット*/
	line-height: 1em; /*←全体の行間を1emにセット*/
	letter-spacing: 0.05em;
}
html p {
	line-height: 1.8em;
}
::selection {
	background: #014bbc; /* Safari */
	color: #fff;
}
::-moz-selection {
 background: #014bbc; /* Firefox */
 color: #fff;
}



/* clearfix */
#header:after,
#container:after,
#contents:after,
.clearfix:after {
	content: " ";
	display: block;
	height: 0;
	line-height: 0;
	clear: both;
	visibility: hidden;
}
#header, #container, #contents, .clearfix {
	display: inline-block;
	min-height: 1%;
}


/* Hides from IE-mac */
* html #header,
* html #container,
* html #contents,
* html .clearfix {
	height: 1%;
}



#header,
#container,
#contents,
.clearfix {
	display: block;
}



/* リンクテキスト */
a:link,
a:visited {
	text-decoration: underline;
}
a.over,
.over {
	cursor: pointer !important;
}



/* 余白/フロート */
.clear {
	clear: both;
}




/*-------------------------------------------------------
↓ 各デバイスでの表示切り替え
-------------------------------------------------------*/
.sp, .tab {
	display: none;
}
.pc {
	display: block;
}

@media screen and (max-width: 768px) {
.sp, .pc {
	display: none;
}
.tab {
	display: block;
}
}

@media screen and (max-width: 640px) {
.pc, .tab {
	display: none;
}
.sp {
	display: block;
}
}
/*-------------------------------------------------------
↓ レイアウト＿全体
-------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
}
body {
	font-size : 1.4em; /*←サイト全体の文字サイズの基準*/
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
		"Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 500;
	color: #333;
	background-color: #fff;
	width: 100%;
	height: 100%;
	margin: auto;
	-webkit-text-size-adjust: 100%;/*←iOS、Safari向け。*/
}

@media screen and (max-width: 1200px) {
body {
	font-size: 1.3em;
}
}

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

@media screen and (max-width: 640px) {
body {
	font-size: 1.2em;
}
}

@media screen and (max-width: 480px) {
body {
}
}
/*-------------------------------------------------------------
↓レイアウト＿レスポンシブ対応（上下余白・サイド余白）
-------------------------------------------------------------*/
.inner-wrap { /*可変幅*/
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.ajs-mg { /*可変マージン*/
	margin-bottom: 3em;
	overflow: hidden;
}

@media screen and (max-width: 1200px) {
.inner-wrap	{
	padding-left: 3.5em;
	padding-right: 3.5em;
}
}

@media screen and (max-width: 768px) {
.inner-wrap {
	padding-left: 2.2em;
	padding-right: 2.2em;
}
}

@media screen and (max-width: 640px) {
.inner-wrap {
	padding-left: 1.8em;
	padding-right: 1.8em;
}
}


/*-------------------------------------------------------
↓ header
-------------------------------------------------------*/
header {
	position: fixed;
	width: 100%;
	height: 100px;
	background:linear-gradient(90deg,#014bbc 0%,#014bbc 50%,#22c4fd 50%,#22c4fd 100%);
	z-index: 10;
}
header .headerlogo {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 203px;
	height: auto;
	z-index: 100;
}
header .headerlogo img {
	width: 100%;
	height: auto;
}
header a.mynavi {
	width: 140px;
	display: inline-block;
	position: absolute;
	top: 30px;
	right: 30px;
}
header a.mynavi img {
	width: 100%;
	height: auto;
}
header nav.width-large {
	position: absolute;
	right: 190px;
	top: 45px;
}
header nav.width-large ul li {
	display: inline-block;
}
header nav.width-large ul li a {
	text-decoration: none !important;
	color: #fff !important;
	font-weight: bold;
	margin-left: 30px;
	position: relative;
	display: inline-block;
}
header nav.width-large ul li a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
header nav.width-large ul li a:hover::after {
  transform: scale(1, 1);
}
header nav.width-small {
	display: none;
}
#menu-btn {
	display: none;
}

@media screen and (max-width: 1300px) {
header nav.width-large ul li a {
	margin-left: 15px;
}
}
@media screen and (max-width: 1100px) {/*ハンバーガー*/
header {
	height: 70px;
}
header .headerlogo {
	top: 15px;
	left: 15px;
}
header a.mynavi {
	top: 15px;
	right: 90px;
}
header nav.width-large {
	display: none;
}
header nav.width-small {
	position: absolute;
	width: 100%;
	height: 100vh;
	background-color: rgba(1,75,188,0.9);
}
header nav.width-small ul {
	width: 100%;
	text-align: center;
	height: 640px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
}
header nav.width-small ul li {
	padding: 15px 0;
	line-height: 1.6em;
	font-size: 1.1em;
}
header nav.width-small ul li a {
	font-weight: normal;
	display: inline-block;
	text-decoration: none !important;
	color: #fff !important;
}
header nav.width-small ul li span {
	font-size: 1.8em;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
}
header nav.width-small ul li svg {
	font-size: 1.6em !important;
	padding-right: 3px;
}


/* ___ ↓ここからハンバーガーボタン ___________*/
.hamburger {
	position: absolute;
	top: 15px;
	right: 20px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.2s;
	transition-timing-function: linear;
	background-color: transparent;
	z-index: 10;
}
.hamburger-box {
	width: 44px;
	height: 38px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 44px;
	height: 2px;
	background-color: #fff;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.2s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -17px;
}
.hamburger-inner::after {
	bottom: -17px;
}
.hamburger .hamburger-inner {
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger .hamburger-inner::before {
	transition: top 0.2s 0.2s ease, opacity 0.2s ease;
}
.hamburger .hamburger-inner::after {
	transition: bottom 0.2s 0.2s ease,transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is-active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.2s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.2s ease, opacity 0.2s 0.2s ease;
}
.hamburger.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.2s ease, transform 0.2s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* ___ ↑ここまでメニューボタン ___________*/
}
@media screen and (max-width: 640px) {
header nav.width-small ul {
	height: 460px;
}
header nav.width-small ul li {
	padding: 9px 0;
	line-height: 1.6em;
	font-size: 1em;
}
header nav.width-small ul li a {
	font-weight: normal;
	display: inline-block;
}
header nav.width-small ul li span {
	font-size: 1.5em;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
}
header nav.width-small ul li i {
	font-size: 1.6em;
}
}
@media screen and (max-width: 530px) {
header a.mynavi {
	display: none;
}
}
@media screen and (min-width: 1100px) {/*途中でのばしたら消える*/
header nav.width-small {
	display: none !important;
}
}


/*-------------------------------------------------------
↓ footer
-------------------------------------------------------*/

/*----top--------------*/
#footer-top {
	z-index: 0;
	position: relative;
	padding: 80px 0;
	text-align: center;
	background-image: url(../img/footer-back.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#footer-top::before {
    content: '';
	z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(1, 75, 188, 0.8);
}
#footer-top p {
	z-index: 2;
	position: relative;
	color: #fff;
}
#footer-top p span {
	font-family: 'Lato', sans-serif;
	font-size: 3em;
	font-weight: 900;
}
#footer-top p:first-child {
	margin-bottom: 50px;
}
#footer-top p:nth-child(2) {
	font-size: 1.15em;
	margin-bottom: 30px;
}
#footer-top img {
	z-index: 2;
	position: relative;
	margin-bottom: 5px;
}

/*----bottom--------------*/
#footer-bottom {
	padding: 60px 0;
	background-color: #fff;
	text-align: center
}
#footer-bottom a {
	display: inline-block;
}
#footer-bottom img.alfresa {
	width: 175px;
	height: auto;
	margin: 20px auto 30px;
}
#footer-bottom img.meisho {
	width: 290px;
	height: auto;
	margin-bottom: 16px;
}
#footer-bottom small {
	font-family: 'Lato', sans-serif;
	color: #014bbc;
}
#footer-middle {
	display: none;
}
@media screen and (max-width: 768px) {
#footer-top {
	padding: 60px 0;
}
#footer-top p:first-child {
	margin-bottom: 30px;
}
#footer-top p:nth-child(2) {
	margin-bottom: 20px;
}
#footer-bottom {
	padding: 50px 0;
}
}
@media screen and (max-width: 640px) {
#footer-top {
	padding: 40px 0;
}
#footer-top p:first-child {
	margin-bottom: 15px;
}
#footer-top p:nth-child(2) {
	margin-bottom: 15px;
}
#footer-bottom {
	padding: 25px 0;
}
#footer-bottom img.alfresa {
	width: 150px;
	margin: 20px auto 20px;
}
#footer-bottom img.meisho {
	width: 250px;
}
#footer-bottom p {
	line-height: 1.8em;
}


/*----middle--------------*/
#footer-middle {
	display: block;
}
#footer-middle p {
	background-color: #f1f1f1;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	color: #014bbc;
	padding: 15px 0;
	cursor: pointer;
	font-size: 1.2em;
	letter-spacing: 0.05em;
}
#footer-middle p svg {
	padding-left: 10px;
}
#footer-middle p.active {
	background-color: #f6cf1a;
}
#footer-middle p.active svg {
	-moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
	padding-right: 10px;
	padding-left: 0;
}
#footer-middle ul.toggleWrap {
	background-color: #fff;
}
#footer-middle ul.toggleWrap li {
	border-bottom: 1px solid #f1f1f1;
}
#footer-middle ul.toggleWrap li a  {
	text-align: center !important;
	text-decoration: none;
	color: #014bbc;
	display: block;
	padding: 20px 0;
	font-size: 1.2em;
}
}


/*-------------------------------------------------------
↓ #contents
-------------------------------------------------------*/
#contents {
	padding-top: 100px;
}
#contents .inner-section {
	padding-top: 80px;
	padding-bottom: 80px;
}
#contents .line {
	text-align: center;
	line-height: 1.6em;
	font-size: 1.3em;
	letter-spacing: 0.3em;
	color: #014bbc;
	font-weight: bold;
	margin-bottom: 50px;
	padding-top: 50px;
	background-image: url(../img/section-line.jpg);
	background-size: 1px 34px;
	background-repeat: no-repeat;
	background-position: center 0;
}
#contents .line span {
	font-size: 1em;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	padding: 0 5px;
	background-image: url(../img/yellow.jpg);
	background-size: 4px;
	background-repeat: repeat-x;
	background-position: center;
}
#contents .blue-large {
	line-height: 1.6em;
	font-size: 1.6em;
	color: #014bbc;
	margin-bottom: 15px;
}
#contents .grey {
	padding: 30px 0 30px 30px;
	font-weight: bold;
	color: #014bbc;
	background-color: #f3f3f3;
}
#contents .grey span {
	font-size: 2.4em;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	display: inline-block;
	margin-bottom: 10px;
}
#contents .stripe {
	padding: 25px 0 25px 25px;
	font-size: 1.2em;
	background-image: linear-gradient(-45deg, #fff 25%, #f1f1f1 25%, #f1f1f1 50%, #fff 50%, #fff 75%, #f1f1f1 75%, #f1f1f1);
	background-size: 8px 8px;
	border-top: 3px solid #014bbc;
	margin-top: 36px;
	margin-bottom: 18px;
}
#contents .stripe:first-child {
	margin-top: 0;
}
#contents p.large16 {
	font-size: 1.1em;
}
#contents a.btn {
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	padding: 20px 50px;
	background-color: #014bbc;
	margin-top: 20px;
	display: inline-block;
	border: 1px solid #014bbc;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
#contents a.btn:hover {
	background-color: #fff;
	color: #014bbc;
}
@media screen and (max-width: 1100px) {
#contents {
	padding-top: 70px;
}
}
@media screen and (max-width: 768px) {
#contents {
	padding-top: 70px;
}
#contents .grey {
	padding: 15px 0 15px 30px;
}
#contents .grey span {
	font-size: 2em;
}
#contents .inner-section {
	padding-top: 70px;
	padding-bottom: 70px;
}
#contents .inner-section_02 {
	background-position: center 20px;
}
}
@media screen and (max-width: 640px) {
#contents .inner-section {
	padding-top: 50px;
	padding-bottom: 50px;
}
#contents .stripe {
	padding: 18px 0 18px 18px;
	background-size: 10px 10px;
	margin-top: 30px;
	margin-bottom: 10px;
}
#contents .blue-large {
	font-size: 1.3em;
	margin-bottom: 10px;
}
#contents .line {
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	padding-top: 30px;
	background-size: 1px 25px;
}
}




/*-------------------------------------------------------------
↓ローダー
-------------------------------------------------------------*/
#wrapper {
	display: none;
}
.loading,
.loading:after {
	position: fixed;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	width: 40px;
	height: 40px;
}
.loading {
  font-size: 10px;
  text-indent: -9999em;
  border-top: 3px solid #e4e4e4;
  border-right: 3px solid #e4e4e4;
  border-bottom: 3px solid #e4e4e4;
  border-left: 3px solid #014bbc;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.8s infinite linear;
  animation: load8 0.8s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*-------------------------------------------------------------
↓ページトップ
-------------------------------------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 4;
	cursor: pointer;
}
.pagetop img {
	width: 100%;
	height: auto;
	position: absolute;
}
.pagetop img.pagetop_off {
	opacity: 1;
}
.pagetop img.pagetop_on {
	opacity: 0;
}
.pagetop:hover img.pagetop_off {
	opacity: 0;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
.pagetop:hover img.pagetop_on {
	opacity: 1;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
@media screen and (max-width: 640px) {
.pagetop {
	bottom: 10px;
	right: 10px;
}
}


/* ------------------------------
   loopSlider
------------------------------ */

ul.not-slide {
	width: 95%;
	display: table;
	margin-left: auto;
	margin-right: auto;
	line-height: 0;
}
ul.not-slide li {
	display: inline-block;
	position: relative;
	padding: 0 20px;
	box-sizing: border-box;
	width: 16.666%;
}
ul.not-slidede li a {
	display: block;
}
ul.not-slide li img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
}
ul.not-slide li span {
	position: absolute;
	opacity: 0;
	background-color: #f6cf1a;
	color: #fff;
	font-weight: bold;
	font-size: 0.9em;
	z-index: 10;
	left: 0;
	right: 0;
	top: 48%;
	padding: 8px 0;
	box-sizing: border-box;
	line-height: 1.4em;
	width: 100px;
	margin: auto;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
ul.not-slide li a:hover span {
	opacity: 1;
}
ul.not-slide li a:hover img {
	width: 100%;
	height: auto;
	-webkit-filter: grayscale(0);
     -moz-filter: grayscale(0);
     -o-filter: grayscale(0);
     -ms-filter: grayscale(0);
     filter: grayscale(0);
}
@media screen and (max-width: 768px) {
ul.not-slide li {
	padding: 0;
}
ul.not-slide li span {
	display: none;
}
}

@media screen and (max-width: 640px) {
ul.loopSlider img {
	width: 100%;
	height: auto;
}
.loopSliderWrap {
    top: 0;
    left: 0;
    height: 170px;
	width: 100%;
    overflow: hidden;
    position: absolute;
}

.loopSlider {
    margin: 0 auto;
    height: 170px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.loopSlider ul {
    height: 170px;
    float: left;
    overflow: hidden;
}

.loopSlider ul li {
    width: 120px;
    height: 170px;
    float: left;
    display: inline;
    overflow: hidden;
}
.loopSlider ul li img {
    width: 120px;
    float: left;
    display: inline;
    overflow: hidden;
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
.loopSliderWrap::after {
    content: "";
    display: none;
    clear: none;
}
}




/* ------------------------------
   上へスライド
------------------------------ */
.inviewUp {
	transform: translate(0, 50px);
	-webkit-transform: translate(0, 50px);
	transition: 0.5s;
}
.Up {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}



