@charset "UTF-8";

/*------------------------------------------------------------------------------

  CSS Remedy reset

------------------------------------------------------------------------------*/
*,::after,::before{box-sizing:border-box}html{line-sizing:normal}body{margin:0}[hidden]{display:none}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.17rem}h4{font-size:1rem}h5{font-size:.83rem}h6{font-size:.67rem}h1{margin:.67em 0}pre{white-space:pre-wrap}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle;max-width:100%}audio:not([controls]){display:none}picture{display:contents}source{display:none}canvas,img,svg,video{height:auto}audio{width:100%}img{border-style:none}svg{overflow:hidden}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}

* {
   	/*-webkit-appearance: none;*/
}
button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

/*------------------------------------------------------------------------------

  Google fonts

------------------------------------------------------------------------------*/
@font-face {
	font-family: 'NotoSansJP';
	src: url(/font/Noto_Sans_JP/NotoSansJP-Regular.otf);
}
@font-face {
	font-family: 'Noto_Serif';
	src: url(/font/Noto_Serif/NotoSerif-Regular.ttf);
}

/*------------------------------------------------------------------------------

  ALL

------------------------------------------------------------------------------*/

body {
	width: 100%;
	margin: 0 auto;
	font-family: 'NotoSansJP', 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
	color: #000;
}
.bg-color {
	position: relative;
}
.sub-color {
    min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
    position: relative;/* ←相対位置 */
    box-sizing: border-box;
    /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
	background: #EFEFEF;
	z-index: 1;
}

header {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	background: #FFF;
}

main,
section,
footer {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}

section {
	flex: 1;
}

@media all and (max-width: 1024px) {
	header {
		width: 90%;
		margin: 0 auto;
	}
}


h2 {
	font-family: 'Noto_Serif';
	font-size: 34px;
	font-weight: 400;
	letter-spacing: 0.5rem;
	margin: 0;
}
@media all and (max-width: 767px) {
	h2 {
		font-size: 26px;
	}
}

i {
	display: block;
	font-style: normal;
	font-size: 14px;
	margin-top: 0.5rem 0;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
}

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

ol {
	margin: 0 0 0 1rem;
	padding: 0;
}


/*------------------------------------------------------------------------------

  index.php

------------------------------------------------------------------------------*/

/* main */
main {
	/*padding: 40px 0 0 0;*/
    position: relative;
    overflow: hidden;
}
main img {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
@media all and (max-width: 1024px) {
	main {
		width: 100%;
		margin: 0 auto;
	}
	main img {
		width: 90%;
	}
}
@media all and (max-width: 767px) {
	main {
		height: 80vh;
		text-align: center;
		padding: 10px 0 0 0;
	}
	main img {
		width: 100%;
		height: 100%;
		margin: 0 auto;
		overflow: hidden;
		object-fit: cover;
	}
}

/* header */
header {
	display: flex;
	padding: 20px 0;
}
header h1 {
	justify-content: flex-start;
	width: 20%;
	align-items: center;
}
header nav {
	justify-content: flex-end;
	display: flex;
	width: 80%;
	align-items: center;
	font-size: 16px;
	font-family: 'Noto_Serif';
	letter-spacing: 0.1rem;
}
header nav ul li {
	display: inline-block;
	padding-right: 2rem;
}
header nav ul li:last-child {
	padding-right: 0;
}
@media all and (max-width: 1024px) {
	header {
		padding: 10px 0 0 0;
	}
}
@media all and (max-width: 767px) {
	header h1 {
		width: 30%;
	}
}

/* 下線アニメーション */
header nav ul li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
header nav ul li a:hover {
	text-decoration: none;
}
header nav ul li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
header nav ul li a:hover::after {
    transform: scale(1, 1);
}
@media all and (max-width: 767px) {
	header nav ul li a::after {
		position: unset;
		transform: none;
	}
	header nav ul li a:hover::after {
		transform: none;
	}
}


/* about */
section.about-us {
	padding: 60px 0 0 0;
	background: #EFEFEF;
    position: relative;
    overflow: hidden;
}
section.about-us .about-inner {
	max-width: 980px;
	margin: 0 auto;
}
.about-us p {
	max-width: 800px;
	margin:  0 auto;
	padding: 2rem 0;
	line-height: 1.8;
}
.box-area {
	position: relative;
	height: 81vh;
  margin-top: 60px;
}
.box1 {
	z-index: 4;
	position: absolute;
	right: 100px;
	top: 0;
	background: #FFF;
	text-align: left;
	padding: 20px 40px;
	font-size: 14px;
}
.box1 ul li {
	margin-top: 1rem;
}
.box1 ul li:first-child {
	margin-top: 0;
}
.box2 {
	z-index: 2;
	position: absolute;
	left: 0;
	top: 50px;
}
.box3 {
	z-index: 3;
	position: absolute;
	right: 30px;
	top: 210px;
}
.box4 {
	z-index: 2;
	position: absolute;
	left: 60px;
	top: 325px;
}


/* access */
section.access-area {
    position: relative;
    overflow: hidden;
	padding: 60px 0 0 0;
}
section.access-area .access-inner {
	max-width: 980px;
	margin: 0 auto;
}
section.access-area .access-txt {
	padding-top: 2rem;
}
section.access-area iframe {
	padding: 2rem 0;
}
section.access-area p {
	max-width: 980px;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 0.5rem;
}


/* contact */
section.contact-area {
	padding: 60px 0;
	background: #EFEFEF;
}
section.contact-area .contant-inner {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 4rem;
}
section.contact-area form {
	padding: 2rem 0;
	font-size: 16px;
}
section.contact-area form input {
	font-size: 16px;
}
section.contact-area form i {
	display: inline;
	color: #F00;
	font-size: 12px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 0;
}
textarea {
	height: 200px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
input[type="submit"] {
	width: 200px;
    padding: 16px 0;
    background: #000;
    color: #FFF;
    border: none;
	border-radius: 0;
	margin: 20px 0;
}
input[type="submit"]:hover {
	opacity: 0.8;
}
section.contact-area dl {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	justify-content: space-between;
}
section.contact-area dl dt {
	width: 40%;
	text-align: left;
	padding: 20px 0;
}
section.contact-area dl dd {
	width: 59%;
	text-align: left;
	padding: 10px 0;
	margin-left: 1%;
}
p.form-check {
	margin: 0.5rem 0;
	color: #F00;
	font-size: 12px;
}
p.top-policy-txt {
	position: relative;
}
p.top-policy-txt a {
	text-decoration: underline;
}
p.top-policy-txt a:hover {
	text-decoration: none;
}

/* form .error */
form .error {
	display: inline;
    color: #F00;
    font-size: 14px;
	padding-top: 0.5rem;
}
.top-policy-txt label.error {
	position: absolute;
    top: 1.3rem;
}


/* footer */
footer {
	background: #EFEFEF;
	padding: 2rem 0;
	/*position: absolute;
    bottom: 0;*/
	width: 100%;
	height: auto;
}
footer .footer-inner {
	text-align: left;
	max-width: 980px;
	margin: 0 auto;
	border-top: 1px solid #000;
	position: relative;
}
i.fa-chevron-up {
	position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    font-size: 30px;
    color: #000;
}

@media all and (max-width: 1024px) {
	section.about-us .about-inner,
	section.access-area .access-inner,
	section.contact-area .contant-inner,
	section.policy-area .policy-inner,
	section.thanks-area .thanks-inner,
	footer .footer-inner {
		width: 90%;
		margin: 0 auto;
	}
	.box-area {
		height: auto;
    margin-top: 2rem;
	}
	.box1,
	.box2,
	.box3,
  .box4 {
		position: static;
		width: 100%;
		margin: 1rem auto;
	}
	.box1 {
		padding: 20px;
	}
	.box2 img,
	.box3 img,
  .box4 img {
		width: 100%;
		margin: 0 auto;
	}
	section.contact-area dl {
		display: block;
	}
	section.contact-area dl dt {
		width: 100%;
		padding: 0;
	}
	section.contact-area dl dd {
		width: 100%;
		margin: 0 0 1rem 0;
	}
	section.access-area iframe {
		height: 400px;
	}
}


/* 背景 */
main::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 35vw solid #EFEFEF;
  border-left: 100vw solid transparent;
  z-index: -999;
}
.about-us::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 35vw solid #FFF;
  border-right: 100vw solid transparent;
}
section.access-area::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 35vw solid #EFEFEF;
  border-left: 100vw solid transparent;
  z-index: -999;
}


/*==================================================
　openBtn
===================================*/
/* PCでは非表示にしておく */
.nav_toggle {
  display: none;
}

/* スマホサイズで見た場合のスタイル */
@media screen and (max-width: 1024px) {
	/* ハンバーガーのマーク */
  .nav_toggle {
    display: block;
    position: fixed;
	right: 4%;
	top: 30px;
    width: 1.75rem;
    height: 1.5rem;
    margin-right: 10px;
    z-index: 999;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }

  /* クリックされた後のハンバーガーのマーク */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }

  /* クリックで表示されるメニュー：クリックされる前 */
 .nav {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    background-color: #fff;
    z-index: 998;
  }
  .nav ul li {
    margin-bottom: 30px;
	display: block;
    text-align: left;
  }
  .nav ul li a {
    text-decoration: none;
  }

  /* クリックで表示されるメニュー：クリックされた後 */
  .nav.show {
    opacity: 0.9;
    visibility: visible;
	background: #BBB;
	width: 50%;
  }
}


/*------------------------------------------------------------------------------

  Loading logo

------------------------------------------------------------------------------*/
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background:#FFF;
	text-align:center;
	color:#fff;
	display: none;
}
/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo img {
	margin: 0 auto;
	width: 200px;
}

/*------------------------------------------------------------------------------

  policy.html & thanks.html

------------------------------------------------------------------------------*/
.policy-area,
.thanks-area {
	background: #EFEFEF;
	padding: 60px 0;
	width: 100%;
	margin: 0 auto;
}
.policy-area .policy-inner,
.thanks-area .thanks-inner {
	max-width: 980px;
	margin: 0 auto;
}
.policy-area h2,
.thanks-area h2 {
	text-align: center;
	padding-bottom: 1rem;
}
.policy-area p,
.policy-area ol {
	text-align: left;
	line-height: 1.8;
}
.policy-area ol li {
	padding-bottom: 1rem;
}
.policy-maintxt {
	margin-top: 40px;
}
.thanks-maintxt {
	margin-top: 40px;
	background: #FFF;
	padding: 40px;
	text-align: left;
}
p.topReturnBtn {
	text-align: center;
}
p.topReturnBtn a {
	display: inline-block;
    padding: 16px 20px;
    background: #000;
    color: #FFF;
    border: none;
	border-radius: 0;
	margin: 20px 0;
}
p.topReturnBtn a:hover {
	opacity: 0.8;
	text-decoration: none;
}



.confirm-maintxt {
	background: #FFF;
	padding: 40px;
	font-size: 24px;
	font-weight: 800;
	max-width: 980px;
	margin: 0 auto;
	width: 	90%;
}
.confirm-maintxt form dl dt {
	font-weight: 800;
}
.confirm-maintxt form dl dd {
	padding: 20px 0;
	font-weight: 400;
}

p.confirm-txt {
	border: 1px solid #000;
	padding: 1rem;
	font-weight: 800;
}
.confirm-btn {
	margin-top: 4rem;
}
.confirm-btn ul li {
	display: inline-block;
}
.confirm-btn button[type="button"] {
	display: block;
    background: #FFF;
    color: #000;
    padding: 1rem 2rem;
    border: 1px solid #000;
	font-size: 16px;
}
.confirm-btn button[type="submit"] {
	display: block;
	background: #000;
    border-radius: 0;
    color: #FFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 16px;
    display: block;
	margin-left: 0.5rem;
}
.confirm-btn button[type="button"]:hover,
.confirm-btn button[type="submit"]:hover {
	opacity: 0.8;
}
