@charset "UTF-8";
/*-----------------------------------------------------
	reset
-----------------------------------------------------*/
html, body, div, 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, 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: inherit;
  font-size: 100%;
  vertical-align: baseline; }

ol, ul {
  list-style: none; }

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

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

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

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

/*-----------------------------------------------------
	base
-----------------------------------------------------*/
html {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 62.5%;
  height: 100%; }

body {
  color: #263238;
  font-size: 1.6rem;
  line-height: 1;
  min-width: initial;
  height: 100%;
  -webkit-text-size-adjust: 100%; }

img {
  max-width: 100%;
  vertical-align: bottom; }

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

#body_wrap {
  position: relative;
  height: 100%; }

@media print, screen and (min-width: 768px) {
  body {
    min-width: 1080px; } }
/*-----------------------------------------------------
	kv_wrap / page_wrap
-----------------------------------------------------*/
#kv_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
  transition: all 4s 1.1s ease-in; }
  #kv_wrap.show {
    opacity: 1;
    visibility: visible; }

/*-----------------------------------------------------
	header
-----------------------------------------------------*/
#header {
  position: relative;
  margin-bottom: 150px;
  height: 100%; }
  #header .head_inner {
    padding: 12px 20px 0;
    height: 60px; }
  #header .logo {
    width: 70px; }
  #header #btn_nav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    z-index: 5000; }
    #header #btn_nav span {
      position: absolute;
      right: 4px;
      width: 15px;
      height: 1px;
      background-color: #263238;
      transition: all .4s; }
      #header #btn_nav span:nth-of-type(1) {
        top: 5px; }
      #header #btn_nav span:nth-of-type(2) {
        top: 10px; }
      #header #btn_nav span:nth-of-type(3) {
        top: 15px;
        width: 10px; }
    #header #btn_nav.open span:nth-of-type(1) {
      transform: translateY(5px) rotate(-45deg); }
    #header #btn_nav.open span:nth-of-type(2) {
      opacity: 0; }
    #header #btn_nav.open span:nth-of-type(3) {
      width: 15px;
      transform: translateY(-5px) rotate(45deg); }
  #header #global_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: josefin-sans, sans-serif;
    font-size: 2.7rem;
    letter-spacing: 0.2em;
    text-align: center;
    background: #FFF;
    z-index: 4000;
    animation: blur 1.5s; }
    #header #global_nav .nav_wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%; }
    #header #global_nav ul a {
      display: block;
      padding: 30px 0;
      color: #263238; }

@media print, screen and (min-width: 768px) {
  #header {
    margin-bottom: 240px; }
    #header .head_inner {
      padding: 32px 60px 0;
      height: 120px; }
    #header .logo {
      width: 120px; }
    #header #btn_nav {
      top: 36px;
      right: 40px;
      width: 45px;
      height: 45px; }
      #header #btn_nav span {
        right: 5px;
        width: 30px;
        height: 2px; }
        #header #btn_nav span:nth-of-type(2) {
          top: 13px; }
        #header #btn_nav span:nth-of-type(3) {
          top: 21px;
          width: 20px; }
      #header #btn_nav.open span:nth-of-type(1) {
        transform: translateY(8px) rotate(-45deg); }
      #header #btn_nav.open span:nth-of-type(3) {
        width: 30px;
        transform: translateY(-8px) rotate(45deg); }
      #header #btn_nav:hover {
        cursor: pointer; }
    #header #global_nav {
      font-size: 3.6rem; }
      #header #global_nav ul a {
        padding: 45px 0;
        transition: all 0.5s 0s ease; }
        #header #global_nav ul a:hover {
          color: #00b4ff; } }
/*-----------------------------------------------------
	footer
-----------------------------------------------------*/
#footer {
  padding: 45px 20px 60px;
  font-family: josefin-sans, sans-serif;
  background: #fff; }

#foot_nav {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.2em; }
  #foot_nav li {
    margin-bottom: 10px; }
  #foot_nav a {
    display: block;
    padding: 10px 0;
    color: #263238; }

.copyright {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em; }

@media print, screen and (min-width: 768px) {
  #footer {
    margin: 0 auto;
    padding: 85px 0 65px; }

  #foot_nav {
    margin-bottom: 60px;
    font-size: 1.4rem; }
    #foot_nav ul {
      display: flex;
      justify-content: center; }
    #foot_nav li {
      margin: 0 30px; }
    #foot_nav a {
      padding: 0;
      transition: all 0.5s 0s ease; }
      #foot_nav a:hover {
        color: #00b4ff; }

  .copyright {
    font-size: 1.2rem; } }
/*-----------------------------------------------------
	contents common
-----------------------------------------------------*/
#content_wrap {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, white 40%); }

/* 全ページ共通レイアウト
-----------------------------------------------------*/
#page_title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%; }
  #page_title .page_head {
    display: none;
    margin-top: -5%;
    padding: 0 20px; }
    #page_title .page_head span {
      display: block; }
    #page_title .page_head .en {
      padding-bottom: 16px;
      font-family: josefin-sans, sans-serif;
      font-size: 3.6rem;
      letter-spacing: 0.2em; }
    #page_title .page_head .jp {
      font-size: 1.8rem;
      font-weight: bold;
      letter-spacing: 0.1em; }
  #page_title .page_img {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 63%;
    height: 100%;
    overflow: hidden;
    z-index: -1; }
    #page_title .page_img img {
      height: 100%;
      width: 100%;
      object-fit: cover; }

.ly_section {
  margin-bottom: 150px;
  padding: 0 20px; }

.section_head {
  margin-bottom: 80px;
  font-family: josefin-sans, sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  color: #eceff1;
  word-wrap: break-word;
  overflow-wrap: break-word; }

@media print, screen and (min-width: 768px) {
  #page_title .page_head {
    margin: -5% auto 0;
    padding: 0;
    width: 1080px; }
    #page_title .page_head .en {
      padding-bottom: 30px;
      font-size: 7.2rem; }
    #page_title .page_head .jp {
      font-size: 3.6rem; }

  .ly_section {
    margin: 0 auto 300px;
    padding: 0;
    width: 1080px; }

  .section_head {
    margin-bottom: 120px;
    font-size: 6.0rem; } }
/* セクション・ブロック
-----------------------------------------------------*/
#contact_section {
  padding: 90px 20px;
  color: #fff;
  text-align: center;
  background: #263238; }
  #contact_section .contact_inner {
    padding: 0 20px; }
  #contact_section .contact_head {
    margin-bottom: 25px;
    font-family: josefin-sans, sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.2em; }
  #contact_section p {
    margin-bottom: 30px;
    line-height: 2;
    letter-spacing: 0.1em; }

#lead_section {
  margin-bottom: 330px; }

.lead_block {
  margin-bottom: 100px;
  padding: 20px; }
  .lead_block .lead_head {
    margin-bottom: 30px;
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.2em;
    text-align: center; }
    .lead_block .lead_head span {
      display: block; }
  .lead_block p {
    font-weight: bold;
    line-height: 3;
    letter-spacing: 0.3em; }
    .lead_block p br {
      display: none; }

@media print, screen and (min-width: 768px) {
  #contact_section {
    padding: 110px 0 120px; }
    #contact_section .contact_inner {
      margin: 0 auto;
      padding: 0;
      width: 1080px; }
    #contact_section .contact_head {
      margin-bottom: 35px;
      font-size: 4.2rem; }
    #contact_section p {
      margin-bottom: 50px; }
      #contact_section p br {
        display: none; }
    #contact_section .btn {
      margin: 0 auto;
      width: 300px; }

  #lead_section {
    margin-bottom: 600px; }

  .lead_block {
    margin-bottom: 140px; }
    .lead_block .lead_head {
      margin-bottom: 60px;
      font-size: 3.6rem; }
      .lead_block .lead_head span {
        display: inline; }
    .lead_block p {
      font-size: 1.8rem;
      text-align: center; }
      .lead_block p br {
        display: block; } }
/* パーツ
-----------------------------------------------------*/
.colum_list {
  padding: 0 20px;
  line-height: 2;
  letter-spacing: 0.1em; }
  .colum_list dt {
    margin-bottom: 10px;
    padding: 20px 25px 0;
    font-weight: bold; }
    .colum_list dt:first-child {
      border-top: 1px solid #eceff1; }
  .colum_list dd {
    padding: 0 25px 20px 25px;
    border-bottom: 1px solid #eceff1; }
  .colum_list a {
    color: inherit;
    text-decoration: underline;
    transition: all 0.5s 0s ease; }
    .colum_list a:hover {
      color: #00b4ff; }

.vertical_list {
  padding: 0;
  line-height: 2;
  letter-spacing: 0.1em; }
  .vertical_list dt {
    margin-bottom: 0;
    padding: 0;
    font-weight: bold; }
    .vertical_list dt:first-child {
      border-top: none; }
  .vertical_list dd {
    margin-bottom: 20px;
    padding: 0;
    border-bottom: none; }
    .vertical_list dd:last-child {
      margin-bottom: 0; }

.decimal_list li {
  margin-left: 2em;
  list-style-type: decimal; }

.btn {
  position: relative;
  text-align: left; }
  .btn a, .btn .btn_inner {
    display: block;
    padding: 30px 25px;
    font-weight: bold;
    letter-spacing: 0.1em; }
    .btn a:after, .btn a:before, .btn .btn_inner:after, .btn .btn_inner:before {
      content: "";
      position: absolute;
      top: 50%;
      width: 25px;
      height: 1px; }
    .btn a:after, .btn .btn_inner:after {
      right: -25px; }
    .btn a:before, .btn .btn_inner:before {
      right: 0; }
  .btn.clear {
    border: 1px solid rgba(255, 255, 255, 0.5); }
    .btn.clear a {
      color: #fff; }
      .btn.clear a:after, .btn.clear a:before {
        background: #fff;
        opacity: 0.5; }
  .btn.white {
    background: #fff; }
    .btn.white a {
      color: #263238; }
      .btn.white a:after {
        background: #93999c; }
      .btn.white a:before {
        background: #263238; }

@media print, screen and (min-width: 768px) {
  .colum_list {
    margin: 0 auto;
    padding: 0;
    width: 710px;
    border-top: 1px solid #eceff1; }
    .colum_list:after {
      content: '';
      display: block;
      clear: both; }
    .colum_list dt {
      float: left;
      margin-bottom: 0;
      padding: 30px 30px 0;
      width: 185px; }
      .colum_list dt:first-child {
        border-top: none; }
    .colum_list dd {
      padding: 30px 30px 30px 210px; }

  .vertical_list {
    width: auto; }
    .vertical_list dt {
      float: none;
      padding: 0; }
    .vertical_list dd {
      padding: 0; }

  .btn a {
    padding: 30px 28px;
    transition: all 0.6s 0s ease-out; }
    .btn a:after, .btn a:before {
      width: 30px; }
    .btn a:after {
      right: -30px; }
  .btn.clear a:hover {
    color: #263238;
    background: #fff; }
  .btn.white a:hover {
    color: #fff;
    background: #00b4ff; } }
.vote_bnr {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%; }
  @media print, screen and (min-width: 769px) {
    .vote_bnr {
      bottom: 20px;
      width: auto; } }
  .vote_bnr picture {
    display: block; }
  .vote_bnr img {
    height: auto;
    width: 100%; }

.zenn_bnr {
  position: fixed;
  right: 0px;
  z-index: 99999100;
  background: white;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
}
.zenn_bnr img {
  width: 40px;
  height: auto;
}
.zenn_bnr span {
  font-size: 10px;
  font-weight: bold;
  color: #263238;
}

/*-----------------------------------------------------
	アニメーション
-----------------------------------------------------*/
.fadeup {
  animation-name: fadeUp;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in-out;
  opacity: 0;
  visibility: visible !important; }

.fademes {
  animation-name: fadeMes;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in-out;
  opacity: 0;
  visibility: visible !important; }

.loop_anime_img {
  display: flex;
  align-items: center;
  margin: -60px 0 225px;
  height: 174px;
  overflow: hidden; }

.loop_anime {
  display: flex;
  animation: loop-slide 30s infinite linear 1s both; }
  .loop_anime li {
    width: 285px; }

@media print, screen and (min-width: 768px) {
  .loop_anime_img {
    margin: -180px 0 300px;
    height: 320px; }

  .loop_anime li {
    width: 525px; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeMes {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(25px); }
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0); } }
@keyframes loop-slide {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
@keyframes blur {
  0% {
    filter: blur(10px); }
  100% {
    filter: blur(0px); } }

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