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

	_reset.scss 2021/9/24

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
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: "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", "Zen Maru Gothic", sans-serif !important;
}

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

	_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: #231815;
  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: #231815;
  -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%;
  pointer-events: none;
}

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-header

===============================================================*/
.l-header {
  background-color: #ffffff;
  background-image: url(../images/header_bg.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: min(700px, 70vw);
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: min(88px, 8.8vw);
  max-width: 1000px;
  margin-inline: auto;
}
.l-header__logo {
  display: block;
  width: min(280px, 28vw);
  height: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover) {
  .l-header__logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 800px) {
  .l-header {
    display: none;
  }
}

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

	l-footer

===============================================================*/
.l-footer {
  background-color: #ffffff;
  background-image: url(../images/footer_bg.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: min(700px, 70vw);
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  padding-left: min(50px, 5vw);
  padding-right: min(50px, 5vw);
  margin-left: auto;
  margin-right: auto;
}
.l-footer__img {
  width: 40%;
}
.l-footer__contact {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-footer__ttl {
  width: min(230px, 21vw);
}
.l-footer__txt {
  font-size: min(12px,1.2vw);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 min(7px, .7vw) min(10px, 1vw);
}
@media (hover) {
  .l-footer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 800px) {
  .l-footer {
    background-size: 80vw;
  }
  .l-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10vw 6vw 0;
  }
  .l-footer__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .l-footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .l-footer__ttl {
    width: 60vw;
  }
  .l-footer__txt {
    font-size: 4vw;
    margin: 6vw 0 0;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .l-footer__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 70vw;
    margin-inline: auto;
    margin-top: 8vw;
  }
}

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

	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: min(90px, 9vw);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-btn__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: min(20px, 2vw);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #ffffff;
  text-align: center;
}
@media (hover) {
  .c-btn:hover {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
}
@media screen and (max-width: 800px) {
  .c-btn {
    width: 100%;
    height: auto;
  }
  .c-btn__txt {
    font-size: 4vw;
  }
}

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

	c-btn

===============================================================*/
.c-ttl {
  display: inline-block;
  position: relative;
  font-size: min(45px, 4.5vw);
  font-weight: bold;
  color: #1c9cba;
}
.c-ttl::after {
  content: url("../images/event_ttl_deco.svg");
  position: absolute;
  bottom: max(-20px, -2vw);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 110%;
}
@media screen and (max-width: 800px) {
  .c-ttl {
    font-size: 7.5vw;
  }
  .c-ttl::after {
    bottom: -4vw;
  }
}

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

	_animation.scss

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

.is-active.js-fadeup {
  -webkit-animation: fadeup cubic-bezier(0.3, 0.1, 0.1, 1) 1s;
          animation: fadeup cubic-bezier(0.3, 0.1, 0.1, 1) 1s;
  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);
  }
}
/*---------------------------------------------------------------
  js_zoomin
---------------------------------------------------------------*/
.js-zoomin {
  opacity: 0;
}

.is-loaded .js-zoomin {
  -webkit-animation: zoomin 0.75s forwards;
          animation: zoomin 0.75s forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.js-zoomin-kv {
  opacity: 0;
}

.is-loaded .js-zoomin-kv {
  -webkit-animation: zoomin-kv 0.75s forwards;
          animation: zoomin-kv 0.75s forwards;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes zoomin-kv {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

@keyframes zoomin-kv {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
/*===============================================================

	_top.scss

===============================================================*/
/*---------------------------------------------------------------
	p-top-kv
---------------------------------------------------------------*/
.p-top-kv {
  background-color: #1487B2;
  background-image: url(../images/kv_bg.svg);
  background-repeat: repeat;
  background-position: center bottom;
  background-size: min(700px, 70vw);
}
.p-top-kv__inner {
  max-width: 1100px;
  padding: min(50px, 5vw) min(50px, 5vw) min(200px, 20vw);
  padding-right: min(50px, 5vw);
  margin-left: auto;
  margin-right: auto;
}
.p-top-kv__illust-bottom {
  margin-top: max(-110px, -11vw);
}
.p-top-kv__content {
  position: relative;
}
.p-top-kv__content + .p-top-kv__content {
  margin-top: min(120px, 12vw);
}
.p-top-kv__txt {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: min(30px, 3vw);
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap !important;
}
@media screen and (max-width: 800px) {
  .p-top-kv {
    background-size: 80vw;
  }
  .p-top-kv__inner {
    padding: 5vw 6vw 10vw;
  }
  .p-top-kv__illust-bottom {
    margin-top: -9.5vw;
  }
  .p-top-kv__content + .p-top-kv__content {
    margin-top: 8vw;
  }
  .p-top-kv__txt {
    top: 54%;
    font-size: 5vw;
  }
}

/*---------------------------------------------------------------
	p-top-event
---------------------------------------------------------------*/
.p-top-event {
  background-color: #cee8ef;
  background-image: url(../images/event_bg.svg);
  background-repeat: repeat;
  background-position: center top;
  background-size: min(700px, 70vw);
}
.p-top-event__inner {
  padding: min(200px, 20vw) 0;
  max-width: 1100px;
  padding: min(200px, 20vw) min(50px, 5vw);
  margin-left: auto;
  margin-right: auto;
}
.p-top-event__content {
  position: relative;
  padding: min(70px, 7vw) min(80px, 8vw) min(45px, 4.5vw);
  background: #ffffff;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.p-top-event__content::before {
  content: "";
  position: absolute;
  top: max(-25px, -2.5vw);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  width: 95%;
  height: min(50px, 5vw);
  background-image: url(../images/event_deco.svg);
  background-repeat: repeat;
  background-position: top center;
  background-size: contain;
}
.p-top-event__headline {
  text-align: center;
}
.p-top-event__outline {
  margin-top: min(60px, 6vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.p-top-event__dt, .p-top-event__dd {
  color: #1c9cba;
  font-size: min(20px, 2vw);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-top-event__dt:first-of-type, .p-top-event__dd:first-of-type {
  padding-top: 0;
}
.p-top-event__dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  padding: min(20px, 2vw) 0;
  padding-left: min(10px, 1vw);
  border-bottom: 1px solid #1c9cba;
}
.p-top-event__dt::before {
  content: "";
  display: inline-block;
  background-image: url(../images/event_list.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: min(20px, 2vw);
  height: min(20px, 2vw);
  margin-right: min(5px, .5vw);
}
.p-top-event__dd {
  width: 80%;
  padding: min(20px, 2vw) 0;
  border-bottom: 1px solid #1c9cba;
}
.p-top-event__note {
  display: block;
  font-size: min(16px, 1.6vw);
  font-weight: bold;
}
.p-top-event__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(40px, 4vw);
}
.p-top-event__btn + .p-top-event__btn {
  margin-left: min(120px, 12vw);
}
@media screen and (max-width: 800px) {
  .p-top-event {
    background-size: 80vw;
  }
  .p-top-event__inner {
    padding: 14vw 6vw 10vw;
  }
  .p-top-event__content {
    padding: 12vw 6vw;
  }
  .p-top-event__content::before {
    top: -6vw;
    width: 90%;
    height: 12vw;
  }
  .p-top-event__outline {
    margin-top: 7.5vw;
  }
  .p-top-event__dt, .p-top-event__dd {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-event__dt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4vw 0 1vw;
    border-bottom: none;
    font-size: 5vw;
  }
  .p-top-event__dt::before {
    width: 4.5vw;
    height: 4.5vw;
    margin-right: 1.5vw;
  }
  .p-top-event__dd {
    padding: 0 0 4.8vw;
    font-size: 4vw;
  }
  .p-top-event__note {
    font-size: 3.4vw;
  }
  .p-top-event__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10vw;
  }
  .p-top-event__btn {
    width: 80%;
  }
  .p-top-event__btn + .p-top-event__btn {
    margin-left: 0;
    margin-top: 3vw;
  }
}

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

	_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;
  }
}
/*# sourceMappingURL=style.css.map */