@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: 80%;
}

/**
 * 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: 0.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;
}
.box p.textS {
  font-size: 1.2rem;
}
.textOrange {
  color: #ff8066;
}
.textRed {
  color: #f00;
}
.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)";}*/

a.noLink {
  pointer-events: none;
}

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;
}

.sp-only {
  display: none;
}

.btn {
  display: inline-block;
  border-radius: 10rem;
  background: #fff;
  color: #ff8066;
  width: auto;
  border: 0.2rem solid #ff8066;
  text-align: center;
  margin: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 1.5rem;
  padding: 1.5rem 7rem;
  min-width: 24rem;
  box-sizing: border-box;
  opacity: 1;
  position: relative;
  line-height: 1;
  height: 5rem;
}

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

svg.arrow {
  width: 0.6rem;
  height: 1rem;
  fill: #ff8066;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn svg.arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  margin-top: -0.5rem;
  width: 0.6rem;
  height: 1rem;
  fill: #ff8066;
}
.btn:hover {
  background: #ff8066;
  color: #fff;
  opacity: 1;
}
.btn:hover svg.arrow {
  fill: #fff;
  right: 1.5rem;
}

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

.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: 0.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:before {
    content: "";
    display: inline-block;
    height: 12rem;
    margin-top: -12rem;
    vertical-align: top;
}
*/

.box p,
.box li,
.box dd,
.box td {
  font-size: 1.5rem;
  line-height: 3rem;
}

.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: -0.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: 0.1rem solid #b7b7b7;
}
ul#localnav li {
  border-bottom: 0.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: 0.5rem 0.5rem;
  line-height: 1;
  display: inline-block;
  width: 4rem;
  right: 1rem;
  position: absolute;
  top: calc(50% - 1.2rem);
}

#contents .box table {
  margin-left: auto;
  margin-right: auto;
  width: 80rem;
  border-top: 0.2rem dotted #ff8066;
}
#contents .box table tr {
  border-bottom: 0.2rem dotted #ff8066;
}
#contents .box table th {
  background: #fff9f7;
  color: #ff8066;
  text-align: center;
}
#contents .box table th,
#contents .box table td {
  vertical-align: middle;
  padding: 3rem;
  font-size: 1.5rem;
  line-height: 2.6rem;
}
#contents .box table td {
  text-align: left;
}
#contents .box table td p {
  margin: 0;
  font-size: 1.5rem;
}
#contents .box table td a,
#contents .box table td p a {
  color: #ff8066;
  text-decoration: underline;
}

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

main {
  background: url(assets/images/common/footer_bg.jpg) no-repeat center bottom
    #fff;
  background-size: contain;
  padding-bottom: 4rem;
  position: relative;
  padding-top: 1rem;
  z-index: 1;
}

/*----------------------------------------
HEADER
-----------------------------------------*/
#main {
  background: #000;
  width: 100%;
}
header {
  padding: 0 0 0 3rem;
  background: #fff;
  width: calc(100% - 4rem);
  margin: 0 2rem 0;
  box-sizing: border-box;
  border-radius: 1rem;
  min-width: 120rem;
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
  position: fixed;
  z-index: 10;
  top: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
header.none {
  top: -20rem;
}
header #logo {
  margin-right: 2rem;
}

header #logo figure.wrap-box {
  align-items: center;
}
header #logo figure img {
  height: 5.4rem;
  width: auto;
}
header #logo figure figcaption {
  font-size: 3rem;
  text-align: center;
  margin-left: 2rem;
  letter-spacing: 0.5rem;
}
header #logo figure figcaption span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3rem;
  line-height: 1.2;
}
header.wrap-box {
  align-items: center;
}
#gnavi1 > li {
  border-left: 0.1rem solid #efefef;
  width: 13rem;
  color: #ff8066;
  text-align: center;
  margin: 0;
}
#gnavi1 > li > a {
  display: block;
  background-size: contain;
  background-position: center;
  height: 12rem;
  padding-top: 8.8rem;
  box-sizing: border-box;
  font-size: 1.4rem;
}
#gnavi1 > li:first-child > a {
  background-image: url(assets/images/common/menu01.png);
}
#gnavi1 > li:nth-child(2) > a {
  background-image: url(assets/images/common/menu02.png);
}
#gnavi1 > li:nth-child(3) > a {
  background-image: url(assets/images/common/menu03.png);
}
#gnavi1 > li:nth-child(4) > a {
  background-image: url(assets/images/common/menu04.png);
}
#gnavi1 > li:nth-child(5) > a {
  background-image: url(assets/images/common/menu05.png);
  font-size: 1.3rem;
  line-height: 1.5rem;
  padding-top: 8rem;
}
#gnavi1 > li:nth-child(6) > a {
  background-image: url(assets/images/common/menu06.png);
}
#gnavi1 > li:last-child > a {
  background-image: url(assets/images/common/menu07.png);
}

header.fixed {
  min-width: inherit;
  width: 100%;
  margin: 0;
  height: 7rem;
  padding: 0 0 0 2rem;
  position: fixed;
  border-radius: 0;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  top: -20rem;
  left: 0;
  min-width: 109rem;
}
_::-webkit-full-page-media,
_:future,
:root header.fixed #logo {
  width: 20rem;
}
header.fixed2 {
  top: 0;
  opacity: 1;
}
header.fixed #logo figure {
  align-items: center;
}
header.fixed #logo figure figcaption {
  font-size: 2.4rem;
  margin-left: 1.5rem;
}
header.fixed #logo figure figcaption span {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: none;
}
header.fixed #logo figure img {
  height: 4.8rem;
  width: auto;
}
header.fixed #gnavi1 > li > a {
  background: none; /*display: inline-block; height: 7rem; padding-top:2.5rem;*/
  display: inline;
  height: auto;
  padding-top: 0;
  color: #333;
  padding-bottom: 2rem;
}
header.fixed #gnavi1 > li > a br {
  display: none;
}
header.fixed #gnavi1 > li {
  border: none;
  width: auto;
  margin: 0 2rem;
}

/* メガメニュー */
.mega_btn {
  cursor: pointer;
}
.mega_menu {
  width: auto;
  display: none;
  position: absolute;
  background: #ff8066;
  padding: 2rem 2rem 1rem;
  border-radius: 1rem;
  margin-left: -4.5rem;
}
#gnavi1 > li:nth-child(3) .mega_menu {
  margin-left: -4rem;
}
#gnavi1 > li:nth-child(4) .mega_menu {
  margin-left: -2.5rem;
}
#gnavi1 > li:nth-child(5) .mega_menu {
  margin-left: -3rem;
}

.mega_menu:before {
  content: "";
  position: absolute;
  top: -1.8rem;
  left: 50%;
  margin-left: -1rem;
  border: 1rem solid transparent;
  border-bottom: 1rem solid #ff8066;
}

.mega_menu li {
  text-align: left;
  margin: 0 0 1rem;
}
.mega_menu li a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
#drawer-nav.wrap-box #gnavi1 .mega_menu ul.wrap-box {
  align-items: baseline;
}

.mega_menu li a svg {
  width: 0.6rem;
  height: 1rem;
  margin-right: 0.8rem;
  fill: #fff;
}
#gnavi1 > li.mega_btn a svg.arrow {
  display: none;
}
header.fixed2 .mega_menu {
  margin-left: -8rem;
  margin-top: 2rem;
}
header.fixed2 #gnavi1 > li:nth-child(3) .mega_menu {
  margin-left: -6.5rem;
}
header.fixed2 #gnavi1 > li:nth-child(4) .mega_menu {
  margin-left: -3rem;
}
header.fixed2 #gnavi1 > li:nth-child(5) .mega_menu {
  /* margin-left: -5rem; */
}

@media screen and (min-width: 769px) and (max-width: 1180px) {
  header.fixed #gnavi1 > li {
    margin: 0 1rem;
  }
}

#top #main {
  height: 100%;
}

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

#footerLink {
  padding-top: 35%;
  margin-bottom: 0;
}
#footerLink .wrap-box li {
  width: 25%;
  padding: 0 1rem;
}
#footerLink .wrap-box li a {
  background: #fff;
  border-radius: 1rem;
  display: block;
  padding: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
#footerLink .wrap-box li a dt {
  font-size: 1.4rem;
  color: #ff8066;
  margin-bottom: 1rem;
  line-height: 1;
}
#footerLink .wrap-box li a dt.lock img {
  width: 1.3rem;
  height: auto;
  margin-right: 0.5rem;
}
#footerLink .wrap-box li a dd {
  font-size: 2rem;
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
  position: relative;
}
#footerLink .wrap-box li a dd svg.arrow {
  right: 0;
  position: absolute;
  top: 50%;
  margin-top: -0.2rem;
}
#footerLink .wrap-box li:last-child dd {
  font-size: 1.8rem;
  letter-spacing: -0.2rem;
}
#footerLink .wrap-box li a:hover dd svg.arrow {
  right: -1rem;
}

footer {
  background: #ff8066;
  color: #fff;
  padding: 4rem 4rem 2rem;
  position: relative;
  z-index: 1;
}

#footerTop {
  border-bottom: 0.1rem solid #ffbfb2;
  margin-bottom: 4rem;
}
#footerLeft {
  width: 30rem;
}

footer #footerTop svg {
  fill: #fff;
}

footer #footerTop figure.wrap-box {
  margin-bottom: 2rem;
  justify-content: flex-start;
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
}
footer #footerTop figure img {
  width: 4.6rem;
  margin-right: 2rem;
}
footer #footerTop figure figcaption {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 0.5rem;
}
footer #footerTop figure figcaption span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3rem;
  line-height: 1.5;
}
#footerLeft p {
  font-size: 1.2rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
#footerLeft .btn {
  color: #fff;
  background: #ff8066;
  border: 0.2rem solid #fff;
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 2rem;
}
#footerLeft .btn:hover {
  background: #fff;
  color: #ff8066;
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -ms-filter: "alpha(opacity=100)";
}
#footerLeft ul li {
  margin-right: 1.5rem;
}
#footerLeft ul li a svg {
  width: 3rem;
}
#footerLeft ul.wrap-box {
  justify-content: flex-start;
}

footer figure dt {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "見出ゴMB31";
}
footer figure dd {
  font-size: 1.2rem;
  ine-height: 2rem;
}
footer small {
  font-size: 1.2rem;
}

footer #footerRight {
  width: calc(100% - 39rem);
}
footer #footerRight dl {
  margin-bottom: 1rem;
  width: 33%;
  max-width: 25rem;
}
footer #footerRight dl:last-child {
  margin-right: 0;
}
footer #footerRight dt {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
}
footer #footerRight dd {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
footer #footerRight dd li {
  margin-bottom: 1rem;
  line-height: 2rem;
}

#footer-nav.wrap-box {
  justify-content: flex-end;
}
footer #footerBottom {
  margin-bottom: 2rem;
}
footer #footerBottom h3 {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
footer #footerBottom dl {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}
footer #footerBottom dl dd a {
  text-decoration: underline;
}
footer #footerBottom dt {
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
  margin-right: 2rem;
}
footer #footerBottom .bnr {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  color: #000;
  font-family: "FOT-筑紫A丸ゴシック Std B", "Noto Sans JP", sans-serif;
}
footer #footerBottom .bnr figure {
  align-items: center;
}
footer #footerBottom .bnr img {
  width: 3rem;
  margin-right: 1rem;
}

/*----------------------------------------
SIDE
-----------------------------------------*/

#side {
  position: fixed;
  right: 0;
  bottom: 12rem;
  z-index: 3;
}
#side li {
  width: 4.7rem;
  margin-top: 2rem;
  text-align: center; /* -ms-writing-mode: tb-rl;*/
  　writing-mode: vertical-rl;
}
#side li a {
  display: inline-block;
  border-radius: 1rem 0 0 1rem;
  color: #fff;
  font-size: 1.8rem;
  padding: 2rem 1.5rem;
  line-height: 2.2rem;
  width: 5rem;
  text-align: center;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
#side li:first-child a {
  background: #ff8066;
}
#side li:last-child a {
  background: #00b900;
}
#side li:last-child a img {
  width: 2.4rem;
  height: auto;
  margin: 0.5rem auto;
  max-width: inherit;
  text-align: center;
  margin-left: -0.2rem;
}

@media screen and (min-width: 769px) {
  header button {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 4%;
    min-width: inherit;
  }

  header #logo {
    padding: 0;
  }
  header.fixed {
    min-width: inherit;
  }

  /* メガメニュー */

  #gnavi1 > li.sp-only {
    display: inherit;
  }

  #gnavi1 .mega_btn {
    padding-bottom: 0;
  }

  #gnavi1 .mega_btn .mega_menu {
    position: static;
    display: none;
    padding: 2rem 0 2rem 2rem;
    margin-top: 0;
  }
  #gnavi1 .mega_btn .bgImg {
    display: none;
  }
  #gnavi1 .mega_menu .child {
    display: block;
  }
  #gnavi1 .mega_menu .child li {
    width: 100%;
    margin-bottom: 2rem;
  }
  #gnavi1 .mega_menu .child li:last-child {
    margin-bottom: 0;
  }
  #gnavi1 .mega_menu .child li a {
    display: block;
  }

  #gnavi1 .mega_menu li a span {
    font-size: 1rem;
  }

  #logo img {
    width: 100%;
  }

  #logo {
    width: 12%;
  }

  .drawer-overlay {
    display: none !important;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    op: 50%;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
    height: 0.3rem;
    background-color: #000;
  }

  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
    top: 0;
  }

  .drawer-hamburger {
    top: -0.2rem;
    right: 0;
    position: absolute;
    box-sizing: border-box;
    width: 14%;
    padding: 4%;
    height: 100%;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }

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

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

  .drawer-hamburger-icon:after {
    top: 100%;
  }

  .drawer-hamburger-icon {
    height: 50%;
    background: none;
  }

  .drawer-nav {
    width: 80%;
    background-color: #ff8066;
    overflow-y: auto;
  }

  .drawer-open .drawer-hamburger-icon::after,
  .drawer-open .drawer-hamburger-icon::before {
    background: #fff;
  }

  .drawer--right .drawer-nav {
    right: -80%;
  }

  #gnavi1 li .en {
    color: #fff;
  }

  #gnavi1 {
    margin: 3rem 0 0;
  }
  #gnavi1 li {
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #000;
    width: 100%;
    padding: 0;
  }

  #gnavi2 .mega_menu#mega_menuMypage {
    display: inherit !important;
  }

  header #gnavi2 li a {
    background: #fff;
    color: #ff8066;
    width: 100%;
    border-radius: 1rem;
  }

  header #gnavi2 li {
    margin-left: 0;
    width: 100%;
  }

  #gnavi2 .mega_menu {
    display: inherit !important;
    background: none;
    padding: 0;
    position: inherit;
    margin-top: 0;
  }
  header #gnavi2 li li {
    width: 48%;
  }
  header #gnavi2 li li a {
    color: #000;
    padding: 1.5rem 0;
    line-height: 1.5rem;
  }
  header #gnavi2 li li:last-child a {
    font-size: 1.2rem;
  }

  #gnavi1 > li.mega_btn > a {
    pointer-events: none;
  }

  header #gnavi2 {
    margin-left: 0;
    margin-bottom: 2rem;
  }

  header .sns li {
    width: 4rem;
    margin-right: 1rem;
  }
  header .sns li svg {
    fill: #fff;
  }

  #gnavi2 li a {
    font-size: 0.8rem;
  }

  #gnavi2 li a .en {
    color: #000;
    font-size: 2rem;
  }

  header ul#gnavi2.wrap-box {
    width: 100%;
  }

  .drawer-overlay {
    display: none !important;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    op: 50%;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
    height: 0.2rem;
    background-color: #ff8066;
    border-radius: 10rem;
  }

  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
    top: -0.8rem;
  }
  .drawer-hamburger-icon::after {
    top: 0.8rem;
  }
  .drawer-hamburger-icon {
    margin-top: 0.3rem;
  }

  .drawer-hamburger {
    top: -0.2rem;
    right: 0;
    position: absolute;
    box-sizing: border-box;
    width: 14%;
    padding: 4%;
    height: 100%;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }

  .drawer-nav {
    width: 100%;
    background-color: #fff;
    overflow-y: auto;
    padding-bottom: 6rem;
  }
  .drawer-open .fixed .drawer-hamburger-icon {
    background: #fff;
  }
  .drawer-open .drawer-hamburger-icon::after,
  .drawer-open .drawer-hamburger-icon::before {
    background: #ff8066;
  }

  .drawer--right .drawer-nav {
    right: -100%;
  }
}

/*
@media screen and ( min-width:769px) and ( max-width:990px){
	header{padding: 2%;}
	#logo{width: 10%;}
	#logo img{ width: 100%;}
	.drawer-hamburger {
    width: 10%;
    padding: 3%;
}

}
*/

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

  html {
    scroll-padding-top: 7rem;
  }
  .btn {
    height: auto;
    padding: 1.2rem 6rem;
    width: auto;
    min-width: inherit;
    font-size: 1.2rem;
    line-height: 1;
  }

  header {
    padding: 0 0 0 1rem;
    width: calc(100% - 2rem);
    min-width: inherit;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    top: 1rem;
    height: 6rem;
    left: 1rem;
  }
  .box {
    min-width: inherit;
    max-width: inherit;
  }
  header #logo {
    width: auto;
    margin-right: 0;
  }
  header #logo figure.wrap-box {
    justify-content: flex-start;
  }
  header #logo img {
    height: 3.5rem;
  }
  header #logo figure img {
    height: 3.5rem;
  }
  header #logo figure figcaption span {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.23rem;
  }
  header #logo figure figcaption {
    font-size: 1.8rem;
    text-align: left;
    margin-left: 1rem;
    margin-top: 0.1rem;
    letter-spacing: 0.3rem;
  }
  header #logo figure.wrap-box {
    align-items: center;
  }

  #gnavi1 {
    margin: 4rem 0 2rem;
  }
  #gnavi1 > li > a {
    background-size: 10rem;
    height: auto;
    background-repeat: no-repeat;
    padding: 2rem 2rem 2rem 10rem;
    color: #ff8066;
    font-size: 1.8rem;
    background-position: left top -0.8rem;
  }

  #gnavi1 > li {
    text-align: left;
  }
  #gnavi1 > li:nth-child(5) > a {
    padding-top: 2rem;
    font-size: 1.8rem;
    line-height: 1;
  }
  #gnavi1 > li:nth-child(5) > a br {
    display: none;
  }

  #gnavi1 .mega_menu {
    margin-left: auto !important;
  }
  #gnavi1 .mega_btn .mega_menu {
    position: relative;
    margin: 0 auto;
    width: 90%;
    top: 1rem;
  }
  #gnavi1 > li.mega_btn a svg.arrow {
    display: inline;
    margin-left: 1rem;
    transform: rotate(90deg);
    width: 3rem;
    height: 1.2rem;
  }

  .bgOrange {
    background: #ff8066;
    width: 100%;
  }

  header #gnavi2 li {
    text-align: center;
  }
  header #gnavi2 {
    margin-bottom: 1rem;
  }

  #side {
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 10;
  }

  #side li {
    width: 49%;
    margin-top: 0;
  }

  #side li a {
    border-radius: 0.5rem;
    font-size: 1.5rem;
    padding: 0;
    width: 100%;
    height: 3.6rem;
    align-items: center;
    display: flex;
    justify-content: center;
    padding-bottom: 0.2rem;
  }

  #side li:last-child a img {
    width: 2rem;
    margin-left: 0;
    margin: 0 0.5rem;
    margin-top: 0.1rem;
  }

  #side > ul {
    display: flex;
    justify-content: space-between;
  }

  #side ul li a br {
    display: none;
  }
  .box p,
  .box li,
  .box dd,
  .box td {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
  .bgPink {
    padding: 4rem 0;
    margin-bottom: 4rem;
  }

  .title h2::before {
    width: 3rem;
    height: 3rem;
  }
  .title h2::after {
    width: 3rem;
    height: 3rem;
  }
  .title h2 {
    padding: 1rem 3.5rem;
    font-size: 2rem;
    line-height: 3.6rem;
    margin-bottom: 3rem;
  }

  #footerLink {
    padding: 8rem auto 0;
    margin-bottom: 1rem;
  }
  main {
    background: url(assets/images/common/footer_bg_sp.jpg) no-repeat center
      bottom #fff;
    background-size: contain;
    padding-bottom: 1rem;
  }
  header #footerLink {
    display: none !important;
    padding-top: 0;
    padding: 2rem 2rem 0;
    margin: 0;
  }
  .drawer-open header #footerLink {
    display: inherit !important;
  }
  #footerLink .wrap-box li {
    width: 48%;
    padding: 0;
    margin-bottom: 1rem;
  }
  #footerLink .wrap-box li a {
    border-radius: 0.5rem;
    padding: 1rem;
  }
  #footerLink .wrap-box li a dt {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  #footerLink .wrap-box li a dd {
    font-size: 1.2rem;
    color: #333;
  }
  #footerLink .wrap-box li:last-child dd,
  #footerLink .wrap-box li:nth-child(3) dd {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  #footerLink .wrap-box li a dd svg.arrow {
    margin-top: -0.3rem;
    width: 0.4rem;
    height: 0.8rem;
  }
  #footerLink .wrap-box li a dt.lock img {
    width: 1rem;
  }

  footer {
    padding: 4rem 5% 9rem;
    text-align: center;
  }

  body {
    min-width: inherit;
  }
  .box {
    width: 90%;
    margin: 0 5% 6rem; /*  margin: 0 5% 4rem; */
  }

  .table {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #contents .box table {
    width: 100%;
  }
  #contents .box table th,
  #contents .box table td {
    padding: 2rem 0;
    line-height: 2rem;
    display: block;
    font-size: 1.2rem;
    text-align: center;
  }

  #contents .box table.limit-table th,
  #contents .box table.limit-table td {
    display: table-cell;
    white-space: nowrap;
  }

  #contents .box table th {
    font-size: 1.5rem;
  }
  #contents .box table td {
    margin-bottom: 2rem;
  }
  #contents .box table td a,
  #contents .box table td p a {
    color: #ff8066;
  }

  .textS {
    font-size: 1rem;
    line-height: 2rem;
  }

  .link::before {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: -0.4rem;
  }

  .link {
    padding-left: 1.5rem;
  }

  #footerLeft {
    width: 100%;
    text-align: center;
    padding-bottom: 4rem;
  }

  footer #footerTop figure.wrap-box {
    justify-content: center;
  }

  #footerLeft ul.wrap-box {
    justify-content: center;
  }

  footer #footerRight {
    display: none;
  }

  footer #footerBottom .left {
    width: 100%;
  }

  footer #footerBottom dd {
    font-size: 1.2rem;
    line-height: 2.4rem;
    text-align: center;
    margin: 0 auto;
  }

  footer #footerBottom dl {
    margin-bottom: 4rem;
    text-align: center;
  }

  footer #footerBottom dt {
    margin-right: auto;
    text-align: center;
    margin: 0 auto 2rem;
    display: block;
    width: 100%;
  }

  footer #footerBottom .bnr {
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    width: 100%;
  }

  footer #footerBottom .bnr figure {
    justify-content: center;
  }

  footer #footerBottom {
    margin-bottom: 4rem;
  }

  #footerLeft .btn {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 2rem;
  }

  #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);
  }
}

#mori header {
  display: none;
}

#mori #main h2 {
  margin-top: 0;
}
/*
#mori #side li:nth-child(2){
	display: none;
}
*/
