@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: #ffa2ae;
  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;
}
.boxBtnA:hover {
  color: #FFF;
  background: #d5727f;
}

.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: #ffa2ae;
  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: #ffa2ae;
  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: #d79fc7;
}
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: 205px;
}
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: #9e618d;
}
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: 160px;
  }
  .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: -200px;
    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: -200px;
  }
  nav#openNav.headroom--unpinned.active {
    top: -200px;
  }
  nav#openNav.headroom--pinned {
    top: -200px;
  }
  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 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
*/
footer {
  background: #ffa2ae;
  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: #ffa2ae;
  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: 820px) {
  footer {
    padding: 40px 0 60px;
    position: relative;
  }
  footer #footImg {
    width: 75%;
    position: absolute;
    top: -120px;
    left: 50%;
    margin: 0 0 0 -37.5%;
  }
  footer p#footLogo {
    width: 70%;
    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: 480px) {
  footer #footImg {
    top: -55px;
  }
}
/*
フォントサイズ表 (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: 115px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#d79fc7), to(#ffa2ae));
  background: linear-gradient(to bottom, #d79fc7, #ffa2ae);
}
#mv::before {
  content: "";
  display: block;
  background: url("../img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 640px;
  height: 640px;
  position: absolute;
  bottom: -240px;
  left: -110px;
  z-index: -999;
}
#mv .slider div.slick-slide {
  width: 1000px;
  padding: 0 10px;
}
#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: 90px;
  left: 110px;
}
#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 {
  font-size: 277%;
  margin: 0 0 20px;
}
#mv .slider div a .mvTxtWrap p.mvYear {
  font-size: 116%;
}
#mv .slider div a .mvTxtWrap p.mvName {
  font-size: 177%;
}
#mv .slider div a .mvTxtWrap p.mvName span {
  font-size: 77%;
}
#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;
}
#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: #ffa2ae;
}
#mv .slider .slick-prev:hover,
#mv .slider .slick-next:hover {
  background: #f2e6e6;
}
#mv .slider .slick-prev {
  left: 3%;
}
#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: 3%;
}
#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: 100px 0 0;
  position: relative;
}
#mainContents::before {
  content: "";
  display: block;
  background: url("../img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 420px;
  height: 420px;
  position: absolute;
  top: -50px;
  right: 40px;
  z-index: -999;
}

section {
  color: #646464;
  padding: 100px 0 140px;
}
section p {
  color: #646464;
}
section .secHead {
  margin: 0 0 75px;
}
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;
}
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;
}
section .secHead p.jpTitle {
  font-size: 154%;
  letter-spacing: 0.12em;
}

#we {
  background: rgba(237, 237, 237, 0.75);
  padding: 100px 0 0;
}
#we .kankyo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#we .kankyo .imgBox {
  width: 50%;
}
#we .kankyo .txtBox {
  width: 500px;
  padding: 0 30px 0 0;
}
#we .kankyo .txtBox p.numberTxt {
  margin: 0 0 8px;
}
#we .kankyo .txtBox p.numberTxt span {
  display: inline-block;
  padding: 2px 10px;
  color: #FFF;
  font-size: 85%;
}
#we .kankyo .txtBox p.numberTxt span.midashi {
  background: #ffa2ae;
}
#we .kankyo .txtBox p.numberTxt span.number {
  background: #d79fc7;
}
#we .kankyo .txtBox p.kankyoTitle {
  font-size: 154%;
  margin: 0 0 5px;
}
#we .kankyo .txtBox p.kankyoTitle a {
  color: #646464;
  text-decoration: underline;
}
#we .kankyo .txtBox p.kankyoTitle a:hover {
  opacity: 0.75;
}
#we .kankyo .txtBox p.kankyoTxt {
  text-align: justify;
  line-height: 1.6;
}
#we .kankyo .txtBox p.kankyoTxt span {
  font-weight: bold;
}
#we .kankyo .txtBox p.outlineTxt {
  font-size: 93%;
  margin: 10px 0 0;
}
#we .kankyo .txtBox img.floorImg {
  margin: 20px 0 0;
  width: 100%;
}
#we .imgRight {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#we .imgLeft .txtBox {
  padding: 0 0 0 30px;
}
#we #one .flexBox {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 0 -6px;
}
#we #one .flexBox li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 6px 6px;
  width: 85px;
  height: 40px;
  border: 2px solid #ffa2ae;
  border-radius: 5px;
  background: #FFF;
}
#we #one .flexBox li span {
  padding: 2px 0;
  width: 100%;
  text-align: center;
  line-height: 1.3;
  display: block;
  color: #ffa2ae;
  font-size: 85%;
}
#we #two, #we #four {
  background: #FFF;
}
#we #four {
  padding: 70px 0 100px;
}
#we #four .txtBox {
  width: 100%;
  padding: 0;
  margin: 0 0 30px;
}
#we #four .flexBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 60px;
  border-bottom: 2px solid #d9d9d9;
  margin: 0 0 60px;
}
#we #four .flexBox div {
  width: 18%;
}
#we #four .flexBox div p.hosName {
  margin: 0 0 10px;
}
#we #four .flexBox div p.hosName img {
  width: auto;
  height: 50px;
}
#we #four .flexBox div .flexBox {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  border: none;
  margin: 0;
}
#we #four .flexBox div .flexBox p.hosImg {
  width: 100%;
  margin: 0 0 10px;
}
#we #four .flexBox div .flexBox p.hosTxt {
  width: 100%;
  font-size: 85%;
}
#we #four p#btn {
  width: 550px;
  margin: 0 auto;
}
#we #four p#btn a {
  font-size: 154%;
}
#we #four figure.bnr {
  margin: 60px 0 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
#we #four figure.bnr a {
  display: block;
}
#we #four figure.bnr a:hover {
  opacity: 0.8;
}
#we #comment {
  width: 1000px;
  margin: 40px auto 60px;
}
#we #comment .flexBox {
  background: #f5f7e1;
  border: 1px solid #c6c95d;
  border-radius: 10px;
  padding: 30px;
  -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;
}
#we #comment .flexBox .cmtImg {
  width: 20%;
}
#we #comment .flexBox .cmtTxtWrap {
  width: 78%;
}
#we #comment .flexBox .cmtTxtWrap p.cmtTitle {
  font-size: 116%;
  margin: 0 0 5px;
}
#we #comment .flexBox .cmtTxtWrap p.cmtTitle span {
  font-weight: bold;
}
#es {
  background: rgba(237, 237, 237, 0.75);
  position: relative;
  margin: 360px 0 0;
}
#es::before {
  content: "";
  display: block;
  background: url("../img/home/es_bg.jpg") no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 400px;
  position: absolute;
  top: -360px;
  left: 0;
  z-index: -1;
}
#es article {
  margin: 40px 0 0;
}
#es article:first-of-type {
  margin: 0;
}
#es article:last-of-type {
  margin: 0;
}
#es article p.esTitle {
  font-size: 177%;
  margin: 0 0 5px;
}
#es article p.esSubTitle {
  font-size: 131%;
  font-weight: bold;
  margin: 0 0 5px;
}
#es #ladder #graf {
  margin: 20px 0 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#es #ladder #graf #grafImg {
  width: 22%;
}
#es #ladder #graf #grafTxtWrap {
  width: 78%;
  padding: 0 0 0 30px;
}
#es #ladder #graf #grafTxtWrap p {
  display: inline-block;
  background: #909090;
  font-weight: bold;
  color: #FFF;
  padding: 2px 15px;
  margin: 0 0 8px;
}
#es #ladder #graf #grafTxtWrap ul li {
  margin: 7px 0 0;
  line-height: 1.4;
  font-weight: bold;
}
#es #ladder #graf #grafTxtWrap ul li:first-child {
  margin: 0;
}
#es #ladder #graf #grafTxtWrap ul li span {
  font-weight: normal;
  font-size: 93%;
}
#es #program p.esTxt {
  margin: 0 0 20px;
}
#es #program .flexBox {
  border: 1px solid #ffa2ae;
  margin: 5px 0 0;
  font-size: 85%;
}
#es #program .flexBox:first-of-type {
  margin: 0;
}
#es #program .flexBox .month,
#es #program .flexBox .detail {
  padding: 10px;
}
#es #program .flexBox .month {
  background: #ffa2ae;
  width: 7%;
  text-align: center;
  color: #FFF;
}
#es #program .flexBox .detail {
  width: 18%;
}
#es #preceptor .preceptor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#es #preceptor .preceptor div {
  width: 65%;
  padding: 0 4% 0 0;
}
#es #preceptor .preceptor figure {
  width: 35%;
}

#mfs {
  overflow: hidden;
  position: relative;
}
#mfs::before {
  content: "";
  display: block;
  background: url("../img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 140px;
  left: 80px;
  z-index: -999;
}
#mfs::after {
  content: "";
  display: block;
  background: url("../img/home/flower.svg") no-repeat;
  background-size: contain;
  width: 500px;
  height: 500px;
  position: absolute;
  top: -220px;
  right: -60px;
  z-index: -999;
}
#mfs .voiceWrap {
  position: relative;
  margin: 160px 0 0;
}
#mfs .voiceWrap:first-of-type {
  margin: 0;
}
#mfs .voiceWrap::before {
  content: "";
  display: block;
  width: 50%;
  height: 750px;
  position: absolute;
  z-index: -1;
}
#mfs .voiceWrap .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#mfs .voiceWrap .inner .voiceImg {
  width: 420px;
}
#mfs .voiceWrap .inner .voiceImg img {
  margin: 0 0 15px;
}
#mfs .voiceWrap .inner .voiceImg p.year {
  font-size: 116%;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
#mfs .voiceWrap .inner .voiceImg p.name {
  line-height: 1.4;
  font-size: 231%;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin: 0 0 5px;
}
#mfs .voiceWrap .inner .voiceImg p.name span {
  font-size: 70%;
  margin: 0 0 0 15px;
}
#mfs .voiceWrap .inner .voiceImg p.en {
  color: #FFF;
  font-size: 85%;
}
#mfs .voiceWrap .inner .voiceTxtWrap {
  padding: 30px 0 0;
  width: 550px;
  -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;
}
#mfs .voiceWrap .inner .voiceTxtWrap .copyWrap {
  width: 17%;
}
#mfs .voiceWrap .inner .voiceTxtWrap .copyWrap p {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "Roboto Slab", Garamond, "Times New Roman", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 231%;
  line-height: 1.4;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: left;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap {
  width: 78%;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap p {
  text-align: justify;
  line-height: 2;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox {
  width: 85%;
  margin: 20px 0 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #ffa2ae;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox p {
  background: #ffa2ae;
  color: #FFF;
  padding: 5px 0;
  text-align: center;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox div {
  padding: 10px;
}
#mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox div div iframe {
  width: 100%;
  height: 181px;
  vertical-align: bottom;
}
#mfs .vwLeft::before {
  background: -webkit-gradient(linear, left top, right top, from(#ffa2ae), to(#d79fc7));
  background: linear-gradient(to right, #ffa2ae, #d79fc7);
  top: 30px;
  left: -80px;
}
#mfs .vwRight::before {
  background: -webkit-gradient(linear, left top, right top, from(#d79fc7), to(#ffa2ae));
  background: linear-gradient(to right, #d79fc7, #ffa2ae);
  top: 30px;
  left: 50%;
  margin: 0 0 0 80px;
}
#mfs .vwRight .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#mfs .vwRight .inner .voiceImg p {
  padding: 0;
  text-align: right;
}

#cp {
  background: rgba(237, 237, 237, 0.75);
  padding: 100px 0 70px;
}
#cp #policy {
  width: 770px;
  margin: 0 auto;
}
#cp #policy article {
  margin: 40px 0 0;
}
#cp #policy article:first-of-type {
  margin: 0;
}
#cp #policy article p.policyTitle {
  background: #b1b1b1;
  text-align: center;
  padding: 12px 0;
  color: #FFF;
  font-size: 116%;
  margin: 0 0 15px;
}
#cp #policy article ul li {
  margin: 2px 0 0;
}
#cp #policy article ul li:first-child {
  margin: 0;
}
#cp #policy article ul#hoshin {
  padding: 0 0 0 110px;
}
#cp #policy article ul#sengen {
  padding: 0 0 0 110px;
}
#cp #message article {
  background: #FFF;
  margin: 40px 0 0;
  padding: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#cp #message article:first-of-type {
  margin: 0;
}
#cp #message article .msgImg {
  width: 25%;
  padding: 35px 0 0;
}
#cp #message article .msgTxtWrap {
  width: 75%;
  padding: 0 30px 0 0;
}
#cp #message article .msgTxtWrap p.msgTitle {
  font-size: 116%;
  margin: 0 0 5px;
}
#cp #message article .msgTxtWrap p.msgName {
  margin: 10px 0 0;
  text-align: right;
}

#btnSec {
  padding: 70px 0 260px;
}
#btnSec ul {
  width: 1000px;
  margin: 0 auto;
}
#btnSec ul li {
  margin: 30px 0 0;
}
#btnSec ul li:first-child {
  margin: 0;
}

/* ======================================= */
/* メディアクエリ
/* ======================================= */
@media screen and (max-width: 820px) {
  #mv {
    margin: 78px 0 0;
  }
  #mv::before {
    width: 150px;
    height: 150px;
    bottom: -60px;
    left: -10px;
  }
  #mv .slider div.slick-slide {
    width: 100%;
    padding: 0;
  }
  #mv .slider div a .mvTxtWrap {
    top: 20px;
    left: 12%;
  }
  #mv .slider div a .mvTxtWrap p {
    line-height: 1.4;
  }
  #mv .slider div a .mvTxtWrap p.mvCopy {
    font-size: 116%;
    margin: 0 0 10px;
  }
  #mv .slider div a .mvTxtWrap p.mvYear {
    font-size: 77%;
  }
  #mv .slider div a .mvTxtWrap p.mvName {
    font-size: 108%;
  }
  #mv .slider div a .mvTxtWrap p.mvName span {
    font-size: 77%;
  }
  #mv .slider .slick-prev,
  #mv .slider .slick-next {
    width: 28px;
    height: 28px;
  }
  #mv .slider .slick-prev:before,
  #mv .slider .slick-next:before {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  #mv .slider .slick-prev {
    left: 3%;
  }
  #mv .slider .slick-next {
    right: 3%;
  }
  #mainContents {
    margin: 30px 0 0;
  }
  #mainContents::before {
    width: 120px;
    height: 120px;
    top: -20px;
    right: 10px;
  }
  section {
    padding: 40px 0 50px;
  }
  section .secHead {
    margin: 0 0 30px;
  }
  section .secHead p.enTitle {
    font-size: 154%;
    margin: 0 0 18px;
  }
  section .secHead p.enTitle::after {
    width: 50%;
    height: 2px;
    bottom: -10px;
    margin: 0 0 0 -25%;
  }
  section .secHead p.jpTitle {
    font-size: 124%;
  }
  #we {
    padding: 30px 0 0;
  }
  #we .kankyo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #we .kankyo .imgBox {
    width: 100%;
  }
  #we .kankyo .txtBox {
    width: 100%;
    padding: 30px 6%;
  }
  #we .kankyo .txtBox p.numberTxt {
    margin: 0 0 8px;
  }
  #we .kankyo .txtBox p.numberTxt span {
    display: inline-block;
    padding: 2px 10px;
    font-size: 85%;
  }
  #we .kankyo .txtBox p.kankyoTitle {
    font-size: 154%;
    margin: 0 0 5px;
  }
  #we .kankyo .txtBox p.kankyoTxt {
    text-align: justify;
    line-height: 1.7;
  }
  #we .kankyo .txtBox p.kankyoTxt span {
    font-weight: bold;
  }
  #we .kankyo .txtBox p.outlineTxt {
    margin: 15px 0 0;
  }
  #we .kankyo .txtBox img.floorImg {
    margin: 20px 0 0;
    width: 100%;
  }
  #we .imgRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #we .imgLeft .txtBox {
    padding: 30px 6%;
  }
  #we #one {
    padding: 0;
  }
  #we #one .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0 0;
    gap: 10px 3.3333%;
  }
  #we #one .flexBox li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    width: 30%;
    height: 40px;
    border: 2px solid #ffa2ae;
    border-radius: 5px;
    background: #FFF;
  }
  #we #one .flexBox li span {
    padding: 2px 0;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    display: block;
    color: #ffa2ae;
    font-size: 85%;
  }
  #we #two,
  #we #three {
    padding: 0;
  }
  #we #two .txtBox,
  #we #three .txtBox {
    padding: 30px 6%;
  }
  #we #four {
    padding: 30px 6%;
  }
  #we #four .txtBox {
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
  }
  #we #four .flexBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 2px solid #d9d9d9;
    padding: 0 0 20px;
    margin: 0 0 20px;
    gap: 30px 6%;
  }
  #we #four .flexBox div {
    width: 47%;
    margin: 0;
  }
  #we #four .flexBox div p.hosName {
    margin: 0 0 10px;
  }
  #we #four .flexBox div p.hosName img {
    width: auto;
    height: 40px;
  }
  #we #four .flexBox div .flexBox {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    border: none;
    margin: 0;
    gap: 0;
  }
  #we #four .flexBox div .flexBox p.hosImg {
    width: 100%;
    margin: 0 0 10px;
  }
  #we #four .flexBox div .flexBox p.hosTxt {
    width: 100%;
    font-size: 85%;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  #we #four p#btn {
    width: 100%;
    margin: 0;
  }
  #we #four p#btn a {
    padding: 12px 0;
    font-size: 100%;
  }
  #we #four p#btn a::before {
    margin: -12px 0 0;
    right: 4%;
  }
  #we #four figure.bnr {
    margin: 20px 0 0;
  }
  #we #comment {
    width: 88%;
    margin: 0 auto 30px;
  }
  #we #comment .flexBox {
    background: #f5f7e1;
    border: 1px solid #c6c95d;
    border-radius: 10px;
    padding: 30px;
    -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: start;
  }
  #we #comment .flexBox .cmtImg {
    width: 100%;
    margin: 0 0 15px;
  }
  #we #comment .flexBox .cmtTxtWrap {
    width: 100%;
  }
  #we #comment .flexBox .cmtTxtWrap p.cmtTitle {
    font-size: 100%;
    margin: 0 0 5px;
  }
  #we #comment .flexBox .cmtTxtWrap p.cmtTitle span {
    font-weight: bold;
  }
  #we #comment .flexBox .cmtTxtWrap p.cmtTxt {
    font-size: 93%;
  }
  #es {
    margin: 70px 0 0;
  }
  #es::before {
    height: 85px;
    top: -70px;
  }
  #es article {
    margin: 20px 0 0;
    padding: 0 6%;
  }
  #es article:first-of-type {
    margin: 0;
  }
  #es article:last-of-type {
    margin: 40px 0 0;
  }
  #es article p.esTitle {
    font-size: 131%;
    margin: 0 0 5px;
  }
  #es article p.esSubTitle {
    font-size: 116%;
    margin: 0 0 5px;
  }
  #es article p.esTxt {
    line-height: 1.7;
  }
  #es #ladder #graf {
    margin: 20px 0 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #es #ladder #graf #grafImg {
    width: 60%;
    margin: 0 auto 15px;
  }
  #es #ladder #graf #grafTxtWrap {
    width: 100%;
    padding: 0;
  }
  #es #ladder #graf #grafTxtWrap p {
    display: inline-block;
    color: #FFF;
    padding: 2px 15px;
    margin: 0 0 8px;
  }
  #es #ladder #graf #grafTxtWrap ul li {
    margin: 7px 0 0;
    line-height: 1.4;
  }
  #es #ladder #graf #grafTxtWrap ul li:first-child {
    margin: 0;
  }
  #es #ladder #graf #grafTxtWrap ul li span {
    font-size: 93%;
  }
  #es #program p.esTxt {
    margin: 0 0 20px;
  }
  #es #program .flexBox {
    border: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    font-size: 85%;
  }
  #es #program .flexBox:first-of-type {
    margin: 0;
  }
  #es #program .flexBox .month,
  #es #program .flexBox .detail {
    padding: 10px;
  }
  #es #program .flexBox .month {
    background: #ffa2ae;
    text-align: center;
    color: #FFF;
    width: 20%;
    color: #FFF;
    border-bottom: 1px solid #FFF;
  }
  #es #program .flexBox .detail {
    width: 80%;
    border-bottom: 1px solid #DDD;
  }
  #es #preceptor .preceptor {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #es #preceptor .preceptor div {
    width: 100%;
    padding: 0;
    margin: 0 0 15px;
  }
  #es #preceptor .preceptor figure {
    width: 80%;
    margin: 0 auto;
  }
  #mfs {
    padding: 40px 0;
  }
  #mfs::before {
    width: 120px;
    height: 120px;
    top: 110px;
    left: -10px;
  }
  #mfs::after {
    width: 200px;
    height: 200px;
    top: -120px;
    right: -60px;
  }
  #mfs .voiceWrap {
    margin: 40px 0 0;
  }
  #mfs .voiceWrap#voice01 {
    margin: 0;
  }
  #mfs .voiceWrap::before {
    width: 85%;
    min-height: 300px;
    height: 20%;
  }
  #mfs .voiceWrap .inner {
    padding: 0 6%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #mfs .voiceWrap .inner .voiceImg {
    width: 70%;
    margin: 0 auto 40px;
  }
  #mfs .voiceWrap .inner .voiceImg img {
    margin: 0 0 15px;
  }
  #mfs .voiceWrap .inner .voiceImg p {
    text-align: center;
    color: #646464;
  }
  #mfs .voiceWrap .inner .voiceImg p.year {
    color: #646464;
    font-size: 85%;
  }
  #mfs .voiceWrap .inner .voiceImg p.name {
    color: #646464;
    line-height: 1.2;
    font-size: 154%;
    margin: 0 0 5px;
  }
  #mfs .voiceWrap .inner .voiceImg p.name span {
    font-size: 70%;
    margin: 0 0 0 15px;
  }
  #mfs .voiceWrap .inner .voiceImg p.en {
    color: #646464;
    font-size: 70%;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap {
    padding: 0;
    width: 100%;
    -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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .copyWrap {
    width: 100%;
    margin: 0 0 10px;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .copyWrap p {
    font-size: 154%;
    line-height: 1.7;
    letter-spacing: 0.06em;
    margin: 0;
    padding: 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .copyWrap p br {
    display: none;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap {
    width: 100%;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap p {
    text-align: justify;
    line-height: 1.8;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox {
    width: 100%;
    margin: 20px 0 0;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox p {
    padding: 5px 0;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox div {
    padding: 10px;
  }
  #mfs .voiceWrap .inner .voiceTxtWrap .txtMovieWrap .movieBox div div iframe {
    width: 100%;
    height: 160px;
    vertical-align: bottom;
  }
  #mfs .vwLeft::before {
    top: 15px;
    left: -25px;
  }
  #mfs .vwRight::before {
    top: 15px;
    left: 50%;
    margin: 0 0 0 -116px;
  }
  #mfs .vwRight .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #mfs .vwRight .inner .voiceImg p {
    padding: 0;
  }
  #cp {
    padding: 40px 0;
  }
  #cp #policy {
    width: 90%;
    margin: 0 auto;
  }
  #cp #policy article {
    margin: 20px 0 0;
  }
  #cp #policy article p.policyTitle {
    padding: 8px 4%;
    font-size: 93%;
    margin: 0 0 10px;
  }
  #cp #policy article p.policyTxt {
    line-height: 1.7;
  }
  #cp #policy article ul li {
    margin: 2px 0 0;
  }
  #cp #policy article ul li:first-child {
    margin: 0;
  }
  #cp #policy article ul#hoshin {
    padding: 0;
  }
  #cp #policy article ul#sengen {
    padding: 0;
  }
  #cp #message {
    padding: 0 5%;
  }
  #cp #message article {
    margin: 20px 0 0;
    padding: 30px 6%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #cp #message article .msgImg {
    width: 50%;
    margin: 0 auto 20px;
  }
  #cp #message article .msgTxtWrap {
    width: 70%;
    padding: 0 30px 0 0;
  }
  #cp #message article .msgTxtWrap p.msgTitle {
    font-size: 116%;
    margin: 0 0 5px;
  }
  #cp #message article .msgTxtWrap p.msgTxt {
    line-height: 1.7;
  }
  #cp #message article .msgTxtWrap p.msgName {
    margin: 10px 0 0;
    text-align: right;
  }
  #btnSec {
    padding: 25px 0 100px;
  }
  #btnSec ul {
    width: 100%;
    padding: 0 6%;
  }
  #btnSec ul li {
    margin: 10px 0 0;
  }
  #btnSec ul li a {
    padding: 12px 0;
    font-size: 100%;
  }
  #btnSec ul li a::before {
    margin: -12px 0 0;
    right: 4%;
  }
}
/*
フォントサイズ表 (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
*/