﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 * 2. HEADER
 * 3. CONTENTS
 * 4. FOOTER
 * 5. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    background: #fff;
	color: #222222;
	line-height: 2;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
}

a {
    color: #00bffe;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #00bffe;
    text-decoration: underline;
}
a:focus {
  outline: none !important;
  overflow: hidden;
  text-decoration: none;
}
*:focus {
    outline: none;
}

a[href^="tel:"] {
	color: #222222;
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	color: #222222;
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

.small {
    display: inline-block;
    font-size: 1.4rem;
}
@media (max-width: 1024px) {
	.small {
		font-size: calc(12px + 2 * (100vw - 320px) / 704);
	}
}

ul,
ul li
ol,
ol li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}
@media (max-width: 480px) {
    .sp-48-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 1.1  Margin
 * ------------------------------*/
.mt-10 { margin-top: -1rem !important; }
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 0.5rem !important; }
.mt10 { margin-top: 1rem !important; }
.mt15 { margin-top: 1.5rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }
.mt40 { margin-top: 4rem !important; }
.mt50 { margin-top: 5rem !important; }
.mt60 { margin-top: 6rem !important; }
.mt70 { margin-top: 7rem !important; }
.mt80 { margin-top: 8rem !important; }
.mt90 { margin-top: 9rem !important; }
.mt100 { margin-top: 10rem !important; }

.mb-10 { margin-bottom: -1rem !important; }
.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb15 { margin-bottom: 1.5rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }
.mb40 { margin-bottom: 4rem !important; }
.mb50 { margin-bottom: 5rem !important; }
.mb60 { margin-bottom: 6rem !important; }
.mb70 { margin-bottom: 7rem !important; }
.mb80 { margin-bottom: 8rem !important; }
.mb90 { margin-bottom: 9rem !important; }
.mb100 { margin-bottom: 10rem !important; }

@media (max-width: 960px) {
    .mt10-md {
        margin-top: 1rem !important;
    }
    .mt20-md {
        margin-top: 2rem !important;
    }
    .mt30-md {
        margin-top: 3rem !important;
    }
    .mt40-md {
        margin-top: 4rem !important;
    }
    .mt50-md {
        margin-top: 5rem !important;
    }
    .mt60-md {
        margin-top: 6rem !important;
    }
    .mt70-md {
        margin-top: 7rem !important;
    }
    .mt80-md {
        margin-top: 8rem !important;
    }
    .mb10-md {
        margin-bottom: 1rem !important;
    }
    .mb20-md {
        margin-bottom: 2rem !important;
    }
    .mb30-md {
        margin-bottom: 3rem !important;
    }
    .mb40-md {
        margin-bottom: 4rem !important;
    }
    .mb50-md {
        margin-bottom: 5rem !important;
    }
    .mb60-md {
        margin-bottom: 6rem !important;
    }
    .mb70-md {
        margin-bottom: 7rem !important;
    }
    .mb80-md {
        margin-bottom: 8rem !important;
    }
}
@media (max-width: 767px) {
    .mt-10-xs {
        margin-top: -1rem !important;
    }
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt05-xs {
        margin-top: 0.5rem !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt25-xs {
        margin-top: 2.5rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb-10-xs {
        margin-bottom: -1rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb05-xs {
        margin-bottom: 0.5rem !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb25-xs {
        margin-bottom: 2.5rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 960px) {
     .text-left-md {
        text-align: left !important;
    }
    .text-center-md {
        text-align: center !important;
    }
    .text-right-md {
        text-align: right !important;
    }
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-zenmaru {
	font-family: "Zen Maru Gothic", sans-serif !important;
	font-weight: 400 !important;
	font-style: normal !important;
}
.txt-zenmaru.b50 {
	font-weight: 500 !important;
}
.txt-zenmaru.b70 {
	font-weight: 700 !important;
}

.f10 { font-size: 1rem !important; }
.f11 { font-size: 1.1rem !important; }
.f12 { font-size: 1.2rem !important; }
.f13 { font-size: 1.3rem !important; }
.f14 { font-size: 1.4rem !important; }
.f15 { font-size: 1.5rem !important; }
.f16 { font-size: 1.6rem !important; }
.f17 { font-size: 1.7rem !important; }
.f18 { font-size: 1.8rem !important; }
.f19 { font-size: 1.9rem !important; }
.f20 { font-size: 2rem !important; }
.f21 { font-size: 2.1rem !important; }
.f22 { font-size: 2.2rem !important; }
.f23 { font-size: 2.3rem !important; }
.f24 { font-size: 2.4rem !important; }
.f25 { font-size: 2.5rem !important; }
.f50 { font-size: 5rem !important; }
@media (max-width: 960px) {
    .f18, .f19 {
        font-size: 1.6rem !important;
    }
    .f20, .f21 {
        font-size: 1.7rem !important;
    }
    .f22, .f23 {
        font-size: 1.8rem !important;
    }
    .f24, .f25 {
        font-size: 2rem !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 1.2rem !important;
    }
    .f15, .f16 {
        font-size: 1.3rem !important;
    }
    .f17, .f18 {
        font-size: 1.4rem !important;
    }
    .f19, .f20, .f21 {
        font-size: 1.5rem !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 1.6rem !important;
    }
    .f50 {
        font-size: 3rem !important;
    }
    .f25-xs {
        font-size: 2.5rem !important;
    }
    .f24-xs {
        font-size: 2.4rem !important;
    }
    .f23-xs {
        font-size: 2.3rem !important;
    }
    .f22-xs {
        font-size: 2.2rem !important;
    }
    .f21-xs {
        font-size: 2.1rem !important;
    }
    .f20-xs {
        font-size: 2rem !important;
    }
    .f19-xs {
        font-size: 1.9rem !important;
    }
    .f18-xs {
        font-size: 1.8rem !important;
    }
    .f17-xs {
        font-size: 1.7rem !important;
    }
    .f16-xs {
        font-size: 1.6rem !important;
    }
    .f15-xs {
        font-size: 1.5rem !important;
    }
    .f14-xs {
        font-size: 1.4rem !important;
    }
    .f13-xs {
        font-size: 1.3rem !important;
    }
    .f12-xs {
        font-size: 1.2rem !important;
    }
    .f11-xs {
        font-size: 1.1rem !important;
    }
    .f10-xs {
        font-size: 1rem !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.5;
    }
}

.section-ttl {
	width: 424px;
	height: 114px;
    font-size: 3rem;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	position: absolute;
	left: 30px;
	top: -33px;
	background: url(../image/ttl.png) 0 0 no-repeat;
	background-size: contain;
	color: #fff;
	letter-spacing: 0.05em;
}
.section-ttl strong {
	display: inline-block;
	transform: rotate(-4deg);
	padding-top: 3.2rem;
}
.section-ttl span {
	display: inline-block;
	font-size: 4rem;
	vertical-align: -3%;
	margin: 0 0.3rem;
}
.section-sub {
	margin: 0 auto 4rem;
}
.section-sub.coming-soon {
	margin-bottom: 6rem;
}
@media (max-width: 1024px) {
    .section-ttl {
        font-size: calc(18px + 12 * (100vw - 320px) / 704);
    }
    .section-ttl span {
    	font-size: calc(25px + 15 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
	.section-ttl strong {
		padding-top: 3.7rem;
	}
}
@media (max-width: 767px) {
	.section-ttl {
		width: 300px;
		height: 81px;
		top: -26px;
	}
	.section-ttl strong {
		padding-top: 2.3rem;
	}
	.section-sub {
		margin-bottom: 2.5rem;
		width: 60vw;
	}
	.section-sub.coming-soon {
		width: 52vw;
		margin-bottom: 2.5rem;
	}
}
@media (max-width: 480px) {
	.section-ttl {
		width: 250px;
		height: 67px;
		top: -20px;
		left: 15px;
	}
	.section-ttl strong {
		padding-top: 1.9rem;
	}
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100vw;
    min-height: 998px;
    padding: 0;
    margin: 0;
    background: url(../image/hd-circle.png) bottom center no-repeat;
    background-size: cover;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
@media (max-width: 960px) {
	header {
		min-height: 808px;
	}
}
@media (max-width: 767px) {
	header {
		min-height: 748px;
	}
}
@media (max-width: 480px) {
	header {
		min-height: 550px;
	}
}
@media (max-width: 390px) {
	header {
		min-height: calc(520 / 390 * 100vw);
	}
}
@media (max-width: 320px) {
	header {
		min-height: 460px;
	}
}

header .hd-ttl {
	width: 100vw;
    height: 374px;
    background: url(../image/hd-obi.png) bottom center no-repeat;
    background-size: 100% 100% !important;
    text-align: center;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.6rem;
	margin: 0;
	padding-top: 6rem;
	box-sizing: border-box;
}
header .hd-sub-box {
	width: 804px;
	height: 355px;
	margin: 0 auto;
	background: url(../image/pict.png) top center no-repeat;
	background-size: cover;
}
header .hd-sub {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 2.2;
    padding-top: 3rem;
}
header .hd-sub strong {
	display: inline-block;
	font-size: 2.5rem;
	font-weight: 600;
}
@media (max-width: 1024px) {
	header .hd-ttl {
		font-size: calc(16px + 20 * (100vw - 320px) / 704);
	}
	header .hd-sub {
		font-size: calc(16px + 6 * (100vw - 320px) / 704);
	}
	header .hd-sub strong {
		font-size: calc(18px + 7 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	header .hd-sub-box {
		width: 700px;
		height: 309px;
	}
}
@media (max-width: 767px) {
	header .hd-ttl {
		height: 150px;
		background-size: cover;
		padding-top: 2.5rem;
	}
	header .hd-sub-box {
		width: 519px;
		height: 400px;
		background: url(../image/pict-sp.png) bottom center no-repeat;
		background-size: cover;
	}
	header .hd-sub {
		padding-top: 0;
	}
}
@media (max-width: 480px) {
	header .hd-ttl {
    	background: url(../image/hd-obi-sp.png) bottom center no-repeat;
    	background-size: 100% 100%;
    	padding-left: 1rem;
    }
	header .hd-sub-box {
		width: calc(430 / 480 * 100vw);
		height: calc(331 / 480 * 100vw);
	}
	header .hd-sub {
		position: relative;
		top: -5px;
		line-height: 1.9;
	}
}
@media (max-width: 320px) {
	header .hd-ttl {
		font-size: 1.5rem;
	}
}

header .logo {
    max-width: 945px;
    padding: 0;
    margin: 0 auto -12rem;
    position: relative;
    top: -170px;
}
@media (max-width: 960px) {
    header .logo {
    	max-width: 650px;
    }
}
@media (max-width: 767px) {
    header .logo {
    	max-width: 80vw;
    	top: -50px;
    	margin-bottom: -3rem;
    }
}
@media (max-width: 480px) {
    header .logo {
    	top: -72px;
    	margin-bottom: -4rem;
    }
}

/*-------------------------------
 * 3. CONTENTS
 * ----------------------------*/
.parallax {
	width: 100%;
	height: 100%;
	position: relative;
}
.parallax_base {
	background: url(../image/base.jpg) top center no-repeat;
	background-size: cover;
}
.parallax_mask {
	background: url(../image/mask.png) top center repeat-y;
    background-size: contain;
}
@media (max-width: 1024px) {
	.parallax_mask {
		background: url(../image/mask-lg.png) top center repeat-y;
    	background-size: contain;
	}
}
@media (max-width: 480px) {
	.parallax_base {
		background-repeat: repeat;
		background-size: contain;
	}
	.parallax_mask {
		background: url(../image/mask-sp.png?=v2) top center repeat-y;
    	background-size: contain;
	}
}

main {
    margin: 0;
    padding: 0;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}
.wrap.bg {
	background: rgba(255,255,255,0.9);
	border-radius: 30px;
	box-shadow: 0px 3px 20px 0px rgba(151, 120, 151, 0.35);
	padding: 10rem 8rem 3.5rem;
}
.wrap.bg.coming-soon {
	padding: 15rem 8rem 13rem;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 1200px) {
    .wrap.bg {
    	 max-width: 85vw;
    }
}
@media (max-width: 1100px) {
    .wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 960px) {
    .wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .wrap.bg {
    	padding: 10rem 5rem 3.5rem;
    }
    .wrap.bg.coming-soon {
    	padding: 15rem 5rem 13rem;
    }
}
@media (max-width: 767px) {
    .wrap {
        max-width: 100%;
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .wrap.bg {
    	padding: 7rem 2rem 1rem;
    	border-radius: 10px;
    }
    .wrap.bg.coming-soon {
    	padding: 7.5rem 2rem 2rem;
    }
}
@media (max-width: 480px) {
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .wrap.bg {
    	 max-width: 90vw;
    }
}

section {
    margin: 5rem 0 10rem;
}
@media (max-width: 767px) {
    section {
        margin: 3rem 0 4rem;
    }
}

.img {
	margin: 4rem auto;
	max-width: 80%;
}
@media (max-width: 767px) {
	.img {
		margin: 2rem auto;
	}
}
@media (max-width: 480px) {
	.img {
		max-width: 100%;
	}
}

/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 6rem 0 5rem;
    background: rgba(0,0,0,0.83);
    color: #fff;
}
footer .txt {
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
}
footer .sns {
	width: 100px;
	margin: 5rem auto;
}
footer .copy {
    margin: 0;
    font-size: 1.6rem;
    text-align: center;
}
@media (max-width: 1024px) {
	footer .txt {
		font-size: calc(14px + 6 * (100vw - 320px) / 704);
	}
    footer .copy {
        font-size: calc(13px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	footer {
		padding: 4rem 0 3rem;
	}
	footer .sns {
		width: 50px;
		margin: 3rem auto;
	}
}

/*-------------------------------
 * 5. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.8;
  transition: 0.5s;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
