@charset "UTF-8";
/*
 * project name
*/
@import url("https://use.fontawesome.com/releases/v5.10.2/css/all.css");
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*==　ハンバーガーメニュー　==*/
.menuBtn {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  cursor: pointer;
  z-index: 9999;
}
.menuBtn span {
  width: 26px;
  height: 1px;
  display: block;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -1px;
  position: relative;
  background: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.menuBtn span:before, .menuBtn span:after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  content: "";
  width: 13px;
  height: 1px;
  display: block;
  background: #FFF;
  position: absolute;
}
.menuBtn span:before {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  opacity: 1;
}
.menuBtn span:after {
  -webkit-transform: translateX(13px);
          transform: translateX(13px);
  opacity: 1;
}
.menuBtn span.top {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.menuBtn span.middle {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.menuBtn span.bottom {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.is-open.menuBtn span.middle:before {
  -webkit-transform: translateX(-13px);
          transform: translateX(-13px);
  opacity: 0;
}
.is-open.menuBtn span.middle:after {
  -webkit-transform: translateX(39px);
          transform: translateX(39px);
  opacity: 0;
}
.is-open.menuBtn span.top {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.is-open.menuBtn span.top:before {
  -webkit-transform: translateX(2px) rotate(45deg);
          transform: translateX(2px) rotate(45deg);
}
.is-open.menuBtn span.top:after {
  -webkit-transform: translateX(11px) rotate(-45deg);
          transform: translateX(11px) rotate(-45deg);
}
.is-open.menuBtn span.bottom {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.is-open.menuBtn span.bottom:before {
  -webkit-transform: translateX(2px) rotate(-45deg);
          transform: translateX(2px) rotate(-45deg);
}
.is-open.menuBtn span.bottom:after {
  -webkit-transform: translateX(11px) rotate(45deg);
          transform: translateX(11px) rotate(45deg);
}
/*==　ページスクロール　==*/
p#pageScroll {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 40px;
  height: 40px;
  z-index: 9995;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
p#pageScroll a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  background: #000;
  padding: 9px 0 0;
  border-radius: 3px;
  color: #FFF;
}
p#pageScroll a i {
  font-size: 116%;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
p#pageScroll a:hover i {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
p.fixed#pageScroll {
  bottom: 30px;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 480px) {
  /*==　ページスクロール　==*/
  p#pageScroll {
    right: 15px;
    -webkit-transition: none;
    transition: none;
  }
  p#pageScroll a:hover svg {
    -webkit-transform: none;
            transform: none;
  }
  p.fixed#pageScroll {
    bottom: 20px;
  }
}
.boxBtnA {
  display: block;
  background: #22C4CF;
  text-align: center;
  color: #FFF;
  padding: 16px 0;
  font-size: 200%;
  position: relative;
}
.boxBtnA::before {
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  position: absolute;
  font-size: 85%;
  top: 50%;
  right: 30px;
  margin: -17px 0 0;
}
@media screen and (max-width: 768px) {
  .boxBtnA::before {
    margin: -12px 0 0;
  }
}
.boxBtnA:hover {
  color: #FFF;
  background: #159fa9;
}

.arrowBtn a {
  position: relative;
  padding: 0 24px 10px 0;
}
.arrowBtn a span.arrow {
  width: 14px;
  height: 20px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -15px 0 0;
}
.arrowBtn a span.arrow::before, .arrowBtn a span.arrow::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 20px;
  font-size: 77%;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
}
.arrowBtn a span.arrow::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.arrowBtn a:hover span.arrow::before {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.arrowBtn a:hover span.arrow::after {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.5, 0.1, 0.1, 1);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*! normalize.css 2012-01-31T16:06 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */
audio:not([controls]) {
  display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0;
}

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0;
}

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 * Fix IE6/7 heading font-size not being relative to the root font-size
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none;
}

/* 2 */
q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin-left: 0;
  padding: 0 0 0 40px;
}

dd {
  margin: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer; /* 1 */
  -webkit-appearance: button; /* 2 */
  *overflow: visible; /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*====================================================================
  html, body
====================================================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
html::before, html::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: #22C4CF;
  position: fixed;
  z-index: 9998;
}
html::before {
  top: 0;
  left: 0;
}
html::after {
  bottom: 0;
  left: 0;
}

body {
  padding: 0;
  color: #333;
  font-family: "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Helvetica Neue, Helvetica, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  *font-size: 100%;
  line-height: 1.8;
  word-spacing: 0;
  letter-spacing: 0.06em;
  background: #FFF;
  position: relative;
}
body::before, body::after {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background: #22C4CF;
  position: fixed;
  z-index: 9998;
}
body::before {
  top: 0;
  left: 0;
}
body::after {
  top: 0;
  right: 0;
}

::-moz-selection {
  background: #f0f0f0;
  color: #333;
}

::selection {
  background: #f0f0f0;
  color: #333;
}

img {
  width: 100%;
  vertical-align: middle;
}

/* ======================================= */
/* common
/* ======================================= */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

ul, ol, dl, dt, dd, p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

/*==  アンカー　==*/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.inner {
  width: 1000px;
  min-width: 1000px;
  margin: 0 auto;
}

.clearfix::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
  font-size: 0;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 1024px) {
  html::before, html::after {
    height: 7px;
  }
  body::before, body::after {
    width: 7px;
  }
  .inner {
    width: 100%;
    min-width: 100%;
    margin: 0;
  }
}
/*
フォントサイズ表 (base: 14px)
62% =  9px
70% =  10px
77% = 11px
85% = 12px   154% = 21px  231% = 31px
93% = 13px   162% = 22px  239% = 32px
100% = 14px  170% = 23px  247% = 33px
108% = 15px  177% = 24px  254% = 34px
116% = 16px  185% = 25px  262% = 35px
124% = 17px  193% = 26px  270% = 36px
131% = 18px  200% = 27px  277% = 37px
139% = 19px  208% = 28px  285% = 38px
147% = 20px  216% = 29px  293% = 39px
231% = 31px  224% = 30px  300% = 40px

メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
header#siteHead {
  margin: 15px 0 0;
  width: 100%;
  background-color: #339CDF;
  background-image: -webkit-gradient(linear, left top, right top, from(#339CDF), to(#22C4CF));
  background-image: linear-gradient(90deg, #339CDF 0%, #22C4CF 100%);
}
header#siteHead.headroom {
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header#siteHead.headroom--unpinned {
  top: -100px;
}
header#siteHead.headroom--pinned {
  top: 0;
}
header#siteHead .inner {
  position: relative;
  padding: 30px 0;
}
header#siteHead .inner p#siteId {
  width: 235px;
}
header#siteHead .inner p#siteId a {
  display: block;
}
header#siteHead .inner p#siteId a:hover {
  opacity: 0.85;
}

.menuBtn {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
}
.menuBtn::before {
  content: "MENU";
  position: absolute;
  top: 13px;
  left: -50px;
  font-size: 93%;
  color: #FFF;
  font-weight: bold;
}

nav#openNav {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 45px 0 30px;
}
nav#openNav.headroom {
  position: fixed;
  z-index: 9996;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav#openNav.headroom.active {
  top: 100px;
}
nav#openNav.headroom--unpinned {
  top: -100px;
}
nav#openNav.headroom--unpinned.active {
  top: 0px;
}
nav#openNav.headroom--pinned {
  top: 0;
}
nav#openNav ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav#openNav ul li {
  margin: 0 20px;
}
nav#openNav ul li a {
  color: #3ca498;
}
nav#openNav ul li a i {
  font-size: 70%;
  margin: 0 0 0 5px;
}
nav#openNav ul li a:hover {
  text-decoration: underline;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 1024px) {
  header#siteHead {
    margin: 7px 0 0;
  }
  header#siteHead.headroom--unpinned {
    top: -85px;
  }
  header#siteHead .inner {
    padding: 20px 6%;
  }
  header#siteHead .inner p#siteId {
    width: 180px;
  }
  .menuBtn {
    top: 10px;
    right: 4%;
  }
  .menuBtn::before {
    top: 16px;
    left: -40px;
    font-size: 77%;
  }
  nav#openNav {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
  }
  nav#openNav.headroom {
    position: fixed;
    z-index: 9996;
    top: -250px;
    left: 0;
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  nav#openNav.headroom.active {
    top: 76px;
  }
  nav#openNav.headroom--unpinned {
    top: -250px;
  }
  nav#openNav.headroom--unpinned.active {
    top: -250px;
  }
  nav#openNav.headroom--pinned {
    top: -250px;
  }
  nav#openNav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  nav#openNav ul li {
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #DDD;
  }
  nav#openNav ul li:nth-child(even) {
    border-left: 1px solid #DDD;
  }
  nav#openNav ul li:last-child {
    width: 100%;
  }
  nav#openNav ul li a {
    display: block;
    text-align: center;
    padding: 12px 0;
  }
}
/*
フォントサイズ表 (base: 14px)
62% = 9px
70% = 10px
77% = 11px   154% = 21px
85% = 12px   162% = 22px  239% = 32px
93% = 13px   170% = 23px  247% = 33px
100% = 14px  177% = 24px  254% = 34px
108% = 15px  185% = 25px  262% = 35px
116% = 16px  193% = 26px  270% = 36px
124% = 17px  200% = 27px  277% = 37px
131% = 18px  208% = 28px  285% = 38px
139% = 19px  216% = 29px  293% = 39px
147% = 20px  224% = 30px  300% = 40px
154% = 21px  231% = 31px  308% = 41px


メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/
#mv {
  position: relative;
  margin: 114px 0 0;
  background-color: #339CDF;
  background-image: -webkit-gradient(linear, left top, right top, from(#339CDF), to(#22C4CF));
  background-image: linear-gradient(90deg, #339CDF 0%, #22C4CF 100%);
}
@media screen and (max-width: 768px) {
  #mv {
    margin: 77px 0 0;
  }
}
#mv .slider div.slick-slide {
  width: 1000px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #mv .slider div.slick-slide {
    width: 100%;
    padding: 0;
  }
}
#mv .slider div a {
  display: block;
  position: relative;
  background: #FFF;
}
#mv .slider div a:hover {
  opacity: 0.95;
}
#mv .slider div a .mvTxtWrap {
  position: absolute;
  top: 50%;
  left: 110px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #mv .slider div a .mvTxtWrap {
    left: 15%;
  }
}
#mv .slider div a .mvTxtWrap p {
  color: #464646;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.7;
}
#mv .slider div a .mvTxtWrap p.mvCopy {
  line-height: 1.5;
  font-size: 277%;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  #mv .slider div a .mvTxtWrap p.mvCopy {
    font-size: 16px;
  }
}
#mv .slider div a .mvTxtWrap p.mvYear {
  font-size: 116%;
}
@media screen and (max-width: 768px) {
  #mv .slider div a .mvTxtWrap p.mvYear {
    font-size: 12px;
  }
}
#mv .slider .slick-prev,
#mv .slider .slick-next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  background: #FFF;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #mv .slider .slick-prev,
  #mv .slider .slick-next {
    width: 25px;
    height: 25px;
  }
}
#mv .slider .slick-prev:before,
#mv .slider .slick-next:before {
  text-align: center;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 36px;
  line-height: 0;
  opacity: 1;
  color: #22C4CF;
}
@media screen and (max-width: 768px) {
  #mv .slider .slick-prev:before,
  #mv .slider .slick-next:before {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
#mv .slider .slick-prev:hover,
#mv .slider .slick-next:hover {
  background: #e9ffdb;
}
#mv .slider .slick-prev {
  left: 300px;
}
@media screen and (max-width: 1280px) {
  #mv .slider .slick-prev {
    left: 15px;
  }
}
#mv .slider .slick-prev:before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  margin: 0;
}
#mv .slider .slick-next {
  right: 300px;
}
@media screen and (max-width: 1280px) {
  #mv .slider .slick-next {
    right: 15px;
  }
}
#mv .slider .slick-next:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  margin: 0;
}
#mv .slider .slick-prev.slick-disabled:before,
#mv .slider .slick-next.slick-disabled:before {
  opacity: 0.25;
}

#mainContents {
  margin: 0;
  position: relative;
}

section {
  color: #646464;
  padding: 100px 0 140px;
}
section p {
  color: #646464;
}
section .secHead {
  margin: 0 0 75px;
}
@media screen and (max-width: 768px) {
  section .secHead {
    margin: 0;
  }
}
section .secHead p {
  text-align: center;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
section .secHead p.enTitle {
  font-size: 231%;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin: 0 0 26px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section .secHead p.enTitle {
    font-size: 27px;
  }
}
section .secHead p.enTitle::after {
  content: "";
  display: block;
  width: 450px;
  height: 3px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin: 0 0 0 -225px;
  background: #939393;
}
@media screen and (max-width: 768px) {
  section .secHead p.enTitle::after {
    width: 80%;
    height: 2px;
    margin: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
section .secHead p.jpTitle {
  font-size: 154%;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  section .secHead p.jpTitle {
    font-size: 15px;
  }
}

.introflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .introflex {
    padding-bottom: 40px;
  }
}
.introflex li {
  width: 33.3333%;
}

.frame {
  position: relative;
  overflow: hidden;
}
.frame::before, .frame::after {
  content: "";
  display: block;
  background: url("/assets/img/home/flower.svg") no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -999;
}
@media screen and (max-width: 768px) {
  .frame::before, .frame::after {
    display: none;
  }
}
.frame::before {
  width: 640px;
  height: 680px;
  top: -300px;
  left: -80px;
}
.frame::after {
  width: 500px;
  height: 460px;
  bottom: -100px;
  right: 50px;
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
}
.frame .inner {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .frame .inner {
    padding: 40px 0;
  }
}
.frame iframe {
  border: none;
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .frame iframe {
    height: 250px;
  }
}

#we {
  background: rgba(237, 237, 237, 0.75);
  padding: 0 0 150px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  #we {
    padding: 0 0 70px;
  }
}
@media screen and (max-width: 768px) {
  #we .secA {
    padding: 0 10%;
    margin-top: 50px;
  }
}
#we .secA .title {
  background-color: #22C4CF;
  color: white;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #we .secA .title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
#we .secA .flexCont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  #we .secA .flexCont {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#we .secA .flexCont figure {
  width: 650px;
}
@media screen and (max-width: 768px) {
  #we .secA .flexCont figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
#we .secA .flexCont div {
  width: 305px;
}
@media screen and (max-width: 768px) {
  #we .secA .flexCont div {
    width: 100%;
  }
}
#we .secA .flexCont div .subTitle {
  font-size: 23px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #we .secA .flexCont div .subTitle {
    text-align: center;
    font-size: 20px;
  }
}
#we .secA .flexCont div .caption {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #we .secA .flexCont div .caption {
    text-align: center;
    font-size: 11px;
    margin-bottom: 20px;
  }
}
#we .secB {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #we .secB {
    margin-top: 50px;
    padding: 0 10%;
  }
}
#we .secB .title {
  font-size: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #we .secB .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#we .secB .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #we .secB .lists {
    gap: 20px 4%;
  }
}
#we .secB .lists-box {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #we .secB .lists-box {
    width: 48%;
  }
}
#we .secB .lists-box figure {
  margin-bottom: 10px;
}
#we .secB .lists-box .box-title {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #we .secB .lists-box .box-title {
    font-size: 15px;
  }
}
#we .secB .lists-box .box-txt {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #we .secB .lists-box .box-txt {
    font-size: 12px;
  }
}
#we .secC {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #we .secC {
    margin-top: 50px;
    padding: 0 10%;
  }
}
#we .secC figure {
  margin-bottom: 20px;
}
#we .secC .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  #we .secC .lists {
    gap: 20px 0;
  }
}
#we .secC .lists-box {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #we .secC .lists-box {
    width: 100%;
  }
}
#we .secC .lists-box .box-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #we .secC .lists-box .box-title {
    font-size: 16px;
  }
  #we .secC .lists-box .box-title br {
    display: none;
  }
}
#we .secC .lists-box .box-txt {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #we .secC .lists-box .box-txt {
    font-size: 14px;
  }
}
#we .secC .comments {
  margin-top: 40px;
  border: 2px solid #646464;
}
@media screen and (max-width: 768px) {
  #we .secC .comments {
    margin-top: 20px;
  }
}
#we .secC .comments .title {
  background-color: #646464;
  color: white;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #we .secC .comments .title {
    padding: 12px 5%;
    line-height: 1.4;
  }
}
#we .secC .comments .txt {
  padding: 20px;
  font-size: 14px;
}

#es {
  background: rgba(237, 237, 237, 0.75);
  margin: 0;
  padding: 0 0 180px;
}
@media screen and (max-width: 768px) {
  #es {
    padding: 0 0 90px;
  }
}
@media screen and (max-width: 768px) {
  #es .secA {
    margin-top: 50px;
    padding: 0 10%;
  }
}
#es .secA .title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #es .secA .title {
    font-size: 18px;
  }
}
#es .secA .txt {
  font-size: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #es .secA .txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #es .secA .txt br {
    display: none;
  }
}
#es .secB {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #es .secB {
    margin-top: 50px;
    padding: 0 10%;
  }
}
#es .secB .title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #es .secB .title {
    font-size: 18px;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
  }
}
#es .secB .intro .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #es .secB .intro .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#es .secB .intro .row figure {
  width: 380px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #es .secB .intro .row figure {
    width: 80%;
    margin: 0 auto 20px;
  }
}
#es .secB .intro .row p {
  font-size: 15px;
  line-height: 2;
  width: 580px;
}
@media screen and (max-width: 768px) {
  #es .secB .intro .row p {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }
}
#es .secB .intro figure {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #es .secB .intro figure {
    margin-top: 20px;
  }
}
#es .secB .project {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #es .secB .project {
    margin-top: 50px;
  }
}
#es .secB .project .maintitle {
  background-color: #22C4CF;
  color: white;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .maintitle {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
#es .secB .project .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#es .secB .project .row .left {
  width: 622px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .left {
    width: 100%;
  }
}
#es .secB .project .row .right {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .right {
    width: 100%;
  }
}
#es .secB .project .row .right .box {
  display: block;
}
#es .secB .project .row .right .box:nth-of-type(1) {
  border-top: 1px solid #333;
  padding: 25px 0;
}
#es .secB .project .row .right .box figure {
  margin-top: 10px;
}
#es .secB .project .row .box {
  padding: 50px 0;
  border-top: 1px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box {
    padding: 25px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#es .secB .project .row .box:nth-of-type(1) {
  padding: 0 0 50px;
  border-top: none;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box:nth-of-type(1) {
    padding: 0 0 25px;
  }
}
#es .secB .project .row .box:nth-of-type(3) {
  display: block;
}
#es .secB .project .row .box figure {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box figure {
    width: 100%;
    margin-top: 10px;
  }
}
#es .secB .project .row .box div {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box div {
    width: 100%;
  }
}
#es .secB .project .row .box .box-title {
  font-size: 25px;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box .box-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
#es .secB .project .row .box .box-txt {
  font-size: 15px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  #es .secB .project .row .box .box-txt {
    font-size: 14px;
  }
}
#es .secB .project .row .box .box-txt span {
  color: #22C4CF;
}
#es .secC {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #es .secC {
    margin-top: 50px;
    padding: 0 10%;
  }
}
#es .secC .title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #es .secC .title {
    font-size: 18px;
    letter-spacing: 0.01em;
  }
}
#es .secC div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #es .secC div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#es .secC div figure {
  width: 380px;
}
@media screen and (max-width: 768px) {
  #es .secC div figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
#es .secC div figure figcaption {
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #es .secC div figure figcaption {
    font-size: 10px;
  }
}
#es .secC div p {
  width: 580px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #es .secC div p {
    width: 100%;
    font-size: 14px;
  }
}

#mfs {
  padding: 100px 0 200px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mfs {
    padding: 50px 0 60px;
  }
}
#mfs::before {
  content: "";
  display: block;
  background: url("/assets/img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 140px;
  left: 80px;
  z-index: -999;
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
}
@media screen and (max-width: 768px) {
  #mfs::before {
    width: 200px;
    height: 200px;
    top: 100px;
    left: -80px;
  }
}
#mfs::after {
  content: "";
  display: block;
  background: url("/assets/img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -220px;
  right: -60px;
  z-index: -999;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (max-width: 768px) {
  #mfs::after {
    width: 250px;
    height: 250px;
    top: -180px;
  }
}
#mfs .voiceWrap {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  margin: 150px 0 0;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap {
    margin: 50px 0 0;
  }
}
#mfs .voiceWrap:first-of-type {
  margin: 0;
}
#mfs .voiceWrap::before {
  content: "";
  display: block;
  width: calc(50% + 120px);
  height: 585px;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap::before {
    width: 100%;
    height: 300px;
  }
}
#mfs .voiceWrap .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#mfs .voiceWrap .inner .voiceImg {
  width: 540px;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner .voiceImg {
    width: 80%;
    margin: 0 auto;
  }
}
#mfs .voiceWrap .inner .voiceImg img {
  margin: 0;
}
#mfs .voiceWrap .inner .voiceTxtWrap {
  display: block;
  padding: 30px 0 0;
  width: 420px;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner .voiceTxtWrap {
    width: 100%;
    padding: 30px 10%;
  }
}
#mfs .voiceWrap .inner .voiceTxtWrap .copy {
  font-size: 40px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner .voiceTxtWrap .copy {
    font-size: 27px;
    margin-bottom: 15px;
  }
}
#mfs .voiceWrap .inner .voiceTxtWrap .txt {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner .voiceTxtWrap .txt {
    line-height: 1.8;
  }
}
#mfs .voiceWrap .inner .voiceTxtWrap .txt:last-of-type {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #mfs .voiceWrap .inner .voiceTxtWrap .txt:last-of-type {
    margin-top: 15px;
  }
}
#mfs .vwLeft::before {
  background-color: #6ad9cc;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(15%, #22C4CF), to(#339CDF));
  background-image: linear-gradient(90deg, #22C4CF 15%, #339CDF 100%);
  bottom: -50px;
  left: -80px;
}
@media screen and (max-width: 768px) {
  #mfs .vwLeft::before {
    bottom: unset;
    top: 0;
    left: 0;
  }
}
#mfs .vwRight::before {
  background-color: #6ad9cc;
  background-image: -webkit-gradient(linear, left top, right top, from(#339CDF), to(#22C4CF));
  background-image: linear-gradient(90deg, #339CDF 0%, #22C4CF 100%);
  bottom: -50px;
  left: calc(50% - 40px);
  margin: 0;
}
@media screen and (max-width: 768px) {
  #mfs .vwRight::before {
    bottom: unset;
    top: 0;
    left: 0;
  }
}
#mfs .vwRight .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .btn-cont {
    padding: 40px 0;
  }
}
.btn-cont.-bg {
  background-color: rgba(237, 237, 237, 0.75);
}
.btn-cont #btn {
  width: 550px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .btn-cont #btn {
    width: 85%;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 768px) {
  .btn-cont #btn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .btn-cont #bnr {
    width: 85%;
    margin: 0 auto;
  }
}
.btn-cont #bnr a:hover {
  opacity: 0.8;
}

#btnSec {
  padding: 70px 0 260px;
}
@media screen and (max-width: 768px) {
  #btnSec {
    padding: 35px 0 130px;
  }
}
#btnSec ul {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #btnSec ul {
    width: 85%;
    margin: 0 auto;
  }
}
#btnSec ul li {
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  #btnSec ul li {
    margin: 12px 0 0;
  }
}
#btnSec ul li:first-child {
  margin: 0;
}
@media screen and (max-width: 768px) {
  #btnSec ul li a {
    font-size: 15px;
  }
}

footer {
  background: #22C4CF;
  color: #FFF;
  padding: 120px 0 60px;
  position: relative;
}
footer #footImg {
  width: 1000px;
  position: absolute;
  top: -180px;
  left: 50%;
  margin: 0 0 0 -500px;
}
footer p#footLogo {
  width: 375px;
  margin: 0 auto 25px;
}
footer p#footAdd {
  text-align: center;
  margin: 0 0 60px;
}
footer #gMap {
  width: calc(100% - 30px);
  margin: 0 auto 60px;
}
footer iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}
footer address {
  font-size: 77%;
  font-style: normal;
  text-align: center;
}

#loading {
  width: 100%;
  height: 100%;
  background: #22C4CF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
#loading .cp-spinner {
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#loading .cp-flip {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 10em;
          perspective: 10em;
  position: relative;
}
#loading .cp-flip::before {
  width: 48px;
  height: 48px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: flip 2s linear infinite;
          animation: flip 2s linear infinite;
}

/*Flip Spinner Animation*/
@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg) rotateX(0deg);
            transform: rotateY(0deg) rotateX(0deg);
  }
  25% {
    -webkit-transform: rotateY(360deg) rotateX(0deg);
            transform: rotateY(360deg) rotateX(0deg);
  }
  50% {
    -webkit-transform: rotateY(360deg) rotateX(360deg);
            transform: rotateY(360deg) rotateX(360deg);
  }
  75% {
    -webkit-transform: rotateY(0deg) rotateX(360deg);
            transform: rotateY(0deg) rotateX(360deg);
  }
  100% {
    -webkit-transform: rotateY(0deg) rotateX(0deg);
            transform: rotateY(0deg) rotateX(0deg);
  }
}
@keyframes flip {
  0% {
    -webkit-transform: rotateY(0deg) rotateX(0deg);
            transform: rotateY(0deg) rotateX(0deg);
  }
  25% {
    -webkit-transform: rotateY(360deg) rotateX(0deg);
            transform: rotateY(360deg) rotateX(0deg);
  }
  50% {
    -webkit-transform: rotateY(360deg) rotateX(360deg);
            transform: rotateY(360deg) rotateX(360deg);
  }
  75% {
    -webkit-transform: rotateY(0deg) rotateX(360deg);
            transform: rotateY(0deg) rotateX(360deg);
  }
  100% {
    -webkit-transform: rotateY(0deg) rotateX(0deg);
            transform: rotateY(0deg) rotateX(0deg);
  }
}
/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 1024px) {
  footer {
    padding: 40px 0 60px;
    position: relative;
  }
  footer #footImg {
    width: 75%;
    position: absolute;
    top: -145px;
    left: 50%;
    margin: 0 0 0 -37.5%;
  }
  footer p#footLogo {
    width: 33.3333%;
    margin: 0 auto 15px;
  }
  footer p#footAdd {
    padding: 0 5%;
    font-size: 85%;
    margin: 0 0 20px;
  }
  footer #gMap {
    width: calc(100% - 20px);
    margin: 0 auto 20px;
  }
  footer iframe {
    width: 100%;
    height: 300px;
    vertical-align: bottom;
  }
  footer address {
    font-size: 70%;
  }
}
@media screen and (max-width: 768px) {
  footer #footImg {
    top: -100px;
  }
}
@media screen and (max-width: 480px) {
  footer {
    padding: 30px 0 60px;
  }
  footer #footImg {
    width: 98%;
    top: -65px;
    margin: 0 0 0 -49%;
  }
  footer p#footLogo {
    width: 70%;
    margin: 0 auto 15px;
  }
}
/*
フォントサイズ表 (base: 14px)
62% = 9px
70% = 10px
77% = 11px   154% = 21px
85% = 12px   162% = 22px  239% = 32px
93% = 13px   170% = 23px  247% = 33px
100% = 14px  177% = 24px  254% = 34px
108% = 15px  185% = 25px  262% = 35px
116% = 16px  193% = 26px  270% = 36px
124% = 17px  200% = 27px  277% = 37px
131% = 18px  208% = 28px  285% = 38px
139% = 19px  216% = 29px  293% = 39px
147% = 20px  224% = 30px  300% = 40px
154% = 21px  231% = 31px  308% = 41px

メディアクエリ・基本設定項目
@media screen and (max-width: 1024px) {  1024pxまでの幅の場合に適応される　例）タブレット横まで　iPadPro縦  }
@media screen and (max-width: 768px) {  768pxまでの幅の場合に適応される　例）タブレット縦〜スマホ横  }
@media screen and (max-width: 480px) {  480pxまでの幅の場合に適応される　例）iPhone縦  }
@media screen and (max-width: 320px) {  320pxまでの幅の場合に適応される　例）iPhone5以下  }

メディアクエリ・内訳
Nexus10横 = max-width: 1280px
iPad、iPad mini、Nexus9横 = max-width: 1024px
Nexus7横 = max-width: 960px
Nexus10縦 = max-width: 800px
iPad、iPad mini、Nexus9縦 = max-width: 768px
Nexus7縦 = max-width: 600px
iPhone6 Plus縦 = max-width: 414px
Nexus6縦 = max-width: 412px
iPhone6縦 = max-width: 375px
Nexus5横 = max-width: 360px
iPhone5以下横 = max-width: 320px
*/