@charset "UTF-8";
/* ブレイクポイント
PC：1024
SP：1023、767
*/
/* id & class
基本：Block__Element--Modifier
ID・クラス名の区切り：Block-Block,Element-Element,Modifier-Modifier　例：Block__Element-Element--Modifier
その他：WP用
※Block：大枠となる独立した要素
※Element：Blockを構成する要素
※Modifier：BlockやElementをスタイリングするもの
*/
/* margin & padding
8の倍数をベースとする
※8の倍数：8px、16px、24px、32px、48px、64px、96px、128px、160px、192px、256px
※8と3の公倍数：48px、96px、192px、240px、480px、960px、1200、1440px
※例外4、12など
*/
/* コンテンツエリア
@media (min-width: 1024px) {
	width: 1680px;
	padding-left: 30px;
	padding-right: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;
}
@media (max-width: 767px) {
	width: 100%;
	padding-left: 16px;
	padding-right: 16px;	
}
*/
/* font-size
ベース：62.5%
1rem=10px
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 400;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: #FFFFFF;
  color: #222222;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}
body.no-scroll {
  overflow: hidden;
}

a {
  color: #0038AF;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}
@media (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #222222;
  }
}
a.-underline {
  text-decoration: underline;
}
a.-link-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}
a.-link-nav:first-child {
  margin-top: 0;
}
a.-link-nav::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-image: url("../img/base/icon-link-nav.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

p {
  margin-top: 1.6rem;
}
p:first-child {
  margin-top: 0;
}

sup {
  vertical-align: super;
  font-size: 1.2rem;
  vertical-align: top;
}

sub {
  vertical-align: sub;
  font-size: 1.2rem;
  vertical-align: bottom;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
  flex-shrink: 0;
}

main {
  width: 100%;
}

section {
  width: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .wrapper {
    /* IE11 にのみ適用される */
    display: block;
    width: 100%;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
}
.overlay.active {
  z-index: 9500;
  opacity: 1;
}

/*================================================
 *  form
 ================================================*/
input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"], input[type="file"], input[type="date"], input[type="button"], input[type="submit"], textarea, select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 100;
}

@media (min-width: 1024px) {
  input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"], input[type="date"], textarea, select {
    border: solid 1px #CED4DA;
    border-radius: 2px !important;
    font-size: 1.4rem;
    transition: ease-in-out 0.2s;
  }
  input[type="text"]:focus, input[type="url"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
    outline: none;
    border: 1px solid #0050FC;
    box-shadow: 0px 0px 1px 3px rgba(0, 80, 252, 0.2);
  }
  input[type="text"]:disabled, input[type="url"]:disabled, input[type="email"]:disabled, input[type="tel"]:disabled, input[type="password"]:disabled, input[type="number"]:disabled, input[type="search"]:disabled, input[type="date"]:disabled, textarea:disabled, select:disabled {
    background-color: #F8F8F8;
  }
  .-mandatory > input[type="text"], .-mandatory > input[type="url"], .-mandatory > input[type="email"], .-mandatory > input[type="tel"], .-mandatory > input[type="password"], .-mandatory > input[type="number"], .-mandatory > input[type="search"], .-mandatory > input[type="date"], .-mandatory > textarea, .-mandatory > select {
    padding-right: 32px;
  }
}
@media (max-width: 1023px) {
  input[type="text"], input[type="url"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], input[type="search"], input[type="date"], textarea, select {
    border: solid 1px #CED4DA;
    border-radius: 2px !important;
    font-size: 1.6rem;
    transition: ease-in-out 0.2s;
  }
  input[type="text"]:focus, input[type="url"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
    outline: none;
    border: 1px solid #0050FC;
    box-shadow: 0px 0px 1px 3px rgba(0, 80, 252, 0.2);
  }
  input[type="text"]:disabled, input[type="url"]:disabled, input[type="email"]:disabled, input[type="tel"]:disabled, input[type="password"]:disabled, input[type="number"]:disabled, input[type="search"]:disabled, input[type="date"]:disabled, textarea:disabled, select:disabled {
    background-color: #F8F8F8;
  }
  .-mandatory > input[type="text"], .-mandatory > input[type="url"], .-mandatory > input[type="email"], .-mandatory > input[type="tel"], .-mandatory > input[type="password"], .-mandatory > input[type="number"], .-mandatory > input[type="search"], .-mandatory > input[type="date"], .-mandatory > textarea, .-mandatory > select {
    padding-right: 32px;
  }
}

select::-ms-expand {
  display: none;
}

input::placeholder {
  font-size: 1.3rem;
  color: #CED4DA;
}

textarea::placeholder {
  font-size: 1.3rem;
  color: #CED4DA;
}

@media (min-width: 1024px) {
  textarea,
  .form__textarea {
    width: 100%;
    min-height: 100px;
    padding: 8px;
    line-height: 1.4;
  }
}
@media (max-width: 1023px) {
  textarea,
  .form__textarea {
    width: 100%;
    min-height: 100px;
    padding: 4px;
    line-height: 1.4;
  }
}

@media (min-width: 1024px) {
  input[type="text"],
  .form__input {
    width: 100%;
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="text"],
  .form__input {
    width: 100%;
    max-width: 100%;
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="password"] {
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="password"] {
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="url"] {
    width: 100%;
    max-width: 500px;
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="url"] {
    width: 100%;
    max-width: 100%;
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="email"],
  .form__email {
    width: 100%;
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="email"],
  .form__email {
    width: 100%;
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="tel"] {
    width: 100%;
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="tel"] {
    width: 100%;
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="number"] {
    width: 100%;
    padding: 0px 8px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  input[type="number"] {
    width: 100%;
    padding: 0px 4px;
    height: 40px;
  }
}

@media (min-width: 1024px) {
  input[type="date"] {
    position: relative;
    height: 40px;
    padding: 0 30px 0 8px;
    background-image: url("../img/base/icon-form-calendar.png");
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: right center;
  }
}
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 2dppx) {
  input[type="date"] {
    background-image: url("../img/base/icon-form-calendar_2x.png");
  }
}

@media (max-width: 1023px) {
  input[type="date"] {
    position: relative;
    height: 40px;
    padding: 0 30px 0 4px;
    background-image: url("../img/base/icon-form-calendar.png");
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: right center;
  }
}
@media (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1023px) and (min-resolution: 2dppx) {
  input[type="date"] {
    background-image: url("../img/base/icon-form-calendar_2x.png");
  }
}

input[type="file"] {
  background-color: transparent;
  line-height: 1;
}
input[type="file"]:disabled {
  background-color: #F8F8F8;
}

input[type="submit"],
button[type="button"] {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #1A4D9F;
  border-radius: 20px;
  background-color: #FFFFFF;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1;
  color: #1A4D9F;
  text-align: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
  overflow: hidden;
}
input[type="submit"]:hover,
button[type="button"]:hover {
  opacity: 0.8;
}
input[type="submit"]:active,
button[type="button"]:active {
  transform: translate(0, 2px);
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  border: solid 1px #CED4DA;
  font-size: 1.6rem;
  line-height: 1.4;
}

select {
  min-width: 70px;
  padding: 0px 32px 0 8px;
  height: 40px;
  background-image: url("../img/base/icon-form-select.png");
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: right center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  select {
    background-image: url("../img/base/icon-form-select_2x.png");
  }
}

input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 0 8px 2px 0;
}

/*================================================
 *  共通
 ================================================*/
.element__align--left {
  text-align: left !important;
}

.element__align--center {
  text-align: center !important;
}

.element__align--right {
  text-align: right !important;
}

.element__weight {
  font-weight: bold;
}

.element__color--basic {
  color: #222222;
}

.element__color--red {
  color: #DC3545;
}

.element__color--blue {
  color: #0038AF;
}

.element__color--black {
  color: #000000;
}

.element__color--white {
  color: #FFFFFF;
}

/*================================================
 *  アニメーション
 ================================================*/
@media (min-width: 1024px) {
  .fade {
    transition: all 0.8s ease-out;
    opacity: 0;
  }
  .fade.active {
    opacity: 1;
  }
  .fade.-delay {
    transition-delay: 0.2s;
  }
  .fade.-delay2 {
    transition-delay: 0.4s;
  }
  .fade.-delay3 {
    transition-delay: 0.6s;
  }
}
@media (max-width: 1023px) {
  .fade {
    transition: all 0.8s ease-out;
    opacity: 0;
  }
  .fade.active {
    opacity: 1;
  }
  .fade.-delay {
    transition-delay: 0.1s;
  }
  .fade.-delay2 {
    transition-delay: 0.2s;
  }
  .fade.-delay3 {
    transition-delay: 0.3s;
  }
}

@media (min-width: 1024px) {
  .fade__vertical {
    transition: all 0.8s ease-out;
    transform: translate(0, 32px);
    opacity: 0;
  }
  .fade__vertical.active {
    transform: translate(0, 0);
    opacity: 1;
  }
  .fade__vertical.-delay {
    transition-delay: 0.2s;
  }
  .fade__vertical.-delay2 {
    transition-delay: 0.4s;
  }
  .fade__vertical.-delay3 {
    transition-delay: 0.6s;
  }
}
@media (max-width: 1023px) {
  .fade__vertical {
    transition: all 0.8s ease-out;
    transform: translate(0, 32px);
    opacity: 0;
  }
  .fade__vertical.active {
    transform: translate(0, 0);
    opacity: 1;
  }
  .fade__vertical.-delay {
    transition-delay: 0.1s;
  }
  .fade__vertical.-delay2 {
    transition-delay: 0.2s;
  }
  .fade__vertical.-delay3 {
    transition-delay: 0.3s;
  }
}

/*================================================
 *  見出し
 ================================================*/
@media (min-width: 1024px) {
  .title {
    position: relative;
    margin-top: 32px;
    padding-bottom: 8px;
    font-size: 4rem;
    color: #222222;
    text-align: center;
  }
  .title:first-child {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .title {
    position: relative;
    margin-top: 48px;
    padding-bottom: 8px;
    font-size: 2rem;
    color: #222222;
    text-align: center;
  }
  .title:first-child {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .headline {
    margin-top: 16px;
    font-size: 1.8rem;
  }
  .headline:first-child {
    margin-top: 0;
  }
}
@media (max-width: 1023px) {
  .headline {
    margin-top: 16px;
    font-size: 1.6rem;
  }
  .headline:first-child {
    margin-top: 0;
  }
}

/*================================================
 *  リスト
 ================================================*/
.list__disc {
  width: 100%;
  margin-top: 16px;
  list-style: none;
  counter-reset: disc;
}
.list__disc:first-child {
  margin-top: 0;
}
.list__disc > li {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding-left: 20px;
}
.list__disc > li:first-child {
  margin-top: 0;
}
.list__disc > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  font-weight: bold;
}

.list__square {
  width: 100%;
  margin-top: 16px;
  list-style: none;
}
.list__square:first-child {
  margin-top: 0;
}
.list__square > li {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding-left: 24px;
}
.list__square > li:first-child {
  margin-top: 0;
}
.list__square > li::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  content: "■";
}

.list__number {
  width: 100%;
  margin-top: 16px;
  list-style: none;
  counter-reset: number;
}
.list__number:first-child {
  margin-top: 0;
}
.list__number > li {
  position: relative;
  width: 100%;
  margin-top: 15px;
  padding-left: 24px;
}
.list__number > li:first-child {
  margin-top: 0;
}
.list__number > li::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  content: counter(number) ".";
  counter-increment: number;
}

.list__asterisk {
  width: 100%;
  margin-top: 16px;
  list-style: none;
}
.list__asterisk:first-child {
  margin-top: 0;
}
.list__asterisk > li {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding-left: 24px;
}
.list__asterisk > li:first-child {
  margin-top: 0;
}
.list__asterisk > li::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  content: "※";
}

/*================================================
 *  ボタン
 ================================================*/
.btn__wrapper {
  width: 100%;
  margin-top: 30px;
}
.btn__wrapper:first-child {
  margin-top: 0;
}
.btn__wrapper > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}
.btn__wrapper > li:first-child {
  margin-top: 0;
}
.btn__wrapper.small > li > * {
  height: 47px;
  border-radius: 4px;
}

.btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #1A4D9F !important;
  border-radius: 20px;
  background-color: #1A4D9F !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1;
  color: #FFFFFF !important;
  text-align: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
  overflow: hidden;
}
.btn:hover {
  opacity: 0.8;
}
.btn:active {
  transform: translate(0, 2px);
}

.btn__border {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #1A4D9F !important;
  border-radius: 20px;
  background-color: #FFFFFF !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1;
  color: #1A4D9F !important;
  text-align: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
  overflow: hidden;
}
.btn__border:hover {
  opacity: 0.8;
}
.btn__border:active {
  transform: translate(0, 2px);
}

.btn__gray {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #7D7D7D !important;
  border-radius: 20px;
  background-color: #7D7D7D !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1;
  color: #FFFFFF !important;
  text-align: center;
  transition: all 0.2s ease-out;
  cursor: pointer;
  overflow: hidden;
}
.btn__gray:hover {
  opacity: 0.8;
}
.btn__gray:active {
  transform: translate(0, 2px);
}

/*================================================
 *  swiper カスタマイズ
 ================================================*/
.eyecatch-Swiper .swiper-slide {
  padding: 0;
}
.eyecatch-Swiper .swiper-pagination-bullet {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: #FFFFFF;
  opacity: 0.5;
}
.eyecatch-Swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.eyecatch__wrapper .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

@media (min-width: 1024px) {
  .swiper-pagination {
    position: absolute;
    left: 0;
    padding-left: 120px;
    text-align: left;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
}
@media (max-width: 1023px) {
  .swiper-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    margin-top: 24px;
  }
}

/* Common Styles */
@media (min-width: 1024px) {
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10vh;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: auto;
    left: 0;
    width: 100%;
  }
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: static;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-slide-active .eyecatch__inner,
.swiper-slide-duplicate-active .eyecatch__inner,
.swiper-slide-prev .eyecatch__inner {
  /* 12秒かけて拡大させる */
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*================================================
 *  front
 ================================================*/
@media (min-width: 1024px) {
  section#eyecatch {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  section#eyecatch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -30;
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #1a4d9f 0%, #002470 100%);
  }
}
@media (max-width: 1023px) {
  section#eyecatch {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  section#eyecatch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -30;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a4d9f 0%, #002470 100%);
  }
}

@media (min-width: 1024px) {
  .eyecatch__wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
  }
  .eyecatch__wrapper::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -20;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url("../img/front/logo-eyecatch.svg");
    background-attachment: fixed;
    background-position: top 80px left -140px;
    background-repeat: no-repeat;
    background-size: 100vh auto;
    opacity: 0.06;
  }
}
@media (max-width: 1023px) {
  .eyecatch__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 64px;
  }
  .eyecatch__wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -20;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/front/logo-eyecatch.svg");
    background-attachment: fixed;
    background-position: top 60px left -100px;
    background-repeat: no-repeat;
    opacity: 0.06;
  }
}

@media (min-width: 1024px) {
  .manifest__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 480px;
    height: calc(100vh * 0.9);
    padding: 0 32px 0 120px;
  }
}
@media (max-width: 1023px) {
  .manifest__wrapper {
    width: 100%;
    margin-top: 96px;
    padding: 0 32px;
    order: 2;
  }
}

@media (min-width: 1024px) {
  .manifest__container {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .manifest__container {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .manifest__title {
    margin-top: 32px;
    font-size: 2.14rem;
    color: #FFFFFF;
  }
}
@media (max-width: 1023px) {
  .manifest__title {
    margin-top: 32px;
    font-size: 2rem;
    color: #FFFFFF;
  }
}
@media (max-width: 374px) {
  .manifest__title {
    margin-top: 32px;
    font-size: 1.7rem;
    color: #FFFFFF;
  }
}

@media (min-width: 1024px) {
  .manifest__description {
    margin-top: 96px;
  }
}
@media (max-width: 1023px) {
  .manifest__description {
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {
  .slide__wrapper {
    width: calc(100% - 480px);
  }
}
@media (max-width: 1023px) {
  .slide__wrapper {
    width: calc(100% - (100% * 0.25));
    padding-top: 60px;
    order: 1;
  }
}

@media (min-width: 1024px) {
  .eyecatch__container {
    position: relative;
    z-index: 100;
    width: 100%;
    height: calc(100vh * 0.9);
    margin-top: -2px;
    border-radius: calc((100vh * 0.9) / 2) 0 0 calc((100vh * 0.9) / 2);
    border: 2px solid #FFFFFF;
    border-right: none;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
@media (max-width: 1023px) {
  .eyecatch__container {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 300px;
    border-radius: 150px 0 0 150px;
    border: 2px solid #FFFFFF;
    border-right: none;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .eyecatch__container {
    /* IE11 にのみ適用される */
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 1024px) {
  *::-ms-backdrop, .eyecatch__container {
    border-radius: 90vh 0 0 90vh;
  }
}
@media (min-width: 1024px) {
  .eyecatch__inner {
    width: 100%;
    height: calc(100vh * 0.9);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .eyecatch__inner.-slide1 {
    background-image: url("../img/front/slide-penguinclub.jpg");
  }
  .eyecatch__inner.-slide2 {
    background-image: url("../img/front/slide-enroom.jpg");
  }
  .eyecatch__inner.-slide3 {
    background-image: url("../img/front/slide-comicle.jpg");
  }
}
@media (max-width: 1023px) {
  .eyecatch__inner {
    width: 100%;
    height: 300px;
    border-radius: 150px 0 0 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .eyecatch__inner.-slide1 {
    background-image: url("../img/front/slide-penguinclub.jpg");
  }
  .eyecatch__inner.-slide2 {
    background-image: url("../img/front/slide-enroom.jpg");
  }
  .eyecatch__inner.-slide3 {
    background-image: url("../img/front/slide-comicle.jpg");
  }
}

@media (min-width: 1024px) {
  .scroll__down {
    position: absolute;
    bottom: 15px;
    left: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
  }
  .scroll__down > span {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 60px;
    margin-top: 8px;
    background: #FFFFFF;
  }
  .scroll__down > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #FFFFFF;
  }
  .scroll__down > span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #FFFFFF;
    animation: sdw 2s linear infinite;
  }
}
@media (max-width: 1023px) {
  .scroll__down {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
  }
  .scroll__down > span {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 60px;
    margin-top: 8px;
    background: #FFFFFF;
  }
  .scroll__down > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #FFFFFF;
  }
  .scroll__down > span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #FFFFFF;
    animation: sdw 2s linear infinite;
  }
}

@media (min-width: 1024px) {
  .page__top {
    position: absolute;
    top: -155px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1A4D9F;
  }
  .page__top > span {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 60px;
    margin-bottom: 8px;
    background: #1A4D9F;
  }
  .page__top > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #1A4D9F;
  }
  .page__top > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #1A4D9F;
    animation: sup 2s linear infinite;
  }
}
@media (max-width: 1023px) {
  .page__top {
    position: absolute;
    bottom: 15px;
    right: 8px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
  }
  .page__top > span {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 60px;
    margin-bottom: 8px;
    background: #FFFFFF;
  }
  .page__top > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #FFFFFF;
  }
  .page__top > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #FFFFFF;
    animation: sup 2s linear infinite;
  }
}

@keyframes sdw {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes sup {
  0% {
    top: 100%;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  /* 1.15倍させる指定 */
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@media (min-width: 1024px) {
  section#introduction {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  section#introduction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    display: block;
    width: 100%;
    height: 640px;
    background-image: url("../img/front/eyecatch-001.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  section#introduction::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -5;
    display: block;
    width: 100%;
    height: 640px;
    background-image: url("../img/front/mask-introduction.svg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}
@media (max-width: 1023px) {
  section#introduction {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  section#introduction::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    display: block;
    width: 100%;
    height: 240px;
    background-image: url("../img/front/eyecatch-001.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  section#introduction::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    display: block;
    width: 100%;
    height: 240px;
    background-image: url("../img/front/mask-introduction.svg");
    background-position: center bottom -1px;
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

@media (min-width: 1024px) {
  .introduction__container {
    position: relative;
    width: 100%;
    padding-top: 640px;
  }
  .introduction__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 80, 252, 0.16) 0%, rgba(0, 80, 252, 0) 100%);
  }
}
@media (max-width: 1023px) {
  .introduction__container {
    position: relative;
    width: 100%;
    padding-top: 240px;
  }
  .introduction__container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 80, 252, 0.16) 0%, rgba(0, 80, 252, 0) 100%);
  }
}

@media (min-width: 1024px) {
  .introduction__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .introduction__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
  .introduction__inner > h2 {
    margin-top: 8px;
  }
  .introduction__inner > h2 > img {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .introduction__description {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    font-size: 1.8rem;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .introduction__description {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    font-size: 1.6rem;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .introduction__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 96px 0 2px;
  }
  .introduction__list > li {
    width: calc((100% - 192px) / 3);
    margin-right: 96px;
  }
  .introduction__list > li:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .introduction__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 96px 0 2px;
  }
  .introduction__list > li {
    width: calc((100% - 96px) / 3);
    margin-right: 48px;
  }
  .introduction__list > li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .introduction__list {
    width: 100%;
    margin: 24px 0 2px;
  }
  .introduction__list > li {
    width: 100%;
    margin-top: 48px;
  }
  .introduction__list > li:first-child {
    margin-top: 0;
  }
}

.introduction__dl {
  width: 100%;
}
.introduction__dl > div > dt {
  width: 100%;
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.introduction__dl > div > dd {
  width: 100%;
  margin-top: 8px;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .introduction__thumbnail {
    width: 100%;
    height: 240px;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .introduction__thumbnail.-enroom {
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-enroom {
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (min-width: 1024px) {
  .introduction__thumbnail.-penguinclub {
    background-image: url("../img/front/penguinclub-thumbnail-001.jpg");
  }
}
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-penguinclub {
    background-image: url("../img/front/penguinclub-thumbnail-001_2x.jpg");
  }
}
@media (min-width: 1024px) {
  .introduction__thumbnail.-comicle {
    background-image: url("../img/front/comicle-thumbnail-001.jpg");
  }
}
@media (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 1024px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-comicle {
    background-image: url("../img/front/comicle-thumbnail-001_2x.jpg");
  }
}

@media (max-width: 1023px) {
  .introduction__thumbnail {
    width: 100%;
    height: 300px;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .introduction__thumbnail.-enroom {
    background-position: center top -24px;
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1023px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-enroom {
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (max-width: 1023px) {
  .introduction__thumbnail.-penguinclub {
    background-position: center -48px;
    background-image: url("../img/front/penguinclub-thumbnail-001.jpg");
  }
}
@media (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1023px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-penguinclub {
    background-image: url("../img/front/penguinclub-thumbnail-001_2x.jpg");
  }
}
@media (max-width: 1023px) {
  .introduction__thumbnail.-comicle {
    background-position: center top -48px;
    background-image: url("../img/front/comicle-thumbnail-001.jpg");
  }
}
@media (max-width: 1023px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 1023px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-comicle {
    background-image: url("../img/front/comicle-thumbnail-001_2x.jpg");
  }
}

@media (max-width: 767px) {
  .introduction__thumbnail {
    width: 100%;
    height: 240px;
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .introduction__thumbnail.-enroom {
    background-position: center top;
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 767px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-enroom {
    background-image: url("../img/front/enroom-thumbnail-001.jpg");
  }
}
@media (max-width: 767px) {
  .introduction__thumbnail.-penguinclub {
    background-position: center;
    background-image: url("../img/front/penguinclub-thumbnail-001.jpg");
  }
}
@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 767px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-penguinclub {
    background-image: url("../img/front/penguinclub-thumbnail-001_2x.jpg");
  }
}
@media (max-width: 767px) {
  .introduction__thumbnail.-comicle {
    background-position: center top;
    background-image: url("../img/front/comicle-thumbnail-001.jpg");
  }
}
@media (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 767px) and (min-resolution: 2dppx) {
  .introduction__thumbnail.-comicle {
    background-image: url("../img/front/comicle-thumbnail-001_2x.jpg");
  }
}

@media (min-width: 1024px) {
  section#service {
    width: 100%;
    margin-top: 196px;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  section#service {
    width: 100%;
    margin-top: 96px;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .service__title {
    width: 100%;
    max-width: 1740px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .service__title {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
  .service__title img {
    height: 66px;
  }
}

@media (min-width: 1024px) {
  .service__list {
    width: 100%;
    margin-top: 60px;
  }
  .service__list > li {
    width: 100%;
    padding: 60px 0;
    position: relative;
    width: 100%;
    background-image: url("../img/front/bg-service-half-right.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
  .service__list > li:nth-child(2n) {
    background-image: url("../img/front/bg-service-half-left.svg");
    background-position: right center;
  }
}
@media (max-width: 1023px) {
  .service__list {
    width: 100%;
    margin-top: 32px;
  }
  .service__list > li {
    width: 100%;
    padding: 32px 0;
    position: relative;
    width: 100%;
    background-image: url("../img/front/bg-service-half-right.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 240px;
  }
  .service__list > li:nth-child(2n) {
    background-image: url("../img/front/bg-service-half-left.svg");
    background-position: right top;
  }
  .service__list > li:last-child {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .service__dl {
    width: 100%;
    max-width: 1740px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .service__dl > div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto 0;
  }
  .service__dl > div > dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 588px;
    padding: 16px;
  }
  .service__dl > div > dd {
    width: calc(100% - 588px);
  }
  .service__list > li:nth-child(2n) .service__dl > div > dt {
    order: 2;
  }
  .service__list > li:nth-child(2n) .service__dl > div > dd {
    order: 1;
  }
}
@media (max-width: 1023px) {
  .service__dl {
    width: 100%;
  }
  .service__dl > div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto 0;
    padding: 0 16px;
  }
  .service__dl > div > dt {
    width: 100%;
  }
  .service__dl > div > dd {
    width: 100%;
    margin-top: 32px;
  }
}

@media (min-width: 1024px) {
  .service__introduction .-headline {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .service__introduction p {
    margin-top: 32px;
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  .service__introduction h1, .service__introduction h2, .service__introduction h3, .service__introduction h4 {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .service__introduction p {
    margin-top: 32px;
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .service__headline {
    margin-top: 16px;
  }
  .service__headline span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.6rem;
    color: #1A4D9F;
  }
  .service__headline span::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    margin-left: 15px;
    background-color: #1A4D9F;
    border-radius: 1px;
  }
}
@media (max-width: 1023px) {
  .service__headline {
    margin-top: 16px;
  }
  .service__headline img {
    height: 48px;
  }
  .service__headline span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.4rem;
    color: #1A4D9F;
  }
  .service__headline span::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    margin-left: 12px;
    background-color: #1A4D9F;
    border-radius: 1px;
  }
}

.service__eyecatch {
  width: 100%;
  padding-top: calc(715 / 1092 * 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service__dl > div.-enroom .service__eyecatch {
  background-image: url("../img/front/enroom-eyecatch.jpg");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .service__dl > div.-enroom .service__eyecatch {
    background-image: url("../img/front/enroom-eyecatch_2x.jpg");
  }
}
.service__dl > div.-penguinclub .service__eyecatch {
  background-image: url("../img/front/penguinclub-eyecatch.jpg");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .service__dl > div.-penguinclub .service__eyecatch {
    background-image: url("../img/front/penguinclub-eyecatch_2x.jpg");
  }
}
.service__dl > div.-comicle .service__eyecatch {
  background-image: url("../img/front/comicle-eyecatch.jpg");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .service__dl > div.-comicle .service__eyecatch {
    background-image: url("../img/front/comicle-eyecatch_2x.jpg");
  }
}

@media (min-width: 1024px) {
  section#about-us {
    width: 100%;
    margin-top: 196px;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  section#about-us {
    width: 100%;
    margin-top: 96px;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .about-us__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    margin: 120px auto 0;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .about-us__wrapper {
    width: 100%;
    margin: 64px auto 0;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .about-us__logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 320px;
  }
}
@media (max-width: 1023px) {
  .about-us__logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .about-us__logo img {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .about-us__overview {
    width: calc(100% - 320px);
    padding-left: 48px;
  }
  .about-us__overview h1, .about-us__overview h2, .about-us__overview h3, .about-us__overview h4 {
    font-size: 4rem;
    color: #1A4D9F;
  }
  .about-us__overview > p {
    margin-top: 32px;
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  .about-us__overview {
    width: 100%;
    margin-top: 16px;
  }
  .about-us__overview h1, .about-us__overview h2, .about-us__overview h3, .about-us__overview h4 {
    font-size: 2rem;
    color: #1A4D9F;
    text-align: center;
  }
  .about-us__overview > p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    font-size: 1.4rem;
  }
}
@media (max-width: 374px) {
  .about-us__overview h1, .about-us__overview h2, .about-us__overview h3, .about-us__overview h4 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .about-us__profile {
    width: 100%;
    margin-top: 48px;
  }
  .about-us__profile > p {
    margin-top: 32px;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media (max-width: 1023px) {
  .about-us__profile {
    width: 100%;
    margin-top: 48px;
  }
  .about-us__profile > p {
    font-size: 1.4rem;
    line-height: 2;
  }
}

@media (min-width: 1024px) {
  section#contact {
    position: relative;
    width: 100%;
    margin-top: 196px;
    padding-bottom: 196px;
    background-image: url("../img/front/bg-contact.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
}
@media (max-width: 1023px) {
  section#contact {
    position: relative;
    width: 100%;
    margin-top: 96px;
    padding-bottom: 64px;
    background-image: url("../img/front/bg-contact.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .contact__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 120px auto 0;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .contact__wrapper {
    width: 100%;
    margin: 64px auto 0;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .contact__overview {
    width: calc((100% - 120px) / 2);
    order: 2;
  }
  .contact__overview h1, .contact__overview h2, .contact__overview h3, .contact__overview h4 {
    font-size: 3.2rem;
  }
  .contact__overview p {
    margin-top: 32px;
  }
}
@media (max-width: 1023px) {
  .contact__overview {
    width: 100%;
  }
  .contact__overview h1, .contact__overview h2, .contact__overview h3, .contact__overview h4 {
    font-size: 2rem;
  }
  .contact__overview p {
    margin-top: 16px;
  }
}

@media (min-width: 1024px) {
  .contact__form {
    width: calc((100% - 120px) / 2);
    order: 3;
  }
  .contact__form .btn__wrapper {
    padding-left: 115px;
  }
}
@media (max-width: 1023px) {
  .contact__form {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact__form--confirm {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .contact__form--confirm {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact__dl {
    width: 100%;
  }
  .contact__dl > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 32px;
  }
  .contact__dl > div > dt {
    width: 115px;
    font-size: 1.4rem;
  }
  .contact__dl > div > dd {
    width: calc(100% - 115px);
  }
  .contact__dl > div > dd.-mandatory {
    position: relative;
  }
  .contact__dl > div > dd.-mandatory::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
    display: inline-block;
    font-size: 1rem;
    color: #1A4D9F;
  }
  .contact__dl > div:first-child {
    margin-top: 32px;
  }
  .contact__dl > div.-btn > dt {
    display: none;
  }
}
@media (max-width: 1023px) {
  .contact__dl {
    width: 100%;
  }
  .contact__dl > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 16px;
  }
  .contact__dl > div > dt {
    width: 100%;
    font-size: 1.4rem;
  }
  .contact__dl > div > dd {
    width: 100%;
    margin-top: 8px;
  }
  .contact__dl > div > dd.-mandatory {
    position: relative;
  }
  .contact__dl > div > dd.-mandatory::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
    display: inline-block;
    font-size: 1rem;
    color: #1A4D9F;
  }
  .contact__dl > div:first-child {
    margin-top: 32px;
  }
  .contact__dl > div.-btn > dt {
    display: none;
  }
}

/*================================================
 * error
 ================================================*/
@media (min-width: 1024px) {
  .error__section {
    width: 100%;
    margin-bottom: 32px;
    order: 1;
  }
}
@media (max-width: 1023px) {
  .error__section {
    width: 100%;
    margin-top: 32px;
  }
}

@media (min-width: 1024px) {
  .error__wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 30px;
    border-radius: 2px;
    background-color: #FFFFFF;
  }
}
@media (max-width: 1023px) {
  .error__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 32px 16px;
    border-radius: 2px;
    background-color: #FFFFFF;
  }
}

@media (min-width: 1024px) {
  .error__container {
    text-align: center;
  }
  .error__container h1, .error__container h2, .error__container h3, .error__container h4 {
    font-size: 2.4rem;
    color: #DC3545;
  }
}
@media (max-width: 1023px) {
  .error__container {
    text-align: center;
  }
  .error__container h1, .error__container h2, .error__container h3, .error__container h4 {
    font-size: 1.8rem;
    color: #DC3545;
  }
}

@media (min-width: 1024px) {
  .error__message {
    display: inline-block;
    margin-top: 32px;
    line-height: 2;
    color: #DC3545;
    text-align: left;
  }
}
@media (max-width: 1023px) {
  .error__message {
    display: inline-block;
    margin-top: 16px;
    line-height: 2;
    color: #DC3545;
    text-align: left;
  }
}
@media (max-width: 359px) {
  .error__message {
    font-size: 1.2rem;
  }
}

/*================================================
 *  finish
 ================================================*/
section#finish {
  width: 100%;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .finish__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .finish__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .finish__container {
    margin-top: 32px;
  }
}
@media (max-width: 1023px) {
  .finish__container {
    margin-top: 32px;
  }
}

/*================================================
 *  confirm
 ================================================*/
section#confirm {
  width: 100%;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .confirm__wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .confirm__wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .confirm__container {
    width: 100%;
    max-width: 960px;
    margin: 32px auto 0;
  }
}
@media (max-width: 1023px) {
  .confirm__container {
    width: 100%;
    margin-top: 32px;
  }
}

@media (min-width: 1024px) {
  .confirm__dl {
    width: 100%;
  }
  .confirm__dl > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 32px 16px;
    border-bottom: 1px solid #CED4DA;
  }
  .confirm__dl > div > dt {
    width: 150px;
    font-size: 1.4rem;
  }
  .confirm__dl > div > dd {
    width: calc(100% - 150px);
  }
  .confirm__dl > div > dd.-mandatory {
    position: relative;
  }
  .confirm__dl > div > dd.-mandatory::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
    display: inline-block;
    font-size: 1rem;
    color: #1A4D9F;
  }
  .confirm__dl > div:first-child {
    margin-top: 0;
  }
  .confirm__dl > div.-btn > dt {
    display: none;
  }
}
@media (max-width: 1023px) {
  .confirm__dl {
    width: 100%;
  }
  .confirm__dl > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #CED4DA;
  }
  .confirm__dl > div > dt {
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    color: #8A8A8A;
  }
  .confirm__dl > div > dd {
    width: 100%;
    margin-top: 8px;
  }
  .confirm__dl > div > dd.-mandatory {
    position: relative;
  }
  .confirm__dl > div > dd.-mandatory::after {
    content: "必須";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 100;
    display: inline-block;
    font-size: 1rem;
    color: #1A4D9F;
  }
  .confirm__dl > div:first-child {
    margin-top: 32px;
    padding-top: 0;
  }
  .confirm__dl > div.-btn > dt {
    display: none;
  }
}

/*================================================
 *  modal
 ================================================*/
.modal__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
  color: #0038AF;
  cursor: pointer;
}
.modal__nav:first-child {
  margin-top: 0;
}
.modal__nav.-link::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  background-image: url("../img/base/icon-link-nav.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.modal__nav:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .modal__policy {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    width: 100%;
    max-width: 1260px;
    padding: 30px;
  }
  .modal__policy.active {
    display: block;
  }
}
@media (max-width: 1023px) {
  .modal__policy {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    width: 100%;
    max-width: calc(100% - 32px);
  }
  .modal__policy.active {
    display: block;
  }
}

@media (min-width: 1024px) {
  .modal__container {
    position: relative;
    width: 100%;
    padding: 30px 30px;
    border-radius: 8px;
    background-color: #FFFFFF;
  }
  .modal__container > h1, .modal__container h2, .modal__container h3, .modal__container h4 {
    font-size: 3.2rem;
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .modal__container {
    position: relative;
    width: 100%;
    padding: 16px 16px;
    border-radius: 8px;
    background-color: #FFFFFF;
  }
  .modal__container > h1, .modal__container h2, .modal__container h3, .modal__container h4 {
    font-size: 2rem;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .modal__inner {
    width: 100%;
    max-height: 50vh;
    margin-top: 32px;
    padding: 30px 30px 60px;
    border: 1px solid #CED4DA;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1023px) {
  .modal__inner {
    width: 100%;
    max-height: 50vh;
    margin-top: 16px;
    padding: 16px 16px 32px;
    border: 1px solid #CED4DA;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.modal__dl {
  width: 100%;
}
.modal__dl > div {
  width: 100%;
  margin-top: 32px;
}
.modal__dl > div > dt {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
}
.modal__dl > div > dd {
  width: 100%;
  margin-top: 8px;
}
.modal__dl > div:first-child {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 100;
    cursor: pointer;
  }
  .modal__close > img {
    width: 48px;
  }
  .modal__close:hover {
    opacity: 0.8;
  }
}
@media (max-width: 1023px) {
  .modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 100;
    cursor: pointer;
  }
  .modal__close:hover {
    opacity: 0.8;
  }
}

/*================================================
 * header
 ================================================*/
@media (min-width: 1024px) {
  header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 0 30px;
  }
  .home header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9000;
  }
}
@media (max-width: 1023px) {
  header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 16px;
  }
  .home header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9000;
  }
}

.logo {
  display: flex;
  height: 30px;
}

/*================================================
 * footer
 ================================================*/
footer {
  width: 100%;
  margin-top: auto;
  background-color: #FFFFFF;
}

.footer__wrapper {
  position: relative;
  width: 100%;
  margin-top: 196px;
  background: linear-gradient(to bottom, #1a4d9f 0%, #002470 100%);
}
.home .footer__wrapper {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .footer__container {
    width: 100%;
    background-image: url("../img/base/logo-eyecatch-footer.svg");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
  }
}
@media (max-width: 1023px) {
  .footer__container {
    width: 100%;
    background-image: url("../img/base/logo-eyecatch-footer-sp.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
  }
}

@media (min-width: 1024px) {
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .footer__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}

/*================================================
 * menu
 ================================================*/
@media (min-width: 1024px) {
  .menu__wrapper {
    position: fixed;
    top: 16px;
    right: 30px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: #1A4D9F;
    cursor: pointer;
  }
}
@media (max-width: 1023px) {
  .menu__wrapper {
    position: fixed;
    top: 6px;
    right: 16px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: #1A4D9F;
    cursor: pointer;
  }
}

.menu-trigger {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 14px;
  transition: all 0.3s;
}
.menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  display: inline-block;
  border-radius: 1px;
  background-color: #FFFFFF;
  transition: all 0.3s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.menu__wrapper.active .menu-trigger span {
  background-color: #FFFFFF;
}
.menu__wrapper.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}
.menu__wrapper.active .menu-trigger span:nth-of-type(2) {
  transform: translateY(-6px) rotate(45deg);
}

@media (min-width: 1024px) {
  .menu-main-container {
    display: none;
  }
  .menu-main-container.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #1a4d9f 0%, #002470 100%);
  }
}
@media (max-width: 1023px) {
  .menu-main-container {
    display: none;
  }
  .menu-main-container.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    display: block;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #1a4d9f 0%, #002470 100%);
  }
}

@media (min-width: 1024px) {
  .menu__inner {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .menu__inner {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
  }
}

@media (min-width: 1024px) {
  .menu__list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .menu__list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 120px 0;
  }
  .menu__list > li.-copywriter {
    order: 1;
    background-image: url("../img/base/bg-footer-circle.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .menu__list > li.-menu-nav {
    order: 2;
  }
  .menu-main-container .menu__list {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .menu-main-container .menu__list > li {
    padding: 32px 0;
  }
}
@media (max-width: 1023px) {
  .menu__list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .menu__list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .menu__list > li.-copywriter {
    order: 2;
  }
  .menu__list > li.-menu-nav {
    order: 1;
  }
  .menu-main-container .menu__list {
    display: block;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu-main-container .menu__list > li.-copywriter {
    display: none;
  }
  .menu-main-container .menu__list > li.-menu-nav {
    align-items: unset;
    padding: 64px 30px;
  }
}

@media (min-width: 1024px) {
  .copywriter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 120px 96px 120px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }
  .menu-main-container .copywriter {
    padding: 32px 96px 32px 0;
  }
}
@media (max-width: 1023px) {
  .copywriter {
    padding: 96px 0 32px 0;
  }
}

@media (min-width: 1024px) {
  .copywriter__container {
    color: #FFFFFF;
  }
  .copywriter__container p {
    margin-top: 32px;
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  .copywriter__container {
    color: #FFFFFF;
  }
  .copywriter__container p {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .menu__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    padding: 120px 0 120px 96px;
  }
  .menu__nav > div {
    width: 50%;
    padding-right: 32px;
  }
  .menu__nav > div > dd {
    margin-top: 24px;
  }
  .menu__nav > div > dd > a {
    font-size: 1.4rem;
    color: #FFFFFF;
  }
  .menu__nav > div > dd .modal__nav {
    color: #FFFFFF;
    cursor: pointer;
  }
  .menu__nav > div:nth-child(2n) {
    padding-right: 0;
  }
  .menu__nav > div:nth-child(n+3) {
    margin-top: 72px;
  }
  .menu-main-container .menu__nav {
    padding: 32px 0 32px 96px;
  }
}
@media (max-width: 1023px) {
  .menu__nav > div {
    width: 100%;
    margin-top: 64px;
  }
  .menu__nav > div > dt {
    text-align: center;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .menu__nav > div > dt {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .menu__nav > div > dt::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    display: block;
    width: 0;
    transition: all 0.3s;
    transition-delay: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .menu__nav > div > dt::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -12px;
    display: block;
    width: 0;
    transition: all 0.3s;
    transition-delay: 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .menu__nav > div > dt.active {
    color: #FFFFFF;
    opacity: 1;
  }
  .menu__nav > div > dt.active::before {
    width: 40px;
  }
  .menu__nav > div > dt.active::after {
    width: 40px;
  }
}
@media (max-width: 1023px) {
  .menu__nav > div > dd {
    margin-top: 24px;
    text-align: center;
  }
  .menu__nav > div > dd > a {
    font-size: 1.4rem;
    color: #FFFFFF;
  }
  .menu__nav > div > dd .modal__nav {
    color: #FFFFFF;
    cursor: pointer;
  }
  .menu__nav > div *:nth-child(2) {
    margin-top: 32px;
  }
  .menu-main-container .menu__nav > div:first-child {
    margin-top: 0;
  }
}
