@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================

	_reset.scss 2021/9/24

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

blockquote, q {
  quotes: none;
}

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

input, textarea {
  margin: 0;
  padding: 0;
}

input[type=submit], textarea {
  font-family: inherit;
}

button {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
}

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

body {
  font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
  font-size: 16px;
  line-height: 1.8;
  font-weight: normal;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

ul, li {
  font-weight: normal;
  list-style: none;
}

ul a, li a {
  zoom: 1;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: none;
}

a:focus {
  outline: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*===============================================================

	_mixin.scss

===============================================================*/
/*===============================================================

	_variable.scss

===============================================================*/
/*==========================================================================

easing（チートシート:https://easings.net/ja）

==========================================================================*/
/*===============================================================

	_function.scss

===============================================================*/
/*===============================================================

	_color.scss

===============================================================*/
/* 本文用 */
/*===============================================================

	_font.scss

===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/noto_sans/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("../font/noto_sans/NotoSansCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/yakuhan/YakuHanJP-Regular.woff2") format("woff2"), url("../font/yakuhan/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/yakuhan/YakuHanJP-Bold.woff2") format("woff2"), url("../font/yakuhan/YakuHanJP-Bold.woff") format("woff");
}
body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
}

/*===============================================================

	_icon.scss

===============================================================*/
@font-face {
  font-family: "rokin-icon";
  src: url("../font/icomoon/icomoon.eot?592ezy");
  src: url("../font/icomoon/icomoon.eot?592ezy#iefix") format("embedded-opentype"), url("../font/icomoon/icomoon.ttf?592ezy") format("truetype"), url("../font/icomoon/icomoon.woff?592ezy") format("woff"), url("../font/icomoon/icomoon.svg?592ezy#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "rokin-icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-btn-arw:before {
  content: "\e900";
}

/*===============================================================

	_base.scss

===============================================================*/
body {
  width: 100%;
  color: #221815;
  background: #ffffff;
  text-align: left;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.fixed {
  position: fixed;
  left: 0;
}

html, body {
  height: 100%;
}

body > footer {
  position: sticky;
  top: 100vh;
}

span {
  display: inline-block;
}

a {
  color: #221815;
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, opacity 0.3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus, a:active, a:visited {
  text-decoration: none;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  width: 100%;
  height: 100%;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

/*===============================================================

	基本文字サイズ、装飾

===============================================================*/
h1, h2, h3, h4, h5 {
  line-height: 1;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
  font-size: 16px;
}

sup {
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.bold {
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
    font-size: 1.6vw;
  }
  sup {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 800px) {
  h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd, div {
    font-size: min(3.8vw, 16px);
  }
}
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

/*===============================================================

	_main.scss

===============================================================*/
/*---------------------------------------------------------------
	l-wrapper
---------------------------------------------------------------*/
/*---------------------------------------------------------------
	l_main
---------------------------------------------------------------*/
/*===============================================================

	_container.scss

===============================================================*/
.l_full_width {
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 800px) {
  .l_full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.l_wide_width {
  max-width: 1600px;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .l_wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.l_content_width {
  max-width: 1270px;
  padding-left: min(10vw, 100px);
  padding-right: min(10vw, 100px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .l_content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.l_narrow_width {
  max-width: 1100px;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .l_narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

/*===============================================================

	l-footer

===============================================================*/
.l-footer {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "Yu Gothic", sans-serif;
  z-index: 0;
}
.l-footer__inner {
  background-color: #005BAB;
  padding: min(60px, 6vw) min(100px, 10vw);
}
.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__item + .l-footer__item {
  margin-left: min(100px, 10vw);
}
.l-footer__link {
  font-size: min(14px, 1.4vw);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__copy {
  padding: min(60px, 6vw);
  color: #005BAB;
}
.l-footer__copyright {
  text-align: center;
  font-size: min(14px, 1.4vw);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (hover) {
  .l-footer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 800px) {
  .l-footer__inner {
    padding: 6vw;
  }
  .l-footer__item {
    text-align: center;
    width: 50%;
  }
  .l-footer__item:nth-child(n+3) {
    margin-top: 2vw;
  }
  .l-footer__item + .l-footer__item {
    width: 50%;
    margin-left: 0;
  }
  .l-footer__link {
    font-size: min(14px, 3vw);
  }
  .l-footer__copy {
    padding: 6vw;
  }
  .l-footer__copyright {
    font-size: min(12px, 2.6vw);
  }
}

/*===============================================================

	c-btn

===============================================================*/
.c-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 7vw;
  font-size: 1.4vw;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  background: #f4903d;
  color: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn__txt {
  font-size: min(16px, 1.4vw);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.c-btn__txt--sm {
  position: relative;
  font-size: 80%;
  font-weight: bold;
  bottom: min(.5px, .05vw);
}
.c-btn .icon-btn-arw:before {
  position: absolute;
  top: 50%;
  right: 2vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.7vw;
}
@media (hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}
.c-btn--green {
  background-color: #0C9B8D;
}
.c-btn--yellow {
  background-color: #ffe153;
}
@media screen and (max-width: 800px) {
  .c-btn {
    height: 12vw;
    font-size: 2.6vw;
    border-radius: 0.3vw;
  }
  .c-btn__txt {
    font-size: 2.6vw;
    margin-right: 3vw;
  }
  .c-btn__txt--sm {
    bottom: 0.1vw;
  }
  .c-btn .icon-btn-arw:before {
    right: 2vw;
    font-size: 3vw;
  }
}

/*===============================================================

	_modal.scss

===============================================================*/
/*---------------------------------------------------------------
	modal open
---------------------------------------------------------------*/
.is-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0;
  overflow-y: scroll;
}
.is-modal .c-modal {
  pointer-events: inherit;
}
.is-modal .c-modal__bg {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.is-modal .c-modal__container {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/*---------------------------------------------------------------
	c-modal
---------------------------------------------------------------*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.c-modal__bg {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-modal__container {
  position: relative;
  z-index: 1000;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-modal__content {
  position: relative;
  max-width: 1200px;
  width: min(800px, 80vw);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-modal__mov {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-modal__mov video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.c-modal__close {
  position: absolute;
  top: max(-20px, -2vw);
  right: max(-20px, -2vw);
  width: min(60px, 6vw);
  height: min(60px, 6vw);
  background-color: #005BAB;
  border-radius: 50%;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  z-index: 99;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: min(20px, 2vw);
  height: 3px;
  background: #ffffff;
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (hover) {
  .c-modal__close:hover {
    background-color: #187FC4;
  }
}
@media screen and (max-width: 800px) {
  .c-modal__content {
    max-width: inherit;
    min-width: inherit;
    width: 90vw;
  }
  .c-modal__close {
    top: -2vw;
    right: -2vw;
    width: 8vw;
    height: 8vw;
  }
  .c-modal__close::before, .c-modal__close::after {
    width: 3vw;
    height: 0.5vw;
  }
}

/*===============================================================

	_animation.scss

===============================================================*/
/*---------------------------------------------------------------
	js-fadeup
---------------------------------------------------------------*/
.js-fadeup {
  opacity: 0;
}

.is-active.js-fadeup {
  -webkit-animation: fadeup cubic-bezier(0.3, 0.1, 0.1, 1) 0.75s;
          animation: fadeup cubic-bezier(0.3, 0.1, 0.1, 1) 0.75s;
  opacity: 1;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*===============================================================

	_top.scss

===============================================================*/
/*---------------------------------------------------------------
	p-top-kv
---------------------------------------------------------------*/
.p-top-kv__inner {
  background-image: url(../images/kv_bg.jpg);
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.p-top-kv__content {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.p-top-kv__content img {
  width: 100%;
  height: auto;
}
.p-top-kv__logo {
  position: absolute;
  top: 2vw;
  right: 15vw;
  width: 12vw;
}
.p-top-kv__morikawa {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 800px) {
  .p-top-kv__inner {
    background-position: 0 0;
    background-size: calc(100% - 10vw);
  }
  .p-top-kv__content {
    overflow: hidden;
  }
  .p-top-kv__content .p-top-kv__img {
    width: 135%;
    margin-left: -17.4%;
  }
  .p-top-kv__morikawa {
    bottom: -2px;
    width: 135%;
  }
  .p-top-kv__logo {
    top: 3vw;
    right: 3vw;
    width: 20vw;
  }
}

/*---------------------------------------------------------------
	p-top-cp
---------------------------------------------------------------*/
.p-top-cp {
  position: relative;
  overflow: hidden;
}
.p-top-cp__inner {
  background-image: url(../images/sec_bg.jpg);
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.p-top-cp__content {
  position: relative;
  width: 78vw;
  margin-left: auto;
  margin-right: auto;
}
.p-top-cp__content:first-child > .p-top-cp__btn {
  position: absolute;
  bottom: 7vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 84%;
}
.p-top-cp__btn-wrap {
  position: absolute;
  bottom: 8.5vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 84%;
}
.p-top-cp__btn {
  width: 100%;
}
.p-top-cp__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.p-top-cp__btns .p-top-cp__btn {
  position: relative;
  -webkit-transform: initial;
          transform: initial;
  bottom: 0;
  left: 0;
  width: calc((100% - min(20px, 2vw)) / 2);
}
.p-top-cp__btns + .p-top-cp__btn {
  margin-top: min(20px, 2vw);
}
@media (hover) {
  .p-top-cp__mov:hover {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
}
@media screen and (max-width: 800px) {
  .p-top-cp__inner {
    background-image: url(../images/sec_bg_sp.jpg);
  }
  .p-top-cp__content {
    width: calc(100% + 10vw);
    margin-left: -5vw;
  }
  .p-top-cp__content + .p-top-cp__content {
    margin-top: -11vw;
  }
  .p-top-cp__content:first-child > .p-top-cp__btn {
    bottom: 14.5vw;
    width: 85vw;
  }
  .p-top-cp__btn-wrap {
    bottom: 14.5vw;
    width: 85vw;
  }
}

/*---------------------------------------------------------------
	p-top-terms
---------------------------------------------------------------*/
.p-top-terms {
  position: relative;
  padding: 5vw 0;
  z-index: 0;
}
.p-top-terms__ttl {
  width: 26vw;
  margin-inline: auto;
}
.p-top-terms__content {
  position: relative;
  width: 79vw;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.p-top-terms__btn {
  width: 70vw;
  margin-inline: auto;
}
@media screen and (max-width: 800px) {
  .p-top-terms {
    padding: 6vw 0;
  }
  .p-top-terms__ttl {
    width: 40vw;
  }
  .p-top-terms__content {
    margin-top: -4vw;
    width: 90vw;
  }
  .p-top-terms__btn {
    margin-top: -4vw;
    width: 100%;
  }
}

/*===============================================================

	_utility.scss

===============================================================*/
/*===============================================================

	PC/SP/TABLET

===============================================================*/
.u-tablet {
  display: none;
}

.u-sp {
  display: none;
}

.u-sp-tablet {
  display: none;
}

.u-none {
  display: none !important;
}

.u-txt-sm {
  font-size: 80% !important;
}

.u-bold {
  font-weight: bold !important;
}

@media screen and (max-width: 1200px) {
  .u-tablet,
  .u-pc-tablet,
  .u-sp-tablet {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .u-pc {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .u-sp {
    display: block;
  }
  .u-pc-tablet,
  .u-tablet {
    display: none;
  }
}
/*===============================================================

	COLOR

===============================================================*/
.u-color-green {
  color: #0C9B8D;
}