@charset "UTF-8";
/*!
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
/**
 # Foundation
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/* reset for form */
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/*
	SASS Vars
---------------------------------------------------------------------------- */
/*
	CSS Vars
---------------------------------------------------------------------------- */
:root {
  --color-primary: #2F1306;
  --color-secondary: #F5F3ED;
  --color-third: #96715D;
  --font-base: "Roboto", sans-serif;
  --font-serif: "Noto Serif JP", sans-serif;
  --font-ls-base: 0.02em;
  --container-width: 1140px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif,-apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  color: #240F06;
  background-color: #FFF;
  text-align: left;
  font-size: 1.6rem;
  font-weight: normal;
  overflow-x: hidden;
  font-weight: 300;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.06vw;
    padding: 0;
  }
}

/**
 # Layout
 */
/*--------------------------------------------------------------
    # footer.scss
--------------------------------------------------------------*/
/*  Footer
--------------------------------------------------------------*/
.l--footer {
  background-color: #240F06;
  padding: 50px 30px 75px;
}

.l--footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.l--footer--copyright {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 200;
  display: block;
  text-align: center;
  letter-spacing: normal;
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .l--footer {
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .l--footer-copyright {
    font-size: calc(10 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
/*  Header
--------------------------------------------------------------*/
.l--header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 40;
  min-height: 120px;
}

.l--header__inner {
  width: auto;
  position: relative;
  height: 120px;
}

.l--header--logo {
  position: absolute;
  left: 20px;
  top: 20px;
  display: block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  width: 260px;
}

.l--header--logo:hover {
  opacity: 0.45;
}

.l--header--logo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.l--header .c--snslist {
  position: absolute;
  right: 400px;
  top: 40px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--header__contact {
  position: absolute;
  top: 35px;
  right: 20px;
  display: flex;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--header__contact > li {
  margin: 0 30px 0 0;
}

.l--header__contact > li:last-child {
  margin: 0;
}

.l--header__contact__button {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background-color: #FFF;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--header__contact__button span {
  display: block;
}

.l--header__contact__button .title__en {
  margin: 0 0 2.5px;
  font-size: 1.4rem;
  font-family: var(--font-serif);
  text-align: center;
  color: var(--color-primary);
}

.l--header__contact__button .title__jp {
  font-size: 0.9rem;
  font-family: var(--font-serif);
  text-align: center;
  color: var(--color-primary);
}

.l--header__contact__button:link {
  text-decoration: none;
}

.l--header__contact__button:visited {
  text-decoration: none;
}

.l--header__contact__button:hover {
  text-decoration: none;
  background-color: var(--color-primary);
}

.l--header__contact__button:hover span {
  color: #FFF;
}

.l--header.js--scrolled-effect {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  background-color: #240F0695;
  min-height: 80px;
}

.l--header.js--scrolled-effect .l--header--logo {
  top: 10px;
  width: 195px;
}

.l--header.js--scrolled-effect .l--header__inner {
  height: 80px;
}

.l--header.js--scrolled-effect .c--snslist {
  top: 20px;
}

.l--header.js--scrolled-effect .l--header__contact {
  top: 15px;
}

@media screen and (max-width: 768px) {
  .l--header {
    min-height: calc(70 / 390 * 100vw);
  }
  .l--header__inner {
    width: auto;
    position: relative;
    height: calc(70 / 390 * 100vw);
  }
  .l--header--logo {
    left: calc(10 / 390 * 100vw);
    top: calc(10 / 390 * 100vw);
    width: calc(160 / 390 * 100vw);
  }
  .l--header .c--snslist {
    right: calc(10 / 390 * 100vw);
    top: calc(20 / 390 * 100vw);
  }
  .l--header__contact {
    position: absolute;
    top: 35px;
    right: 20px;
    display: flex;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
    display: none;
  }
  .l--header__contact > li {
    margin: 0 30px 0 0;
  }
  .l--header__contact > li:last-child {
    margin: 0;
  }
  .l--header__contact__button {
    width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-color: #FFF;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .l--header__contact__button span {
    display: block;
  }
  .l--header__contact__button .title__en {
    margin: 0 0 2.5px;
    font-size: 1.4rem;
    font-family: var(--font-serif);
    text-align: center;
    color: var(--color-primary);
  }
  .l--header__contact__button .title__jp {
    font-size: 0.9rem;
    font-family: var(--font-serif);
    text-align: center;
    color: var(--color-primary);
  }
  .l--header__contact__button:link {
    text-decoration: none;
  }
  .l--header__contact__button:visited {
    text-decoration: none;
  }
  .l--header__contact__button:hover {
    text-decoration: none;
    background-color: var(--color-primary);
  }
  .l--header__contact__button:hover span {
    color: #FFF;
  }
  .l--header.js--scrolled-effect {
    min-height: calc(70 / 390 * 100vw);
  }
  .l--header.js--scrolled-effect .l--header--logo {
    width: calc(160 / 390 * 100vw);
    left: calc(10 / 390 * 100vw);
    top: calc(10 / 390 * 100vw);
  }
  .l--header.js--scrolled-effect .l--header__inner {
    height: calc(70 / 390 * 100vw);
  }
  .l--header.js--scrolled-effect .c--snslist {
    top: calc(20 / 390 * 100vw);
  }
  .l--header.js--scrolled-effect .l--header__contact {
    display: none;
  }
}

/**
 # Objects -  Compornent -
 */
/**
 # Objects -  project -
 */
/*
    animation.scss
---------------------------------------------------------------------------- */
/*
    Config
--------------------------------------------------------------*/
.ani--clip__text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

/*
    Common[masks]
--------------------------------------------------------------*/
.mask-ani-upper-t01,
.mask-ani-upper-t02,
.mask-ani-upper,
.mask-ani-upper.not-yet-visible {
  clip-path: inset(0 0 98% 0);
  opacity: 0.0;
  transition: clip-path 1.55s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-upper.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-upper-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-upper-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

.mask-ani-left-t01,
.mask-ani-left-t02,
.mask-ani-left,
.mask-ani-left.not-yet-visible {
  clip-path: inset(0 98% 0 0);
  opacity: 0.0;
  transition: clip-path 2.25s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-left-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-left-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

@keyframes loopScaleFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-loop-scale img {
  animation: loopScaleFade 6s ease-in-out infinite;
}

/*
    Common[fadeup]
--------------------------------------------------------------*/
.fade-up-scale,
.fade-up-scale.not-yet-visible {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fade-up-t01,
.fade-up-t02,
.fade-up-t03,
.fade-up,
.fade-up.not-yet-visible {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-t01.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.fade-up-t02.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

.fade-up-t03.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.25s;
}

/*
    home[keyvisual]
--------------------------------------------------------------*/
body.loading .h--slider-photo img {
  opacity: 0.95;
  transform: scale(1.15);
  transition: transform 5.5s ease;
  will-change: transform;
}

body.loaded .slick-current img {
  opacity: 1.0;
  transform: scale(1);
}

body.loading .h--hero__title.ani--clip__text {
  clip-path: inset(0 100% 0 0);
  opacity: 0.5;
  transform: scale(1.025);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s ease-out, transform 1s ease-out;
}

body.loaded .h--hero__title.ani--clip__text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: scale(1);
}

body.loading .h--hero__copy__main {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1s;
}

body.loaded .h--hero__copy__main {
  opacity: 1;
  transform: translateY(0);
}

body.loading .h--hero__copy__text {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1.5s;
}

body.loaded .h--hero__copy__text {
  opacity: 1;
  transform: translateY(0);
}

body.loading .l--header {
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1.5s;
}

body.loaded .l--header {
  opacity: 1;
  transform: translateY(0);
}

/*  Gmenu
--------------------------------------------------------------*/
.l--gmenu-list {
  display: flex;
  align-items: center;
  position: absolute;
  right: 185px;
  top: 20px;
}

.l--gmenu-list li {
  margin: 0 25px 0;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l--gmenu-list li span {
  display: block;
  text-align: center;
}

.l--gmenu-list li a {
  color: #000;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  display: block;
  position: relative;
}

.l--gmenu-list li a:link {
  text-decoration: none;
}

.l--gmenu-list li a:visited {
  text-decoration: none;
}

.l--gmenu-list li a:hover {
  text-decoration: none;
}

.l--gmenu-list li a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  display: block;
  left: 0;
  bottom: -10px;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.l--gmenu-list li a:hover:after {
  width: 100%;
}

.l--gmenu-list__jp {
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin: 0 0 4px;
}

.l--gmenu-list__en {
  letter-spacing: 0.16em;
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.45455;
}

.burger--wrap {
  display: block;
}

@media screen and (max-width: 768px) {
  body.scroll-lock {
    overflow: hidden;
    height: 100%;
  }
  .l--gmenu-list {
    display: block;
    right: inherit;
    top: inherit;
    position: relative;
    padding: 0 0 calc(25 / 390 * 100vw);
  }
  .l--gmenu-list li {
    margin: 0;
    min-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--color-primary);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .l--gmenu-list li span {
    display: block;
    text-align: center;
  }
  .l--gmenu-list li a {
    padding: 0 0 calc(20 / 390 * 100vw);
  }
  .l--gmenu-list li a:after {
    display: none;
  }
  .l--gmenu-list li a:hover:after {
    display: none;
  }
  .l--gmenu-list__jp {
    font-size: calc(14 / 390 * 100vw);
    margin: 0 0 calc(5 / 390 * 100vw);
  }
  .l--gmenu-list__en {
    font-size: calc(10 / 390 * 100vw);
  }
  .burger--wrap {
    width: calc(40 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    top: calc(15 / 390 * 100vw);
    right: calc(20 / 390 * 100vw);
    position: absolute;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    border-radius: 50%;
  }
  .burger {
    width: calc(20 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
    z-index: 9999;
    display: flex;
    align-items: center;
    position: relative;
  }
  .burger .line {
    width: calc(18 / 390 * 100vw);
    height: 1.0px;
    background: #FFF;
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: calc(20 / 390 * 100vw);
    height: 1.0px;
    top: 0;
    right: 0;
    background: #FFF;
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: calc(18 / 390 * 100vw);
    height: 1.0px;
    bottom: 0;
    right: 0;
    background: #FFF;
    transition: 0.8s;
  }
  .navigation.nav-active {
    display: block;
    z-index: 300;
    animation: show 0.25s linear 0s;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navigation {
    display: none;
    opacity: 0.0;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(18, 34, 132, 0.85);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all  0.25s ease;
  }
  .navigation .navigation--content {
    background: #FFF;
    border-top: 1px solid #DDD;
    padding: calc(50 / 390 * 100vw) 0;
    height: auto;
    width: 100%;
    position: relative;
    right: 0;
    z-index: 100;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    height: 1.0px;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 100%;
    height: 1.0px;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: calc(70 / 390 * 100vw);
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}

/**
 # Objects -  pages -
 */
/*--------------------------------------------------------------
    # _home.scss
--------------------------------------------------------------*/
/*  hero
--------------------------------------------------------------*/
.h--hero {
  width: auto;
  height: calc(800 / 1400 * 100vw);
  overflow: hidden;
  position: relative;
}

.h--hero__bg {
  height: 150px;
  width: 100%;
  background-image: url(../images/home/hero__bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -5px;
  z-index: 10;
}

.h--hero__title {
  position: absolute;
  width: calc(745 / 1400 * 100vw);
  z-index: 10;
  left: calc(65 / 1400 * 100vw);
  top: calc(280 / 1400 * 100vw);
}

.h--hero__title img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__logo {
  position: absolute;
  width: calc(485 / 1400 * 100vw);
  z-index: 10;
  left: calc(-75 / 1400 * 100vw);
  top: calc(188 / 1400 * 100vw);
  mix-blend-mode: overlay;
  opacity: 0.55;
}

.h--hero__logo img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__copy__main {
  position: absolute;
  width: calc(118 / 1400 * 100vw);
  z-index: 10;
  right: calc(130 / 1400 * 100vw);
  top: calc(157 / 1400 * 100vw);
}

.h--hero__copy__main img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__copy__text {
  position: absolute;
  width: calc(108 / 1400 * 100vw);
  z-index: 10;
  right: calc(300 / 1400 * 100vw);
  top: calc(157 / 1400 * 100vw);
}

.h--hero__copy__text img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__course {
  position: absolute;
  width: calc(390 / 1400 * 100vw);
  z-index: 10;
  left: calc(60 / 1400 * 100vw);
  top: calc(465 / 1400 * 100vw);
}

.h--hero__course img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__presents {
  position: absolute;
  width: calc(300 / 1400 * 100vw);
  z-index: 10;
  right: calc(30 / 1400 * 100vw);
  top: calc(645 / 1400 * 100vw);
}

.h--hero__presents img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero__course img {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
  animation: glow 3s infinite ease-in-out;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0.8));
  }
}

.h--slider-box {
  height: calc(800 / 1400 * 100vw);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.h--slider-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(800 / 1400 * 100vw);
  z-index: 10;
}

.h--slider-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.h--slider-photo img {
  transform: scale(1.15);
  transition: transform 2.5s ease;
  will-change: transform;
}

.slick-current img {
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .h--hero {
    width: auto;
    height: calc(845 / 390 * 100vw);
    overflow: hidden;
    position: relative;
  }
  .h--hero__bg {
    height: calc(42 / 390 * 100vw);
  }
  .h--hero__title {
    width: calc(348 / 390 * 100vw);
    left: calc(20 / 390 * 100vw);
    top: calc(95 / 390 * 100vw);
  }
  .h--hero__logo {
    width: calc(225 / 390 * 100vw);
    left: calc(-100 / 390 * 100vw);
    top: calc(105 / 390 * 100vw);
  }
  .h--hero__copy__main {
    width: calc(115 / 390 * 100vw);
    right: inherit;
    left: calc(208 / 390 * 100vw);
    top: calc(328 / 390 * 100vw);
  }
  .h--hero__copy__text {
    width: calc(108 / 390 * 100vw);
    right: inherit;
    left: calc(70 / 390 * 100vw);
    top: calc(328 / 390 * 100vw);
  }
  .h--hero__course {
    width: calc(262 / 390 * 100vw);
    left: calc(65 / 390 * 100vw);
    top: calc(245 / 390 * 100vw);
  }
  .h--hero__presents {
    display: none;
  }
  .h--slider-box {
    height: calc(845 / 390 * 100vw);
  }
  .h--slider-photo {
    height: calc(845 / 390 * 100vw);
  }
}

/*
    Presents [.h--Presents]
--------------------------------------------------------------*/
.h--presents {
  padding: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) calc(60 / 390 * 100vw);
}

.h--presents__banner {
  width: calc(300 / 390 * 100vw);
  margin: 0 auto;
}

.h--presents__banner img {
  width: 100%;
  vertical-align: bottom;
}

/*
    Message [.h--message]
--------------------------------------------------------------*/
.h--message {
  padding: 0 30px 80px;
}

.h--message__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.h--message__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h--message__block--video {
  width: calc(480 / 1220 * 100%);
  cursor: pointer;
}

.h--message__block--content {
  width: calc(690 / 1220 * 100%);
}

.h--message__block__title {
  font-family: var(--font-serif);
  line-height: 1.38889;
  font-size: 3.6rem;
  margin: 0 0 25px;
  font-weight: 500;
}

.h--message__block__text {
  font-size: 1.8rem;
  line-height: 2.22222;
}

@media screen and (max-width: 768px) {
  .h--message {
    padding: 0 calc(40 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
  .h--message__inner {
    max-width: initial;
  }
  .h--message__block {
    display: flex;
    flex-direction: column;
  }
  .h--message__block--video {
    width: calc(370 / 390 * 100vw);
    cursor: pointer;
    order: 2;
  }
  .h--message__block--video video {
    width: calc(370 / 390 * 100vw);
    margin: 0 auto;
    height: auto;
  }
  .h--message__block--content {
    width: auto;
    order: 1;
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .h--message__block__title {
    font-size: calc(30 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--message__block__text {
    font-size: calc(16 / 390 * 100vw);
    line-height: 1.875;
  }
  .h--message__block__text br {
    display: none;
  }
}

/*
    Trouble [.h--trouble]
--------------------------------------------------------------*/
.h--trouble {
  padding: 0 30px 70px;
  background-color: #240F06;
}

.h--trouble__bg {
  height: 150px;
  width: 100%;
  background-image: url(../images/home/trouble__ob01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  top: 1px;
}

.h--trouble__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--trouble__title {
  color: #FFF;
  font-size: 3.2rem;
  text-align: center;
  font-family: var(--font-serif);
  margin: 0 0 35px;
}

.h--trouble__check {
  border: 1px dashed #96715D;
  border-radius: 6px;
  position: relative;
}

.h--trouble__check__inner {
  padding: 50px 70px 40px;
}

.h--trouble__check--list > li {
  border-bottom: 1px solid #462C20;
  padding: 0 0 20px 80px;
  font-weight: 200;
  color: #FFF;
  font-size: 1.4rem;
  margin: 0 0 40px;
  background-image: url(../images/common/icon__wh__check01.svg);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: left 30px top;
}

.h--trouble__check--list > li:last-child {
  border: none;
}

.h--trouble__check--list > li span {
  color: #FFF;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  display: block;
  margin: 0 0 10px;
}

.h--trouble__check--illust {
  position: absolute;
  right: 20px;
  bottom: -20px;
  width: 105px;
}

.h--trouble__check--illust img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--trouble__check--flow {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -90px;
  width: 92px;
  margin: 0 auto;
  z-index: 5;
}

.h--trouble__check--flow img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--trouble--close--lead {
  margin: 50px 0 40px;
  font-family: var(--font-serif);
  color: #FFF;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.38889;
  text-align: center;
  z-index: 10;
  position: relative;
}

.h--trouble--close__box {
  border: 1px solid #3B2C26;
  border-radius: 10px;
  background-image: url(../images/home/trouble__ph01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h--trouble--close__box__inner {
  padding: 30px;
}

.h--trouble--close__box p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.22222;
  text-align: center;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .h--trouble {
    padding: 0 calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
  }
  .h--trouble__bg {
    height: calc(42 / 390 * 100vw);
  }
  .h--trouble__inner {
    max-width: initial;
  }
  .h--trouble__title {
    font-size: calc(24 / 390 * 100vw);
    line-height: 1.25;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--trouble__check {
    border-radius: calc(6 / 390 * 100vw);
  }
  .h--trouble__check__inner {
    padding: calc(20 / 390 * 100vw);
  }
  .h--trouble__check--list > li {
    padding: 0 0 calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    background-size: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw);
    background-position: left top calc(5 / 390 * 100vw);
  }
  .h--trouble__check--list > li span {
    font-size: calc(18 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    line-height: 1.33333;
  }
  .h--trouble__check--illust {
    right: calc(-10 / 390 * 100vw);
    bottom: calc(-160 / 390 * 100vw);
    width: calc(60 / 390 * 100vw);
  }
  .h--trouble__check--flow {
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(-50 / 390 * 100vw);
    width: calc(80 / 390 * 100vw);
  }
  .h--trouble--close--lead {
    margin: calc(40 / 390 * 100vw) 0;
    font-size: calc(24 / 390 * 100vw);
  }
  .h--trouble--close__box {
    border-radius: calc(10 / 390 * 100vw);
  }
  .h--trouble--close__box__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .h--trouble--close__box p {
    font-size: calc(16 / 390 * 100vw);
    text-align: left;
  }
  .h--trouble--close__box p br {
    display: none;
  }
}

/*
    Feature [.h--feature]
--------------------------------------------------------------*/
.h--feature {
  padding: 100px 30px;
  background-color: var(--color-secondary);
  position: relative;
}

.h--feature__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.h--feature__box {
  margin: 0 0 110px;
  display: flex;
  justify-content: space-between;
}

.h--feature__box:nth-of-type(odd) .h--feature__box--photo {
  order: 2;
}

.h--feature__box:nth-of-type(odd) .h--feature__box--content {
  order: 1;
}

.h--feature__box:nth-of-type(odd) .h--feature__box--content__inner {
  padding: 0 0 0 calc(120 / 560 * 100%);
}

.h--feature__box--photo {
  display: block;
  width: calc(600 / 1220 * 100%);
}

.h--feature__box--photo img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
  border-radius: 20px;
}

.h--feature__box--content {
  display: block;
  width: calc(560 / 1220 * 100%);
}

.h--feature__box--number {
  margin: 0 0 25px;
  font-family: var(--font-serif);
  font-weight: 200;
  color: #96715D;
  display: block;
}

.h--feature__box--number em {
  display: block;
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 0.085em;
}

.h--feature__box--number strong {
  display: block;
  font-size: 10.0rem;
}

.h--feature__box--title {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.38889;
  font-size: 3.6rem;
}

.h--feature__box--text {
  line-height: 2.5;
  font-size: 1.6rem;
}

.h--feature__after {
  background-image: url(../images/common/icon__flow.png);
  background-repeat: no-repeat;
  background-size: 92px 120px;
  background-position: center top;
  padding: 80px 0 0;
  margin: -50px 0 25px;
}

.h--feature__after .en__text {
  color: #96715D20;
  display: block;
  font-size: 10.0rem;
  font-family: var(--font-serif);
  text-align: center;
  letter-spacing: -0.05em;
}

.h--feature__after .jp__text {
  display: block;
  font-size: 3.6rem;
  font-weight: 500;
  font-family: var(--font-serif);
  text-align: center;
}

.h--feature__check {
  background-color: #FFF;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px dashed #96715D;
  box-sizing: border-box;
}

.h--feature__check__inner {
  padding: 60px 70px;
}

.h--feature__check--list > li {
  border-bottom: 1px solid #DCD0C8;
  padding: 0 30px 25px 80px;
  margin: 0 0 25px;
  font-size: 2.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  background-image: url(../images/common/icon__bk__check01.svg);
  background-repeat: no-repeat;
  background-size: 30px 29px;
  background-position: left 30px top;
}

.h--feature__check--list > li:last-child {
  margin: 0;
  padding: 0 30px 25px 80px;
}

@media screen and (max-width: 768px) {
  .h--feature {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--feature__inner {
    max-width: initial;
  }
  .h--feature__box {
    margin: 0 0 calc(30 / 390 * 100vw);
    display: block;
  }
  .h--feature__box:nth-of-type(odd) .h--feature__box--content__inner {
    padding: 0;
  }
  .h--feature__box--photo {
    display: block;
    width: auto;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--feature__box--photo img {
    border-radius: calc(20 / 390 * 100vw);
  }
  .h--feature__box--content {
    display: block;
    width: auto;
  }
  .h--feature__box--number {
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .h--feature__box--number em {
    font-size: calc(12 / 390 * 100vw);
  }
  .h--feature__box--number strong {
    font-size: calc(50 / 390 * 100vw);
  }
  .h--feature__box--title {
    margin: 0 0 calc(10 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
  }
  .h--feature__box--title br {
    display: none;
  }
  .h--feature__box--text {
    line-height: 2;
    font-size: calc(15 / 390 * 100vw);
  }
  .h--feature__box--text br {
    display: none;
  }
  .h--feature__after {
    background-image: url(../images/common/icon__flow.png);
    background-repeat: no-repeat;
    background-size: calc(60 / 390 * 100vw) calc(80 / 390 * 100vw);
    padding: calc(50 / 390 * 100vw) 0 0;
    margin: calc(-40 / 390 * 100vw) 0 calc(20 / 390 * 100vw);
  }
  .h--feature__after .en__text {
    font-size: calc(50 / 390 * 100vw);
  }
  .h--feature__after .jp__text {
    font-size: calc(26 / 390 * 100vw);
  }
  .h--feature__check {
    max-width: initial;
    border-radius: calc(6 / 390 * 100vw);
  }
  .h--feature__check__inner {
    padding: calc(30 / 390 * 100vw) calc(20 / 390 * 100vw) calc(0 / 390 * 100vw);
  }
  .h--feature__check--list > li {
    padding: 0 0 calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
    font-family: var(--font-serif);
    line-height: 1.5;
    background-size: calc(20 / 390 * 100vw);
    background-position: left 0 top calc(5 / 390 * 100vw);
  }
  .h--feature__check--list > li:last-child {
    padding: 0 0 calc(20 / 390 * 100vw) calc(30 / 390 * 100vw);
    border: none;
  }
}

/*
    About Heat Fuzzy [.h--ahf]
--------------------------------------------------------------*/
.h--ahf {
  padding: 100px 30px;
  position: relative;
}

.h--ahf .c--ctnlist {
  max-width: 1020px;
  margin: 0 auto;
}

.h--ahf__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.h--ahf__wrap {
  border-radius: 20px;
  background-color: var(--color-secondary);
  margin: 0 auto 120px;
}

.h--ahf__main {
  margin: 0 0 55px;
}

.h--ahf__main img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
  border-radius: 20px 20px 0 0;
}

.h--ahf__contents {
  padding: 0 30px;
}

.h--ahf__contents__inner {
  max-width: 880px;
  margin: 0 auto;
}

.h--ahf__mainlead {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5;
  text-align: center;
  margin: 0 0 65px;
}

.h--ahf__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 80px;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: #000;
  font-weight: 400;
}

.h--ahf__title:before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background-color: #707070;
  margin-right: 20px;
}

.h--ahf__title:after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background-color: #707070;
  margin-left: 20px;
}

.h--ahf__box {
  padding: 0 0 30px;
  margin: 0 0 50px;
  border-bottom: 1px solid #E0D5D0;
  display: flex;
  justify-content: space-between;
}

.h--ahf__box:last-child {
  margin: 0;
  padding: 0 0 130px;
  border: none;
}

.h--ahf__box--illust {
  width: calc(210 / 880 * 100%);
  padding: 0 0 0 calc(50 / 880 * 100%);
}

.h--ahf__box--illust img {
  max-width: 160px;
  height: auto;
}

.h--ahf__box__content {
  width: calc(620 / 880 * 100%);
}

.h--ahf__box--title {
  font-family: var(--font-serif);
  font-size: 3.0rem;
  font-weight: 200;
  color: #96715D;
  margin: 0 0 15px;
}

.h--ahf__box--text {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .h--ahf {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--ahf__inner {
    max-width: initial;
  }
  .h--ahf__wrap {
    border-radius: calc(20 / 390 * 100vw);
    margin: 0 auto calc(60 / 390 * 100vw);
  }
  .h--ahf__main {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--ahf__main img {
    border-radius: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) 0 0;
  }
  .h--ahf__contents {
    padding: 0 calc(20 / 390 * 100vw);
  }
  .h--ahf__contents__inner {
    max-width: initial;
  }
  .h--ahf__mainlead {
    font-size: calc(16 / 390 * 100vw);
    line-height: 2.25;
    margin: 0 0 calc(30 / 390 * 100vw);
    text-align: left;
  }
  .h--ahf__mainlead br {
    display: none;
  }
  .h--ahf__title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto calc(30 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
  }
  .h--ahf__title:before {
    margin-right: calc(10 / 390 * 100vw);
  }
  .h--ahf__title:after {
    margin-left: calc(10 / 390 * 100vw);
  }
  .h--ahf__box {
    padding: 0 0 calc(20 / 390 * 100vw);
    margin: 0 0 calc(30 / 390 * 100vw);
  }
  .h--ahf__box:last-child {
    padding: 0 0 calc(30 / 390 * 100vw);
  }
  .h--ahf__box--illust {
    width: calc(80 / 390 * 100vw);
    padding: 0 0 0 calc(0 / 390 * 100vw);
  }
  .h--ahf__box--illust img {
    max-width: calc(100 / 390 * 100vw);
    height: auto;
  }
  .h--ahf__box__content {
    width: calc(200 / 390 * 100vw);
  }
  .h--ahf__box--title {
    font-size: calc(24 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
  }
  .h--ahf__box--text {
    font-size: calc(14 / 390 * 100vw);
    line-height: 2;
  }
}

/*
    Course [.h--course]
--------------------------------------------------------------*/
.h--course {
  padding: 100px 30px;
  position: relative;
  background-color: var(--color-secondary);
}

.h--course__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.h--course__box {
  margin: 0 auto 80px;
  max-width: 960px;
  background-color: #2F1306;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px dashed #96715D;
  position: relative;
}

.h--course__box--label {
  position: absolute;
  top: 10.5px;
  left: -16px;
  background-image: url(../images/common/icon__course__box.svg);
  background-size: cover;
  background-position: center;
  width: 233px;
  height: 68.57px;
  padding: 17.5px 0 0 40px;
  color: #96715D;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
}

.h--course__box--label em {
  font-size: 3.6rem;
  vertical-align: bottom;
}

.h--course__box__inner {
  padding: 60px 40px 40px;
  display: flex;
  justify-content: space-between;
}

.h--course .h--course--primary {
  width: calc(380 / 880 * 100%);
  padding: 40px 0 0;
}

.h--course .h--course--content {
  width: calc(470 / 880 * 100%);
}

.h--course .h--course--content .exp__text {
  color: #FFF;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 20px;
}

.h--course .h--course--content .price__block__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 20px;
  color: #FFF;
}

.h--course .h--course--content .price__block__text {
  font-size: 2.2rem;
  font-weight: 400;
  color: #CEB6A9;
  font-family: var(--font-serif);
}

.h--course .h--course--content .price__block__text em {
  font-size: 4.8rem;
  margin: 0 5.0px;
  letter-spacing: -0.05em;
}

.h--course__box__title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: #FFF;
  margin: 0 0 25px;
}

.h--course__box__meta {
  display: flex;
  align-items: center;
}

.h--course__box__meta dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: 90px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 20px 0 0;
}

.h--course__box__meta dd {
  font-size: 1.6rem;
  color: #FFF;
  font-weight: 700;
}

.h--course__profile {
  max-width: 880px;
  margin: 0 auto 110px;
}

.h--course__profile__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto 35px;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  color: #000;
  font-weight: 400;
}

.h--course__profile__title:before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background-color: #707070;
  margin-right: 20px;
}

.h--course__profile__title:after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background-color: #707070;
  margin-left: 20px;
}

.h--course__profile__box {
  border: 1px dashed #96715D;
  border-radius: 20px;
  background-color: #FFF;
}

.h--course__profile__box__inner {
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
}

.h--course__profile__figure {
  width: calc(260 / 800 * 100%);
}

.h--course__profile__content {
  width: calc(500 / 800 * 100%);
  padding: 20px 0 0;
}

.h--course__profile__name {
  margin: 0 0 20px;
}

.h--course__profile__name .name__jp {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  margin-right: 15px;
}

.h--course__profile__name .name__en {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.h--course__profile__text {
  font-size: 1.6rem;
  line-height: 2;
}

.h--course__profile__text a {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.h--course__profile__text a:link {
  text-decoration: underline;
  color: var(--color-primary);
}

.h--course__profile__text a:visited {
  text-decoration: underline;
  color: var(--color-primary);
}

.h--course__profile__text a:hover {
  text-decoration: underline;
  color: var(--color-primary);
  opacity: 0.45;
}

@media screen and (max-width: 768px) {
  .h--course {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--course__inner {
    max-width: initial;
  }
  .h--course__box {
    margin: 0 auto calc(50 / 390 * 100vw);
    max-width: initial;
    border-radius: calc(20 / 390 * 100vw);
  }
  .h--course__box--label {
    position: absolute;
    top: calc(10 / 390 * 100vw);
    left: calc(-16 / 390 * 100vw);
    width: calc(233 / 390 * 100vw);
    height: calc(68.75 / 390 * 100vw);
    padding: calc(17.5 / 390 * 100vw) 0 0 calc(30 / 390 * 100vw);
    font-size: calc(22 / 390 * 100vw);
  }
  .h--course__box--label em {
    font-size: calc(36 / 390 * 100vw);
  }
  .h--course__box__inner {
    padding: calc(90 / 390 * 100vw) calc(20 / 390 * 100vw) calc(40 / 390 * 100vw);
    display: block;
  }
  .h--course .h--course--primary {
    width: auto;
    margin: 0 0 calc(20 / 390 * 100vw);
    padding: calc(10 / 390 * 100vw) 0 0;
  }
  .h--course .h--course--content {
    width: auto;
  }
  .h--course .h--course--content .exp__text {
    font-size: calc(15 / 390 * 100vw);
    line-height: 1.86667;
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--course .h--course--content .price__block__title {
    font-size: calc(15 / 390 * 100vw);
    margin: 0 0 calc(10 / 390 * 100vw);
    display: block;
  }
  .h--course .h--course--content .price__block__text {
    font-size: calc(20 / 390 * 100vw);
  }
  .h--course .h--course--content .price__block__text em {
    font-size: calc(46 / 390 * 100vw);
    margin: 0 calc(10 / 390 * 100vw);
    letter-spacing: -0.015em;
  }
  .h--course__box__title {
    font-size: calc(30 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--course__box__meta dt {
    width: calc(90 / 390 * 100vw);
    height: calc(40 / 390 * 100vw);
    font-size: calc(15 / 390 * 100vw);
    margin: 0 calc(20 / 390 * 100vw) 0 0;
  }
  .h--course__box__meta dd {
    font-size: calc(15 / 390 * 100vw);
  }
  .h--course__profile {
    max-width: initial;
    margin: 0 auto calc(50 / 390 * 100vw);
  }
  .h--course__profile__title {
    margin: 0 auto calc(20 / 390 * 100vw);
    font-size: calc(24 / 390 * 100vw);
  }
  .h--course__profile__title:before {
    margin-right: calc(10 / 390 * 100vw);
  }
  .h--course__profile__title:after {
    margin-left: calc(10 / 390 * 100vw);
  }
  .h--course__profile__box {
    border-radius: calc(20 / 390 * 100vw);
  }
  .h--course__profile__box__inner {
    padding: calc(20 / 390 * 100vw);
    display: block;
  }
  .h--course__profile__figure {
    width: calc(200 / 390 * 100vw);
    margin: 0 auto calc(20 / 390 * 100vw);
  }
  .h--course__profile__figure img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .h--course__profile__content {
    width: auto;
    padding: 0;
  }
  .h--course__profile__name {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--course__profile__name .name__jp {
    font-size: calc(24 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
  }
  .h--course__profile__name .name__en {
    font-size: calc(12 / 390 * 100vw);
  }
  .h--course__profile__text {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.86667;
  }
}

/*
    Voice [.h--voice]
--------------------------------------------------------------*/
.h--voice {
  padding: 100px 30px;
  position: relative;
}

.h--voice__inner {
  max-width: 880px;
  margin: 0 auto;
}

.h--voice--box {
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;
}

.h--voice--box:last-child {
  margin: 0;
}

.h--voice--box__icons {
  width: calc(200 / 880 * 100%);
}

.h--voice--box__icons .voice__icons {
  margin: 0 0 0 40px;
  width: 160px;
  height: 160px;
}

.h--voice--box__icons .voice__icons img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.h--voice--box__contents {
  width: calc(600 / 880 * 100%);
  border: 1px dashed #96715D;
  background-color: #F5F3ED;
  border-radius: 20px;
  position: relative;
}

.h--voice--box__contents:before {
  content: "";
  position: absolute;
  width: 22.45px;
  height: 24px;
  background-image: url(../images/common/icon__voice.svg);
  background-size: cover;
  background-position: center;
  left: -22.45px;
  top: 50px;
}

.h--voice--box__contents__inner {
  padding: 30px 40px;
}

.h--voice--box__contents__inner p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1.5em;
}

.h--voice--box__contents--sign {
  text-align: right;
  color: #240F06;
  font-weight: 700;
  display: block;
}

@media screen and (max-width: 768px) {
  .h--voice {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--voice__inner {
    max-width: initial;
  }
  .h--voice--box {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--voice--box__icons {
    width: calc(80 / 390 * 100vw);
  }
  .h--voice--box__icons .voice__icons {
    margin: 0;
    width: calc(80 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
  }
  .h--voice--box__contents {
    width: calc(240 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw);
    z-index: 5;
    position: relative;
  }
  .h--voice--box__contents:before {
    width: calc(22.45 / 390 * 100vw);
    height: calc(24 / 390 * 100vw);
    left: calc(-22.5 / 390 * 100vw);
    top: calc(30 / 390 * 100vw);
    z-index: 10;
  }
  .h--voice--box__contents__inner {
    padding: calc(15 / 390 * 100vw);
  }
  .h--voice--box__contents__inner p {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.86667;
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .h--voice--box__contents--sign {
    text-align: left;
    font-size: calc(12 / 390 * 100vw);
    line-height: 1.25;
  }
}

/*
    FAQ [.h--faq]
--------------------------------------------------------------*/
.h--faq {
  padding: 100px 30px;
  position: relative;
  background-color: var(--color-secondary);
}

.h--faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.h--faq--box {
  border: 1px solid #A8A19E;
  background-color: #FFF;
  margin: 0 0 20px;
}

.h--faq--box:last-child {
  margin: 0;
}

.h--faq--box__inner {
  padding: 15px 20px;
}

.h--faq--box__title {
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}

.h--faq--box__title .icon__open {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 15px;
}

.h--faq--box__title .icon__open::before {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.h--faq--box__title .icon__open::after {
  content: "";
  position: absolute;
  background: #000;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  opacity: 1.0;
}

.h--faq--box__title.active .icon__open::after {
  opacity: 0;
}

.h--faq--box__title--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #64554F;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 2.4rem;
  color: #FFF;
  font-family: var(--font-serif);
}

.h--faq--box__title--content {
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0 20px 0 0;
  width: calc(780 / 880 * 100%);
  line-height: 1.25;
}

.h--faq--box__answerbox {
  margin: 25px 0;
  display: flex;
  position: relative;
}

.h--faq--box__answerbox__wrap {
  display: none;
}

.h--faq--box__answerbox--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5F3ED;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 20px;
  font-size: 2.4rem;
  color: #64554F;
  font-family: var(--font-serif);
}

.h--faq--box__answerbox__content {
  padding: 10px 0 0;
  width: calc(780 / 880 * 100%);
}

.h--faq--box__answerbox__content p {
  font-size: 1.6rem;
  line-height: 2.0;
}

@media screen and (max-width: 768px) {
  .h--faq {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
  .h--faq__inner {
    max-width: initial;
  }
  .h--faq--box {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .h--faq--box__inner {
    padding: calc(15 / 390 * 100vw) calc(10 / 390 * 100vw);
  }
  .h--faq--box__title .icon__open {
    width: calc(15 / 390 * 100vw);
    height: calc(15 / 390 * 100vw);
    right: calc(10 / 390 * 100vw);
    top: calc(10 / 390 * 100vw);
  }
  .h--faq--box__title--icon {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .h--faq--box__title--content {
    font-size: calc(16 / 390 * 100vw);
    padding: 0 calc(20 / 390 * 100vw) 0 0;
    width: calc(290 / 390 * 100vw);
    line-height: 1.25;
  }
  .h--faq--box__answerbox {
    margin: calc(20 / 390 * 100vw) 0;
  }
  .h--faq--box__answerbox__wrap {
    display: none;
  }
  .h--faq--box__answerbox--icon {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
    margin-right: calc(10 / 390 * 100vw);
    font-size: calc(18 / 390 * 100vw);
  }
  .h--faq--box__answerbox__content {
    padding: 0;
    width: calc(290 / 390 * 100vw);
  }
  .h--faq--box__answerbox__content p {
    font-size: calc(14 / 390 * 100vw);
    line-height: 2.0;
  }
}

/*
    Closing [.h--closing]
--------------------------------------------------------------*/
.h--closing {
  padding: 80px 30px 50px;
  position: relative;
}

.h--closing__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.h--closing .c--ctnlist {
  margin: 0 0 45px;
}

@media screen and (max-width: 768px) {
  .h--closing {
    padding: calc(50 / 390 * 100vw) calc(20 / 390 * 100vw);
    position: relative;
  }
  .h--closing__inner {
    max-width: initial;
    margin: 0 auto;
  }
  .h--closing .c--ctnlist {
    margin: 0 0 calc(20 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # _components.scss
--------------------------------------------------------------*/
/*  Common [Headline]
--------------------------------------------------------------*/
.c--headline {
  margin: 0 0 55px;
  text-align: center;
}

.c--headline span {
  display: block;
}

.c--headline .en__title {
  color: var(--color-third);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 0 0 15.5px;
  letter-spacing: normal;
}

.c--headline .jp__title {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .c--headline {
    margin: 0 0 calc(40 / 390 * 100vw);
  }
  .c--headline .en__title {
    font-size: calc(18 / 390 * 100vw);
    margin: 0 0 calc(15 / 390 * 100vw);
  }
  .c--headline .jp__title {
    font-size: calc(24 / 390 * 100vw);
  }
}

/*  Common [CTN Button]
--------------------------------------------------------------*/
.c--ctnlist {
  display: flex;
  justify-content: space-between;
}

.c--ctnlist__button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  border-radius: 60px;
  background-color: #48291C;
  box-sizing: border-box;
  border: 1px solid #48291C;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
  transform: scale(1);
  position: relative;
}

.c--ctnlist__button i {
  position: absolute;
  top: 42.5%;
  left: 10%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--ctnlist__button i img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

.c--ctnlist__button:link {
  text-decoration: none;
}

.c--ctnlist__button:visited {
  text-decoration: none;
}

.c--ctnlist__button:hover {
  transform: scale(1.025);
  filter: drop-shadow(0px 0px 20px rgba(72, 41, 28, 0.25));
  text-decoration: none;
}

.c--ctnlist__button:hover i {
  left: 11.5%;
}

.c--ctnlist__button span {
  color: #FFF;
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  font-weight: 400;
}

.c--ctnlist > li {
  width: calc(490 / 1020 * 100%);
}

@media screen and (max-width: 768px) {
  .c--ctnlist {
    display: block;
  }
  .c--ctnlist__button {
    width: calc(340 / 390 * 100vw);
    height: calc(80 / 390 * 100vw);
    border-radius: calc(40 / 390 * 100vw);
  }
  .c--ctnlist__button i {
    width: calc(20 / 390 * 100vw);
    top: 40.5%;
    left: 10%;
  }
  .c--ctnlist__button span {
    letter-spacing: 0.02em;
    font-size: calc(20 / 390 * 100vw);
  }
  .c--ctnlist > li {
    width: calc(340 / 390 * 100vw);
    margin: 0 0 calc(20 / 390 * 100vw);
  }
  .c--ctnlist > li:last-child {
    margin: 0;
  }
}

/*  Common [Coution list]
--------------------------------------------------------------*/
.c--coutionlist > li {
  font-size: 1.2rem;
  line-height: 1.33333;
  margin: 0 0 0.25em;
  text-indent: -1.0em;
  padding-left: 1.0em;
}

@media screen and (max-width: 768px) {
  .c--coutionlist > li {
    font-size: calc(11 / 390 * 100vw);
    line-height: 1.16667;
    margin: 0 0 calc(5 / 390 * 100vw);
  }
}

/*  Common [SNS list]
--------------------------------------------------------------*/
.c--snslist {
  display: flex;
  justify-content: center;
}

.c--snslist__icon {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1.0px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all  0.25s ease;
}

.c--snslist__icon:hover {
  opacity: 0.45;
}

.c--snslist > li {
  margin: 0 calc(10 / 960 * 100vw);
}

@media screen and (max-width: 768px) {
  .c--snslist__icon {
    width: calc(30 / 390 * 100vw);
    height: calc(30 / 390 * 100vw);
  }
  .c--snslist > li {
    margin: 0 calc(5 / 390 * 100vw);
  }
  .c--snslist > li img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .c--snslist > li .icon__xx {
    width: calc(12.15 / 390 * 100vw);
  }
  .c--snslist > li .icon__in {
    width: calc(14 / 390 * 100vw);
  }
  .c--snslist > li .icon__fb {
    width: calc(6.25 / 390 * 100vw);
  }
  .c--snslist > li .icon__li {
    width: calc(16.34 / 390 * 100vw);
  }
}

/*--------------------------------------------------------------
    # _pages.scss
--------------------------------------------------------------*/
/**
 # Objects -  utility -
 */
/*========== utility.scss ==========*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

/*--------------------------------------------------------------
    # _print.scss
--------------------------------------------------------------*/
@media print {
  .l--header {
    opacity: 100;
    position: relative;
    width: 100%;
  }
  .fadein {
    opacity: 1.0;
    transform: translate(0, 0);
  }
  .keyVisual__pritBlock {
    display: block !important;
  }
  .keyVisual__pritBlock img {
    width: 100%;
  }
  .keyVisual {
    height: auto !important;
  }
  .h--productsBox__thum {
    width: 640px;
    height: 480px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -60px;
  }
  .h--productsBox__thum img {
    width: 100%;
    transition: none !important;
  }
  .h--productsBox__thumCover {
    width: 640px;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    z-index: 10;
    transition: none !important;
  }
  .h--productsBox__title {
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: #FFF;
    line-height: 1.0;
  }
  .h--productsBox__titleEn {
    font-family: var(--font-main);
    display: block;
    font-size: 3.2rem;
    margin: 0 0 10px;
  }
  .h--productsBox__titleJp {
    font-size: 1.8rem;
  }
}
/*# sourceMappingURL=style.css.map */
