@charset "UTF-8";
/*########## ミックスイン ##########*/
/* ----- Google Fonts ----- */
/*########## 共通レイアウト ##########*/
.animate-fadeup {
  /* blur + opacity + transition */
  opacity: 1;
  -webkit-filter: blur(0px) brightness(1);
          filter: blur(0px) brightness(1);
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
  -webkit-transition: opacity 0.6s, -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-filter 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, filter, transform;
}
.animate-fadeup.effect, .animate-fadeup.delayed_effect {
  opacity: 0;
  -webkit-filter: blur(15px) brightness(1.25);
          filter: blur(15px) brightness(1.25);
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}

.animate-fadeup2 {
  /* opacity + transition */
  opacity: 1;
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity, transform;
}
.animate-fadeup2.effect, .animate-fadeup2.delayed_effect {
  opacity: 0;
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}

.animate-fadeup3 {
  /* opacity */
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  will-change: opacity;
}
.animate-fadeup3.effect, .animate-fadeup3.delayed_effect {
  opacity: 0;
}

.func-txt-anim, .func-txt-anim-wrap {
  overflow: hidden;
}
.func-txt-anim span, .func-txt-anim-wrap span {
  display: inline-block;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: -webkit-transform 0.5s, -webkit-filter 0.5s;
  transition: transform 0.5s, filter 0.5s;
  transition: transform 0.5s, filter 0.5s, -webkit-transform 0.5s, -webkit-filter 0.5s;
  will-change: transform;
}
.func-txt-anim span.display, .func-txt-anim-wrap span.display {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul:after {
  display: block;
  content: "";
  clear: both;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul {
  list-style: none;
}

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

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  color: inherit;
}
@media screen and (max-width: 780px) {
  select {
    font-size: 1.6rem;
  }
}
select:focus {
  outline: none;
  border: none;
}

::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::-moz-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}

::placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 780px) {
  ::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  ::-moz-placeholder {
    font-size: 1.6rem;
  }
  :-ms-input-placeholder {
    font-size: 1.6rem;
  }
  ::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  ::placeholder {
    font-size: 1.6rem;
  }
}

select option::-webkit-input-placeholder {
  color: #444;
}

select option::-moz-placeholder {
  color: #444;
}

select option:-ms-input-placeholder {
  color: #444;
}

select option::-ms-input-placeholder {
  color: #444;
}

select option::placeholder {
  color: #444;
}

::-webkit-placeholder {
  /*padding-top: 0.25em;*/
}

::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #aaa;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 780px) {
  textarea {
    font-size: 16rem;
  }
}

input {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  border: 1px solid #979797;
  padding: 0 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 780px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number] {
    font-size: 1.6rem;
  }
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  font-size: 9px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 351px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 980px) {
  html {
    font-size: 9px;
  }
}
@media screen and (min-width: 1341px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1700px) {
  html {
    font-size: 11px;
  }
}

body {
  /*font-size: 16px;*/
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #fff;
  background: #000;
  font-weight: 400;
  font-family: YakuHanJP, "dnp-shuei-nmincho-std", "noto-sans-cjk-jp", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Pgothic", "Osaka", sans-serif, Helvetica, Helvetica Neue, Arial, Verdana;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.bind {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

article {
  padding-top: 0px;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  will-change: opacity;
  overflow: hidden;
}
article.loading {
  opacity: 0;
}

section .section_inner {
  width: 87vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 720px) {
  section .section_inner {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
@media screen and (min-width: 720px) {
  section .section_inner {
    min-width: 1200px;
  }
}

button {
  font-family: inherit;
  font-weight: inherit;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}

header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
header .header_inner {
  position: relative;
  padding: 15px 0;
}
header .header_inner .header_left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
}
header .header_inner .header_left .hum_button {
  position: relative;
  width: 60px;
  height: 60px;
}
header .header_inner .header_left .hum_button span {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  will-change: transform, opacity;
}
header .header_inner .header_left .hum_button span:nth-of-type(1) {
  top: 23px;
}
header .header_inner .header_left .hum_button span:nth-of-type(2) {
  top: 0px;
  bottom: 0px;
}
header .header_inner .header_left .hum_button span:nth-of-type(3) {
  bottom: 23px;
}
header .header_inner .header_left .hum_button.hum_open span:nth-of-type(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
          transform: translateY(6.5px) rotate(45deg);
}
header .header_inner .header_left .hum_button.hum_open span:nth-of-type(2) {
  opacity: 0;
}
header .header_inner .header_left .hum_button.hum_open span:nth-of-type(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
          transform: translateY(-6.5px) rotate(-45deg);
}
header .header_inner .header_logo {
  width: 115px;
  margin: 2px auto 0;
}
header .header_inner .header_logo a {
  display: block;
}
header .header_inner .header_logo a img {
  width: 100%;
}
header .header_inner .header_right {
  display: none;
}

@media screen and (min-width: 768px) {
  header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .header_inner {
    position: relative;
    padding: 30px 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .header_inner .header_left {
    display: none;
  }
  header .header_inner .header_logo {
    width: 180px;
    margin: 0;
  }
  header .header_inner .header_logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    display: block;
  }
  header .header_inner .header_logo a:hover {
    opacity: 0.75;
  }
  header .header_inner .header_logo a img {
    width: 100%;
  }
  header .header_inner .header_right {
    display: block;
  }
  header .header_inner .header_right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .header_inner .header_right ul li {
    margin-right: 30px;
  }
  header .header_inner .header_right ul li:nth-last-of-type(1) {
    margin-right: 0;
  }
  header .header_inner .header_right ul li a {
    font-size: 1.8rem;
    color: #fff;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  header .header_inner .header_right ul li a:hover {
    opacity: 0.75;
  }
}
footer {
  background: #000;
}
footer .footer_upper {
  padding: 40px 0;
}
footer .footer_upper .sns_wrapper {
  margin-bottom: 30px;
}
footer .footer_upper .sns_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer_upper .sns_wrapper ul li {
  margin-right: 15px;
}
footer .footer_upper .sns_wrapper ul li:nth-last-of-type(1) {
  margin-right: 0;
}
footer .footer_upper .sns_wrapper ul li a {
  display: block;
}
footer .footer_upper .sns_wrapper ul li a img {
  width: auto;
  height: 22px;
}
footer .footer_upper .sns_wrapper ul li a img.facebook {
  height: 26px;
}
footer .footer_upper .sns_wrapper ul li a img.instagram {
  height: 25px;
}
footer .footer_upper .shingon_logo {
  width: 50%;
  margin: 0 auto;
}
footer .footer_upper .shingon_logo a {
  display: block;
}
footer .footer_upper .shingon_logo a img {
  width: 100%;
}
footer .footer_upper .photo_credit {
  width: 87vw;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  font-size: 1.2rem;
  margin-top: 40px;
}
@media screen and (min-width: 720px) {
  footer .footer_upper .photo_credit {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
footer .footer_lower {
  background: #281F0C;
}
footer .footer_lower .navigation_wrapper {
  border-top: 1px solid #4e4732;
}
footer .footer_lower .navigation_wrapper .footer_navigation {
  min-height: 59px;
  overflow: hidden;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  will-change: height;
}
footer .footer_lower .navigation_wrapper .footer_navigation button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  font-size: 1.4rem;
  padding: 15px;
  color: #dbdbdb;
  text-decoration: none;
}
footer .footer_lower .navigation_wrapper .footer_navigation button .caret {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}
footer .footer_lower .navigation_wrapper .footer_navigation button .caret::before, footer .footer_lower .navigation_wrapper .footer_navigation button .caret::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #dbdbdb;
}
footer .footer_lower .navigation_wrapper .footer_navigation button .caret::before {
  width: 100%;
  height: 1px;
}
footer .footer_lower .navigation_wrapper .footer_navigation button .caret::after {
  width: 1px;
  height: 100%;
}
footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content {
  background: #000;
  border-top: 1px solid #4e4732;
}
footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li {
  border-bottom: 1px dotted #4e4732;
}
footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li:nth-last-of-type(1) {
  border-bottom: 0px;
}
footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li a {
  position: relative;
  font-size: 1.2rem;
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #dbdbdb;
}
footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 10px;
  height: 10px;
  margin: auto 0;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-right: 1px solid #9f9685;
  border-bottom: 1px solid #9f9685;
}
footer .footer_lower .address_wrapper {
  padding: 40px 6vw 40px;
  color: #dbdbdb;
}
footer .footer_lower .address_wrapper .name {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
footer .footer_lower .address_wrapper address {
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 20px;
}
footer .footer_lower .address_wrapper .number {
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: normal;
}
footer .footer_lower .copyright {
  width: 100%;
  margin-top: 40px;
  font-size: 1.3rem;
  text-align: center;
  color: #dbdbdb;
}

@media screen and (min-width: 768px) {
  footer .footer_upper {
    padding: 80px 0 40px;
  }
  footer .footer_upper .sns_wrapper {
    margin-bottom: 30px;
  }
  footer .footer_upper .sns_wrapper ul li {
    margin-right: 15px;
  }
  footer .footer_upper .sns_wrapper ul li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  footer .footer_upper .sns_wrapper ul li a:hover {
    opacity: 0.75;
  }
  footer .footer_upper .shingon_logo {
    width: 220px;
    margin: 0 auto;
  }
  footer .footer_upper .shingon_logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  footer .footer_upper .shingon_logo a:hover {
    opacity: 0.75;
  }
  footer .footer_upper .photo_credit {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  footer .footer_lower {
    background: #281F0C;
    padding-top: 80px;
    background-image: url(../img/common/fotter_bg.jpg);
    background-size: cover;
    background-position: center top;
  }
  footer .footer_lower .navigation_wrapper {
    width: 87vw;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 50px;
    border-top: 0px solid #4e4732;
    border-bottom: 1px solid #4e4732;
  }
}
@media screen and (min-width: 768px) and (min-width: 720px) {
  footer .footer_lower .navigation_wrapper {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer_lower .navigation_wrapper .footer_navigation {
    width: 22%;
    margin-right: 4%;
    height: auto !important;
    overflow: visible;
    border-top: 1px solid #4e4732;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation:nth-of-type(4n) {
    margin-right: 0;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    font-size: 1.8rem;
    padding: 15px 0;
    color: #dbdbdb;
    cursor: auto;
    pointer-events: unset;
    text-decoration: none;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation button .caret {
    display: none;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content {
    background: transparent;
    border-top: 0px solid #4e4732;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li {
    margin-bottom: 10px;
    border-bottom: 0px dotted #4e4732;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li:nth-last-of-type(1) {
    margin-bottom: 0px;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li a {
    font-size: 1.4rem;
    padding: 7px 0;
  }
  footer .footer_lower .navigation_wrapper .footer_navigation .navigation_content ul li a::before {
    display: none;
  }
  footer .footer_lower .address_wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 87vw;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0 100px;
  }
}
@media screen and (min-width: 768px) and (min-width: 720px) {
  footer .footer_lower .address_wrapper {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer_lower .address_wrapper .name {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  footer .footer_lower .address_wrapper address {
    width: 410px;
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: normal;
    margin-bottom: 0px;
  }
  footer .footer_lower .address_wrapper .number {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: normal;
  }
  footer .footer_lower .copyright {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: auto;
    margin-top: 0px;
    font-size: 1.3rem;
    text-align: right;
  }
}
.comp-hummenu {
  position: fixed;
  top: 0;
  right: 0;
  margin: auto;
  width: 100%;
  z-index: 200;
  height: var(--wHeightPx);
  overflow: hidden;
  background: #1c1c1c;
  pointer-events: none;
  opacity: 0;
  line-height: 1;
  will-change: opacity;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.comp-hummenu.open {
  opacity: 1;
  pointer-events: all;
}
.comp-hummenu .contents {
  width: 100%;
  height: var(--wHeightPx);
  margin: 0 auto;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.comp-hummenu .contents::-webkit-scrollbar {
  display: none;
}
.comp-hummenu .contents .hummenu_inner {
  padding: 60px 8vw 60px;
}
.comp-hummenu .contents .hummenu_inner nav .inner_links li {
  border-bottom: 1px solid #3f3b27;
}
.comp-hummenu .contents .hummenu_inner nav .inner_links li a {
  display: block;
  padding: 17px 0;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.comp-hummenu .contents .hummenu_inner nav .comp-section-title {
  margin-top: 35px;
}
.comp-hummenu .contents .hummenu_inner nav .outer_links {
  margin-top: -20px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.comp-hummenu .contents .hummenu_inner nav .outer_links li {
  width: 48%;
  margin-right: 4%;
  border-bottom: 1px solid #3f3b27;
}
.comp-hummenu .contents .hummenu_inner nav .outer_links li:nth-of-type(2n) {
  margin-right: 0;
}
.comp-hummenu .contents .hummenu_inner nav .outer_links li a {
  display: block;
  padding: 12px 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
.comp-hummenu .contents .hummenu_inner .langSlct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-hummenu .contents .hummenu_inner .langSlct li {
  width: 33.3333333333%;
  padding: 17px 0;
}
.comp-hummenu .contents .hummenu_inner .langSlct li a {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  border-right: 1px solid #3f3b27;
}
.comp-hummenu .contents .hummenu_inner .langSlct li:nth-last-of-type(1) a {
  border-right: 0px solid #3f3b27;
}

@media screen and (min-width: 786px) {
  .comp-hummenu {
    display: none;
  }
}
/*########## ページ個別レイアウト ##########*/
.page-index {
  padding-top: 0;
}
.page-index .section-index-main {
  position: relative;
  height: 452vw;
}
.page-index .section-index-main::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-image: url(../img/index/index_bg01.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-index .section-index-main::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-image: url(../img/index/index_bg00.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: calc(1 - var(--scroll) / 250);
}
.page-index .section-index-main .section_inner {
  padding: 100px 0 0;
  position: relative;
  z-index: 10;
}
.page-index .section-index-main .section_inner .vartical_txt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
  margin: 0 auto;
  line-height: 1.43;
  letter-spacing: 1em;
  letter-spacing: 0.5em;
  opacity: calc(var(--scroll) / 100 - 1);
}
.page-index .section-index-main .section_inner .vartical_txt.txt01 {
  margin-bottom: 35px;
}
.page-index .section-index-main .section_inner .vartical_txt.txt02 {
  margin-top: 50px;
  min-height: 750px;
}
.page-index .section-index-main .section_inner .vartical_txt span {
  display: inline-block;
  padding-bottom: 15px;
}
.page-index .section-index-main .section_inner .vartical_txt span:nth-last-of-type(1) {
  padding-bottom: 0;
}
.page-index .section-index-main .section_inner .countdown_inner {
  text-align: center;
  margin-bottom: 25px;
}
.page-index .section-index-main .section_inner .countdown_inner .countdown_ttl {
  font-size: 1rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  margin-bottom: 10px;
}
.page-index .section-index-main .section_inner .countdown_inner .countdown_num {
  font-size: 4rem;
}
.page-index .section-index-main .section_inner .countdown_inner .countdown_num .number {
  font-size: 6rem;
}
.page-index .section-index-main .section_inner .title_wrapper {
  text-align: center;
  margin-bottom: 33vw;
}
.page-index .section-index-main .section_inner .title_wrapper .site_ttl {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.page-index .section-index-main .section_inner .title_wrapper .site_subttl {
  font-size: 1.2rem;
}
.page-index .section-greeting {
  position: relative;
}
.page-index .section-greeting::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 598vw;
  background-size: 100%;
  background-image: url(../img/index/index_bg02.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-index .section-greeting::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 430vw;
  background-size: 100%;
  background-image: url(../img/index/index_bg03.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  top: 598vw;
  left: 0;
  right: 0;
  margin: auto;
}
.page-index .section-greeting .section_wrapper {
  padding: 40vw 0 0;
}
.page-index .section-greeting .section_wrapper::before, .page-index .section-greeting .section_wrapper::after {
  display: block;
  content: "";
  position: absolute;
  top: 35vw;
  display: block;
  width: 38%;
  height: 230vw;
  border: 1px solid #979797;
  z-index: 20;
  -webkit-transition: height 3s;
  transition: height 3s;
  will-change: height;
}
.page-index .section-greeting .section_wrapper::before {
  left: 0;
  border-left: 0px;
}
.page-index .section-greeting .section_wrapper::after {
  right: 0;
  border-right: 0px;
}
.page-index .section-greeting .section_wrapper.effect::before, .page-index .section-greeting .section_wrapper.effect::after {
  height: 0;
}
.page-index .section-greeting .section_inner {
  position: relative;
  z-index: 50;
}
.page-index .section-greeting .section_inner .greeting_message {
  padding-top: 40vw;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.3;
}
.page-index .section-greeting .section_inner .greeting_message span {
  display: block;
}
.page-index .section-greeting .section_inner .greeting_message br {
  display: none;
}
.page-index .section-greeting .section_inner .goonki_logo {
  width: 61%;
  margin: 10vw auto 20vw;
}
.page-index .section-greeting .section_inner .links_section {
  margin-bottom: 20vw;
}
.page-index .section-information {
  padding-bottom: 15vw;
}
.page-index .section-information .section_inner {
  position: relative;
  z-index: 10;
}
.page-index .section-information .section_inner .outer_links {
  margin-top: 12vw;
  margin-bottom: 15vw;
}
.page-index .section-information .section_inner .news_wrapper .comp-section-title {
  margin-bottom: 25px;
}
.page-index .section-lower {
  position: relative;
  z-index: 20;
  padding: 20vw 0 8vw;
}
.page-index .section-lower::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-image: url(../img/index/index_bg04.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.page-index .section-lower .lower_img_wrapper {
  max-width: 92%;
  margin: 0 auto 10vw;
  position: relative;
  z-index: 10;
}
.page-index .section-lower .lower_img_wrapper .pc_img {
  display: none;
}
.page-index .section-lower .title_wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-index .section-lower .title_wrapper .site_ttl {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.page-index .section-lower .title_wrapper .site_subttl {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .page-index {
    padding-top: 0;
  }
  .page-index .section-index-main {
    position: relative;
    height: 144.7vw;
  }
  .page-index .section-index-main::before {
    background-image: url(../img/index/index_bg01_pc.jpg);
    background-position: center bottom;
  }
  .page-index .section-index-main::after {
    background-image: url(../img/index/index_bg00_pc.jpg);
    background-position: center top;
    opacity: calc(1 - var(--scroll) / 250);
  }
  .page-index .section-index-main .section_inner {
    padding: 100px 0 0;
    max-width: 100%;
    width: 100%;
  }
  .page-index .section-index-main .section_inner .vartical_txt {
    font-size: 2rem;
    margin: 0 auto;
    line-height: 1.43;
    letter-spacing: 0.3em;
  }
  .page-index .section-index-main .section_inner .vartical_txt.txt01 {
    margin-bottom: 9vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1800px) {
  .page-index .section-index-main .section_inner .vartical_txt.txt01 {
    margin-bottom: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .page-index .section-index-main .section_inner .vartical_txt.txt02 {
    margin-top: 7vw;
    min-height: 860px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1560px) {
  .page-index .section-index-main .section_inner .vartical_txt.txt02 {
    min-height: 53vw;
  }
}
@media screen and (min-width: 768px) {
  .page-index .section-index-main .section_inner .vartical_txt span {
    display: inline-block;
    padding-bottom: 15px;
  }
  .page-index .section-index-main .section_inner .vartical_txt span:nth-last-of-type(1) {
    padding-bottom: 15px;
  }
  .page-index .section-index-main .section_inner .countdown_inner {
    text-align: left;
    padding-left: 35px;
    margin-bottom: 5vw;
  }
  .page-index .section-index-main .section_inner .countdown_inner .countdown_ttl {
    font-size: 1rem;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    margin-bottom: 10px;
  }
  .page-index .section-index-main .section_inner .countdown_inner .countdown_num {
    font-size: 5.2rem;
  }
  .page-index .section-index-main .section_inner .countdown_inner .countdown_num .number {
    font-size: 8.5rem;
  }
  .page-index .section-index-main .section_inner .countdown_inner .countdown_num .unit {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
  .page-index .section-index-main .section_inner .title_wrapper {
    text-align: center;
    margin-bottom: 19vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1550px) {
  .page-index .section-index-main .section_inner .title_wrapper {
    margin-bottom: 22vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1750px) {
  .page-index .section-index-main .section_inner .title_wrapper {
    margin-bottom: 25vw;
  }
}
@media screen and (min-width: 768px) {
  .page-index .section-index-main .section_inner .title_wrapper .site_ttl {
    font-size: 5.5rem;
    margin-bottom: 25px;
  }
  .page-index .section-index-main .section_inner .title_wrapper .site_subttl {
    font-size: 2rem;
  }
  .page-index .section-greeting {
    position: relative;
  }
  .page-index .section-greeting::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 150vw;
    background-image: url(../img/index/index_bg02_pc.jpg);
  }
  .page-index .section-greeting::after {
    width: 100%;
    height: 120vw;
    background-size: 100%;
    background-image: url(../img/index/index_bg03_pc.jpg);
    background-position: center top;
    top: 150vw;
  }
  .page-index .section-greeting .section_wrapper {
    padding: 25vw 0 0;
  }
  .page-index .section-greeting .section_wrapper::before, .page-index .section-greeting .section_wrapper::after {
    top: 14vw;
    width: 43%;
    height: 58vw;
  }
  .page-index .section-greeting .section_inner .greeting_message {
    padding-top: 5vw;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.3;
  }
  .page-index .section-greeting .section_inner .greeting_message span {
    display: inline;
  }
  .page-index .section-greeting .section_inner .greeting_message br {
    display: block;
  }
  .page-index .section-greeting .section_inner .goonki_logo {
    width: 25%;
    margin: 5vw auto 42vw;
  }
  .page-index .section-greeting .section_inner .goonki_logo img {
    width: 100%;
  }
  .page-index .section-greeting .section_inner .links_section {
    margin-bottom: 7vw;
  }
  .page-index .section-information {
    padding-bottom: 10vw;
  }
  .page-index .section-information .section_inner {
    position: relative;
    z-index: 10;
  }
  .page-index .section-information .section_inner .outer_links {
    margin-top: 7vw;
    margin-bottom: 7vw;
  }
  .page-index .section-information .section_inner .news_wrapper .comp-section-title {
    margin-bottom: 25px;
  }
  .page-index .section-lower {
    padding: 15vw 0 7vw;
  }
  .page-index .section-lower::before {
    background-image: url(../img/index/index_bg04_pc.jpg);
  }
  .page-index .section-lower .lower_img_wrapper {
    max-width: 100%;
    margin: 0 auto 7vw;
  }
  .page-index .section-lower .lower_img_wrapper .sp_img {
    display: none;
  }
  .page-index .section-lower .lower_img_wrapper .pc_img {
    display: block;
  }
  .page-index .section-lower .title_wrapper .site_ttl {
    font-size: 4.5rem;
    margin-bottom: 20px;
  }
  .page-index .section-lower .title_wrapper .site_subttl {
    font-size: 1.8rem;
  }
}
.page-message .section-message-form {
  padding: 60px 0;
  border-bottom: 1px solid #4e4732;
}
.page-message .section-message-form .form_inner .goonki_logo {
  width: 200px;
  margin: 0 auto 60px;
}
.page-message .section-message-form .form_inner .form_description {
  margin-bottom: 20px;
}
.page-message .section-message-form .form_inner .form_description .desc_upper {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.2;
  margin-bottom: 40px;
}
.page-message .section-message-form .form_inner .form_description .desc_lower {
  font-size: 1.2rem;
  line-height: 1.6;
}
.page-message .section-message-form .form_inner .form_description .desc_lower br {
  display: none;
}

@media screen and (min-width: 768px) {
  .page-message .section-message-form {
    padding: 160px 0 120px;
    border-bottom: 1px solid #4e4732;
  }
  .page-message .section-message-form .form_inner {
    max-width: 440px;
    margin: 0 auto;
  }
  .page-message .section-message-form .form_inner .goonki_logo {
    width: 260px;
    margin: 0 auto 100px;
  }
  .page-message .section-message-form .form_inner .form_description {
    margin-bottom: 30px;
  }
  .page-message .section-message-form .form_inner .form_description .desc_upper {
    text-align: center;
    font-size: 2rem;
    line-height: 2.2;
    margin-bottom: 40px;
  }
  .page-message .section-message-form .form_inner .form_description .desc_lower {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .page-message .section-message-form .form_inner .form_description .desc_lower br {
    display: block;
  }
}
.page-404 {
  padding-top: 0;
  margin-bottom: 0px;
}
.page-404 .section-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 500px;
  border-bottom: 1px solid #4e4732;
}
.page-404 .section-404 .comp-admin-title {
  margin-top: 0;
}
.page-404 .section-404 .title404 {
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 40px;
}
.page-404 .section-404 .description_404 {
  text-align: center;
  margin-bottom: 20px;
}
.page-404 .section-404 .description_404 .sub_ttl_404 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.page-404 .section-404 .description_404 .desc_404 {
  font-size: 1.2rem;
  line-height: 1.8;
}
.page-404 .section-404 .back_button {
  margin: 30px auto 0;
  max-width: 80%;
}
.page-404 .section-404 .back_button a {
  display: block;
  text-align: center;
  padding: 15px 0;
  color: #000;
  background: #fff;
  font-size: 1.6rem;
  border-radius: 200px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
}
.page-404 .section-404 .back_button a:hover {
  opacity: 0.75;
}

@media screen and (min-width: 768px) {
  .page-404 {
    padding-top: 0;
    margin-bottom: 0px;
  }
  .page-404 .section-404 {
    min-height: 750px;
  }
  .page-404 .section-404 .title404 {
    font-size: 4.2rem;
    margin-bottom: 30px;
    margin-top: 60px;
  }
  .page-404 .section-404 .description_404 {
    margin-bottom: 40px;
  }
  .page-404 .section-404 .description_404 .sub_ttl_404 {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }
  .page-404 .section-404 .description_404 .desc_404 {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5rem;
  }
  .page-404 .section-404 .back_button {
    margin: 40px auto 0;
    max-width: 380px;
  }
  .page-404 .section-404 .back_button a {
    display: block;
    text-align: center;
    padding: 15px 0;
    font-size: 1.6rem;
    border-radius: 200px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  .page-404 .section-404 .back_button a:hover {
    opacity: 0.75;
  }
}
/*########## コンポーネント ##########*/
/* 共通パーツ */
.comp-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.comp-section-title .ttl_txt {
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .comp-section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  .comp-section-title .ttl_txt {
    font-size: 2.8rem;
  }
  .comp-section-title .ttl_txt span {
    position: relative;
    display: inline-block;
    padding: 0 65px;
  }
  .comp-section-title .ttl_txt span::before, .comp-section-title .ttl_txt span::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background: #fff;
    margin: auto;
  }
  .comp-section-title .ttl_txt span::before {
    left: 0;
  }
  .comp-section-title .ttl_txt span::after {
    right: 0;
  }
}
.comp-section-countdown {
  text-align: center;
  margin-bottom: 25px;
}
.comp-section-countdown .countdown_ttl {
  font-size: 1rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  margin-bottom: 10px;
}
.comp-section-countdown .countdown_num {
  font-size: 4rem;
}
.comp-section-countdown .countdown_num .number {
  font-size: 6rem;
}

@media screen and (min-width: 768px) {
  .comp-section-countdown {
    text-align: left;
    padding-left: 35px;
    margin-bottom: 5vw;
  }
  .comp-section-countdown .countdown_ttl {
    font-size: 1rem;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    margin-bottom: 10px;
  }
  .comp-section-countdown .countdown_num {
    font-size: 5.2rem;
  }
  .comp-section-countdown .countdown_num .number {
    font-size: 8.5rem;
  }
  .comp-section-countdown .countdown_num .unit {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}
.comp-underpage-main {
  position: relative;
}
.comp-underpage-main .comp-section-countdown {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 20;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.comp-underpage-main .main_wrapper {
  position: relative;
  width: 100%;
  height: 110vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-underpage-main .main_wrapper.news_detail {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.comp-underpage-main .main_wrapper.news_detail::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.comp-underpage-main .main_wrapper .img_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.comp-underpage-main .main_wrapper .img_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.comp-underpage-main .main_wrapper .img_wrapper img.pc_img {
  display: none;
}
.comp-underpage-main .main_wrapper .underpage_ttl {
  margin-top: 100px;
  position: relative;
  z-index: 20;
  font-size: 2.6rem;
  line-height: 1.5;
  text-align: center;
}
.comp-underpage-main .main_wrapper .news_ttl_wrap {
  position: relative;
  z-index: 20;
  width: 87vw;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6vw;
}
@media screen and (min-width: 720px) {
  .comp-underpage-main .main_wrapper .news_ttl_wrap {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
.comp-underpage-main .main_wrapper .news_ttl_wrap .date {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.comp-underpage-main .main_wrapper .news_ttl_wrap .news_ttl {
  font-size: 2rem;
  line-height: 1.5;
}
.comp-underpage-main .main_lower_decoration {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.comp-underpage-main .main_lower_decoration span {
  width: 20%;
  height: 5px;
}
.comp-underpage-main .main_lower_decoration span:nth-of-type(1) {
  background: #37197d;
}
.comp-underpage-main .main_lower_decoration span:nth-of-type(2) {
  background: #c8c8c8;
}
.comp-underpage-main .main_lower_decoration span:nth-of-type(3) {
  background: #c82a1e;
}
.comp-underpage-main .main_lower_decoration span:nth-of-type(4) {
  background: #d7b900;
}
.comp-underpage-main .main_lower_decoration span:nth-of-type(5) {
  background: #007d5f;
}

@media screen and (min-width: 768px) {
  .comp-underpage-main {
    position: relative;
  }
  .comp-underpage-main .comp-section-countdown {
    position: absolute;
    top: 100px;
    left: 0px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .comp-underpage-main .main_wrapper {
    position: relative;
    width: 100%;
    height: 38vw;
  }
  .comp-underpage-main .main_wrapper .img_wrapper {
    position: absolute;
  }
  .comp-underpage-main .main_wrapper .img_wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .comp-underpage-main .main_wrapper .img_wrapper img.pc_img {
    display: block;
  }
  .comp-underpage-main .main_wrapper .img_wrapper img.sp_img {
    display: none;
  }
  .comp-underpage-main .main_wrapper .underpage_ttl {
    margin-top: 20px;
    font-size: 4rem;
  }
  .comp-underpage-main .main_wrapper .news_ttl_wrap {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 60px;
  }
  .comp-underpage-main .main_wrapper .news_ttl_wrap .date {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .comp-underpage-main .main_wrapper .news_ttl_wrap .news_ttl {
    font-size: 2.6rem;
    line-height: 1.5;
  }
  .comp-underpage-main .main_lower_decoration {
    height: 10px;
  }
  .comp-underpage-main .main_lower_decoration span {
    width: 20%;
    height: 10px;
  }
}
.comp-section-contents {
  padding: 50px 0;
  border-bottom: 1px solid #4e4732;
}
.comp-section-contents .content_inner .lead_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comp-section-contents .content_inner .lead_txt p {
  margin-bottom: 1em;
}
.comp-section-contents .content_inner .lead_txt p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .comp-section-contents .content_inner .lead_txt {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-section-contents .content_inner .comp-form-wrap {
  margin-top: 30px;
}
.comp-section-contents .content_inner .comp-donation-link {
  margin-top: 30px;
}
.comp-section-contents .content_inner .comp-contents-links {
  margin-top: 30px;
}
.comp-section-contents .content_inner .comp-article-contents {
  margin-top: 35px;
}

@media screen and (min-width: 768px) {
  .comp-section-contents {
    padding: 120px 0;
  }
  .comp-section-contents .content_inner {
    max-width: 850px;
    margin: 0 auto;
  }
  .comp-section-contents .content_inner .comp-form-wrap {
    margin-top: 50px;
  }
  .comp-section-contents .content_inner .comp-donation-link {
    margin-top: 50px;
  }
  .comp-section-contents .content_inner .comp-contents-links {
    margin-top: 50px;
  }
  .comp-section-contents .content_inner .comp-article-contents {
    margin-top: 55px;
  }
}
.comp-form-wrap .form_item {
  margin-bottom: 18px;
  padding-bottom: 25px;
  border-bottom: 1px dotted #4e4732;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item {
    margin-bottom: 25px;
    padding-bottom: 30px;
  }
}
.comp-form-wrap .form_item .attention {
  width: 100%;
  display: block;
  margin-top: 10px;
  color: red;
  text-align: left;
  font-size: 1.2rem;
}
.comp-form-wrap .form_item .notice {
  width: 100%;
  display: block;
  line-height: 1.8;
  margin-top: 10px;
  text-align: left;
  font-size: 1.2rem;
}
.comp-form-wrap .form_item .notice a {
  margin-top: 5px;
  font-size: 1.4rem;
  display: inline-block;
  color: inherit;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .notice {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.comp-form-wrap .form_item.b_none {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px dotted #4e4732;
}
.comp-form-wrap .form_item .label_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.comp-form-wrap .form_item .label_wrap label {
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .label_wrap label.no_label {
  display: block;
  margin-top: 5px;
}
.comp-form-wrap .form_item .label_wrap label span {
  display: inline-block;
  padding-left: 0.5em;
  font-size: 1.2rem;
}
.comp-form-wrap .form_item .label_wrap .required {
  padding: 7px;
  background: #d7b900;
  font-size: 1.2rem;
  color: #fff;
}
.comp-form-wrap .form_item .label_wrap .optional {
  padding: 7px;
  background: transparent;
  color: #d7b900;
  border: 1px solid #d7b900;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .label_wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 15px;
  }
  .comp-form-wrap .form_item .label_wrap label {
    margin-right: 12px;
    font-size: 1.6rem;
  }
  .comp-form-wrap .form_item .label_wrap label.no_label {
    display: block;
    margin-top: 5px;
  }
  .comp-form-wrap .form_item .label_wrap label span {
    display: inline-block;
    padding-left: 0.5em;
    font-size: 1.2rem;
  }
  .comp-form-wrap .form_item .label_wrap .required {
    padding: 7px;
    font-size: 1.2rem;
  }
  .comp-form-wrap .form_item .label_wrap .optional {
    padding: 7px;
    background: transparent;
    font-size: 1.2rem;
  }
}
.comp-form-wrap .form_item .form_box input[type=text],
.comp-form-wrap .form_item .form_box input[type=email],
.comp-form-wrap .form_item .form_box input[type=number],
.comp-form-wrap .form_item .form_box input[type=tel],
.comp-form-wrap .form_item .form_box input[type=date] {
  display: block;
  width: 100%;
  padding: 0 12px;
  height: 50px;
  line-height: 50px;
  font-size: 1.6rem;
  border: 1px solid #fafafa;
  background: #fafafa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  color: #000;
  border-radius: 0;
  -webkit-appearance: none;
}
.comp-form-wrap .form_item .form_box input[type=text].bg,
.comp-form-wrap .form_item .form_box input[type=email].bg,
.comp-form-wrap .form_item .form_box input[type=number].bg,
.comp-form-wrap .form_item .form_box input[type=tel].bg,
.comp-form-wrap .form_item .form_box input[type=date].bg {
  background-color: #f4f4f4;
}
.comp-form-wrap .form_item .form_box input[type=text]:focus,
.comp-form-wrap .form_item .form_box input[type=email]:focus,
.comp-form-wrap .form_item .form_box input[type=number]:focus,
.comp-form-wrap .form_item .form_box input[type=tel]:focus,
.comp-form-wrap .form_item .form_box input[type=date]:focus {
  outline: none;
}
.comp-form-wrap .form_item .form_box input[type=text]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-webkit-input-placeholder {
  color: #acacac;
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .form_box input[type=text]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-moz-placeholder {
  color: #acacac;
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .form_box input[type=text]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]:-ms-input-placeholder {
  color: #acacac;
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .form_box input[type=text]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-ms-input-placeholder {
  color: #acacac;
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .form_box input[type=text]::placeholder,
.comp-form-wrap .form_item .form_box input[type=email]::placeholder,
.comp-form-wrap .form_item .form_box input[type=number]::placeholder,
.comp-form-wrap .form_item .form_box input[type=tel]::placeholder,
.comp-form-wrap .form_item .form_box input[type=date]::placeholder {
  color: #acacac;
  font-size: 1.5rem;
}
.comp-form-wrap .form_item .form_box input[type=text].errorInput,
.comp-form-wrap .form_item .form_box input[type=email].errorInput,
.comp-form-wrap .form_item .form_box input[type=number].errorInput,
.comp-form-wrap .form_item .form_box input[type=tel].errorInput,
.comp-form-wrap .form_item .form_box input[type=date].errorInput {
  border: 1px solid red;
}
.comp-form-wrap .form_item .form_box select {
  display: block;
  width: 100%;
  padding: 0px 12px !important;
  font-size: 1.6rem;
  height: 50px;
  line-height: 50px;
  border: 1px solid #fafafa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(./select_caret.svg);
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center right 12px;
  border-radius: 0;
  background-color: #fafafa;
  -webkit-appearance: none;
  color: #000;
  font-family: inherit;
}
.comp-form-wrap .form_item .form_box select::-webkit-input-placeholder {
  color: #acacac;
}
.comp-form-wrap .form_item .form_box select::-moz-placeholder {
  color: #acacac;
}
.comp-form-wrap .form_item .form_box select:-ms-input-placeholder {
  color: #acacac;
}
.comp-form-wrap .form_item .form_box select::-ms-input-placeholder {
  color: #acacac;
}
.comp-form-wrap .form_item .form_box select::placeholder {
  color: #acacac;
}
.comp-form-wrap .form_item .form_box select.bg {
  background-color: #f4f4f4;
}
.comp-form-wrap .form_item .form_box select option {
  color: #acacac;
  font-size: 1.6rem;
}
.comp-form-wrap .form_item .form_box select:focus {
  outline: none;
}
.comp-form-wrap .form_item .form_box select.errorInput {
  border: 1px solid red;
}
.comp-form-wrap .form_item .form_box textarea {
  display: block;
  width: 100%;
  padding: 12px 12px;
  font-size: 1.6rem;
  height: 180px;
  background: #fafafa;
  line-height: 1.6;
  border: 1px solid #fafafa;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none;
  color: #000;
  font-family: inherit;
}
.comp-form-wrap .form_item .form_box textarea.bg {
  background-color: #f4f4f4;
}
.comp-form-wrap .form_item .form_box textarea:focus {
  outline: none;
}
.comp-form-wrap .form_item .form_box textarea.errorInput {
  border: 1px solid red;
}
.comp-form-wrap .form_item .form_box .name_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.comp-form-wrap .form_item .form_box .name_wrap .name_flex {
  width: calc(50% - 2.5px);
}
.comp-form-wrap .form_item .form_box .postal_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-form-wrap .form_item .form_box .postal_wrap input[type=text] {
  width: 50%;
}
.comp-form-wrap .form_item .form_box .postal_wrap .search_button {
  width: calc(50% - 5px);
  font-size: 1.3rem;
  color: #fff;
  background: #000000;
  line-height: 48px;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .postal_wrap input[type=text] {
    width: calc(100% - 300px);
  }
  .comp-form-wrap .form_item .form_box .postal_wrap .search_button {
    width: 290px;
    font-size: 1.4rem;
    line-height: 48px;
  }
}
.comp-form-wrap .form_item .form_box .date_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
.comp-form-wrap .form_item .form_box .date_box .txt02 {
  width: 10%;
  margin-right: 10px;
}
.comp-form-wrap .form_item .form_box .date_box .txt02:nth-last-of-type(1) {
  margin-right: 0;
}
.comp-form-wrap .form_item .form_box .date_box .txt01 {
  width: 5%;
  margin-right: 10px;
}
.comp-form-wrap .form_item .form_box .date_box .txt01.end {
  margin-right: 0;
}
.comp-form-wrap .form_item .form_box .date_box .txt01:nth-last-of-type(1) {
  margin-right: 0;
}
.comp-form-wrap .form_item .form_box .date_box input[name=birthYear] {
  width: 25%;
  margin-right: 10px;
}
.comp-form-wrap .form_item .form_box .date_box input[name=birthMonth], .comp-form-wrap .form_item .form_box .date_box input[name=birthDay] {
  width: 15%;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .date_box {
    margin-top: 20px;
  }
  .comp-form-wrap .form_item .form_box .date_box .txt02 {
    width: 45px;
    margin-right: 10px;
  }
  .comp-form-wrap .form_item .form_box .date_box .txt02:nth-last-of-type(1) {
    margin-right: 0;
  }
  .comp-form-wrap .form_item .form_box .date_box .txt01 {
    width: 20px;
    margin-right: 10px;
  }
  .comp-form-wrap .form_item .form_box .date_box .txt01:nth-last-of-type(1) {
    margin-right: 0;
  }
  .comp-form-wrap .form_item .form_box .date_box input[name=birthYear] {
    width: 25%;
    margin-right: 10px;
  }
  .comp-form-wrap .form_item .form_box .date_box input[name=birthMonth], .comp-form-wrap .form_item .form_box .date_box input[name=birthDay] {
    width: 15%;
    margin-right: 10px;
  }
}
.comp-form-wrap .form_item .form_box .radio_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: -15px;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .radio_box {
    margin-top: 20px;
  }
}
.comp-form-wrap .form_item .form_box .radio_box label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 20px;
  margin-bottom: 12px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .radio_box label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
}
.comp-form-wrap .form_item .form_box .radio_box label input[type=checkbox], .comp-form-wrap .form_item .form_box .radio_box label input[type=radio] {
  display: none;
}
.comp-form-wrap .form_item .form_box .radio_box label .radio_checker {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background: #fff;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .radio_box label .radio_checker {
    margin-top: 0px;
  }
}
.comp-form-wrap .form_item .form_box .radio_box label .radio_checker::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  background: #000;
  -webkit-transition: width 0.15s, height 0.15s;
  transition: width 0.15s, height 0.15s;
  will-change: width, height;
}
.comp-form-wrap .form_item .form_box .radio_box label input[type=radio] + .radio_checker {
  border-radius: 0px;
}
.comp-form-wrap .form_item .form_box .radio_box label input[type=radio] + .radio_checker::after {
  border-radius: 0px;
}
.comp-form-wrap .form_item .form_box .radio_box label input[type=checkbox]:checked + .radio_checker,
.comp-form-wrap .form_item .form_box .radio_box label input[type=radio]:checked + .radio_checker {
  border: 1px solid #acacac;
}
.comp-form-wrap .form_item .form_box .radio_box label input[type=checkbox]:checked + .radio_checker::after,
.comp-form-wrap .form_item .form_box .radio_box label input[type=radio]:checked + .radio_checker::after {
  width: 9px;
  height: 9px;
}
.comp-form-wrap .form_item .form_box .radio_box label .name {
  width: calc(100% - 30px);
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 0.64px;
  cursor: pointer;
}
.comp-form-wrap .form_item .form_box .radio_box .optinonal_input {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.comp-form-wrap .form_item .form_box .notice_list {
  background: #fff;
  padding: 20px;
  line-height: 1.8;
  font-size: 1.3rem;
  text-align: left;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item .form_box .notice_list {
    font-size: 1.4rem;
    background: #e6eaeb;
  }
}
.comp-form-wrap .form_item .form_box .notice_list li {
  margin-bottom: 5px;
}
.comp-form-wrap .form_item .form_box .notice_list li:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-form-wrap .form_item .form_box .privacy_wrap {
  border: 1px solid #4e4732;
  padding: 20px;
  height: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: scroll;
  line-height: 1.8;
  font-size: 1.3rem;
  margin-top: 25px;
  text-align: left;
}
.comp-form-wrap .form_item .form_box .privacy_wrap p {
  margin-bottom: 1.5rem;
}
.comp-form-wrap .form_item .form_box .privacy_wrap p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-form-wrap .privacy_wrap {
  margin-top: 30px;
}
.comp-form-wrap .privacy_wrap .privacy_ttl {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.comp-form-wrap .privacy_wrap .privacy_inner {
  padding: 20px;
  border: 1px solid #4e4732;
  background: #fff;
  height: 200px;
  overflow: scroll;
  margin-bottom: 20px;
}
.comp-form-wrap .privacy_wrap .privacy_inner .privacy_content {
  font-size: 1.3rem;
  line-height: 1.8;
}
.comp-form-wrap .privacy_wrap .privacy_inner .privacy_content h5 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.comp-form-wrap .privacy_wrap .privacy_inner .privacy_content p {
  margin-bottom: 15px;
}
.comp-form-wrap .privacy_wrap .privacy_inner .privacy_content p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=checkbox], .comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=radio] {
  display: none;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label .radio_checker {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  margin-bottom: -2px;
  cursor: pointer;
  position: relative;
  border: 1px solid #4e4732;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label .radio_checker::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  background: #000000;
  -webkit-transition: width 0.15s, height 0.15s;
  transition: width 0.15s, height 0.15s;
  will-change: width, height;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=radio] + .radio_checker {
  border-radius: 0px;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=radio] + .radio_checker::after {
  border-radius: 0px;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=checkbox]:checked + .radio_checker,
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=radio]:checked + .radio_checker {
  border: 1px solid #acacac;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=checkbox]:checked + .radio_checker::after,
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label input[type=radio]:checked + .radio_checker::after {
  width: 9px;
  height: 9px;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label .name {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.64px;
  cursor: pointer;
  margin-top: 2px;
}
.comp-form-wrap .privacy_wrap .agreement .agree_wrap label .name a {
  color: inherit;
  text-decoration: underline;
}
.comp-form-wrap .ajax_loader {
  width: 100%;
  height: 0px;
  overflow: hidden;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  will-change: height;
}
.comp-form-wrap .ajax_loader.loading_state {
  height: 75px;
}
.comp-form-wrap .ajax_loader .loading {
  display: block;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px;
  -webkit-filter: invert(1);
          filter: invert(1);
  background-image: url(../img/common/loading.svg);
}
.comp-form-wrap .status_message {
  height: 0;
  overflow: hidden;
  text-align: left;
  font-size: 16px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
  will-change: height;
  text-align: center;
}
.comp-form-wrap .status_message .text {
  display: block;
  background: #000000;
  color: #fff;
  border: 1px solid #fff;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 20px;
}
.comp-form-wrap .status_message .text span {
  display: block;
}
.comp-form-wrap .status_message.complete {
  height: 105px;
  margin-bottom: 0px;
}
.comp-form-wrap .status_message.error {
  height: 100px;
  margin-bottom: 0px;
}
.comp-form-wrap .status_message.error .text {
  color: #D62538;
  border: 1px solid #D62538;
}
.comp-form-wrap .submit_wrap {
  max-width: 100%;
  margin: 30px auto 0;
  position: relative;
  cursor: pointer;
  background: #007d5f;
  color: #fff;
  padding: 20px 0;
  border-radius: 0px;
  cursor: pointer;
  -webkit-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
  will-change: background, opacity;
  font-family: inherit;
}
.comp-form-wrap .submit_wrap.disabled {
  background: #979797;
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.comp-form-wrap .submit_wrap.completed {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.comp-form-wrap .submit_wrap:hover {
  opacity: 0.8;
}
.comp-form-wrap .submit_wrap .text_wrap {
  text-align: center;
}
.comp-form-wrap .submit_wrap .text_wrap .ja {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.7px;
  pointer-events: none;
}
.comp-form-wrap .submit_wrap .text_wrap .ja span {
  position: relative;
  padding-right: 17px;
}
.comp-form-wrap .submit_wrap .text_wrap .ja span::after {
  position: absolute;
  width: 5px;
  height: 5px;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
  will-change: border;
}
.comp-form-wrap .submit_wrap .text_wrap input[type=button], .comp-form-wrap .submit_wrap .text_wrap input[type=submit] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .comp-form-wrap .form_item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dotted #4e4732;
  }
  .comp-form-wrap .form_item .attention {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .comp-form-wrap .form_item.b_none {
    margin-bottom: 0px;
  }
  .comp-form-wrap .form_item .label_wrap {
    margin-bottom: 15px;
  }
  .comp-form-wrap .form_item .label_wrap label {
    margin-right: 15px;
  }
  .comp-form-wrap .form_item .label_wrap .required {
    padding: 7px;
    font-size: 1.2rem;
    color: #fff;
  }
  .comp-form-wrap .form_item .label_wrap .optional {
    padding: 7px;
    font-size: 1.2rem;
  }
  .comp-form-wrap .form_item .form_box input[type=text],
  .comp-form-wrap .form_item .form_box input[type=email],
  .comp-form-wrap .form_item .form_box input[type=number],
  .comp-form-wrap .form_item .form_box input[type=tel],
  .comp-form-wrap .form_item .form_box input[type=date] {
    border: 0px solid #fff;
    background: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comp-form-wrap .form_item .form_box input[type=text]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-webkit-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-webkit-input-placeholder {
    color: #979797;
    font-size: 1.5rem;
  }
  .comp-form-wrap .form_item .form_box input[type=text]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-moz-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-moz-placeholder {
    color: #979797;
    font-size: 1.5rem;
  }
  .comp-form-wrap .form_item .form_box input[type=text]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]:-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]:-ms-input-placeholder {
    color: #979797;
    font-size: 1.5rem;
  }
  .comp-form-wrap .form_item .form_box input[type=text]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=email]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=number]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=tel]::-ms-input-placeholder, .comp-form-wrap .form_item .form_box input[type=date]::-ms-input-placeholder {
    color: #979797;
    font-size: 1.5rem;
  }
  .comp-form-wrap .form_item .form_box input[type=text]::placeholder,
  .comp-form-wrap .form_item .form_box input[type=email]::placeholder,
  .comp-form-wrap .form_item .form_box input[type=number]::placeholder,
  .comp-form-wrap .form_item .form_box input[type=tel]::placeholder,
  .comp-form-wrap .form_item .form_box input[type=date]::placeholder {
    color: #979797;
    font-size: 1.5rem;
  }
  .comp-form-wrap .form_item .form_box select {
    padding: 0px 12px !important;
    font-size: 1.6rem;
    border: 0px solid #fff;
    background-color: #fff;
  }
  .comp-form-wrap .form_item .form_box select::-webkit-input-placeholder {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box select::-moz-placeholder {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box select:-ms-input-placeholder {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box select::-ms-input-placeholder {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box select::placeholder {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box select option {
    color: #979797;
  }
  .comp-form-wrap .form_item .form_box textarea {
    padding: 12px 12px;
    height: 180px;
    border: 0px solid #fff;
    background-color: #fff;
  }
  .comp-form-wrap .form_item .form_box .name_wrap .name_flex {
    width: calc(50% - 5px);
  }
  .comp-form-wrap .form_item .form_box .radio_box {
    margin-bottom: -15px;
  }
  .comp-form-wrap .form_item .form_box .radio_box label .radio_checker {
    background: #fff;
    margin-bottom: -2px;
    border: 1px solid #fff;
  }
  .comp-form-wrap .form_item .form_box .radio_box label input[type=checkbox]:checked + .radio_checker,
  .comp-form-wrap .form_item .form_box .radio_box label input[type=radio]:checked + .radio_checker {
    border: 1px solid #fff;
  }
  .comp-form-wrap .form_item .form_box .radio_box label .name {
    font-size: 1.5rem;
  }
  .comp-form-wrap .privacy_wrap {
    margin-top: 45px;
    margin-bottom: 15px;
  }
  .comp-form-wrap .privacy_wrap .agreement .agree_wrap label .radio_checker {
    background: #fff;
    margin-bottom: -2px;
    border: 1px solid #4e4732;
  }
  .comp-form-wrap .privacy_wrap .agreement .agree_wrap label .radio_checker::after {
    background: #000000;
  }
  .comp-form-wrap .submit_wrap {
    max-width: 360px;
    margin: 30px auto 0;
  }
}
.comp-section-news {
  padding: 50px 0 60px;
  background: #e6eaeb;
  color: #000;
}
.comp-section-news .news_wrapper .lead_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 35px;
}
.comp-section-news .news_wrapper .lead_txt p {
  margin-bottom: 1em;
}
.comp-section-news .news_wrapper .lead_txt p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .comp-section-news .news_wrapper .lead_txt {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-section-news .news_wrapper .comp-article-contents {
  max-width: 850px;
  margin: 0 auto;
}
.comp-section-news .news_wrapper .comp-article-contents .contents_item:nth-of-type(1) .img_wrap {
  margin-top: 0;
}
.comp-section-news .news_list_wrap {
  margin-top: 60px;
}
.comp-section-news .news_list_wrap .comp-section-title {
  line-height: 1.6;
}
.comp-section-news .news_list_wrap .view_all_button {
  margin-top: 30px;
}
.comp-section-news .news_list_wrap .view_all_button a {
  display: block;
  color: #fff;
  background: #007d5f;
  padding: 20px 0;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .comp-section-news {
    padding: 120px 0;
  }
  .comp-section-news .news_wrapper .lead_txt {
    max-width: 850px;
    margin: 0 auto 80px;
  }
  .comp-section-news .news_wrapper .comp-article-contents {
    max-width: 850px;
    margin: 0 auto 80px;
  }
  .comp-section-news .news_list_wrap {
    margin-top: 120px;
  }
  .comp-section-news .news_list_wrap .comp-section-title {
    line-height: 1.6;
  }
  .comp-section-news .news_list_wrap .comp-section-title span {
    padding: 0 80px;
  }
  .comp-section-news .news_list_wrap .comp-section-title span::before, .comp-section-news .news_list_wrap .comp-section-title span::after {
    background: #000;
  }
  .comp-section-news .news_list_wrap .view_all_button {
    margin-top: 50px;
  }
  .comp-section-news .news_list_wrap .view_all_button a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    max-width: 380px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 1.8rem;
  }
  .comp-section-news .news_list_wrap .view_all_button a:hover {
    opacity: 0.75;
  }
}
.comp-pager {
  margin: 60px auto 0;
  max-width: 400px;
}
@media screen and (min-width: 720px) {
  .comp-pager {
    margin-top: 50px;
  }
}
.comp-pager .comp_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.comp-pager .comp_inner .link {
  width: 25%;
  text-align: center;
  color: inherit;
  background: #fff;
  font-size: 1.4rem;
  height: 50px;
  line-height: 52px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  color: #000;
}
.comp-pager .comp_inner .link:hover {
  opacity: 0.75;
}
.comp-pager .comp_inner .link span {
  display: inline-block;
  position: relative;
}
.comp-pager .comp_inner .link span::after {
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.comp-pager .comp_inner .link.previous span {
  padding-left: 12px;
}
.comp-pager .comp_inner .link.previous span::after {
  left: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.comp-pager .comp_inner .link.next span {
  padding-right: 12px;
}
.comp-pager .comp_inner .link.next span::after {
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.comp-pager .comp_inner .pager_select {
  width: 44%;
  margin: 0 3%;
  background: #007d5f;
  height: 50px;
  line-height: 50px;
  position: relative;
}
.comp-pager .comp_inner .pager_select .pager_select_label {
  text-align: center;
  height: 50px;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.comp-pager .comp_inner .pager_select .pager_select_label .label_divider {
  display: inline-block;
  padding: 0 0.1em;
}
.comp-pager .comp_inner .pager_select .pager_select_label .label_arrow {
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/common/select_caret_white.svg);
  -webkit-filter: brightness(1000);
          filter: brightness(1000);
}
.comp-pager .comp_inner .pager_select select {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.comp-schedule-wrapper {
  margin-bottom: 40px;
}
.comp-schedule-wrapper .comp-section-title {
  margin-bottom: 25px;
}
.comp-schedule-wrapper .schedule_list {
  font-size: 1.4rem;
  line-height: 2.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .comp-schedule-wrapper {
    margin-bottom: 60px;
  }
  .comp-schedule-wrapper .comp-section-title {
    margin-bottom: 25px;
  }
  .comp-schedule-wrapper .schedule_list {
    margin-top: 30px;
    font-size: 1.6rem;
    line-height: 2.5;
    text-align: center;
  }
  .comp-schedule-wrapper .schedule_list br {
    display: none;
  }
}
/* トップページ */
.comp-word-description .desc_item {
  padding: 25px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  margin-bottom: 20px;
}
.comp-word-description .desc_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-word-description .desc_item .item_inner .desc_ttl {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.comp-word-description .desc_item .item_inner .description {
  font-size: 1.3rem;
  line-height: 1.69;
}

@media screen and (min-width: 768px) {
  .comp-word-description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: calc(var(--scroll) / 100 - 1);
  }
  .comp-word-description .desc_item {
    width: 320px;
    height: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 25px 20px;
    margin-bottom: 0px;
  }
  .comp-word-description .desc_item:nth-last-of-type(1) {
    margin-right: 0;
  }
  .comp-word-description .desc_item .item_inner {
    width: 100%;
  }
  .comp-word-description .desc_item .item_inner .desc_ttl {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .comp-word-description .desc_item .item_inner .description {
    font-size: 1.4rem;
  }
}
.comp-project-links .link_item {
  width: 61%;
  margin: 0 auto 20px;
}
.comp-project-links .link_item a {
  display: block;
}
.comp-project-links .link_item.last_link {
  width: 100%;
  max-width: 770px;
  margin: 35px 0 0;
}
.comp-project-links .link_item.last_link a {
  display: block;
  padding: 15px 0;
  font-size: 1.5rem;
  background: #de0515;
  color: #fff;
  text-align: center;
}
.comp-project-links .link_item.last_link a span {
  position: relative;
  display: inline-block;
  padding: 0 34px;
}
.comp-project-links .link_item.last_link a span::before, .comp-project-links .link_item.last_link a span::after {
  position: absolute;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.comp-project-links .link_item.last_link a span::before {
  left: 0;
}
.comp-project-links .link_item.last_link a span::after {
  right: 0;
}

@media screen and (min-width: 768px) {
  .comp-project-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .comp-project-links .link_item {
    width: 240px;
    margin: 0;
    margin-right: 25px;
    margin-bottom: 25px;
  }
  .comp-project-links .link_item a {
    -webkit-transition: -webkit-filter 0.2s;
    transition: -webkit-filter 0.2s;
    transition: filter 0.2s;
    transition: filter 0.2s, -webkit-filter 0.2s;
    will-change: filter;
  }
  .comp-project-links .link_item a:hover {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
  .comp-project-links .link_item:nth-of-type(3) {
    margin-right: 0;
  }
  .comp-project-links .link_item.last_link {
    width: 100%;
    min-width: 100%;
    margin: 0 auto;
  }
  .comp-project-links .link_item.last_link a {
    max-width: 770px;
    margin: 0 auto;
    display: block;
    padding: 20px 0;
    font-size: 2.2rem;
  }
  .comp-project-links .link_item.last_link a span {
    padding: 0 45px;
  }
  .comp-project-links .link_item.last_link a span::before, .comp-project-links .link_item.last_link a span::after {
    width: 32px;
    height: 32px;
  }
}
.comp-outer-links .link_item {
  margin-bottom: 15px;
}
.comp-outer-links .link_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-outer-links .link_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 32vw;
  text-align: center;
  border: 1px solid #d8d8d8;
  color: #fff;
}
.comp-outer-links .link_item a .link_img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.comp-outer-links .link_item a .link_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.comp-outer-links .link_item a .link_txt {
  position: relative;
  z-index: 15;
  font-size: 1.4rem;
  line-height: 1.71;
}

@media screen and (min-width: 768px) {
  .comp-outer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .comp-outer-links .link_item {
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 0px;
  }
  .comp-outer-links .link_item:nth-of-type(3) {
    margin-right: 0;
  }
  .comp-outer-links .link_item a {
    height: 16vw;
    text-align: center;
    border: 1px solid #d8d8d8;
    color: #fff;
    overflow: hidden;
  }
  .comp-outer-links .link_item a .link_img {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .comp-outer-links .link_item a .link_img img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
    -webkit-transition: -webkit-transform 0.2s, -webkit-filter 0.2s;
    transition: -webkit-transform 0.2s, -webkit-filter 0.2s;
    transition: transform 0.2s, filter 0.2s;
    transition: transform 0.2s, filter 0.2s, -webkit-transform 0.2s, -webkit-filter 0.2s;
    will-change: transform, filter;
  }
  .comp-outer-links .link_item a .link_txt {
    font-size: 2rem;
    line-height: 1.71;
  }
  .comp-outer-links .link_item a:hover .link_img img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .comp-outer-links .link_item:nth-last-of-type(1) {
    width: 66%;
    margin-top: 3.5vw;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
  }
  .comp-outer-links .link_item:nth-last-of-type(1) a {
    height: 12vw;
  }
}
.comp-news-list .news_item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.comp-news-list .news_item a {
  color: inherit;
  font-size: 1.3rem;
  line-height: 1.7;
}
.comp-news-list .news_item a .date {
  display: block;
}
.comp-news-list .view_all_button {
  font-size: 1.5rem;
  text-align: center;
  margin: 50px 0 0;
}
.comp-news-list .view_all_button a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .comp-news-list {
    max-width: 820px;
    margin: 80px auto 0;
  }
  .comp-news-list .news_item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
  .comp-news-list .news_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    font-size: 1.5rem;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
    will-change: opacity;
  }
  .comp-news-list .news_item a .date {
    width: 100px;
    display: block;
  }
  .comp-news-list .news_item a .ttl {
    width: calc(100% - 100px);
  }
  .comp-news-list .news_item a:hover {
    opacity: 0.85;
    text-decoration: underline;
  }
  .comp-news-list .view_all_button {
    font-size: 1.5rem;
  }
  .comp-news-list .view_all_button a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  .comp-news-list .view_all_button a:hover {
    opacity: 0.75;
  }
}
.comp-index-loading {
  position: fixed;
  width: 100vw;
  height: var(--wHeightFixedPx);
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #F4F4F4;
  pointer-events: none;
  -webkit-transition: opacity 1.8s, -webkit-filter 1.8s;
  transition: opacity 1.8s, -webkit-filter 1.8s;
  transition: opacity 1.8s, filter 1.8s;
  transition: opacity 1.8s, filter 1.8s, -webkit-filter 1.8s;
  will-change: opacity, filter;
}
.comp-index-loading .loading_inner {
  position: relative;
  width: 100%;
  height: var(--wHeightFixedPx);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comp-index-loading .loading_inner::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-position: bottom right;
  background-image: url(../img/index/loading_bg.jpg);
  background-color: #F4F4F4;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: opacity 1.8s, -webkit-filter 1.8s;
  transition: opacity 1.8s, -webkit-filter 1.8s;
  transition: opacity 1.8s, filter 1.8s;
  transition: opacity 1.8s, filter 1.8s, -webkit-filter 1.8s;
  will-change: opacity, filter;
}
.comp-index-loading .loading_inner .loading_logo {
  position: relative;
  z-index: 20;
  width: 180px;
  margin: 0 auto;
}
.comp-index-loading .loading_inner .loading_logo img {
  width: 100%;
}
.comp-index-loading .loading_inner .loading_logo .first_view {
  display: none;
}
.comp-index-loading.loading .loading_inner::before {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.comp-index-loading.loaded {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

@media screen and (min-width: 768px) {
  .comp-index-loading {
    height: 100vh;
  }
  .comp-index-loading .loading_inner {
    height: 100vh;
  }
  .comp-index-loading .loading_inner::before {
    background-image: url(../img/index/loading_bg_pc.jpg);
  }
  .comp-index-loading .loading_inner .loading_logo {
    width: 240px;
    margin: 0 auto;
  }
}
.comp-scroll-indicator {
  width: 28vw;
  position: absolute;
  top: 71vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  opacity: calc(1 - var(--scroll) / 250);
}
.comp-scroll-indicator .circle_main {
  display: block;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  background: #fff;
}
.comp-scroll-indicator .indicator_wrap {
  position: relative;
  margin-top: -20px;
}
.comp-scroll-indicator .indicator_wrap .indicator_circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  will-change: opacity;
  opacity: 0;
}
.comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(1) {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(2) {
  -webkit-transform: translate(0, 25%);
          transform: translate(0, 25%);
}
.comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(3) {
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
.comp-scroll-indicator.state1 .indicator_wrap .indicator_circle:nth-of-type(1) {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.comp-scroll-indicator.state2 .indicator_wrap .indicator_circle:nth-of-type(1) {
  opacity: 1;
}
.comp-scroll-indicator.state2 .indicator_wrap .indicator_circle:nth-of-type(2) {
  opacity: 1;
}
.comp-scroll-indicator.state3 .indicator_wrap .indicator_circle:nth-of-type(1) {
  opacity: 1;
}
.comp-scroll-indicator.state3 .indicator_wrap .indicator_circle:nth-of-type(2) {
  opacity: 1;
}
.comp-scroll-indicator.state3 .indicator_wrap .indicator_circle:nth-of-type(3) {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .comp-scroll-indicator {
    width: 11vw;
    position: absolute;
    top: 32vw;
    opacity: calc(1 - var(--scroll) / 250);
  }
  .comp-scroll-indicator .circle_main {
    display: block;
    width: 11vw;
    height: 11vw;
  }
  .comp-scroll-indicator .indicator_wrap {
    position: relative;
    margin-top: -50px;
  }
  .comp-scroll-indicator .indicator_wrap .indicator_circle {
    width: 8vw;
    height: 8vw;
  }
  .comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(1) {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(2) {
    -webkit-transform: translate(0, 25%);
            transform: translate(0, 25%);
  }
  .comp-scroll-indicator .indicator_wrap .indicator_circle:nth-of-type(3) {
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
/* 下層ページ */
.comp-donation-link .link_item {
  margin-bottom: 15px;
}
.comp-donation-link .link_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-donation-link .link_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 27vw;
  border: 1px solid #4e4732;
}
.comp-donation-link .link_item a .txt_wrap {
  position: relative;
  z-index: 15;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
}
.comp-donation-link .link_item a .img_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.comp-donation-link .link_item a .img_wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .comp-donation-link .link_item {
    margin-bottom: 20px;
  }
  .comp-donation-link .link_item a {
    height: 175px;
  }
  .comp-donation-link .link_item a .txt_wrap {
    position: relative;
    z-index: 15;
    text-align: center;
    font-size: 2.4rem;
  }
  .comp-donation-link .link_item a .img_wrap {
    overflow: hidden;
  }
  .comp-donation-link .link_item a .img_wrap img {
    -webkit-transition: -webkit-filter 0.3s, -webkit-transform 0.3s;
    transition: -webkit-filter 0.3s, -webkit-transform 0.3s;
    transition: filter 0.3s, transform 0.3s;
    transition: filter 0.3s, transform 0.3s, -webkit-filter 0.3s, -webkit-transform 0.3s;
    will-change: filter, transform;
  }
  .comp-donation-link .link_item a:hover .img_wrap img {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.comp-contents-links .links_item {
  margin-bottom: 10px;
}
.comp-contents-links .links_item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 22vw;
}
.comp-contents-links .links_item a .link_txt {
  position: relative;
  z-index: 15;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
}
.comp-contents-links .links_item:nth-of-type(1) a {
  background: #c82a1e;
}
.comp-contents-links .links_item:nth-of-type(2) a {
  background: #37197d;
}
.comp-contents-links .links_item:nth-of-type(3) a {
  background: #007d5f;
}
.comp-contents-links .links_item:nth-of-type(4) a {
  background: #d7b900;
}
.comp-contents-links .links_item:nth-of-type(5) a {
  background: #c8c8c8;
}
.comp-contents-links .links_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-contents-links .brochures_item {
  margin-top: 35px;
}
.comp-contents-links .brochures_item .brochure_link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -10px;
}
.comp-contents-links .brochures_item .brochure_link_wrap .link_item {
  width: 32%;
}
.comp-contents-links .brochures_item .brochure_link_wrap .link_item a {
  width: 100%;
  display: block;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  background: #c8c8c8;
}

@media screen and (min-width: 768px) {
  .comp-contents-links .links_item {
    margin-bottom: 15px;
  }
  .comp-contents-links .links_item a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    height: 150px;
  }
  .comp-contents-links .links_item a:hover {
    opacity: 0.75;
  }
  .comp-contents-links .links_item a .link_txt {
    font-size: 2.2rem;
  }
  .comp-contents-links .brochures_item {
    margin-top: 50px;
  }
  .comp-contents-links .brochures_item .brochure_link_wrap {
    margin-top: -10px;
  }
  .comp-contents-links .brochures_item .brochure_link_wrap .link_item {
    width: 32%;
  }
  .comp-contents-links .brochures_item .brochure_link_wrap .link_item a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    padding: 25px 0;
    font-size: 2.2rem;
  }
  .comp-contents-links .brochures_item .brochure_link_wrap .link_item a:hover {
    opacity: 0.75;
  }
}
.comp-article-contents .contents_item {
  margin-bottom: 35px;
}
.comp-article-contents .contents_item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.comp-article-contents .contents_item .img_wrap {
  margin: 35px 0;
}
.comp-article-contents .contents_item .img_wrap img {
  width: 100%;
}
.comp-article-contents .contents_item .article_ttl {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.comp-article-contents .contents_item .desc_wrap {
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.comp-article-contents .contents_item .desc_wrap p {
  margin-bottom: 1em;
}
.comp-article-contents .contents_item .desc_wrap p:nth-last-of-type(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .comp-article-contents .contents_item .desc_wrap {
    font-size: 1.6rem;
    padding: 0;
  }
}
.comp-article-contents .contents_item .desc_wrap .align_right {
  text-align: right;
}
.comp-article-contents .contents_item .desc_wrap a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .comp-article-contents .contents_item {
    margin-bottom: 55px;
  }
  .comp-article-contents .contents_item .img_wrap {
    margin: 55px 0;
  }
  .comp-article-contents .contents_item .img_wrap.half {
    width: 50%;
    margin: 55px auto;
  }
  .comp-article-contents .contents_item .article_ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.comp-news-list-block .news_item {
  margin-bottom: 35px;
}
.comp-news-list-block .news_item a {
  display: block;
  color: inherit;
}
.comp-news-list-block .news_item a .img_wrap {
  display: block;
  margin-bottom: 20px;
}
.comp-news-list-block .news_item a .img_wrap img {
  width: 100%;
}
.comp-news-list-block .news_item a .txt_wrap {
  display: block;
}
.comp-news-list-block .news_item a .txt_wrap .date {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.comp-news-list-block .news_item a .txt_wrap .txt_wrap {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .comp-news-list-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .comp-news-list-block .news_item {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 60px;
  }
  .comp-news-list-block .news_item:nth-of-type(3n) {
    margin-right: 0;
  }
  .comp-news-list-block .news_item a .img_wrap {
    overflow: hidden;
    margin-bottom: 25px;
  }
  .comp-news-list-block .news_item a .img_wrap img {
    -webkit-transition: -webkit-filter 0.3s, -webkit-transform 0.3s;
    transition: -webkit-filter 0.3s, -webkit-transform 0.3s;
    transition: filter 0.3s, transform 0.3s;
    transition: filter 0.3s, transform 0.3s, -webkit-filter 0.3s, -webkit-transform 0.3s;
    will-change: filter, transform;
  }
  .comp-news-list-block .news_item a .txt_wrap .date {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .comp-news-list-block .news_item a .txt_wrap .txt_wrap {
    font-size: 1.6rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
  }
  .comp-news-list-block .news_item a:hover .img_wrap img {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .comp-news-list-block .news_item a:hover .txt_wrap {
    opacity: 0.75;
  }
}
.comp-message-list {
  position: relative;
}
.comp-message-list .message_bg {
  min-height: 214vw;
  overflow: hidden;
}
.comp-message-list .message_bg .pc_img {
  display: none;
}
.comp-message-list .message_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  will-change: opacity;
  opacity: 0;
}
.comp-message-list .message_list li {
  pointer-events: none;
  display: block;
  position: absolute;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: opacity 1s, -webkit-filter 1s;
  transition: opacity 1s, -webkit-filter 1s;
  transition: filter 1s, opacity 1s;
  transition: filter 1s, opacity 1s, -webkit-filter 1s;
  will-change: filter, opacity;
}
.comp-message-list .message_list li:nth-of-type(1) {
  top: 95px;
  left: 25px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
}
.comp-message-list .message_list li:nth-of-type(2) {
  top: 45px;
  right: 15px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0.8;
}
.comp-message-list .message_list li:nth-of-type(3) {
  top: 160px;
  left: 122px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
}
.comp-message-list .message_list li:nth-of-type(4) {
  top: 155px;
  left: 220px;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.comp-message-list .message_list li:nth-of-type(5) {
  top: 260px;
  left: 35px;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.comp-message-list .message_list li:nth-of-type(6) {
  top: 280px;
  left: 160px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
}
.comp-message-list .message_list li:nth-of-type(7) {
  top: 250px;
  right: 10px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
}
.comp-message-list .message_list li:nth-of-type(8) {
  top: 380px;
  right: 40px;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.comp-message-list .message_list li:nth-of-type(9) {
  top: 440px;
  left: 20px;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  opacity: 0.5;
}
.comp-message-list .message_list li:nth-of-type(n + 10) {
  display: none;
}
.comp-message-list.active .message_list {
  opacity: 1;
}
.comp-message-list.active .message_list li {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .comp-message-list {
    position: relative;
    width: 87vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 720px) {
  .comp-message-list {
    width: 83%;
    max-width: 1590px;
    min-width: 1100px;
  }
}
@media screen and (min-width: 768px) {
  .comp-message-list .message_bg {
    min-height: 106vw;
  }
  .comp-message-list .message_bg .sp_img {
    display: none;
  }
  .comp-message-list .message_bg .pc_img {
    display: block;
  }
  .comp-message-list .message_list li {
    display: block;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .comp-message-list .message_list li:nth-of-type(1) {
    top: 300px;
    left: 0px;
    right: unset;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(2) {
    top: 155px;
    left: 450px;
    right: unset;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(3) {
    top: 160px;
    left: unset;
    right: -30px;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(4) {
    top: 680px;
    left: 30px;
    right: unset;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(5) {
    top: 360px;
    left: unset;
    right: 200px;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(6) {
    top: 515px;
    left: 200px;
    right: unset;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(7) {
    top: 390px;
    left: 640px;
    right: unset;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(8) {
    top: 380px;
    left: unset;
    right: 0px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(9) {
    top: 1000px;
    left: -20px;
    right: unset;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(10) {
    top: 870px;
    left: 150px;
    right: unset;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(11) {
    top: 680px;
    left: unset;
    right: 300px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(12) {
    top: 800px;
    left: unset;
    right: 0px;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(13) {
    top: 1120px;
    left: unset;
    right: 200px;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  .comp-message-list .message_list li:nth-of-type(14) {
    top: 1200px;
    left: unset;
    right: -50px;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0.5;
  }
  .comp-message-list .message_list li:nth-of-type(n + 10) {
    display: block;
  }
  .comp-message-list .message_list li:nth-of-type(n + 15) {
    display: none;
  }
}