@charset "UTF-8";
/*
Theme Name: momiji
Author: Takahito Hayakawa
*/

/******************************************************************************
 * RESET
*******************************************************************************/

/* Reset box-model
   ========================================================================== */

* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/* Vertical rhythm
   ========================================================================== */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration)
   ========================================================================== */

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

/* Lists (definition)
   ========================================================================== */

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 1rem;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms
   ========================================================================== */

/**
 * Reset form fields to make them styleable
 * 1. Reset radio and checkbox to preserve their look in iOS.
 */

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type="checkbox"] {
  /* 1 */
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  /* 1 */
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove padding
 */

option {
  padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0; /* 1 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type="search"] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
  cursor: pointer;
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Table
   ========================================================================== */

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}


/*----------------------------------------
汎用クラス
-----------------------------------------*/

html{
	font-size:62.5%; height:100%;
	scroll-padding-top: 20rem;
}


body{
	font-family: "FOT-筑紫A丸ゴシック Std M" ,'Noto Sans JP',sans-serif;
	font-weight: 400;
	color:#333;
	background:#fff;
	margin:0;
	padding:0;
	height:100%;
	min-width:109rem;
	line-height:1;
	letter-spacing: .1rem;
}

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

.center{ text-align: center; margin-left: auto; margin-right: auto;}
.textCenter { text-align: center; margin-left: auto; margin-right: auto;}
.textRight { text-align: right; margin-left: auto; margin-right: auto;}
.textS{ font-size: 1.2rem;}
.textOrange{color: #FF8066;}
.noPadding{ padding: 0 !important;}
#fontplus-trial-banner{ display: none !important;}

.bold{font-family: "FOT-筑紫A丸ゴシック Std B" ,'Noto Sans JP',sans-serif;}
.en{ font-family: "HelveticaLTPro-Bold";}


a { -webkit-transition: 0.4s ease-in-out; -moz-transition: 0.4s ease-in-out; -o-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out;}
a:hover {opacity: 0.75; filter: alpha(opacity=75); -moz-opacity: 0.75; -ms-filter: "alpha(opacity=75)";}
a img { -webkit-transition: 0.4s ease-in-out; -moz-transition: 0.4s ease-in-out; -o-transition: 0.4s ease-in-out; transition: 0.4s ease-in-out;}
/*a:hover img {opacity: 0.75; filter: alpha(opacity=75); -moz-opacity: 0.75; -ms-filter: "alpha(opacity=75)";}*/

h1,h2,h3,h4,h5,dt,strong, .btn , th{ font-family: "FOT-筑紫A丸ゴシック Std B" ,'Noto Sans JP',sans-serif;}
.title h2{ text-align: center; font-size: 3rem; line-height: 4rem; position: relative; margin-bottom:4rem; display: inline-block; padding: 2rem 5rem; margin-left: auto; margin-right: auto;}
.title h2:before{ content:''; background: url(assets/images/common/title_b.png) no-repeat center; background-size: contain; width: 4.2rem; height: 4.2rem; position: absolute; top:0; left:0; }
.title h2:after{ content:''; background: url(assets/images/common/title_a.png) no-repeat center; background-size: contain; width: 4.2rem; height: 4.2rem; position: absolute; bottom: 0; right:0; }

h4{ font-size: 2.4rem; margin-bottom: 4rem;}



.wrap-box{
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex; 
	justify-content: space-between;
   
}

@media screen and ( min-width:769px) {
	.wrap-box.flex-start{
		justify-content: flex-start;
		gap:39px;
	}
}




.sp-only{
	display: none;
}

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

}

.btn{
	display: inline-block;
	border-radius: 10rem;
	background: #FF8066;
	color: #fff;
	width: auto;
	border: .2rem solid #FF8066;
	text-align: center;
	margin: auto;
	-webkit-transition: .4s;
	transition: .4s;
	font-size: 1.5rem;
	padding: 1rem 4em;
	box-sizing: border-box;
	opacity: 1;
	position: relative;
	line-height: 1;
	width: 100%;
}

.btn.sp-only{ display: none;}


svg.arrow , svg.blank{ width:.6rem; height:1rem; fill:#FFF; -webkit-transition: .4s; transition: .4s; }
.btn svg.arrow { position: absolute; right: 2rem; top: 50%; margin-top: -.5rem; width:.6rem; height:1rem; fill:#FFF; }
.btn svg.blank{ position: absolute; right: 2rem; top: 50%; margin-top: -.6rem; width:1.2rem; height: 1.2rem; fill:#FFF; }
.btn:hover{ background: #FFF; color:#FF8066; opacity: 1; }
.btn:hover svg.arrow , .btn:hover svg.blank{ fill:#FF8066; right:1.5rem; }

svg.blank



/* 画像遅延読み込み */

.lazyload{
filter:alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity:0;
}
.lazyloaded{
  filter:alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity:1;
  transition: all 0.5s;
}

/* clearfix */

.clear{ clear:both;}
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
* html>body .clearfix { display: inline-block; width: 100%; }
* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
	}


/* スクロールでフェードイン */

.fadein{
	filter:alpha(opacity=0);
	-ms-filter: "alpha(opacity=0)";
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity:0;
	zoom:1;
	transform: translate(0,5rem); 
	-webkit-transform: translate(0,5rem); 
	transition: .5s;
	
}
.fadein.scrollin{
	filter:alpha(opacity=1);
	-ms-filter: "alpha(opacity=100)";
	-moz-opacity:1;
	-khtml-opacity:1;
	opacity:1;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	z-index: 1;
	position: relative;
}


.box{ 
	width: 90%;
	min-width: 95rem;
	/*max-width: 118rem;*/
	max-width: 109rem;
	margin: 0 auto 10rem;
}


.box p , .box li , .box dd , .box td , .box th{ font-size: 1.5rem; line-height:3rem;}
.box p a{ color:#FF8066; text-decoration: underline; }
.bgPink{ background:#FFF9F7; width: 100%; padding: 6rem 0; margin: 0 auto 8rem;}
.box .box{ margin: 0 ; padding-top: 0;}

.link{ color:#FF8066; position: relative; padding-left: 2rem;}
.link:before{
	content: '';
	background-image: url(assets/images/common/arrow_orange.svg);
	position: absolute;
	left: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 1rem;
	height: 1rem;
	top: 50%;
	margin-top: -.5rem;
}


.inner p{ font-size: 1.5rem; line-height: 3rem; margin-bottom: 2rem;}
.fillWhite{ fill:#fff;}

ul#localnav dt{ font-size: 3rem; margin-bottom:1rem; }
ul#localnav dd{ font-size: 1.5rem; color: #FF8066; }
ul#localnav{ border-top: .1rem solid #b7b7b7; }
ul#localnav li{ border-bottom: .1rem solid #b7b7b7;}
#contents .box ul#localnav li{ margin-bottom: 0;}
ul#localnav li a{position: relative; display: block; padding-top: 2rem; padding-bottom: 2rem;}
ul#localnav li a:after{ content: url(assets/images/common/arrow.svg); background:#FF8066; padding:.5rem .5rem; line-height: 1; display: inline-block; width: 4rem; right: 1rem; position:absolute; top:calc( 50% - 1.2rem);}


#map { position: relative; padding-bottom: 50%; height: 0; overflow: hidden;}
#map iframe{ position: absolute; top: 0; left: 0; width: 100%; height: 100%;}


/*----------------------------------------
FOOTER
-----------------------------------------*/

footer{width: 100%; }
#footerTop{ border-top: .2rem solid #FF8066; padding: 4rem 5%; text-align: center;}
#footerTop figure{ width: 30%; margin: 0 auto 4rem;}
#footerTop p{ font-size: 1.5rem; line-height: 2.4rem; margin-bottom: 2rem;}
#footerBottom{background:#FF8066; color: #fff; padding:3rem 2rem;}
#footerBottom nav ul li { font-size: 1.6rem; margin-bottom: 3rem; width: 50%; text-align: left;}
#footerBottom nav > ul > li:first-child , #footerBottom nav > ul > li:nth-child(4) { width: 100%;}
#footerBottom nav ul li ul{ margin-top: 2rem;}
#footerBottom nav ul li ul li { margin-bottom: 1rem; font-size: 1.2rem; width: 100%;}
#footerBottom ul#sns{ text-align: center; margin: 2rem auto 4rem; justify-content: center;}
#footerBottom ul#sns li { width: 4rem; margin: 0 1rem;}
#footerBottom ul#sns li svg {fill:#fff;}
footer #footerBottom nav ul li li a{ position: relative; padding-left: 2rem;}
footer #footerBottom nav ul li li a:before{ content: '├'; position: absolute; left:0; top:50%; margin-top: -.5rem;}
footer #footerBottom nav ul li li:last-child a:before{ content: '└'; }
footer #footerBottom nav ul{ width: 100%; }



/*----------------------------------------
HEADER
-----------------------------------------*/
header{ background: #fff; width:100%; margin: 0; box-sizing: border-box; font-family: "FOT-筑紫A丸ゴシック Std B" ,'Noto Sans JP',sans-serif; position:fixed; z-index: 3; top:0; padding: 4%; top: -6.5rem; -webkit-transition: .4s; transition: .4s;}
header.fixed{ top: 0;}
header #logo img{ height:3rem; width: auto;}


#gnavi1 {margin: 4rem 0 2rem;}
#gnavi1 li { text-align: left; margin-bottom: 4rem; font-size: 2.4rem; width: 100%; }
#gnavi1 li a { color: #fff; font-size: 2.4rem; }
#gnavi2{ justify-content: flex-start; padding-bottom: 4rem;}
#gnavi2 li{ width: 4rem; margin-right: 2rem;}
#gnavi2 li svg{ fill:#fff;}


.drawer-overlay{display: none !important;}	
.drawer--right.drawer-open .drawer-hamburger{ op: 50%;  right: 0;}
.drawer-hamburger-icon::after, .drawer-hamburger-icon::before { top: -.8rem; }
.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before { height: .2rem; background-color:#FF8066; border-radius: 10rem; }
.drawer-hamburger { top: -.2rem; right: 0; position: absolute; box-sizing: border-box; width: 16%; padding:4% 6% 4% 4%; height: 100%; }
.drawer-open .drawer-hamburger-icon	{ margin-top: 1rem; }
.drawer-hamburger-icon:after { top: .8rem; }
.drawer-hamburger-icon { height: 50%; background: none; margin-top: .3rem; }
.drawer-open .drawer-hamburger-icon::after, .drawer-open .drawer-hamburger-icon::before { background: #fff; }
.drawer-nav { width: 100%; background-color: #FF8066; overflow-y: auto; padding: 4rem;}
.drawer--right .drawer-nav { right: -100%; }
.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before { height: .2rem; background-color:#FF8066; border-radius: 10rem; }

















@media screen and ( min-width:769px) and ( max-width:1180px){
	
}






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

html{scroll-padding-top: 8rem;}
body{min-width: inherit;}

.box { min-width: inherit;max-width: inherit; width:90%; margin: 0 5% 10rem;}
.box p , .box li , .box dd , .box td , .box th{ font-size: 1.2rem; line-height: 2.4rem;}
.bgPink { padding: 4rem 0; margin-bottom: 4rem; }
.bgOrange{ background: #FF8066; width: 100%;}


	
.table{overflow: auto; white-space: nowrap; -webkit-overflow-scrolling: touch;}
	
	
.textS { font-size: 1rem; line-height: 2rem; }

.link::before {
  width: .8rem;
  height: .8rem;
  margin-top: -.4rem;
}

.link {
  padding-left: 1.5rem;
}

#map {
padding-bottom: 100%;
}
	
	
	
}



@media screen and ( width:768px) {
	.drawer-hamburger { width: 10%; padding: 3%; }
	main {
    background-image: url(assets/images/common/footer_bg_tb.jpg);
	}
}



@media screen and ( min-width:769px) {
	
header {
  padding: 2rem;
  top: -8rem;
}

header #logo img {
  height: 4rem;
}

.drawer-hamburger {
  width: 3rem;
  padding: 0;
  height: 8rem;
  margin-right: 2rem;
}

.btn {
  padding: 1.5rem 4em;
  max-width: 36rem;
}

#footerTop figure {
  width: 15%;
}

.box {
  min-width: 99rem;
  max-width: 99rem;
  margin: 0 auto 12rem;
}


.drawer-nav {
  width: 30%;
}

.drawer-open .drawer-hamburger-icon {
	margin-top: 0;
	}

footer #footerBottom nav ul{ width: auto;}

#footerBottom nav ul li {
  width: 100%;
}

#footerBottom nav.wrap-box {
  justify-content: center;
}

#footerBottom nav.wrap-box > ul {
  margin: 0 4rem;
}


#footerBottom {
  padding: 4rem;
}


small {
  font-size: 1.2rem;
}



















}








