@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
}

caption {
  text-align: left;
}

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

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

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.common-header {
  max-width: 1279px;
  margin: 0 auto;
  margin-bottom: 1.3em;
}
@media screen and (min-width: 768px), print {
  .common-header {
    margin-bottom: 2em;
  }
}

.common-heading {
  display: block;
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 700;
  padding: 0.05em 0 0.05em 0.5em;
  border-left: 10px solid #244A9F;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 1099.98px) {
  .common-heading {
    font-size: 3rem;
    border-left: 8px solid #244A9F;
    padding: 0 0 0 0.4em;
  }
}
@media screen and (max-width: 767.98px) {
  .common-heading {
    font-size: 2rem;
    border-left: 5px solid #244A9F;
  }
}

.common-subheading {
  display: block;
  line-height: 1.2;
  background-color: #F3F3F3;
  color: #000;
  border-left: 10px solid #244A9F;
  padding: 0.93em 0.5em 0.9em 1.1em;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .common-subheading {
    font-size: 1.6rem;
    border-left: 8px solid #244A9F;
    padding: 0.93em 0.5em 0.9em 1em;
  }
}

/* 共通見出し（h3相当）*/
/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

.link-button {
  position: relative;
  display: inline-block;
  border-radius: 10em;
  background-color: #244A9F;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 0.5em 3.3em 0.5em 3.3em;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .link-button {
    font-size: 1.6rem;
    padding: 0.5em 2.5em 0.5em 2em;
  }
}
.link-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}
@media screen and (max-width: 767.98px) {
  .link-button::after {
    right: 15px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}
.link-button:hover {
  background-color: #244AC8;
}

.link-button__primary:hover {
  opacity: 0.8;
}

/* 共通リンクボタン（ホバー）*/
/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -151px;
  padding-bottom: 150px;
  background: transparent;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .anchor-point::before {
    margin-top: -209px;
    padding-bottom: 209px;
  }
}

@media screen and (min-width: 1100px), print {
  .global-contact {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    width: 160px;
    height: 100px;
  }
}
@media screen and (min-width: 1440px), print {
  .global-contact {
    width: 180px;
  }
}
@media screen and (min-width: 1600px), print {
  .global-contact {
    width: 206px;
  }
}
@media screen and (max-width: 1099.98px) {
  .global-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    z-index: 100;
  }
}
.nav-open .global-contact {
  z-index: -1;
  opacity: 0;
}
.global-contact-mail {
  width: 100%;
  height: 100%;
}
.global-contact-mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #244A9F;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.036em;
  font-weight: 700;
  padding: 0.5em;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 1440px), print {
  .global-contact-mail a {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .global-contact-mail a {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767.98px) {
  .global-contact-mail a {
    font-size: 1.6rem;
  }
}
.global-contact-mail a:hover {
  background-color: #244AC8;
}
.global-contact-nav {
  display: block;
  width: 100%;
  height: 100%;
}
.common-insta-button {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #212121;
  font-size: 1.8rem;
  line-height: 1.2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding: 0.8em 1.5em 0.8em 3.3em;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1099.98px) {
  .common-insta-button {
    font-size: 1.6rem;
    padding: 0.5em 0.8em 0.5em 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .common-insta-button {
    font-size: 1.2rem;
    padding: 0.5em 0.45em 0.5em 1.8em;
  }
}
.common-insta-button:hover {
  background-color: #244A9F;
}
.common-insta-button::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 22px;
  height: 22px;
  background: url("../img/base/icon_insta_wht.svg") no-repeat center/cover;
}
@media screen and (max-width: 1099.98px) {
  .common-insta-button::before {
    width: 16px;
    height: 16px;
    left: 9px;
  }
}
@media screen and (max-width: 479.98px) {
  .common-insta-button::before {
    width: 12px;
    height: 12px;
    left: 5px;
  }
}

.trial-button {
  display: none;
  position: fixed;
  z-index: 110;
}
@media screen and (min-width: 1100px), print {
  .trial-button {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 407px;
  }
}
@media screen and (max-width: 1099.98px) {
  .trial-button {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60px;
  }
}
.nav-open .trial-button {
  z-index: -1;
  opacity: 0;
}
.trial-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: url("../img/base/banner_trial.jpg") no-repeat center/cover;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1099.98px) {
  .trial-button a {
    background: url("../img/base/banner_trial2.jpg") no-repeat center/cover;
  }
}
.trial-button a:hover {
  opacity: 0.8;
}
.trial-button a span {
  position: relative;
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(244, 136, 22, 0.83), 0 0 12px rgba(244, 136, 22, 0.83), 0 50px 12px rgba(244, 136, 22, 0.83), 0 0 12px rgba(244, 136, 22, 0.83);
}
@media screen and (min-width: 1100px), print {
  .trial-button a span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-bottom: 1.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .trial-button a span {
    padding-right: 1.3em;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .trial-button a span {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}
.trial-button a span::after {
  content: "";
  position: absolute;
  display: block;
  width: 37px;
  height: 37px;
  background: url("../img/base/icon_arrow_right_wht.svg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .trial-button a span::after {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1099.98px) {
  .trial-button a span::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767.98px) {
  .trial-button a span::after {
    width: 20px;
    height: 20px;
  }
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}
/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: hidden;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .header {
    z-index: 1011;
  }
}
.header .inner {
  position: static;
  max-width: none;
  z-index: auto;
}
@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1010;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  position: absolute;
  top: 22px;
  left: 23px;
}
@media screen and (max-width: 1099.98px) {
  .header-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    font-size: 100%;
    z-index: 900;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #000;
    border-bottom: 4px solid #FFCC00;
  }
}
.header-logo .site-logo {
  width: 233px;
}
@media screen and (max-width: 1099.98px) {
  .header-logo .site-logo {
    width: 170px;
  }
}
@media screen and (max-width: 767.98px) {
  .header-logo .site-logo {
    width: 170px;
  }
}
.header-logo a,
.header-logo img {
  display: block;
  width: 100%;
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .header.fixed .header-logo {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .header.fixed .header-logo.hide {
    box-shadow: none;
  }
}
@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -60px;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  z-index: 1010;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 100px;
    margin: 0;
    opacity: 1;
    transition: none;
    z-index: 1010;
  }
}
.nav-open .nav {
  left: 0;
  opacity: 1;
}
@media screen and (min-width: 1100px), print {
  .nav-open .nav {
    left: 0;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-open .nav {
    transition: left 0.3s;
  }
}
.contact-open .nav {
  z-index: 920;
}
.nav .inner {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
}
@media screen and (max-width: 1099.98px) {
  .nav .inner {
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-logo {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding-left: 40px;
  }
  .nav-logo img {
    width: 160px;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-info {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-info {
    padding: 0 1em;
    margin-top: 0.85em;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-info-item:not(:last-child) {
    margin-bottom: 0.5em;
  }
  .nav-info-item dt, .nav-info-item dd {
    color: #000;
    line-height: 1.6;
    font-size: 1.2rem;
    letter-spacing: 0.036em;
  }
  .nav-info-item dt {
    font-weight: 700;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1100px), print {
  .nav-tel {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav-tel {
    text-align: center;
    margin-top: 0.9em;
  }
  .nav-tel .tel-link {
    position: relative;
    display: inline-block;
    padding-left: 2.7em;
  }
  .nav-tel .tel-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background-color: #000;
    background-image: url("../img/base/icon_tel_wht.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 55%;
  }
  .nav-tel .tel-link .tel-num {
    display: block;
    line-height: 1.2;
    font-size: 2.8rem;
    font-weight: 500;
    color: #000;
  }
}
.nav .nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #FFCC00;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1100px), print {
  .nav .nav-container {
    position: static;
    background-color: transparent;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1099.98px) {
  .nav .nav-container {
    padding-bottom: 32px;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    opacity: 0;
    padding: 55px 10px 15px;
  }
  .nav-open .main-nav {
    opacity: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 180px;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav {
    padding-right: 220px;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav {
    padding-right: 300px;
  }
}
.main-nav .nav-item {
  flex-grow: 1;
  position: relative;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 1em;
  }
}
@media screen and (min-width: 1280px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 1.5em;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (min-width: 1600px), print {
  .main-nav .nav-item:not(:last-child) {
    margin-right: 2.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    position: relative;
  }
}
.main-nav .nav-item.main-nav-active .nav-link {
  opacity: 0.7;
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-item.main-nav-active .nav-link {
    opacity: 0.7;
  }
}
.main-nav .nav-beginner {
  display: none;
}
.main-nav .nav-class {
  display: none;
}
.main-nav .nav-link {
  position: relative;
  display: block;
  line-height: 1.2;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.036em;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1440px), print {
  .main-nav .nav-link {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-size: 1.6rem;
    height: 53px;
    color: #000;
    background-color: transparent;
    border-bottom: 1px solid #000;
    padding: 0 1.5em 0 0.8em;
    letter-spacing: 0.036em;
    transition: color 0.3s ease;
  }
}
@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link:hover {
    color: #244A9F;
  }
}
@media screen and (min-width: 1100px), print {
  .main-nav .nav-link:hover {
    opacity: 0.7;
  }
}
.main-nav .nav-link span {
  position: relative;
  display: block;
  font-weight: 700;
}
/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}
.nav-open .nav-button {
  display: none;
}
.nav-button-icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 23px;
  height: 3px;
  margin: auto;
  background-color: #fff;
}
.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: #fff;
}
.nav-button-icon::before {
  margin-top: -8px;
}
.nav-button-icon::after {
  margin-top: 8px;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}
.nav-close-button .nav-button-icon {
  background: none;
}
.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  margin-top: 0;
  background-color: #000;
}
.nav-close-button .nav-button-icon::before {
  transform: rotate(45deg);
}
.nav-close-button .nav-button-icon::after {
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}
.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: 0.4;
  cursor: pointer;
}

@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -60px;
    background-color: #000;
    transform: translateY(60px);
    transition: transform 0.2s;
  }
  #top .nav.fixed {
    top: -60px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 2em 1em 0 1em;
  background: #fff;
  z-index: 100;
  flex: 1;
  overflow-x: hidden;
}
#top .main {
  padding: 0 1em 0 1em;
}
@media screen and (min-width: 1100px), print {
  .main {
    padding: 5em 2em 0 2em;
    overflow: visible;
  }
  #top .main {
    padding: 0 2em 0 2em;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
@media screen and (max-width: 1099.98px) {
  .footer {
    padding-bottom: 60px;
  }
}
.footer .inner {
  max-width: none;
}
.footer-container {
  padding: 0 2em 2.5em 2em;
}
@media screen and (max-width: 1099.98px) {
  .footer-container {
    padding: 0 1em 1.5em 1em;
  }
}
.footer-social {
  max-width: 1416px;
  margin: 0 auto;
  margin-bottom: 2.2em;
}
@media screen and (max-width: 1099.98px) {
  .footer-social {
    margin-bottom: 1.5em;
  }
}
.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -10px 0;
}
@media screen and (max-width: 479.98px) {
  .footer-social-list {
    margin: 0 -5px -5px 0;
  }
}
.footer-social-list li {
  width: 25%;
  list-style: none;
  padding: 0 10px 10px 0;
}
@media screen and (max-width: 767.98px) {
  .footer-social-list li {
    width: 50%;
  }
}
@media screen and (max-width: 479.98px) {
  .footer-social-list li {
    padding: 0 5px 5px 0;
  }
}
.footer-social-list li a {
  transition: opacity 0.3s ease;
}
.footer-social-list li a:hover {
  opacity: 0.8;
}
.footer-banner {
  max-width: 1416px;
  margin: 0 auto;
  padding-bottom: 4em;
}
@media screen and (max-width: 767.98px) {
  .footer-banner {
    padding-bottom: 2em;
  }
}
.footer-banner-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3.5em -2em 0;
}
@media screen and (max-width: 1099.98px) {
  .footer-banner-container {
    margin: 0 -2em -2em 0;
  }
}
@media screen and (max-width: 991.98px) {
  .footer-banner-container {
    margin: 0 -1em -1em 0;
  }
}
@media screen and (max-width: 575.98px) {
  .footer-banner-container {
    justify-content: center;
  }
}
.footer-banner-item {
  width: 33.33333%;
  padding: 0 3.5em 2em 0;
}
@media screen and (max-width: 1099.98px) {
  .footer-banner-item {
    padding: 0 2em 2em 0;
  }
}
@media screen and (max-width: 991.98px) {
  .footer-banner-item {
    padding: 0 1em 1em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-banner-item {
    width: 50%;
  }
}
@media screen and (max-width: 575.98px) {
  .footer-banner-item {
    width: 100%;
    max-width: 440px;
  }
}
.footer-banner-item:nth-child(1) a {
  pointer-events: none;
}
.footer-banner-item:nth-child(2) a {
  pointer-events: none;
}
.footer-banner-link {
  transition: opacity 0.3s ease;
}
.footer-banner-link:hover {
  opacity: 0.8;
}
.footer-banner-image {
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .footer-banner-image {
    margin-bottom: 0.8em;
  }
}
.footer-banner-text {
  font-size: 1.5rem;
  line-height: 1.66;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .footer-banner-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -3em -0.5em 0;
}
@media screen and (max-width: 1099.98px) {
  .footer-nav-list {
    margin: 0 -1em -0.5em 0;
  }
}
.footer-nav-list li {
  list-style: none;
  padding: 0 3em 0.5em 0;
}
@media screen and (max-width: 1099.98px) {
  .footer-nav-list li {
    padding: 0 1em 0.5em 0;
  }
}
.footer-nav-list li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #000;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .footer-nav-list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .footer-nav-list li a {
    font-size: 1.2rem;
  }
}
.footer-nav-list li a:hover {
  opacity: 0.8;
}
.footer .pagetop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 70px;
  width: 45px;
  height: 45px;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 70px;
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
  }
}
.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}
.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  border-radius: 0.35rem;
  background-color: #449DBF;
  transition-property: background-color;
  transition-duration: 0.2s;
}
.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #244A9F;
}
.footer .pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.footer .copy {
  overflow: hidden;
  background-color: #244A9F;
  padding: 1em;
}
.footer .copy small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 1099.98px) {
  .footer .copy small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .footer .copy span {
    display: none;
  }
}

.swiper-container {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  padding-bottom: 40px;
}
@media screen and (min-width: 1100px), print {
  .swiper-container {
    padding-bottom: 60px;
  }
}
.swiper-img {
  display: block;
  position: relative;
}
.swiper-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
@media screen and (min-width: 1100px), print {
  .swiper-img img {
    min-height: 749px;
    height: 749px;
  }
}
@media screen and (max-width: 1099.98px) {
  .swiper-img img {
    min-height: 47vw;
  }
}

.slider {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1100px), print {
  .slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 113px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgb(0, 0, 0) 7%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
  }
}
@media screen and (max-width: 1099.98px) {
  .slider {
    margin-top: 64px;
  }
}
.slider .inner {
  width: 100%;
  height: 100%;
  max-width: none;
}
.slider-main {
  position: relative;
}
.slider-main-container {
  display: block;
  position: relative;
}
.slider-main-container::before {
  content: "";
  display: block;
  padding-top: 40.7%;
}
@media screen and (min-width: 1280px), print {
  .slider-main-container::before {
    padding-top: 749px;
  }
}
.slider-sns {
  position: absolute;
  top: calc(50% - 60px);
  left: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 1099.98px) {
  .slider-sns {
    top: calc(50% - 40px);
    left: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .slider-sns {
    top: auto;
    bottom: 40px;
    left: 20px;
    flex-direction: row;
  }
}
@media screen and (max-width: 479.98px) {
  .slider-sns {
    left: 15px;
  }
}
.slider-sns span {
  position: relative;
  display: inline-block;
  padding-bottom: 5.4em;
  padding-left: 5px;
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.036em;
}
@media screen and (max-width: 767.98px) {
  .slider-sns span {
    font-size: 1.2rem;
    padding-bottom: 0;
    padding-right: 4.4em;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px), print {
  .slider-sns span {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.slider-sns span::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 59px;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .slider-sns span::after {
    height: 1px;
    width: 30px;
    top: 54%;
    right: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .slider-sns span::after {
    bottom: 10px;
    left: 49%;
  }
}
.slider-sns a {
  transition: opacity 0.3s ease;
}
.slider-sns a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px), print {
  .slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.slider .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 100;
}
@media screen and (max-width: 1099.98px) {
  .slider .swiper-pagination {
    bottom: 15px;
  }
}
.slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #999;
  color: #444444;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  border-radius: 100%;
}
@media screen and (max-width: 1099.98px) {
  .slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}
.slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 1099.98px) {
  .slider .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
    margin: 0 10px 0 0;
  }
}
.slider .swiper-pagination .swiper-pagination-bullet span {
  font-weight: 500;
}
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #244A9F;
}

.swiper-arrow {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  z-index: 1200;
  max-width: 1175px;
}
@media screen and (min-width: 1600px), print {
  .swiper-arrow {
    max-width: 1310px;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.page-title {
  height: 448px;
}
@media screen and (max-width: 1099.98px) {
  .page-title {
    margin-top: 64px;
    height: 280px;
  }
}
@media screen and (max-width: 767.98px) {
  .page-title {
    height: 200px;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title {
    height: 160px;
  }
}
.page-title-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background: url("../img/base/pagetitle.jpg") no-repeat center/cover;
  max-width: none;
  margin: 0 auto;
}
@media screen and (max-width: 1099.98px) {
  .page-title-inner {
    align-items: center;
    justify-content: center;
  }
}
.page-title-name span {
  display: block;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.036em;
  line-height: 1.2;
  text-shadow: 5px 5px 12px rgba(39, 34, 92, 0.65), -5px -5px 12px rgba(39, 34, 92, 0.65), 5px 5px 12px rgba(39, 34, 92, 0.65), -5px -5px 12px rgba(39, 34, 92, 0.65), 5px 5px 12px rgba(39, 34, 92, 0.65), -5px -5px 12px rgba(39, 34, 92, 0.65), 5px 5px 12px rgba(39, 34, 92, 0.65), -5px -5px 12px rgba(39, 34, 92, 0.65);
}
@media screen and (max-width: 767.98px) {
  .page-title-name span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-name span {
    font-size: 2.4rem;
  }
}

/* --------------------------------

  アニメーション

-------------------------------- */
._anim-point {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity transform;
  transition-duration: 0.5s;
  transition-delay: 0.3s;
  transition-timing-function: ease;
}
._anim-point.active {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------

  上部固定ボタン（お問い合わせ）

-------------------------------- */
/* お問い合わせ（電話）*/
@media screen and (min-width: 1100px), print {
  .tel-button {
    display: none;
  }
}
@media screen and (max-width: 1099.98px) {
  .tel-button {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    background-color: transparent;
    cursor: pointer;
    z-index: 910;
    transition: background-color 0.3s ease;
  }
  .tel-button:hover {
    background-color: #244A9F;
  }
  .tel-button a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .tel-button a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 21px;
    height: 21px;
    background: url("../img/base/icon_tel_wht.svg") no-repeat center/cover;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
.form-fin-link:hover {
  color: #244A9F;
}

.contact-form-section {
  padding: 0 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .contact-form-section {
    padding: 0 2em 5em 2em;
  }
}

/* レイアウト用 */
.form-check {
  margin-bottom: 0;
  padding-left: 0;
}
.form-check-inline {
  padding-left: 0;
}
.form-check-label {
  display: inline-flex;
  vertical-align: top;
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.8rem;
  color: #666666;
  font-feature-settings: "palt";
}
.form-check-icon {
  display: block;
  margin: 2px 0.6em 0 0;
}
@media screen and (max-width: 639.98px) {
  .form-check-icon {
    margin: 2px 0.6em 0 0;
  }
}
.form-check-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  background-color: #fff;
  transition: border-color 0.2s, background-color 0.2s;
}
@media screen and (min-width: 640px), print {
  .form-check-icon::before {
    width: 24px;
    height: 24px;
  }
}
.form-check-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 8px;
  width: 9px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}
@media screen and (min-width: 640px), print {
  .form-check-checkbox::after {
    top: 5px;
    left: 8px;
    width: 9px;
    height: 14px;
  }
}
.form-check-radio::before {
  border-radius: 100%;
  border-color: #666666;
  width: 22px;
  height: 22px;
}
.form-check-radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: transparent;
  transition: background-color 0.2s;
}
@media screen and (min-width: 1100px), print {
  .form-check-radio::after {
    left: 4px;
    width: 14px;
    height: 14px;
  }
}
.form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check-input[type=radio]:checked + .form-check-icon::after {
  background-color: #244A9F;
}
.form-check-input[type=checkbox]:checked + .form-check-icon::before {
  border-color: #244A9F;
  background-color: #244A9F;
}
.form-check-input[type=checkbox].validate-error + .form-check-icon::before, .form-check-input[type=radio].validate-error + .form-check-icon::before {
  border-color: #c00;
}

.privacy-check-agree {
  text-align: center;
  margin-top: 2em;
}
.privacy-check-agree input {
  display: none;
}
.privacy-check-agree input:checked + label::after {
  opacity: 1;
}
.privacy-check-agree label {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  padding-left: 2em;
  display: inline-block;
}
.privacy-check-agree label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 0.2em;
  border: 1px solid #003371;
}
.privacy-check-agree label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -1px;
  display: block;
  width: 10px;
  height: 15px;
  transform: rotate(-135deg);
  border-top: 3px solid #003371;
  border-left: 3px solid #003371;
  opacity: 0;
}

.form-table {
  display: block;
  line-height: 1.5;
}
.form-table tbody {
  display: block;
}
.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
  }
  .form-table tr:not(:last-child) {
    margin-bottom: 2em;
  }
}
.form-table th {
  position: relative;
  vertical-align: middle;
  width: 245px;
  padding: 1.15em 1em 1em 1em;
  background-color: #EEEEEE;
}
@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: auto;
    margin-bottom: 1em;
    padding: 0 0 0.5em;
    border-bottom: 2px solid #244A9F;
    background: none;
  }
}
.form-table td {
  vertical-align: middle;
  font-weight: 500;
  padding: 1em;
  font-size: 1.8rem;
  color: #666666;
}
@media screen and (max-width: 1099.98px) {
  .form-table td {
    padding-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0 0.5em;
  }
}
.form-table td div {
  font-weight: 500;
}

/* レイアウト用：タイトル */
.form-label {
  max-width: 100%;
  min-width: 6em;
}

/* レイアウト用：チェックボックス・ラジオボタン */
.form-check {
  margin: 0 1.5em 1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check {
    margin: 0 0 0.5em 0;
  }
}
.form-check-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1.5em -1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 -0.5em 0;
  }
}
.form-check-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -1.5em -1em 0;
}
@media screen and (max-width: 479.98px) {
  .form-check-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 -0.5em 0;
  }
}

/* フォーム部品：タイトル */
.form-title {
  vertical-align: middle;
  font-weight: 500;
  font-size: 1.8rem;
  color: #666666;
}
.form-title .desc {
  font-size: 1.2rem;
  line-height: 1.2;
  display: block;
  margin-top: 0.4em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .form-title .desc {
    display: inline-block;
    margin-left: 0.5em;
  }
}

/* フォーム部品：入力必須マーク */
.form-icon {
  float: right;
}
.form-icon::before {
  content: "";
  display: block;
  width: 58px;
  margin: auto;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.8em;
  text-align: center;
  border-radius: 0;
  font-weight: 400;
  margin-top: -2px;
}
@media screen and (max-width: 767.98px) {
  .form-icon::before {
    font-size: 1.6rem;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 479.98px) {
  .form-icon::before {
    font-size: 1.4rem;
    width: 50px;
    margin-top: 1px;
  }
}
.form-icon-required::before {
  content: "必須";
  color: #fff;
  background-color: #c00;
}
@media screen and (max-width: 767.98px) {
  .form-icon-free::before {
    content: "任意";
    color: #fff;
    background-color: #fff;
  }
}

/* フォーム部品：入力欄 */
.form-control {
  width: 100%;
  height: 2.28em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  padding: 0 0.5em;
  color: #000000;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0;
  border: 1px solid #D6D6D6;
  background-color: #fff;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:active, .form-control:focus {
  border-color: #444444;
  background-color: #fff;
  outline: none;
}
.form-control:active, .form-control:focus {
  box-shadow: none;
  border-color: #444444;
  background-color: #fff;
  outline: none;
}
@media screen and (max-width: 767.98px) {
  .form-control {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.form-group-fluid {
  margin-bottom: 1em;
}
@media screen and (max-width: 479.98px) {
  .form-group-fluid {
    margin-bottom: 0.6em;
  }
}
.form-group-fluid .form-text-left {
  font-size: 1.7rem;
  line-height: 1.2;
  color: #545454;
}

.form-short {
  max-width: 120px;
  text-align: center;
}

.form-middle {
  max-width: 233px;
}

.form-low {
  height: 1.6em;
}
@media screen and (max-width: 767.98px) {
  .form-low {
    height: 2em;
  }
}

.form-inline {
  display: inline-flex;
  margin-top: 0;
  margin-bottom: 0;
}
.form-inline-right {
  margin-left: 0.5em;
}
.form-inline-left {
  margin-right: 0.5em;
}
.form-inline-both {
  margin-right: 0.5em;
  margin-left: 0.5em;
}

/* フォーム部品：テキストエリア */
.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 8em;
  min-height: 2.5em;
  max-height: 16em;
  padding: 0.5em 0.5em 0;
}
.form-textarea-low {
  height: 2.5em;
}
.form-textarea-high {
  height: 16em;
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  max-width: 233px;
  color: #000000;
  background-color: #fff;
}
@media screen and (max-width: 479.98px) {
  .select-wrap {
    max-width: 233px;
  }
}
@media screen and (max-width: 359.98px) {
  .select-wrap {
    max-width: 233px;
  }
}
.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 1.8em;
  padding-left: 1.1em;
  color: #666666;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrap select option {
  background-color: #fff;
}
.select-wrap select::-ms-expand {
  display: none;
}
.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin: auto;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #666666;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}
.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  cursor: pointer;
}
.form-box + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #fff;
}
.form-box + label::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}
.form-box:checked + label {
  color: #244AC8;
}
.form-box:checked + label::before {
  border-color: #244AC8;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label::before {
  border-radius: 100%;
}
.form-box-radio + label::after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}
.form-box-radio:checked + label::after {
  background-color: #244AC8;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label::before {
  border-radius: 0;
}
.form-box-check + label::after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #244AC8;
  border-bottom: 3px solid #244AC8;
  opacity: 0;
  transform: rotate(-45deg);
}
.form-box-check:checked + label::after {
  opacity: 1;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #c00;
}

span.validate-error {
  display: block !important;
  font-size: 0.85em;
  color: #c00;
}
span.validate-error:first-of-type {
  margin-top: 1em;
}
.error-message-check span.validate-error:first-of-type {
  margin-top: 0;
  margin-bottom: -0.5em;
}
.error-message-check span.validate-error:not(:first-of-type) {
  display: none !important;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  padding-top: 1.5em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .form-buttons {
    padding-top: 1.5em;
  }
}

.form-button[disabled] {
  pointer-events: none;
}

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 72px;
  border: 0;
  border-radius: 0;
  background: none;
  font-weight: normal;
  font-size: 100%;
  font-size: 1.8rem;
  display: inline-block;
  vertical-align: top;
  position: relative;
  text-align: center;
  margin: 0.5em;
  padding: 0.8em 2em 0.8em 3em;
  color: #fff;
  line-height: 1.1;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.form-button-send {
  border-color: #244A9F;
  background: #244A9F;
  border-radius: 10em;
}
.form-button-send:hover {
  border-color: #244AC8;
  background: #244AC8;
}
.form-button-back {
  border-color: #999;
  background: #999;
}
.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}
.form-button-inline {
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.425em 0.9em 0.45em 0.9em;
  font-size: 1.7rem;
}
.form-button-inline::after {
  display: none;
}
.form-button-search {
  border-color: #fff;
  background: #D6D6D6;
}
.form-button-search:hover {
  border-color: #244A9F;
  background: #244A9F;
}
.form-button-upload {
  margin: 0;
  padding: 0.8em 1em;
  font-size: 1.1em;
  color: #fff;
  background: #e21664;
}
.form-button-upload:hover {
  color: #fff;
  text-decoration: none;
  background: #e94709;
}
.form-button-upload::after {
  display: none;
}

.form-area-age .form-short {
  margin-right: 1em;
}
@media screen and (max-width: 479.98px) {
  .form-area-age .form-short {
    margin-right: 0.6em;
  }
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 1099.98px) {
  .loader {
    position: absolute;
    height: auto;
    padding-top: 50%;
  }
}
.loader.loading {
  opacity: 1;
  pointer-events: auto;
}
.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #ddd;
  border-top: 4px solid #244AC8;
  border-radius: 50%;
  z-index: 1;
  animation: spin 3s linear infinite;
}
@media screen and (max-width: 1099.98px) {
  .loader::before {
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    border-top: 2px solid #244AC8;
    top: 0;
  }
}
.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}
@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}
.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}
.section-secondary:not(:last-child) {
  margin-bottom: 10em;
}
@media screen and (max-width: 639.98px) {
  .section-secondary:not(:last-child) {
    margin-bottom: 3em;
  }
}
.section-secondary .inner {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}
.section-dummy {
  text-align: center;
}
.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}
.section-dummy .inner {
  max-width: none;
  text-align: center;
}
.section-dummy_wide {
  overflow: hidden;
}
.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}
@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}
.top-banner-section {
  padding: 1.5em 1em 2.5em 1em;
}
@media screen and (min-width: 1100px), print {
  .top-banner-section {
    padding: 5em 2em;
  }
}
.top-banner-section .inner {
  max-width: 1436px;
}
.top-banner-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3.5em -2em 0;
}
@media screen and (max-width: 1099.98px) {
  .top-banner-container {
    margin: 0 -2em -2em 0;
  }
}
@media screen and (max-width: 991.98px) {
  .top-banner-container {
    margin: 0 -1em -1em 0;
  }
}
@media screen and (max-width: 575.98px) {
  .top-banner-container {
    justify-content: center;
  }
}
.top-banner-item {
  width: 33.33333%;
  padding: 0 3.5em 2em 0;
}
@media screen and (max-width: 1099.98px) {
  .top-banner-item {
    padding: 0 2em 2em 0;
  }
}
@media screen and (max-width: 991.98px) {
  .top-banner-item {
    padding: 0 1em 1em 0;
  }
}
@media screen and (max-width: 767.98px) {
  .top-banner-item {
    width: 50%;
  }
}
@media screen and (max-width: 575.98px) {
  .top-banner-item {
    width: 100%;
    max-width: 440px;
  }
}
.top-banner-item:nth-child(1) a {
  pointer-events: none;
}
.top-banner-item:nth-child(2) a {
  pointer-events: none;
}
.top-banner-link {
  transition: opacity 0.3s ease;
}
.top-banner-link:hover {
  opacity: 0.8;
}
.top-banner-image {
  margin-bottom: 1em;
}
@media screen and (max-width: 767.98px) {
  .top-banner-image {
    margin-bottom: 0.8em;
  }
}
.top-banner-text {
  font-size: 1.5rem;
  line-height: 1.66;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .top-banner-text {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.top-about-section {
  padding: 3em 1em;
  background: url("../img/top/bg1.jpg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .top-about-section {
    padding: 6em 2em;
  }
}
.top-about-logo {
  text-align: center;
  margin-bottom: 2.3em;
}
@media screen and (max-width: 767.98px) {
  .top-about-logo {
    margin-bottom: 1.8em;
  }
}
.top-about-text {
  text-align: center;
  line-height: 2.4;
  font-size: 2rem;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1099.98px) {
  .top-about-text {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.98px) {
  .top-about-text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.top-about-text p:not(:last-child) {
  margin-bottom: 1em;
}
.top-about-text .br {
  display: none;
}
@media screen and (min-width: 768px), print {
  .top-about-text .br {
    display: block;
  }
}

.top-teachers-section {
  padding: 3em 1em;
  background-image: url("../img/base/bg_degisn.png");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  background-size: 1600px auto;
}
@media screen and (min-width: 1100px), print {
  .top-teachers-section {
    padding: 6em 2em;
  }
}
@media screen and (max-width: 767.98px) {
  .top-teachers-section {
    background-position-x: right;
  }
}
.top-teachers-section .inner {
  max-width: 1279px;
}
.top-teachers-section.__secondary {
  padding-top: 0;
}
@media screen and (min-width: 1100px), print {
  .top-teachers-body {
    padding-left: 2em;
  }
}
.top-teachers-block:not(:last-child) {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px), print {
  .top-teachers-block:not(:last-child) {
    margin-bottom: 4em;
  }
}
.top-teachers-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px -20px 0;
}
@media screen and (max-width: 767.98px) {
  .top-teachers-gallery {
    margin: 0 -10px -10px 0;
  }
}
@media screen and (max-width: 479.98px) {
  .top-teachers-gallery {
    padding: 0 -5px -5px 0;
  }
}
.top-teachers-gallery li {
  list-style: none;
  width: 25%;
  padding: 0 20px 20px 0;
}
@media screen and (max-width: 767.98px) {
  .top-teachers-gallery li {
    padding: 0 10px 10px 0;
    width: 33.33333%;
  }
}
@media screen and (max-width: 479.98px) {
  .top-teachers-gallery li {
    width: 50%;
    padding: 0 5px 5px 0;
  }
}
.top-teachers-gallery li a {
  display: block;
  overflow: hidden;
}
.top-teachers-gallery li a:hover .teachers-img img {
  transform: scale(1.1);
}

.teachers-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.teachers-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.teachers-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.top-social-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .top-social-section {
    padding: 0 2em 6em 2em;
  }
}
.top-social-section .inner {
  max-width: 1279px;
}
.top-social-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .top-social-container {
    flex-direction: column;
    justify-content: center;
  }
}
.top-social-list {
  max-width: 390px;
}
@media screen and (max-width: 991.98px) {
  .top-social-list {
    max-width: 795px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -10px 0;
  }
}
@media screen and (max-width: 479.98px) {
  .top-social-list {
    margin: 0 -5px -5px 0;
  }
}
.top-social-list li {
  list-style: none;
}
@media screen and (max-width: 991.98px) {
  .top-social-list li {
    width: 50%;
    padding: 0 10px 10px 0;
  }
}
@media screen and (max-width: 479.98px) {
  .top-social-list li {
    padding: 0 5px 5px 0;
  }
}
@media screen and (min-width: 992px), print {
  .top-social-list li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.top-social-list li a {
  transition: opacity 0.3s ease;
}
.top-social-list li a:hover {
  opacity: 0.8;
}
.top-social-news {
  flex: 1;
  min-width: 0;
  margin-right: 2em;
}
@media screen and (max-width: 991.98px) {
  .top-social-news {
    margin-right: 0;
    margin-bottom: 2em;
    width: 100%;
  }
}

.band-image {
  margin: 0 -1em 2.5em -1em;
}
@media screen and (min-width: 1100px), print {
  .band-image {
    margin: 0 -2em 6em -2em;
  }
}
@media screen and (min-width: 1100px), print {
  .band-image img {
    width: 100%;
    height: 406px;
    object-fit: cover;
  }
}
.top-movie-section {
  padding: 2.5em 1em 2.5em 1em;
  background: url("../img/top/bg3.jpg") no-repeat center/cover;
}
@media screen and (min-width: 1100px), print {
  .top-movie-section {
    padding: 5em 2em 5em 2em;
  }
}
.top-movie-section .inner {
  max-width: 1279px;
}
.top-movie-section .common-heading {
  color: #fff;
}
.top-movie-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px -20px 0;
}
.top-movie-item {
  width: 50%;
  padding: 0 20px 20px 0;
}
@media screen and (max-width: 767.98px) {
  .top-movie-item {
    width: 100%;
  }
}
.top-movie-iframe {
  position: relative;
  margin-bottom: 1.1em;
  padding-top: 58%;
}
.top-movie-iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top-movie-title {
  display: block;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.036em;
  color: #fff;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1099.98px) {
  .top-movie-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .top-movie-title {
    font-size: 1.8rem;
  }
}
.top-movie-text {
  font-size: 2rem;
  line-height: 1.48;
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (max-width: 1099.98px) {
  .top-movie-text {
    font-size: 1.6rem;
  }
}
.top-movie-more {
  text-align: center;
  margin-top: 2em;
}

.top-access-section {
  padding: 3em 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .top-access-section {
    padding: 6em 2em 6em 2em;
  }
}
.top-access-section .inner {
  max-width: 1279px;
}
.top-access-container {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1100px), print {
  .top-access-container {
    margin-left: 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .top-access-container {
    flex-direction: column;
  }
}
.top-access-main {
  width: 50%;
  margin-right: 2em;
}
@media screen and (max-width: 1099.98px) {
  .top-access-main {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.top-access-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.top-access-table tr:last-child th, .top-access-table tr:last-child td {
  border-bottom: 0;
}
.top-access-table th, .top-access-table td {
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 1.2;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px dotted #C8C8C8;
}
@media screen and (max-width: 767.98px) {
  .top-access-table th, .top-access-table td {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .top-access-table th, .top-access-table td {
    font-size: 1.2rem;
    font-feature-settings: "palt";
  }
}
.top-access-table th {
  width: 7em;
  font-weight: 700;
  color: #244A9F;
}
@media screen and (max-width: 767.98px) {
  .top-access-table th {
    width: 5.5em;
  }
}
.top-access-map {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1099.98px) {
  .top-access-map {
    width: 100%;
    max-width: 630px;
  }
}
@media screen and (max-width: 479.98px) {
  .top-access-map {
    padding-top: 90%;
  }
  .top-access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.teachers-detail-section {
  padding: 0 1em 3em 1em;
  background-image: url("../img/base/bg_degisn.png");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 150px;
  background-size: 1600px auto;
}
@media screen and (max-width: 767.98px) {
  .teachers-detail-section {
    background-position-x: right;
    background-position-y: center;
  }
}
@media screen and (min-width: 1100px), print {
  .teachers-detail-section {
    padding: 0 2em 6em 2em;
  }
}
.teachers-detail-section .common-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3em;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-section .common-header {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .teachers-detail-section .common-header {
    margin-bottom: 1em;
  }
}
.teachers-detail-section .common-heading {
  margin-right: 1em;
  flex: 1;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-section .common-heading {
    margin-right: 0.5em;
  }
}
@media screen and (max-width: 479.98px) {
  .teachers-detail-section .common-heading {
    font-size: 1.6rem;
  }
}
.teachers-detail-container {
  display: flex;
  padding: 0 1.5em;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-container {
    flex-direction: column;
    padding: 0;
  }
}
.teachers-detail-thumb {
  max-width: 480px;
  text-align: center;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-thumb {
    margin: 0 auto;
  }
}
.teachers-detail-body {
  flex: 1;
  min-width: 0;
  margin-left: 3em;
  line-height: 2;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-body {
    margin-left: 0;
    margin-top: 2em;
    line-height: 1.8;
    font-size: 1.6rem;
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 479.98px) {
  .teachers-detail-body {
    line-height: 1.6;
    font-size: 1.4rem;
  }
}
.teachers-detail-body h2 {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  padding: 0.5em 0 0.5em 0;
  font-weight: 500;
  border-bottom: 2px solid #000;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767.98px) {
  .teachers-detail-body h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 479.98px) {
  .teachers-detail-body h2 {
    font-size: 1.6rem;
  }
}
.teachers-detail-body ul {
  margin: 0.5em 0 1em 1em;
}
.teachers-detail-body ul li {
  position: relative;
  list-style: none;
  padding-left: 1em;
}
.teachers-detail-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #244A9F;
}
@media screen and (max-width: 1099.98px) {
  .teachers-detail-body ul li::before {
    top: 0.53em;
  }
}
@media screen and (max-width: 767.98px) {
  .teachers-detail-body ul li::before {
    top: 0.49em;
  }
}

.news-section .news-list {
  margin-bottom: 2em;
}
@media screen and (max-width: 479.98px) {
  .news-section .news-list {
    margin-bottom: 2em;
  }
}
.news-section .common-header {
  max-width: 1100px;
}
.news-detail-section .news-date {
  margin-bottom: 0.7em;
}
.news-list.__colum {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em -2em 0;
}
.news-list.__colum .news-topics {
  width: calc(25% - 16px);
  margin: 0 1em 2em 0;
  padding: 0;
}
@media screen and (max-width: 1099.98px) {
  .news-list.__colum .news-topics {
    width: calc(33.333333% - 16px);
  }
}
@media screen and (max-width: 767.98px) {
  .news-list.__colum .news-topics {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 479.98px) {
  .news-list.__colum .news-topics {
    width: 100%;
  }
}
.news-list.__colum .news-link {
  display: block;
  transition: all 0.3s ease;
}
.news-list.__colum .news-link:hover .news-title {
  color: #244A9F;
}
.news-list.__colum .news-link:hover .news-date {
  color: #244A9F;
}
.news-list.__colum .news-img {
  position: relative;
  margin-bottom: 1.5em;
  overflow: hidden;
}
@media screen and (max-width: 479.98px) {
  .news-list.__colum .news-img {
    margin-bottom: 1em;
  }
}
.news-list.__colum .news-img::before {
  content: "";
  display: block;
  padding-top: 56.2%;
}
.news-list.__colum .news-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
}
.news-list.__colum .news-date {
  margin: 0 0 0.6em 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.news-topics {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .news-topics {
    flex-direction: column;
  }
}
.news-topics:not(:last-child) {
  margin-bottom: 1.3em;
}
@media screen and (max-width: 767.98px) {
  .news-topics:not(:last-child) {
    margin-bottom: 0.8em;
  }
}
.news-link {
  display: inline-block;
  color: #1F1F1F;
  line-height: 1.2;
  font-size: 1.8rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-link {
    font-size: 1.6rem;
  }
}
.news-link:hover {
  color: #244A9F;
  text-decoration: underline;
}
.news-date {
  display: block;
  font-size: 1.8rem;
  color: #1F1F1F;
  line-height: 1.2;
  font-feature-settings: "palt";
  width: 5em;
  margin-right: 1em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .news-date {
    font-size: 1.6rem;
    margin-right: 0;
    margin-bottom: 0.3em;
  }
}
.news-title {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.2;
  transition: color 0.3s ease;
}
@media screen and (max-width: 575.98px) {
  .news-title {
    margin-left: 0;
    display: block;
  }
}
.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}
.news-text {
  word-break: break-all;
  word-wrap: break-word;
}
.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}
.news-more {
  text-align: center;
  margin-top: 3em;
}
@media screen and (max-width: 767.98px) {
  .news-more {
    margin-top: 2em;
  }
}
.news-more__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3.5em -1em 2em 0;
}
@media screen and (max-width: 767.98px) {
  .news-more__area {
    margin: 2em -1em 1em 0;
  }
}
.news-back {
  text-align: center;
  margin-top: 4em;
}
@media screen and (max-width: 767.98px) {
  .news-back {
    margin-top: 2em;
  }
}
.news-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .news-section {
    padding: 0 2em 5em 2em;
  }
}
.news-detail-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .news-detail-section {
    padding: 0 2em 5em 2em;
  }
}
.news-detail-section .news-date {
  margin-top: 0.3em;
}
@media screen and (min-width: 1100px), print {
  .news-detail-section .news-container {
    padding: 0 1.5em;
  }
}
/* --------------------------------

  idxx　SCHEDULE

-------------------------------- */
.schedule-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .schedule-section {
    padding: 0 2em 5em 2em;
  }
}
.schedule-section .inner {
  max-width: none;
}
.schedule-block {
  padding: 2em 1em;
  margin: 0 -1em;
}
@media screen and (min-width: 1100px), print {
  .schedule-block {
    padding: 4em 2em;
    margin: 0 -2em;
  }
}
.schedule-block:first-child {
  padding-top: 0;
}
.schedule-block:nth-child(2n) {
  background-color: rgba(200, 200, 200, 0.11);
}
.schedule-block:nth-child(2n+1) {
  background-color: #fff;
}
.schedule-block-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1099.98px) {
  .schedule-block-inner {
    max-width: 460px;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-block-inner {
    max-width: 400px;
  }
}
.schedule-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px -30px 0;
}
@media screen and (min-width: 1100px), print {
  .schedule-list {
    padding: 0 2em;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-list {
    margin: 0 -10px -10px 0;
  }
}
.schedule-item {
  display: flex;
  width: 50%;
  padding: 0 30px 30px 0;
}
#top .schedule-item {
  width: 33.333%;
}
@media screen and (max-width: 1099.98px) {
  .schedule-item {
    max-width: 600px;
    flex-direction: column;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-item {
    padding: 0 10px 10px 0;
  }
}
.schedule-image {
  width: 50%;
  height: 242px;
}
@media screen and (max-width: 1099.98px) {
  .schedule-image {
    width: 100%;
    height: auto;
  }
}
.schedule-image img {
  width: 100%;
  height: 242px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1099.98px) {
  .schedule-image img {
    height: 175px;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-image img {
    height: 140px;
  }
}
.schedule-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 242px;
  border: 1px solid #C8C8C8;
  padding: 1.5em 1.5em;
  overflow: hidden;
}
@media screen and (max-width: 1099.98px) {
  .schedule-main {
    height: auto;
    width: 100%;
    padding: 1em 1em 0.5em 1em;
    flex: 1;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-main {
    padding: 0.8em 1em 0.5em 1em;
  }
}
.schedule-heading {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  background-color: #244A9F;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  padding: 0.6em 0.5em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1099.98px) {
  .schedule-heading {
    font-size: 1.6rem;
    padding: 0.5em 0.5em;
    margin-bottom: 0.3em;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-heading {
    font-size: 1.4rem;
    padding: 0.45em 0.5em, 4em 0.5em;
    font-feature-settings: "palt";
  }
}
.schedule-define {
  display: flex;
}
.schedule-define:not(:last-child) dt, .schedule-define:not(:last-child) dd {
  border-bottom: 1px dotted #C8C8C8;
}
.schedule-define dt, .schedule-define dd {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 0.6em 0;
}
@media screen and (max-width: 1099.98px) {
  .schedule-define dt, .schedule-define dd {
    font-size: 1.5rem;
    padding: 0.5em 0;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-define dt, .schedule-define dd {
    font-size: 1.2rem;
    font-feature-settings: "palt";
  }
}
.schedule-define dt {
  width: 4.5em;
}
@media screen and (max-width: 1099.98px) {
  .schedule-define dt {
    width: 4em;
  }
}
.schedule-define dd {
  flex: 1;
  min-width: 0;
}
.schedule-define dd a {
  color: #244A9F;
  text-decoration: underline;
}
.schedule-define dd a:hover {
  text-decoration: none;
}
.schedule-sunday {
  display: flex;
}
@media screen and (min-width: 1100px), print {
  .schedule-sunday {
    padding: 0 2em;
  }
}
@media screen and (max-width: 1099.98px) {
  .schedule-sunday {
    flex-direction: column;
  }
}
.schedule-sunday-main {
  width: 100%;
  max-width: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #C8C8C8;
  padding: 1em;
}
@media screen and (max-width: 1099.98px) {
  .schedule-sunday-main {
    max-width: none;
    padding: 2em 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .schedule-sunday-main {
    padding: 1em;
  }
}
.schedule-sunday-main p {
  font-size: 1.6rem;
  line-height: 2.5;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .schedule-sunday-main p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.schedule-sunday-image {
  flex: 1;
  min-width: 0;
  max-width: 700px;
}

/* --------------------------------

  お問い合わせ

-------------------------------- */
.contact-us-desc {
  font-feature-settings: "palt";
  line-height: 1.6;
  font-size: 1.6rem;
  color: #000;
  margin-top: 1em;
}
.contact-us-main {
  position: relative;
  margin-bottom: 0.5em;
  padding: 1em;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  background-color: #eee;
}
@media screen and (min-width: 768px), print {
  .contact-us-main {
    padding: 1.5em;
    text-align: left;
    border-left: 125px solid #244A9F;
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main {
    border-left-width: 183px;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-main {
    padding: 1em 1em 0.6em 1em;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-main {
    padding: 1em 1em 0.5em 1em;
  }
}
.contact-us-main::before {
  content: "";
  display: block;
  height: 93.3333333333px;
  margin: -1em -1em 1em;
  background: #244A9F url("../img/base/tel-contact.png") center no-repeat;
  background-size: auto 70%;
  z-index: 1;
  background-color: #A02729;
}
@media screen and (max-width: 1099.98px) {
  .contact-us-main::before {
    height: 70.8333333333px;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-main::before {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .contact-us-main::before {
    position: absolute;
    top: 50%;
    left: -125px;
    width: 117px;
    margin: 0;
    background: url("../img/base/tel-contact.png") center no-repeat;
    background-size: contain;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 1100px), print {
  .contact-us-main::before {
    left: -180px;
    width: 174px;
  }
}
.contact-us-tel {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px), print {
  .contact-us-tel {
    margin-bottom: 0;
  }
}
.contact-us-tel dl {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl {
    position: relative;
    display: inline-block;
    padding-left: 86px;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl {
    padding-left: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl::before {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border-radius: 100%;
    background: #244A9F url("../img/base/tel-contact.png") center no-repeat;
    background-size: 55%;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl::before {
    position: static;
    margin: 0 auto 0.3em;
    background-size: 52%;
    background-position-x: 16px;
    transform: translateY(0);
  }
}
.contact-us-tel dl dt {
  margin-bottom: 0.2em;
  padding-left: 0.2em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767.98px) {
  .contact-us-tel dl dt {
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel dl dt {
    text-align: center;
  }
}
.contact-us-tel .tel-link {
  display: inline-block;
  position: relative;
  color: #000000;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1100px), print {
  .contact-us-tel .tel-link {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 479.98px) {
  .contact-us-tel .tel-link {
    font-size: 3.6rem;
  }
}
.contact-us-tel a.tel-link {
  color: #244A9F;
}
.contact-us-tel a.tel-link:hover {
  color: #244A9F;
  text-decoration: none;
}

.contact-form-info {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px), print {
  .contact-form-info {
    margin-bottom: 5em;
  }
}
.contact-form-info-container {
  padding: 0 0.5em;
}
@media screen and (min-width: 480px), print {
  .contact-form-info-container {
    padding: 0 1em;
  }
}
.contact-form-info-text {
  margin-top: 1em;
  line-height: 1.65;
  font-size: 1.8rem;
  color: #666666;
}
@media screen and (max-width: 1099.98px) {
  .contact-form-info-text {
    font-size: 1.6rem;
  }
}
.contact-form-info-text .br {
  display: none;
}
@media screen and (min-width: 640px), print {
  .contact-form-info-text .br {
    display: block;
  }
}
.contact-form-info-text .intro {
  margin-bottom: 1em;
}
.contact-form-info-text .fax-num {
  color: #07529F;
  margin-left: 1em;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", sans-serif;
}
.contact-form-info-text .mail a {
  color: #07529F;
  transition: all 0.2s ease;
}
.contact-form-info-text .mail a:hover {
  text-decoration: underline;
}
.contact-form-main-desc {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1099.98px) {
  .contact-form-main-desc {
    font-size: 1.6rem;
  }
}
.contact-form-main-container {
  padding: 0 1em;
}
@media screen and (max-width: 767.98px) {
  .contact-form-main-container {
    padding: 0;
  }
}
.contact-form-privacy {
  margin-top: 3em;
}

/* 個人情報及び特定個人情報保護方針 */
.contact-privacy {
  height: 30em;
  padding: 1em;
  font-size: 0.8em;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow-y: scroll;
}
@media screen and (min-width: 640px), print {
  .contact-privacy {
    height: 20em;
  }
}
@media screen and (min-width: 768px), print {
  .contact-privacy {
    font-size: 0.95em;
  }
}
.contact-privacy-section .inner {
  padding: 0;
  line-height: 1.5;
}
.contact-privacy h3 {
  margin: 1.5em 0 0.8em;
  padding: 0 0 0.5em;
  line-height: 1.1;
  font-weight: 600;
  font-size: 1.1em;
  color: #244A9F;
  border-bottom: 1px solid #244A9F;
}
.contact-privacy ul {
  margin-top: 0.5em;
}
.contact-privacy ol {
  margin-bottom: 0.85em;
  margin-left: 1em;
}
.contact-privacy ol li {
  list-style-type: decimal　;
  padding: 5px 0 5px 0;
  text-indent: 0;
}
.contact-privacy ol > ol {
  margin-top: 0.5em;
}
.contact-privacy dl {
  float: right;
  margin-top: 1.5em;
}
.contact-privacy .tel-link {
  color: #000000;
}
.contact-privacy a.tel-link {
  color: #000000;
}
.contact-privacy a.tel-link:hover {
  color: #244AC8;
}

.price-system-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .price-system-section {
    padding: 0 2em 5em 2em;
  }
}
@media screen and (min-width: 1100px), print {
  .price-system-container {
    padding-left: 1.5em;
  }
}
.price-system-num {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px), print {
  .price-system-num {
    margin-bottom: 1.5em;
  }
}
.price-system-num dt, .price-system-num dd {
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.price-system-num dt {
  font-size: 1.7rem;
  margin-right: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .price-system-num dt {
    font-size: 1.6rem;
  }
}
.price-system-num dd {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .price-system-num dd {
    font-size: 1.4rem;
  }
}
.price-system-num dd .num {
  font-size: 2.1rem;
  font-weight: 500;
  color: #07529F;
}
@media screen and (max-width: 767.98px) {
  .price-system-num dd .num {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .price-system-main {
    overflow-x: scroll;
  }
}
.price-system-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (max-width: 767.98px) {
  .price-system-table {
    white-space: nowrap;
  }
}
.price-system-table tr:first-child th, .price-system-table tr:first-child td {
  border-bottom: 0;
}
.price-system-table th, .price-system-table td {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
  padding: 1.5em 1em;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767.98px) {
  .price-system-table th, .price-system-table td {
    padding: 1em 0.5em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 479.98px) {
  .price-system-table th, .price-system-table td {
    font-size: 1.2rem;
  }
}
.price-system-table td {
  width: 250px;
}
@media screen and (max-width: 767.98px) {
  .price-system-table td {
    width: 150px;
  }
}
.price-system-table td.num {
  width: 90px;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .price-system-table td.num {
    width: 80px;
  }
}
.price-system-table td.unit {
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  .price-system-table td.unit {
    font-size: 1.2rem;
  }
}

.price-class-section {
  padding: 3em 1em 3em 1em;
  background-color: rgba(200, 200, 200, 0.11);
}
@media screen and (min-width: 1100px), print {
  .price-class-section {
    padding: 5em 2em 5em 2em;
  }
}

.price-discount-section {
  padding: 3em 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .price-discount-section {
    padding: 5em 2em 5em 2em;
  }
}
.price-discount-section .inner {
  max-width: none;
}
.price-discount-section .common-header {
  max-width: 1100px;
}
.price-discount-section .band-image {
  margin-bottom: 0;
}
@media screen and (min-width: 1100px), print {
  .price-discount-container {
    padding-left: 1.5em;
  }
}
.price-discount-num {
  display: flex;
  max-width: 1100px;
  margin: 0 auto 2em;
}
.price-discount-num dt {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.66;
  font-weight: 500;
  color: #07529F;
  margin-right: 2em;
}
@media screen and (max-width: 767.98px) {
  .price-discount-num dt {
    font-size: 1.8rem;
    margin-right: 1em;
  }
}
.price-discount-num dt .att {
  display: block;
  color: #D80000;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.66;
  margin-top: 0.6em;
}
@media screen and (max-width: 767.98px) {
  .price-discount-num dt .att {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 479.98px) {
  .price-discount-num dt .att {
    font-size: 1rem;
  }
}
.price-discount-num dd {
  font-size: 2.2rem;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .price-discount-num dd {
    font-size: 1.6rem;
  }
}
.price-discount-num dd .accent {
  color: #D80000;
  margin-left: 0.3em;
}

.price-trial-section {
  padding: 3em 1em 3em 1em;
  background-color: rgba(200, 200, 200, 0.11);
}
@media screen and (min-width: 1100px), print {
  .price-trial-section {
    padding: 5em 2em 5em 2em;
  }
}
.price-trial-container {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1100px), print {
  .price-trial-container {
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 1099.98px) {
  .price-trial-container {
    flex-direction: column;
  }
}
.price-trial-main {
  margin-right: 2em;
}
@media screen and (max-width: 1099.98px) {
  .price-trial-main {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.price-trial-side {
  max-width: 652px;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1099.98px) {
  .price-trial-side {
    width: 100%;
  }
}
.price-trial-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .price-trial-text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.price-trial-more {
  text-align: center;
  margin-top: 2em;
}

.access-section {
  padding: 0 1em 3em 1em;
}
@media screen and (min-width: 1100px), print {
  .access-section {
    padding: 0 2em 5em 2em;
  }
}
@media screen and (min-width: 1280px), print {
  .access-container {
    padding-left: 1.5em;
  }
}
.access-map {
  margin-top: 1em;
}
@media screen and (min-width: 768px), print {
  .access-map {
    margin-top: 2em;
  }
}
@media screen and (max-width: 575.98px) {
  .access-map {
    position: relative;
    padding-top: 90%;
  }
}
@media screen and (max-width: 575.98px) {
  .access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.access-more {
  text-align: center;
  margin-top: 2em;
}
.access-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media screen and (min-width: 768px), print {
  .access-table tr:not(:last-child) th, .access-table tr:not(:last-child) td {
    border-bottom: 1px solid #CCCCCC;
  }
}
.access-table th, .access-table td {
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .access-table th, .access-table td {
    display: block;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px), print {
  .access-table th, .access-table td {
    padding: 1.5em 1em;
  }
}
.access-table th {
  width: 10em;
}
@media screen and (max-width: 767.98px) {
  .access-table th {
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 767.98px) {
  .access-table td {
    padding: 0.5em 0.5em;
  }
}