@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* design size variable */
/* constance variable */
/* device width variable */
/* font responsive ratio */
/* spacer responsive ratio */
/* noto sans font weight */
/* general method */
/* linear */
/* easeSineIn */
/* easeSineOut */
/* easeSineInOut */
/* easeQuadIn */
/* easeQuadOut */
/* easeQuadInOut */
/* easeCubicIn */
/* easeCubicOut */
/* easeCubicInOut */
/* easeQuartIn */
/* easeQuartOut */
/* easeQuartInOut */
/* easeQuintIn */
/* easeQuintOut */
/* easeQuintInOut */
/* easeExpoIn */
/* easeExpoOut */
/* easeExpoInOut */
/* easeCircIn */
/* easeCircOut */
/* easeCircInOut */
/* easeBackIn */
/* easeBackOut */
/* easeBackInOut */
.p-drawer {
  position: relative;
  z-index: 999;
}
.p-drawer a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .p-drawer a {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.p-drawer a span.box {
  display: block;
  width: 20px;
  height: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-drawer a span.box {
    width: 5.3333333333vw;
    height: 4.8vw;
  }
}
.p-drawer a span.line {
  background: #fff;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.25s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.25s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: liner;
}
.p-drawer a span.line:first-child {
  top: 0;
}
.p-drawer a span.line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-drawer a span.line:last-child {
  bottom: 0;
}
.p-drawer.active a span.line:first-child {
  top: 50%;
  transform: translate(0, 0) rotate(-45deg);
}
.p-drawer.active a span.line:nth-child(2) {
  transform: scale(0, 1);
}
.p-drawer.active a span.line:last-child {
  bottom: calc(50% - 2px);
  transform: translate(0, 0) rotate(45deg);
}

.p-link-arrow--yellow {
  position: relative;
}
.p-link-arrow--yellow:after {
  background: url(../img/btn_with_arrow_y.png) no-repeat left top/contain;
  content: " ";
  display: block;
  width: 74px;
  height: 74px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-link-arrow--yellow:after {
    width: 11.5625vw;
    height: 11.5625vw;
  }
}
.p-link-arrow--black {
  position: relative;
}
.p-link-arrow--black:after {
  background: url(../img/btn_with_arrow_b.png) no-repeat left top/contain;
  content: " ";
  display: block;
  width: 74px;
  height: 74px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .p-link-arrow--black:after {
    width: 11.5625vw;
    height: 11.5625vw;
  }
}

.p-modal_nav {
  background: #000;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 0;
  position: absolute;
  left: 0;
  top: 100%;
  transform: scale(1, 0);
  transform-origin: 0 0;
  z-index: -1;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.25s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.25s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: liner;
}
.p-modal_nav.active {
  transform: scale(1, 1);
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav {
    align-items: flex-start;
  }
}
.p-modal_nav .container {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 1080px) {
  .p-modal_nav .container {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .container {
    width: 100%;
  }
}
.p-modal_nav a {
  color: #fff;
}
.p-modal_nav .nav_render > ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul {
    padding: 0;
  }
}
.p-modal_nav .nav_render > ul > li {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul > li {
    width: 100%;
    font-size: 4.2666666667vw;
  }
}
.p-modal_nav .nav_render > ul > li > a {
  display: block;
  border-bottom: solid 1px #fff;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul > li > a {
    width: 100%;
    box-sizing: border-box;
    padding: 4.6875vw;
    position: relative;
  }
  .p-modal_nav .nav_render > ul > li > a.has_child:after {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    content: " ";
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: #fff solid 1px;
    border-right: #fff solid 1px;
    right: 1em;
    top: calc(50% - 3px);
  }
}
.p-modal_nav .nav_render > ul > li > a:hover {
  background: #fff000;
  color: #000;
}
.p-modal_nav .nav_render > ul > li > a:hover.has_child:after {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  content: " ";
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: #000 solid 1px;
  border-right: #000 solid 1px;
  right: 1em;
  top: calc(50% - 3px);
}
.p-modal_nav .nav_render > ul .child {
  margin-top: 14px;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul .child {
    background: #000;
    box-sizing: border-box;
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    overflow: scroll;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.25s;
    -webkit-transition-timing-function: liner;
    -moz-transition-property: all;
    -moz-transition-duration: 0.25s;
    -moz-transition-timing-function: liner;
    -ms-transition-property: all;
    -ms-transition-duration: 0.25s;
    -ms-transition-timing-function: liner;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: liner;
  }
  .p-modal_nav .nav_render > ul .child.active {
    opacity: 1;
    z-index: 9999;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.25s;
    -webkit-transition-timing-function: liner;
    -moz-transition-property: all;
    -moz-transition-duration: 0.25s;
    -moz-transition-timing-function: liner;
    -ms-transition-property: all;
    -ms-transition-duration: 0.25s;
    -ms-transition-timing-function: liner;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: liner;
  }
}
.p-modal_nav .nav_render > ul .child li {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul .child li {
    font-size: 3.75vw;
  }
}
.p-modal_nav .nav_render > ul .child li:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul .child li:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-modal_nav .nav_render > ul .child li > a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-modal_nav .nav_render > ul .child li > a {
    border-bottom: solid 1px #fff;
    width: 100%;
    box-sizing: border-box;
    padding: 4.6875vw;
  }
}
.p-modal_nav .nav_render > ul .child li > a:hover {
  background: #fff000;
  color: #000;
}

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE Mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End Hack */
/**
EC-CUBE リセット
 */
body {
  background: none;
}

.ec-layoutRole {
  background: none;
}
.ec-layoutRole .ec-layoutRole__contents {
  max-width: none;
}

html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

p, li, dt, dd, input, textarea, th, td {
  color: #000;
  line-height: 175%;
}

a {
  color: #000;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

.wrapper {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 1079px) {
  .wrapper {
    width: 79.0629575403vw;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 89.6vw;
  }
}

.pc {
  display: inherit;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.pc-min-1281 {
  display: none;
}
@media only screen and (min-width: 1281px) {
  .pc-min-1281 {
    display: inherit;
  }
}

.pc-1280 {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .pc-1280 {
    display: inherit;
  }
}
@media only screen and (max-width: 768px) {
  .pc-1280 {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: inherit;
  }
}

img.pc, br.pc, span.pc, strong.pc, small.pc {
  display: inline;
}
@media only screen and (max-width: 768px) {
  img.pc, br.pc, span.pc, strong.pc, small.pc {
    display: none;
  }
}
img.sp, br.sp, span.sp, strong.sp, small.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  img.sp, br.sp, span.sp, strong.sp, small.sp {
    display: inline;
  }
}

a[href^="tel"] {
  cursor: text;
}
@media only screen and (max-width: 768px) {
  a[href^="tel"] {
    cursor: pointer;
  }
}

span[data-aos],
strong[data-aos],
small[data-aos] {
  display: inline-block;
}

body > .bg {
  background: url(../img/bg.png) repeat center top;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}
body .c-block--btn {
  text-align: center;
}
body .c-block--btn p {
  margin-bottom: 0.878477306vw;
  font-size: 1.317715959vw;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  body .c-block--btn p {
    margin-bottom: 2.624vw;
    font-size: 3.936vw;
  }
}
body .c-block--btn p span {
  display: inline-block;
  position: relative;
}
body .c-block--btn p span:before, body .c-block--btn p span:after {
  background: #000;
  content: '';
  display: block;
  width: 2px;
  height: 1em;
  position: absolute;
  bottom: 0.3660322108vw;
}
@media only screen and (max-width: 768px) {
  body .c-block--btn p span:before, body .c-block--btn p span:after {
    bottom: 1.0933333333vw;
  }
}
body .c-block--btn p span:before {
  left: -1.4641288433vw;
  transform: rotate(-20deg);
}
@media only screen and (max-width: 768px) {
  body .c-block--btn p span:before {
    left: -4.3733333333vw;
  }
}
body .c-block--btn p span:after {
  right: -1.4641288433vw;
  transform: rotate(20deg);
}
@media only screen and (max-width: 768px) {
  body .c-block--btn p span:after {
    right: -4.3733333333vw;
  }
}
body .c-block--btn a {
  background: #c69c6d;
  box-shadow: 4px 4px 0 0 #de285a;
  border-radius: 50px;
  display: inline-block;
  width: 24.8901903367vw;
  padding: 1.317715959vw 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body .c-block--btn a {
    width: 74.3466666667vw;
    padding: 3.936vw 0;
  }
}
body .c-block--btn a:after {
  content: '';
  display: block;
  position: absolute;
  right: 1.4641288433vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
}
@media only screen and (max-width: 768px) {
  body .c-block--btn a:after {
    right: 4.3733333333vw;
  }
}
body .c-block--btn a:hover {
  opacity: 0.8;
}
body .c-block--btn a img {
  width: 13.3235724744vw;
}
@media only screen and (max-width: 768px) {
  body .c-block--btn a img {
    width: 39.7973333333vw;
  }
}
body .container {
  background: url(../img/bg_main.webp) repeat left top;
  background-attachment: fixed;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  body .container {
    background-repeat: repeat-y;
    background-size: unset;
    display: block;
    height: auto;
    overflow: unset;
  }
}
body header {
  box-sizing: border-box;
  width: 42.4597364568%;
  height: 100vh;
  padding-top: 1.4641288433vw;
  padding-bottom: 6.3689604685vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body header {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 4.3733333333vw;
    padding-bottom: 10.6666666667vw;
  }
}
body header h1 {
  margin-left: 2.196193265vw;
  margin-bottom: 0.7320644217vw;
}
@media only screen and (max-width: 768px) {
  body header h1 {
    margin-left: 6.56vw;
    margin-bottom: 2.1866666667vw;
  }
}
body header h1 img {
  width: 9.5168374817vw;
}
@media only screen and (max-width: 768px) {
  body header h1 img {
    width: 28.4266666667vw;
  }
}
body header .mv {
  width: 58.9655172414%;
  margin: 0 auto 2.196193265vw;
  padding-bottom: 5.710102489vw;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body header .mv {
    margin-bottom: 6.56vw;
    padding-bottom: 22.4vw;
  }
}
body header .mv .mv_title {
  width: 100%;
}
body header .mv .mv_god {
  display: block;
  width: 18.3016105417vw;
  position: absolute;
  bottom: 0;
  left: 5.710102489vw;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.1s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.1s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: liner;
}
@media only screen and (max-width: 768px) {
  body header .mv .mv_god {
    width: 54.6666666667vw;
    left: 9.6vw;
  }
}
body header .date {
  text-align: center;
  margin-bottom: 1.0248901903vw;
}
@media only screen and (max-width: 768px) {
  body header .date {
    margin-bottom: 3.0613333333vw;
  }
}
body header .date img {
  width: 62.2413793103%;
}
body header .place p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body header .place p {
    font-size: 4.3733333333vw;
  }
}
body header .belt {
  background: #000;
  padding: 30px 19px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  body header .belt {
    padding: 6.56vw 4.1546666667vw;
  }
}
body header .belt img {
  width: 22px;
}
@media only screen and (max-width: 768px) {
  body header .belt img {
    width: 4.8106666667vw;
  }
}
body main {
  background: #fff;
  width: 33.6749633968%;
  margin-left: 42.4597364568%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  body main {
    width: 100%;
    margin-left: 0;
  }
}
body main section.intro {
  background: #fff;
  padding-bottom: 3.6603221083vw;
}
@media only screen and (max-width: 768px) {
  body main section.intro {
    padding-bottom: 10.9333333333vw;
  }
}
body main section .about {
  background: #000;
  background-size: contain;
  width: 100%;
  padding: 4.0995607613vw 0 2.9282576867vw;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  body main section .about {
    padding: 12.2453333333vw 0 8.7466666667vw;
  }
}
body main section .about .cloud_l,
body main section .about .cloud_r {
  display: block;
  position: absolute;
  mix-blend-mode: lighten;
  opacity: 0.4;
  z-index: 1;
}
body main section .about .cloud_l {
  width: 9.0775988287vw;
  left: 1.8301610542vw;
  top: 1.4641288433vw;
}
@media only screen and (max-width: 768px) {
  body main section .about .cloud_l {
    width: 27.1146666667vw;
    left: 5.4666666667vw;
    top: 4.3733333333vw;
  }
}
body main section .about .cloud_r {
  width: 11.6398243045vw;
  right: -1.4641288433vw;
  bottom: 0.7320644217vw;
}
@media only screen and (max-width: 768px) {
  body main section .about .cloud_r {
    width: 34.768vw;
    right: -4.3733333333vw;
    bottom: 2.1866666667vw;
  }
}
body main section .about h2 {
  margin-bottom: 1.4641288433vw;
  padding-bottom: 1.4641288433vw;
  color: #fff;
  font-size: 2.196193265vw;
  font-weight: 700;
  line-height: 160%;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body main section .about h2 {
    margin-bottom: 4.3733333333vw;
    padding-bottom: 4.3733333333vw;
    font-size: 6.56vw;
  }
}
body main section .about h2:after {
  background: #c69c6d;
  content: '';
  display: block;
  width: 2.7086383602vw;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  body main section .about h2:after {
    width: 8.0906666667vw;
  }
}
body main section .about .date {
  margin-bottom: 1.6105417277vw;
  text-align: center;
  position: relative;
  z-index: 2;
}
body main section .about .date img {
  width: 26.4275256223vw;
}
@media only screen and (max-width: 768px) {
  body main section .about .date img {
    width: 78.9386666667vw;
  }
}
body main section .about .place {
  position: relative;
  z-index: 2;
}
body main section .about .place p {
  color: #fff;
  font-size: 1.4641288433vw;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section .about .place p {
    font-size: 4.3733333333vw;
  }
}
body main section .lead {
  background: #fff;
}
body main section .lead .inner .bg {
  background: url(../img/bg_lead.webp) no-repeat left top #fff;
  background-size: cover;
  padding: 2.9282576867vw 1.4641288433vw 13.0307467057vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .inner .bg {
    padding: 8.7466666667vw 4.3733333333vw 38.9226666667vw;
  }
}
body main section .lead .text {
  margin-bottom: 1.9033674963vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .text {
    margin-bottom: 5.6853333333vw;
  }
}
body main section .lead .text p {
  font-size: 1.1713030747vw;
  font-weight: 500;
  line-height: 187.5%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section .lead .text p {
    font-size: 3.4986666667vw;
  }
}
body main section .lead .text p:first-child {
  margin-bottom: 2.196193265vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .text p:first-child {
    margin-bottom: 6.56vw;
  }
}
body main section .lead .catch p {
  font-size: 1.4641288433vw;
  font-weight: 700;
  line-height: 200%;
  transform: rotate(-5deg);
}
@media only screen and (max-width: 768px) {
  body main section .lead .catch p {
    font-size: 4.3733333333vw;
  }
}
body main section .lead .catch p span {
  background: #de285a;
  display: inline-block;
  padding: 0 0.439238653vw;
  color: #fff;
  font-size: 2.1398243045vw;
  line-height: 150%;
}
@media only screen and (max-width: 768px) {
  body main section .lead .catch p span {
    padding: 0 1.312vw;
    font-size: 6.3916266667vw;
  }
}
body main section .lead .catch p span:first-of-type {
  margin-bottom: 0.3660322108vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .catch p span:first-of-type {
    margin-bottom: 1.0933333333vw;
  }
}
body main section .lead .catch p span strong {
  font-size: 2.5021961933vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .catch p span strong {
    font-size: 7.4740266667vw;
  }
}
body main section .lead .catch p span small {
  font-size: 1.7869692533vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead .catch p span small {
    font-size: 5.3376533333vw;
  }
}
body main section .lead figure {
  margin-top: -11.420204978vw;
  margin-bottom: 2.196193265vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section .lead figure {
    margin-top: -34.112vw;
    margin-bottom: 6.56vw;
  }
}
body main section .lead figure img {
  width: 26.7203513909vw;
}
@media only screen and (max-width: 768px) {
  body main section .lead figure img {
    width: 79.8133333333vw;
  }
}
body main section.example .inner {
  background: url(../img/bg_example.webp) repeat-y left top #eee;
  background-size: contain;
  box-sizing: border-box;
  width: 95.652173913%;
  padding: 3.3674963397vw 1.4641288433vw 4.0995607613vw;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body main section.example .inner {
    padding: 10.0586666667vw 4.3733333333vw 12.2453333333vw;
  }
}
body main section.example h2 {
  margin-bottom: 2.635431918vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.example h2 {
    margin-bottom: 7.872vw;
  }
}
body main section.example h2 span {
  display: inline-block;
  position: relative;
}
body main section.example h2 span:after {
  background: url(../img/ttl01_icon.webp) no-repeat center center/contain;
  content: "";
  display: block;
  width: 4.39238653vw;
  height: 6.8814055637vw;
  position: absolute;
  right: -4.39238653vw;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  body main section.example h2 span:after {
    width: 13.12vw;
    height: 20.5546666667vw;
    right: -13.12vw;
  }
}
body main section.example h2 img {
  width: 14.2020497804vw;
}
@media only screen and (max-width: 768px) {
  body main section.example h2 img {
    width: 42.4213333333vw;
  }
}
body main section.example .comments .comment {
  display: flex;
}
body main section.example .comments .comment p {
  background: #fff;
  border: solid 1px #000;
  border-radius: 10px;
  box-sizing: border-box;
  width: 27.0863836018vw;
  padding: 1.4641288433vw;
  margin-bottom: 2.9282576867vw;
  font-size: 1.1713030747vw;
  font-weight: 500;
  line-height: 187.5%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body main section.example .comments .comment p {
    width: 80.9066666667vw;
    padding: 4.3733333333vw;
    margin-bottom: 8.7466666667vw;
    font-size: 3.4986666667vw;
  }
}
body main section.example .comments .comment p:before {
  background: url(../img/icon_passion.webp) no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  width: 2.196193265vw;
  height: 3.8799414348vw;
  position: absolute;
  top: 1.317715959vw;
}
@media only screen and (max-width: 768px) {
  body main section.example .comments .comment p:before {
    width: 6.56vw;
    height: 11.5893333333vw;
    top: 3.936vw;
  }
}
body main section.example .comments .comment p:after {
  content: "";
  display: block;
  width: 2.635431918vw;
  height: 2.3426061493vw;
  position: absolute;
  bottom: -1.756954612vw;
}
@media only screen and (max-width: 768px) {
  body main section.example .comments .comment p:after {
    width: 7.872vw;
    height: 6.9973333333vw;
    bottom: -5.248vw;
  }
}
body main section.example .comments .comment:nth-child(odd) {
  justify-content: flex-start;
}
body main section.example .comments .comment:nth-child(odd) p:before {
  right: 0;
  transform: translateX(50%);
}
body main section.example .comments .comment:nth-child(odd) p:after {
  background: url(../img/icon_babble_l.webp) no-repeat center center;
  background-size: contain;
  left: 1.2445095168vw;
}
body main section.example .comments .comment:nth-child(even) {
  justify-content: flex-end;
}
body main section.example .comments .comment:nth-child(even) p:before {
  left: 0;
  transform: translateX(-50%);
}
body main section.example .comments .comment:nth-child(even) p:after {
  background: url(../img/icon_babble_r.webp) no-repeat center center;
  background-size: contain;
  right: 1.2445095168vw;
}
body main section.example .comments .hide_content {
  height: auto;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.25s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.25s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: liner;
}
body main section.example .comments .hide_content.hide {
  height: 0;
  overflow: hidden;
}
body main section.example .btn_more {
  margin-bottom: 2.9282576867vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.example .btn_more {
    margin-bottom: 8.7466666667vw;
  }
}
body main section.example .btn_more a {
  background: #000;
  border-radius: 50px;
  display: inline-block;
  width: 19.0336749634vw;
  padding: 1.4641288433vw 0;
  color: #fff;
  font-size: 1.317715959vw;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body main section.example .btn_more a {
    width: 56.8533333333vw;
    padding: 4.3733333333vw 0;
    font-size: 3.936vw;
  }
}
body main section.example .btn_more a:after {
  background: #fff;
  content: "";
  display: block;
  width: 0.878477306vw;
  height: 0.7320644217vw;
  position: absolute;
  right: 1.4641288433vw;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media only screen and (max-width: 768px) {
  body main section.example .btn_more a:after {
    width: 2.624vw;
    height: 2.1866666667vw;
    right: 4.3733333333vw;
  }
}
body main section.example .btn_more a.active:after {
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
}
body main section.step_list {
  border-bottom: solid 5px #de285a;
  padding: 3.6603221083vw 0 5.1244509517vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list {
    padding: 10.9333333333vw 0 15.3066666667vw;
  }
}
body main section.step_list h2 {
  margin-bottom: 2.9282576867vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.step_list h2 {
    margin-bottom: 8.7466666667vw;
  }
}
body main section.step_list h2 img {
  width: 13.3967789165vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list h2 img {
    width: 40.016vw;
  }
}
body main section.step_list .steps .step {
  display: flex;
  align-items: flex-start;
}
body main section.step_list .steps .step:not(:last-child) {
  margin-bottom: 2.9282576867vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step:not(:last-child) {
    margin-bottom: 8.7466666667vw;
  }
}
body main section.step_list .steps .step .num {
  background: #000;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  box-sizing: border-box;
  width: 8.0527086384vw;
  padding: 0.7320644217vw 0 0.5124450952vw 2.196193265vw;
  margin-right: 1.4641288433vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step .num {
    width: 24.0533333333vw;
    padding: 2.1866666667vw 0 1.5306666667vw 6.56vw;
    margin-right: 4.3733333333vw;
  }
}
body main section.step_list .steps .step .num img {
  width: 3.6603221083vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step .num img {
    width: 10.9333333333vw;
  }
}
body main section.step_list .steps .step p {
  font-size: 1.1713030747vw;
  font-weight: 500;
  line-height: 187.5%;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step p {
    font-size: 3.4986666667vw;
  }
}
body main section.step_list .steps .step p strong,
body main section.step_list .steps .step p span {
  color: #de285a;
}
body main section.step_list .steps .step p strong {
  font-size: 1.4641288433vw;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step p strong {
    font-size: 4.3733333333vw;
  }
}
body main section.step_list .steps .step p .btn_image {
  width: 9.7364568082vw;
  margin-right: 0.5em;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body main section.step_list .steps .step p .btn_image {
    width: 29.0826666667vw;
  }
}
body main section.enjoy {
  padding: 3.074670571vw 0 4.39238653vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy {
    padding: 9.184vw 0 13.12vw;
  }
}
body main section.enjoy .bg {
  background: url(../img/bg_enjoy.webp) no-repeat center bottom/contain;
  padding-bottom: 17.8623718887vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .bg {
    padding-bottom: 42.6666666667vw;
  }
}
body main section.enjoy h2 {
  margin-bottom: 2.196193265vw;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy h2 {
    margin-bottom: 6.56vw;
  }
}
body main section.enjoy h2 img {
  width: 11.420204978vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy h2 img {
    width: 34.112vw;
  }
}
body main section.enjoy section {
  margin-bottom: 2.196193265vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy section {
    margin-bottom: 6.56vw;
  }
}
body main section.enjoy section h3 {
  margin-bottom: 1.2445095168vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy section h3 {
    margin-bottom: 3.7173333333vw;
  }
}
body main section.enjoy section h3 span {
  background: #c69c6d;
  border-radius: 50px;
  display: inline-block;
  width: 16.1054172767vw;
  padding: 0.5555555556em;
  color: #fff;
  font-size: 1.317715959vw;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy section h3 span {
    width: 48.1066666667vw;
    font-size: 3.936vw;
  }
}
body main section.enjoy section h3 + p {
  text-align: center;
}
body main section.enjoy section h3 + p img {
  width: 16.8374816984vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy section h3 + p img {
    width: 50.2933333333vw;
  }
}
body main section.enjoy .catch {
  margin-bottom: 2.5622254758vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch {
    margin-bottom: 7.6533333333vw;
  }
}
body main section.enjoy .catch p {
  color: #de285a;
  font-size: 1.6837481698vw;
  font-weight: 700;
  line-height: 160.8695652174%;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch p {
    font-size: 5.0293333333vw;
  }
}
body main section.enjoy .catch p strong {
  font-size: 2.0497803807vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch p strong {
    font-size: 6.1226666667vw;
  }
}
body main section.enjoy .catch p span {
  display: inline-block;
  position: relative;
}
body main section.enjoy .catch p span.txt {
  z-index: 2;
}
body main section.enjoy .catch p span.titlebg:before, body main section.enjoy .catch p span.titlebg:after {
  content: '';
  display: block;
  width: 7.1010248902vw;
  height: 10.2489019034vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch p span.titlebg:before, body main section.enjoy .catch p span.titlebg:after {
    width: 21.2106666667vw;
    height: 30.6133333333vw;
  }
}
body main section.enjoy .catch p span.titlebg:before {
  background: url(../img/bg_enjoy_title_l.webp) no-repeat center center/contain;
  left: -4.39238653vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch p span.titlebg:before {
    left: -13.12vw;
  }
}
body main section.enjoy .catch p span.titlebg:after {
  background: url(../img/bg_enjoy_title_r.webp) no-repeat center center/contain;
  right: -4.39238653vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .catch p span.titlebg:after {
    right: -13.12vw;
  }
}
body main section.enjoy .points {
  padding: 0 1.4641288433vw;
  margin-bottom: 2.196193265vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points {
    padding: 0 4.3733333333vw;
    margin-bottom: 6.56vw;
  }
}
body main section.enjoy .points .row {
  display: flex;
}
body main section.enjoy .points .row:not(:last-child) {
  margin-bottom: 1.1713030747vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:not(:last-child) {
    margin-bottom: 3.4986666667vw;
  }
}
body main section.enjoy .points .row:nth-child(odd) {
  justify-content: flex-start;
}
body main section.enjoy .points .row:nth-child(odd) .point {
  background: url(../img/bg_enjoy_l.webp) no-repeat left top/cover;
  padding-right: 2.9282576867vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:nth-child(odd) .point {
    padding-right: 8.7466666667vw;
  }
}
body main section.enjoy .points .row:nth-child(even) {
  justify-content: flex-end;
}
body main section.enjoy .points .row:nth-child(even) .point {
  background: url(../img/bg_enjoy_r.webp) no-repeat left top/cover;
  padding-left: 2.9282576867vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:nth-child(even) .point {
    padding-left: 8.7466666667vw;
  }
}
body main section.enjoy .points .row:first-child .num {
  width: 1.756954612vw;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:first-child .num {
    width: 5.248vw;
  }
}
body main section.enjoy .points .row:nth-child(2) .num {
  width: 1.9765739385vw;
  left: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:nth-child(2) .num {
    width: 5.904vw;
  }
}
body main section.enjoy .points .row:last-child .num {
  width: 1.9765739385vw;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:last-child .num {
    width: 5.904vw;
  }
}
body main section.enjoy .points .row:first-child .num {
  width: 1.756954612vw;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:first-child .num {
    width: 5.248vw;
  }
}
body main section.enjoy .points .row:nth-child(2) .num {
  width: 1.9765739385vw;
  left: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:nth-child(2) .num {
    width: 5.904vw;
  }
}
body main section.enjoy .points .row:last-child .num {
  width: 1.9765739385vw;
  right: 0;
  transform: translate(50%, -50%);
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .row:last-child .num {
    width: 5.904vw;
  }
}
body main section.enjoy .points .point {
  box-sizing: border-box;
  width: 24.8901903367vw;
  position: relative;
  padding: 1.1713030747vw 1.756954612vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .point {
    width: 74.3466666667vw;
    padding: 3.4986666667vw 5.248vw;
  }
}
body main section.enjoy .points .point .num {
  border-bottom: solid 2px #c69c6d;
  padding-bottom: 0.7320644217vw;
  position: absolute;
  top: 50%;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .point .num {
    padding-bottom: 2.1866666667vw;
  }
}
body main section.enjoy .points .point .num img {
  width: 100%;
}
body main section.enjoy .points .point p {
  font-size: 1.1713030747vw;
  line-height: 187.5%;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .points .point p {
    font-size: 3.4986666667vw;
  }
}
body main section.enjoy .strong {
  font-size: 1.317715959vw;
  font-weight: 700;
  line-height: 188.8888888889%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .strong {
    font-size: 3.936vw;
  }
}
body main section.enjoy .strong strong {
  font-size: 1.4641288433vw;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .strong strong {
    font-size: 4.3733333333vw;
  }
}
body main section.enjoy .strong strong span {
  background: url(../img/bg_wave.webp) no-repeat center bottom/contain;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy .strong strong span {
    padding-bottom: 0.5em;
  }
}
body main section.enjoy figure {
  width: 100%;
  margin-top: -8.78477306vw;
  margin-bottom: 1.756954612vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy figure {
    margin-top: -26.24vw;
    margin-bottom: 5.248vw;
  }
}
body main section.enjoy figure .enjoy_img {
  width: 22.8404099561vw;
  display: inline-block;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy figure .enjoy_img {
    width: 68.224vw;
  }
}
body main section.enjoy figure .enjoy_img_l {
  display: block;
  width: 11.1273792094vw;
  position: absolute;
  top: 8.9311859444vw;
  left: -2.9282576867vw;
  z-index: 1;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.1s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.1s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: liner;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy figure .enjoy_img_l {
    width: 33.2373333333vw;
    top: 26.6773333333vw;
    left: -8.7466666667vw;
  }
}
body main section.enjoy figure .enjoy_img_r {
  display: block;
  width: 8.7115666179vw;
  position: absolute;
  right: -1.4641288433vw;
  top: 11.4934114202vw;
  z-index: 1;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.1s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.1s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: liner;
}
@media only screen and (max-width: 768px) {
  body main section.enjoy figure .enjoy_img_r {
    width: 26.0213333333vw;
    right: -4.3733333333vw;
    top: 34.3306666667vw;
  }
}
body main section.place_image .inner {
  background: url(../img/bg_place.webp) no-repeat center center;
  box-sizing: border-box;
  width: 32.2108345534vw;
  margin: 0 auto;
  padding: 4.2459736457vw 2.0497803807vw 3.2942898975vw;
}
@media only screen and (max-width: 768px) {
  body main section.place_image .inner {
    width: 96.2133333333vw;
    padding: 12.6826666667vw 6.1226666667vw 9.84vw;
  }
}
body main section.place_image h2 {
  margin-bottom: 1.4641288433vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.place_image h2 {
    margin-bottom: 4.3733333333vw;
  }
}
body main section.place_image h2 img {
  width: 13.3235724744vw;
}
@media only screen and (max-width: 768px) {
  body main section.place_image h2 img {
    width: 39.7973333333vw;
  }
}
body main section.place_image figure img {
  width: 100%;
}
body main section.overview {
  background: url(../img/overview_clod.webp) no-repeat center bottom #000;
  background-size: contain;
  padding: 3.6603221083vw 0 4.7584187408vw;
  position: relative;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  body main section.overview {
    padding: 10.9333333333vw 0 14.2133333333vw;
  }
}
body main section.overview .cloud_l01,
body main section.overview .cloud_l02,
body main section.overview .cloud_r {
  display: block;
  position: absolute;
  mix-blend-mode: lighten;
  z-index: 1;
}
body main section.overview .cloud_l01 {
  width: 15.9590043924vw;
  left: -5.4172767204vw;
  top: 2.3426061493vw;
  opacity: 0.2;
}
@media only screen and (max-width: 768px) {
  body main section.overview .cloud_l01 {
    width: 47.6693333333vw;
    left: -16.1813333333vw;
    top: 6.9973333333vw;
  }
}
body main section.overview .cloud_l02 {
  width: 9.0775988287vw;
  left: 3.1478770132vw;
  top: 9.9560761347vw;
  opacity: 0.2;
}
@media only screen and (max-width: 768px) {
  body main section.overview .cloud_l02 {
    width: 27.1146666667vw;
    left: 9.4026666667vw;
    top: 29.7386666667vw;
  }
}
body main section.overview .cloud_r {
  width: 10.6149341142vw;
  right: -2.7818448023vw;
  top: 4.7584187408vw;
  opacity: 0.3;
}
@media only screen and (max-width: 768px) {
  body main section.overview .cloud_r {
    width: 31.7066666667vw;
    right: -8.3093333333vw;
    top: 14.2133333333vw;
  }
}
body main section.overview h2 {
  margin-bottom: 2.9282576867vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.overview h2 {
    margin-bottom: 8.7466666667vw;
  }
}
body main section.overview h2 img {
  width: 9.5168374817vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview h2 img {
    width: 28.4266666667vw;
  }
}
body main section.overview .catch {
  margin-bottom: 2.196193265vw;
  padding-bottom: 1.4641288433vw;
  color: #fff;
  font-size: 1.4641288433vw;
  font-weight: 700;
  line-height: 175%;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body main section.overview .catch {
    margin-bottom: 6.56vw;
    padding-bottom: 4.3733333333vw;
    font-size: 4.3733333333vw;
  }
}
body main section.overview .catch:after {
  content: "";
  display: block;
  width: 2.635431918vw;
  height: 0.3660322108vw;
  background: #c69c6d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  body main section.overview .catch:after {
    width: 7.872vw;
    height: 1.0933333333vw;
  }
}
body main section.overview .catch strong {
  font-size: 1.8301610542vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview .catch strong {
    font-size: 5.4666666667vw;
  }
}
body main section.overview .row.entry {
  margin-bottom: 2.196193265vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview .row.entry {
    margin-bottom: 6.56vw;
  }
}
body main section.overview .row.on_air {
  margin-bottom: 1.4641288433vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview .row.on_air {
    margin-bottom: 4.3733333333vw;
  }
}
body main section.overview .row h3 {
  margin-bottom: 0.7320644217vw;
  color: #c69c6d;
  font-size: 1.317715959vw;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.overview .row h3 {
    margin-bottom: 2.1866666667vw;
    font-size: 3.936vw;
  }
}
body main section.overview .row h3 span {
  border: solid 2px #c69c6d;
  display: inline-block;
  width: 15.1537335286vw;
  padding: 0.2777777778em 0;
}
@media only screen and (max-width: 768px) {
  body main section.overview .row h3 span {
    width: 45.264vw;
  }
}
body main section.overview .row p {
  color: #fff;
  font-size: 1.4641288433vw;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.overview .row p {
    font-size: 4.3733333333vw;
  }
}
body main section.overview table {
  width: 24.8901903367vw;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body main section.overview table {
    width: 74.3466666667vw;
  }
}
body main section.overview table tr:not(:last-child) th, body main section.overview table tr:not(:last-child) td {
  padding-bottom: 0.7320644217vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview table tr:not(:last-child) th, body main section.overview table tr:not(:last-child) td {
    padding-bottom: 2.1866666667vw;
  }
}
body main section.overview table th, body main section.overview table td {
  font-weight: 500;
}
body main section.overview table th {
  font-size: 1.1713030747vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.overview table th {
    font-size: 3.4986666667vw;
  }
}
body main section.overview table th span {
  background: #c69c6d;
  color: #000;
  display: inline-block;
  width: 4.39238653vw;
  padding: 0.3660322108vw 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body main section.overview table th span {
    width: 13.12vw;
    padding: 1.0933333333vw 0;
  }
}
body main section.overview table td {
  color: #fff;
  padding-left: 0.7320644217vw;
  font-size: 1.3909224012vw;
}
@media only screen and (max-width: 768px) {
  body main section.overview table td {
    padding-left: 2.1866666667vw;
    font-size: 4.1546666667vw;
  }
}
body .navigation {
  width: 23.8653001464%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  body .navigation {
    background: #fff;
    width: 82.6666666667%;
    position: fixed;
    right: -100%;
    top: 0;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.25s;
    -webkit-transition-timing-function: liner;
    -moz-transition-property: all;
    -moz-transition-duration: 0.25s;
    -moz-transition-timing-function: liner;
    -ms-transition-property: all;
    -ms-transition-duration: 0.25s;
    -ms-transition-timing-function: liner;
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: liner;
  }
  body .navigation.active {
    right: 0;
  }
}
body .navigation .inner {
  width: 75.4601226994%;
  padding-top: 3.513909224vw;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body .navigation .inner {
    padding-top: 21.472392638vw;
  }
}
body .navigation h2 {
  text-align: center;
}
body .navigation h2 span {
  background: #fff;
  border: solid 2px #000;
  border-radius: 50px;
  display: inline-block;
  width: 8.0527086384vw;
  padding: 0.7320644217vw 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body .navigation h2 span {
    width: 24.0533333333vw;
    padding: 2.1866666667vw 0;
  }
}
body .navigation h2 img {
  width: 3.2210834553vw;
}
@media only screen and (max-width: 768px) {
  body .navigation h2 img {
    width: 9.6213333333vw;
  }
}
body .navigation ul {
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
  padding: 2.9282576867vw 0;
  margin-top: -1.1713030747vw;
}
@media only screen and (max-width: 768px) {
  body .navigation ul {
    padding: 8.7466666667vw 0;
    margin-top: -3.4986666667vw;
  }
}
body .navigation ul li:not(:last-child) {
  margin-bottom: 1.1713030747vw;
}
body .navigation ul li a {
  display: block;
  font-size: 1.1713030747vw;
  font-weight: 700;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body .navigation ul li a {
    font-size: 3.4986666667vw;
  }
}
body .navigation ul li a:after {
  background: #868686;
  content: "";
  display: block;
  width: 0.439238653vw;
  height: 0.5856515373vw;
  position: absolute;
  right: 0;
  top: 50%;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  body .navigation ul li a:after {
    width: 1.312vw;
    height: 1.7493333333vw;
  }
}
body .navigation ul li a.active {
  color: #de285a;
}
body .navigation ul li a.active:after {
  background: #de285a;
  clip-path: circle(closest-side);
}
body .navigation ul li a:hover {
  color: #de285a;
}
body .navigation .god_comment {
  width: 19.0336749634vw;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  body .navigation .god_comment {
    width: 56.8533333333vw;
  }
}
body .navigation .god_comment p {
  background: #fff;
  border: solid 1px #c69c6d;
  border-radius: 10px;
  box-sizing: border-box;
  width: 9.5168374817vw;
  padding: 0.7320644217vw 1.0248901903vw;
  font-size: 1.0980966325vw;
  line-height: 142.8571428571%;
  position: absolute;
  left: 0;
  top: -2.5622254758vw;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  body .navigation .god_comment p {
    width: 28.4266666667vw;
    padding: 2.1866666667vw 3.0613333333vw;
    font-size: 3.28vw;
    top: -7.6533333333vw;
  }
}
body .navigation .god_comment p:after {
  background: url(../img/god_comment_bable.svg) no-repeat left top/contain;
  content: "";
  display: block;
  width: 1.0248901903vw;
  height: 0.878477306vw;
  position: absolute;
  right: 0;
  bottom: -0.7320644217vw;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body .navigation .god_comment p:after {
    width: 3.0613333333vw;
    height: 2.624vw;
    bottom: -1.7493333333vw;
  }
}
body .navigation .god_comment figure {
  text-align: right;
  position: relative;
  z-index: 1;
}
body .navigation .god_comment figure .god_image {
  display: inline-block;
  width: 11.859443631vw;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  body .navigation .god_comment figure .god_image {
    width: 35.424vw;
  }
}
body .navigation .god_comment figure .holy_light {
  width: 13.17715959vw;
  position: absolute;
  right: 0;
  top: -4.39238653vw;
  z-index: 1;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.1s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.1s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.1s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: liner;
}
@media only screen and (max-width: 768px) {
  body .navigation .god_comment figure .holy_light {
    width: 39.36vw;
    top: -13.12vw;
  }
}
body .menu_button {
  display: none;
}
@media only screen and (max-width: 768px) {
  body .menu_button {
    background: #000;
    border-bottom-left-radius: 20px;
    display: block;
    width: 16vw;
    height: 13.3333333333vw;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }
}
body .menu_button a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.25s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.25s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: liner;
}
body .menu_button a .button {
  display: block;
  width: 6.6666666667vw;
  height: 2.6666666667vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body .menu_button a .button span {
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.25s;
  -webkit-transition-timing-function: liner;
  -moz-transition-property: all;
  -moz-transition-duration: 0.25s;
  -moz-transition-timing-function: liner;
  -ms-transition-property: all;
  -ms-transition-duration: 0.25s;
  -ms-transition-timing-function: liner;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: liner;
}
body .menu_button a .button span:first-child {
  margin-bottom: 1.3333333333vw;
}
body .menu_button a.active {
  background: #fff;
}
body .menu_button a.active .button span {
  transform-origin: center center;
  background: #000;
}
body .menu_button a.active .button span:first-child {
  margin-bottom: 0;
  transform: rotate(30deg);
}
body .menu_button a.active .button span:last-child {
  transform: rotate(-30deg) translate(1px, -1px);
}

/*# sourceMappingURL=style.css.map */
