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

	_reset.scss 2021/9/24

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&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", "Noto Sans JP", 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: #000;
  background: #b6cfe8;
  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: #000;
  -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: 700;
}

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 {
  position: relative;
  background-color: #ffffff;
  z-index: 99;
}
.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;
  padding: 0 min(50px, 5vw);
}
.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__inner {
    height: 12vw;
    padding: 0 5vw;
  }
  .l-header__logo {
    width: 40vw;
    margin-top: 1vw;
  }
}

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

	l-footer

===============================================================*/
.l-footer {
  background-color: #ffffff;
}
.l-footer__inner {
  position: relative;
  max-width: 1200px;
  padding: min(30px, 3vw) min(50px, 5vw) min(20px, 2vw);
  margin-inline: auto;
}
.l-footer__ttl {
  display: block;
  font-size: min(22px, 2.2vw);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: min(10px, 1vw);
}
.l-footer__logo {
  width: min(280px, 28vw);
}
.l-footer__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer__txt {
  font-size: min(12px,1.2vw);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-left: min(10px, 1vw);
}
.l-footer__img {
  position: absolute;
  right: min(100px, 10vw);
  bottom: 0;
  width: min(375px, 37.5vw);
}
@media (hover) {
  .l-footer__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer__txt {
    margin-left: 0;
  }
  .l-footer__img {
    right: 4vw;
    width: 30vw;
  }
}
@media screen and (max-width: 800px) {
  .l-footer__inner {
    padding: 8vw 0 0;
  }
  .l-footer__ttl {
    text-align: center;
    font-size: 4vw;
  }
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3vw;
  }
  .l-footer__logo {
    width: 70vw;
  }
  .l-footer__txt {
    text-align: center;
    margin-top: 3vw;
    font-size: 3vw;
    margin-left: 0;
  }
  .l-footer__img {
    position: inherit;
    margin-top: 4vw;
    right: 0;
    width: 100%;
  }
}

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

	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;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: min(30px, 3vw);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #274c9e;
  border-radius: 15px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn.c-btn--light {
  background: #7c97cd;
}
@media (hover) {
  .c-btn:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 800px) {
  .c-btn {
    font-size: 6vw;
    border-radius: 5vw;
  }
}

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

	c-ttl

===============================================================*/
.c-ttl {
  position: relative;
  font-size: min(55px, 5.5vw);
  font-weight: 700;
  color: #000;
}
.c-ttl.c-ttl--red {
  color: #ea6346;
}
@media screen and (max-width: 800px) {
  .c-ttl {
    font-size: 7vw;
  }
  .c-ttl.c-ttl--red {
    font-size: 10vw;
  }
}

/*---------------------------------------------------------------
	c-ttl__md
---------------------------------------------------------------*/
.c-ttl__md {
  font-size: min(50px, 5vw);
  font-weight: 700;
  color: #ea6346;
}
.c-ttl__md-sub {
  display: block;
  font-size: min(24px, 2.4vw);
  font-weight: 500;
  margin-top: min(15px, 1.5vw);
}
@media screen and (max-width: 800px) {
  .c-ttl__md {
    font-size: 10vw;
  }
  .c-ttl__md-sub {
    font-size: 5vw;
    margin-top: 2vw;
  }
}

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

	c-judge

===============================================================*/
.c-judge__img {
  border-radius: 50%;
  overflow: hidden;
}
.c-judge__name {
  font-size: min(30px, 3vw);
  line-height: 1;
}
.c-judge__position {
  display: block;
  font-size: min(19px, 1.9vw);
}
.c-judge__txt {
  margin-top: min(3px, .3vw);
  font-size: min(19px, 1.9vw);
}
@media screen and (max-width: 800px) {
  .c-judge__name {
    font-size: 8vw;
  }
  .c-judge__position {
    font-size: 4.5vw;
  }
  .c-judge__txt {
    margin-top: 0.6vw;
    font-size: 4.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) 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 img {
  opacity: 0;
}

.is-loaded .js-zoomin-kv img {
  -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__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.p-top-kv__content {
  position: relative;
}
.p-top-kv__main {
  position: relative;
  width: 100%;
  margin-top: max(-48px, -4.2vw);
  padding: 0 min(50px, 5vw) min(48px, 4.2vw);
  overflow: hidden;
}
.p-top-kv__illust {
  position: absolute;
  bottom: min(240px, 21.5vw);
  right: min(65px, 5.5vw);
  width: min(540px, 48.3vw);
}
.p-top-kv__ttl {
  margin-top: min(10px, 1vw);
  padding: 0 min(50px, 5vw);
}
@media screen and (max-width: 800px) {
  .p-top-kv__inner {
    padding: 0;
  }
  .p-top-kv__main {
    margin-top: -4vw;
    padding: 0 3vw 4vw;
  }
  .p-top-kv__illust {
    bottom: 22vw;
    right: 5.2vw;
    width: 50vw;
  }
  .p-top-kv__ttl {
    margin-top: 3vw;
    padding: 0 3vw;
  }
}

/*---------------------------------------------------------------
	p-top-outline
---------------------------------------------------------------*/
.p-top-outline {
  margin-top: min(75px, 7.5vw);
}
.p-top-outline__inner {
  max-width: 1100px;
  padding: 0 min(50px, 5vw);
  margin-inline: auto;
}
.p-top-outline__headline {
  text-align: center;
}
.p-top-outline__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: min(40px, 4vw);
}
.p-top-outline__list > :not(:nth-child(3n-2)) {
  margin-left: min(50px, 4vw);
}
.p-top-outline__item {
  width: calc((100% - min(50px, 4vw) * 2) / 3);
  padding: min(30px, 3vw);
  background: #ffffff;
  border-radius: min(30px, 3vw);
}
.p-top-outline__item-ttl {
  text-align: center;
}
.p-top-outline__item-ttl + .p-top-outline__txt {
  margin-top: min(25px, 2.5vw);
}
.p-top-outline__txt + .p-top-outline__txt {
  margin-top: min(10px, 1vw);
}
.p-top-outline__txt {
  font-size: min(19px, 1.9vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 800px) {
  .p-top-outline {
    margin-top: 5vw;
  }
  .p-top-outline__inner {
    padding: 0 8vw;
  }
  .p-top-outline__list {
    margin-top: 6vw;
  }
  .p-top-outline__list > :not(:nth-child(3n-2)) {
    margin: 5vw 0 0 0;
  }
  .p-top-outline__item {
    width: 100%;
    padding: 4vw 6vw 6vw;
    border-radius: 5vw;
  }
  .p-top-outline__item-ttl + .p-top-outline__txt {
    margin-top: 3vw;
  }
  .p-top-outline__txt + .p-top-outline__txt {
    margin-top: 2vw;
  }
  .p-top-outline__txt {
    font-size: 4.5vw;
  }
}

/*---------------------------------------------------------------
	p-top-description
---------------------------------------------------------------*/
.p-top-description {
  margin-top: min(75px, 7.5vw);
  padding-bottom: min(120px, 12vw);
  /*------　list -------*/
  /*------　judge -------*/
  /*------　btns -------*/
}
.p-top-description__inner {
  max-width: 1100px;
  padding: 0 min(50px, 5vw);
  margin-inline: auto;
}
.p-top-description__content {
  position: relative;
  padding: min(75px, 7.5vw) min(60px, 6vw);
  background: #ffffff;
  border-radius: min(50px, 5vw);
}
.p-top-description__headline {
  text-align: center;
  margin-top: min(80px, 8vw);
}
.p-top-description__headline:first-of-type {
  margin-top: 0;
}
.p-top-description__lead {
  margin-top: min(15px, 1.5vw);
  font-size: min(19px, 1.9vw);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-top-description__list {
  margin-top: min(60px, 6vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.p-top-description__dt, .p-top-description__dd {
  font-size: min(23px, 2.3vw);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: min(50px, 5vw);
}
.p-top-description__dt:first-of-type, .p-top-description__dd:first-of-type {
  margin-top: 0;
}
.p-top-description__dt {
  width: 35%;
  font-weight: 700;
  color: #ea6346;
}
.p-top-description__dd {
  width: 65%;
}
.p-top-description__judge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: min(40px, 4vw);
}
.p-top-description__judge > :not(:nth-child(3n-2)) {
  margin-left: 60px;
}
.p-top-description__judge-item {
  width: calc((100% - 120px) / 3);
}
.p-top-description__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(60px, 6vw);
}
.p-top-description__btns .p-top-description__btn {
  width: min(250px, 25vw);
  height: min(100px, 10vw);
}
.p-top-description__btn + .p-top-description__btn {
  margin-left: min(30px, 3vw);
}
.p-top-description__btn {
  width: min(400px, 40vw);
  height: min(100px, 10vw);
  margin: min(60px, 6vw) auto 0;
}
@media screen and (max-width: 800px) {
  .p-top-description {
    margin-top: 8vw;
    padding-bottom: 14vw;
    /*------　list -------*/
    /*------　judge -------*/
    /*------　btns -------*/
  }
  .p-top-description__inner {
    padding: 0 8vw;
  }
  .p-top-description__content {
    padding: 8vw 6vw 6vw;
    border-radius: 5vw;
  }
  .p-top-description__headline {
    margin-top: 16vw;
  }
  .p-top-description__lead {
    margin-top: 3vw;
    font-size: 4.5vw;
  }
  .p-top-description__list {
    margin-top: 8vw;
  }
  .p-top-description__dt, .p-top-description__dd {
    width: 100%;
    font-size: 4.8vw;
    margin-top: 0;
  }
  .p-top-description__dt {
    margin-top: 6vw;
  }
  .p-top-description__judge {
    margin-top: 6vw;
    padding: 0 4vw;
  }
  .p-top-description__judge > :not(:nth-child(3n-2)) {
    margin: 8vw 0 0 0;
  }
  .p-top-description__judge-item {
    width: 100%;
  }
  .p-top-description__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 12vw;
  }
  .p-top-description__btns .p-top-description__btn, .p-top-description__btn {
    width: 100%;
    height: 22vw;
  }
  .p-top-description__btn + .p-top-description__btn {
    margin: 4vw 0 0 0;
  }
}

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

	_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;
  }
}
/*===============================================================

	text-align

===============================================================*/
.u-align-center {
  text-align: center !important;
}

.u-align-left {
  text-align: left !important;
}

.u-align-right {
  text-align: right !important;
}
/*# sourceMappingURL=style.css.map */