@charset "UTF-8";
/*///////////////////////////////////////////////////// layout  */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

object, embed {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

html, body {
  width: 100%;
  min-height: 100%;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  background: #ece9f0;
}

body {
  color: #333333;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

a {
  text-decoration: none;
  color: #222a60;
}
@media (min-width: 769px) {
  a {
    transition: 0.4s;
    opacity: 1;
  }
  a:hover {
    opacity: 0.5;
  }
}

@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
#wrap {
  transition: 0.4s opacity;
  opacity: 0;
}
#wrap.loaded {
  opacity: 1;
}

.is-item {
  transition: 0s;
  opacity: 0;
}
.is-item.on {
  transition: 1.8s;
  opacity: 1;
}

.page-top {
  display: block;
  width: 68px;
  height: 68px;
  position: sticky;
  bottom: 80px;
  margin-left: auto;
  margin-right: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  z-index: 90;
  transition: opacity 0.4s;
  pointer-events: none;
  cursor: pointer;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .page-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    margin-right: 20px;
    margin-left: auto;
  }
}
.page-top.on {
  opacity: 1;
  pointer-events: auto;
}
.page-top a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/btn_pagetop.png) center center no-repeat;
  background-size: 100% 100%;
}

header {
  width: 100%;
  height: 100px;
  padding: 0 65px 0 26px;
  background: rgba(236, 233, 240, 0.75);
  position: fixed;
  top: 0;
  z-index: 100;
  transition: 0.4s;
  transform: translate(0, -100%);
}
@media only screen and (max-width: 1000px) {
  header {
    padding: 0 20px 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  header {
    height: 60px;
    padding: 0;
  }
}
header.loaded {
  transition: 1.4s;
  transform: translate(0, 0%);
}
header .logo {
  position: absolute;
  height: 100%;
  display: flex;
  left: 26px;
  top: 0;
  z-index: 20;
}
@media only screen and (max-width: 768px) {
  header .logo {
    left: 15px;
    z-index: 300;
  }
}
header .logo .img {
  height: 100%;
  display: flex;
  align-items: center;
}
header .logo .img img {
  display: block;
  height: 64%;
  width: auto;
}
@media only screen and (max-width: 768px) {
  header .logo .img img {
    height: 80%;
  }
}
header .logo .text {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 16px;
}
@media only screen and (max-width: 768px) {
  header .logo .text {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 1220px) {
  header .logo .text {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header .logo .text {
    display: flex;
  }
}
header .logo .text span {
  display: flex;
  overflow: hidden;
  aspect-ratio: 864/105;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/logo_st.png) center center no-repeat;
  background-size: contain;
  height: 34%;
}
@media only screen and (max-width: 768px) {
  header .logo .text span {
    height: 38%;
  }
}
@media (min-width: 769px) {
  header .sp-menu-btn {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  header .sp-menu-btn {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 200;
    cursor: pointer;
    pointer-events: auto;
  }
  header .sp-menu-btn span {
    display: block;
    height: 2px;
    width: 50px;
    background: #222a60;
    position: absolute;
    top: 50%;
    left: 5px;
    opacity: 1;
    transition: 0.4s;
    transform: translate(0, -50%);
  }
  header .sp-menu-btn:before, header .sp-menu-btn:after {
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    background: #222a60;
    position: absolute;
    left: 5px;
    transition: 0.4s;
    transform: rotate(0);
  }
  header .sp-menu-btn:before {
    top: 19px;
  }
  header .sp-menu-btn:after {
    bottom: 19px;
  }
  header .sp-menu-btn.on span {
    opacity: 0;
  }
  header .sp-menu-btn.on:before {
    top: 29px;
    transform: rotate(45deg);
  }
  header .sp-menu-btn.on:after {
    bottom: 29px;
    transform: rotate(-45deg);
  }
}
header .header-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  header .header-inner {
    position: fixed;
    background: #ece9f0;
    transition: 0.4s;
    transform: translate(100%, 0);
    pointer-events: none;
    z-index: 100;
    height: 150svh;
  }
  header .header-inner.on {
    transform: translate(0, 0);
    pointer-events: auto;
  }
}
header .header-inner nav {
  display: block;
  position: absolute;
  padding-top: 16px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (min-width: 769px) {
  header .header-inner nav {
    transition: 0.4s;
  }
}
@media only screen and (max-width: 768px) {
  header .header-inner nav {
    padding: 160px 8% 0;
    position: relative;
    right: auto;
    top: auto;
    transform: translate(0, 0);
  }
}
@media (min-width: 769px) {
  header .header-inner nav ul {
    display: flex;
  }
}
@media (min-width: 769px) {
  header .header-inner nav ul li {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  header .header-inner nav ul li {
    margin-left: 24px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-inner nav ul li {
    margin-bottom: 0px;
    margin-left: 0px;
  }
}
header .header-inner nav ul li a {
  color: #222a60;
  font-size: 19px;
  letter-spacing: 0.2em;
  transition: 0.4s;
  opacity: 1;
}
header .header-inner nav ul li a:hover {
  opacity: 0.4;
}
@media only screen and (max-width: 1000px) {
  header .header-inner nav ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  header .header-inner nav ul li a {
    display: block;
    padding: 8px 0;
    text-align: center;
  }
}
header .header-inner nav ul li.instagram {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  header .header-inner nav ul li.instagram {
    justify-content: center;
    margin-top: 20px;
  }
}
header .header-inner nav ul li.instagram a {
  width: 22px;
  height: 22px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/pict_icon_instagram.png) center center no-repeat;
  background-size: 100% 100%;
}
header.size-s {
  height: 60px;
}
@media (min-width: 769px) {
  header.size-s .header-inner nav {
    padding-top: 0;
  }
  header.size-s .header-inner nav ul li a {
    font-size: 16px;
  }
}
header.size-s .logo .text {
  padding-left: 8px;
}
header.size-s .logo .text span {
  height: 44%;
}

footer {
  width: 100%;
  padding: 80px 4% 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 80px 4% 50px;
  }
}
footer .photography {
  font-size: 12px;
  color: #222a60;
}
@media (min-width: 769px) {
  footer .photography {
    position: absolute;
    white-space: nowrap;
    right: 26px;
    bottom: 36px;
  }
}
@media only screen and (max-width: 768px) {
  footer .photography {
    text-align: center;
    padding-top: 46px;
  }
}
@media (min-width: 769px) {
  footer .photography span {
    display: inline-block;
    padding-left: 8px;
  }
}
@media only screen and (max-width: 768px) {
  footer .photography span {
    display: inline-block;
    padding: 0 4px;
    text-align: center;
  }
}
@media (min-width: 769px) {
  footer .photography .pc {
    display: inline-block !important;
    padding-left: 8px;
  }
}
@media only screen and (max-width: 768px) {
  footer .photography .pc {
    display: none;
  }
}
footer small {
  display: block;
  position: absolute;
  white-space: nowrap;
  right: 26px;
  bottom: 16px;
  font-size: 12px;
  color: #222a60;
}
@media only screen and (max-width: 768px) {
  footer small {
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
footer .footer-inner {
  position: relative;
}
@media (min-width: 769px) {
  footer .footer-inner {
    display: flex;
    justify-content: end;
    padding-bottom: 180px;
  }
}
@media (min-width: 769px) {
  footer .footer-inner nav ul {
    display: flex;
  }
}
@media (min-width: 769px) {
  footer .footer-inner nav ul li {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 768px) {
  footer .footer-inner nav ul li {
    text-align: center;
    margin-bottom: 12px;
  }
}
footer .footer-inner nav ul li a {
  color: #222a60;
  font-size: 15px;
  letter-spacing: 0.2em;
  transition: 0.4s;
  opacity: 1;
}
footer .footer-inner nav ul li a:hover {
  opacity: 0.4;
}
footer .footer-inner nav ul li.instagram {
  display: flex;
  align-items: center;
  padding-top: 8px;
}
@media only screen and (max-width: 768px) {
  footer .footer-inner nav ul li.instagram {
    justify-content: center;
  }
}
footer .footer-inner nav ul li.instagram a {
  width: 22px;
  height: 22px;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../img/pict_icon_instagram.png) center center no-repeat;
  background-size: 100% 100%;
}

.contents-body {
  padding-bottom: 120px;
}

@keyframes kv-01 {
  0% {
    opacity: 0;
    top: 25%;
    filter: blur(20px);
  }
  8% {
    opacity: 1;
    filter: blur(0px);
  }
  12% {
    opacity: 1;
    top: 25%;
  }
  23% {
    opacity: 1;
  }
  24% {
    opacity: 0;
    top: 0%;
  }
  100% {
    top: 0%;
    opacity: 0;
    filter: blur(0px);
  }
}
@keyframes kv-02 {
  0% {
    opacity: 0;
    top: 25%;
  }
  8% {
    opacity: 0;
    top: 25%;
  }
  12% {
    opacity: 0;
    top: 25%;
  }
  22% {
    opacity: 1;
  }
  24% {
    opacity: 1;
    top: 0%;
  }
  26% {
    opacity: 1;
    top: 0%;
  }
  100% {
    top: 0%;
    opacity: 0;
  }
}
@keyframes kv-03 {
  0% {
    top: 55%;
    height: 0%;
  }
  9% {
    top: 55%;
    height: 0%;
  }
  24% {
    top: 24.8%;
    height: 75.2%;
    opacity: 1;
  }
  100% {
    top: 24.8%;
    opacity: 0;
    height: 75.2%;
  }
}
@keyframes kv-04 {
  0% {
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv-text {
  0% {
    height: 0;
  }
  24% {
    height: 0;
  }
  40% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}
@keyframes sd {
  0% {
    height: 0;
    top: 0;
  }
  20% {
    height: 0;
    top: 0;
  }
  60% {
    height: 160px;
    top: 0;
  }
  80% {
    height: 160px;
    top: 0;
  }
  100% {
    height: 0px;
    top: 160px;
  }
}
@keyframes sd_sp {
  0% {
    height: 0;
    top: 0px;
  }
  20% {
    height: 0;
    top: 0px;
  }
  60% {
    height: 100px;
    top: 0px;
  }
  80% {
    height: 100px;
    top: 0px;
  }
  100% {
    height: 0px;
    top: 100px;
  }
}
#details, #info, #support, #inquiry, #mailform-area {
  position: absolute;
  top: -100px;
}
@media only screen and (max-width: 768px) {
  #details, #info, #support, #inquiry, #mailform-area {
    top: -60px;
  }
}
body.size-s #details, body.size-s #info, body.size-s #support, body.size-s #inquiry, body.size-s #mailform-area {
  top: -60px;
}
@media only screen and (max-width: 768px) {
  body.size-s #details, body.size-s #info, body.size-s #support, body.size-s #inquiry, body.size-s #mailform-area {
    top: -60px;
  }
}

#visual {
  width: 100%;
  position: relative;
  background: #ece9f0;
  padding-top: 100px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #visual {
    padding-top: 80px;
  }
}
#visual .scroll-down {
  position: absolute;
  right: 6%;
  top: 50%;
  font-size: 11px;
  white-space: nowrap;
  line-height: 1;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: 0.8s opacity;
}
#visual .scroll-down.on {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  #visual .scroll-down {
    font-size: 10px;
    top: auto;
    right: 50%;
    bottom: 100px;
  }
}
#visual .scroll-down:before {
  content: "";
  display: block;
  position: absolute;
  background: #222a60;
  left: -19px;
  top: 0;
  width: 1px;
  height: 0;
  animation: sd infinite 3s;
}
@media only screen and (max-width: 768px) {
  #visual .scroll-down:before {
    left: 50%;
    animation: sd_sp infinite 3s;
  }
}
#visual .scroll-down span {
  color: #222a60;
  position: absolute;
  display: block;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 768px) {
  #visual .scroll-down span {
    background: #222a60;
    color: #fff;
    padding: 4px 5px;
    writing-mode: horizontal-tb;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#visual .visual-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
#visual .visual-bg .img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/img_bg_top.jpg) top center no-repeat;
  background-size: cover;
  transition: 2s;
  opacity: 0;
  z-index: 1;
  transform: translate(0, 10%);
}
@media only screen and (max-width: 768px) {
  #visual .visual-bg .img {
    background: url(../img/img_bg_top_sp.jpg) top left no-repeat;
    background-size: cover;
  }
}
#visual .visual-bg .text {
  color: #222a60;
  height: auto;
  justify-content: center;
  align-items: center;
  padding-top: 23svh;
  overflow: hidden;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  top: 12svh;
  left: 16.2svw;
  letter-spacing: 0.3em;
  font-size: 2.2svh;
  white-space: nowrap;
  transform: translate(0, 10%);
  transition: 2.6s;
  opacity: 0;
  background: url(../img/img_text_visual_02.png) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #visual .visual-bg .text {
    top: 120px;
    left: auto;
    padding-top: 0;
    right: 7svh;
  }
}
#visual .visual-bg .text span {
  opacity: 0;
}
#visual .visual-bg.on .img {
  opacity: 1;
  transform: translate(0, 0%);
}
#visual .visual-bg.on .text {
  opacity: 1;
  transform: translate(0, 0%);
  transition-delay: 1.8s;
}
#visual .visual-inner {
  position: relative;
  width: 100%;
  height: calc(100svh - 100px);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #visual .visual-inner {
    height: calc(100svh - 80px);
  }
}
#visual .kv-obj {
  width: auto;
  height: 100%;
  aspect-ratio: 1000/1414;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #visual .kv-obj {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
#visual .kv-obj h1 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
}
#visual .kv-obj h1 div {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 0%;
}
#visual .kv-obj h1 div span {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding-top: 12svh;
  overflow: hidden;
  writing-mode: vertical-rl;
  color: #fff;
  position: absolute;
  letter-spacing: 0.3em;
  font-size: 5svh;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  background: url(../img/img_text_visual_01.png) center 9.5svh no-repeat;
  background-size: auto 80%;
}
#visual .kv-obj > span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#visual .kv-obj > span.kv-01 {
  z-index: 3;
  background: url(../img/img_visual_kv_c01.png) center center no-repeat;
  background-size: 100% 100%;
  top: 25%;
  opacity: 0;
}
#visual .kv-obj > span.kv-02 {
  z-index: 3;
  background: url(../img/img_visual_kv_c02.png) center center no-repeat;
  background-size: 100% 100%;
  top: 25%;
  opacity: 0;
}
#visual .kv-obj > span.kv-03 {
  z-index: 1;
  background: url(../img/img_visual_kv_bg1.png) center bottom no-repeat;
  background-size: 100% auto;
  top: 60%;
  height: 0%;
  opacity: 1;
}
#visual .kv-obj > span.kv-04 {
  z-index: 3;
  background: url(../img/img_visual_kv_bg2.png) center bottom no-repeat;
  background-size: 100% 100%;
  top: 0%;
  height: 100%;
  opacity: 0;
}
#visual .kv-obj.on h1 div {
  animation: kv-text forwards 10s linear;
}
#visual .kv-obj.on span.kv-01 {
  animation: kv-01 forwards 10s linear;
}
#visual .kv-obj.on span.kv-02 {
  animation: kv-02 forwards 10s linear;
}
#visual .kv-obj.on span.kv-03 {
  animation: kv-03 forwards 10s linear;
}
#visual .kv-obj.on span.kv-04 {
  animation: kv-04 forwards 10s linear;
}

section {
  padding: 80px 0;
  background: #ece9f0;
  position: relative;
  color: #222a60;
}
@media only screen and (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}
section .sec-inner {
  width: 100%;
  max-width: 1440px;
  min-height: 200px;
  margin: 0 auto;
  position: relative;
}
section .sec-inner h3 {
  font-size: 25px;
  letter-spacing: 0.2em;
  padding-left: 100px;
  color: #222a60;
  position: absolute;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  section .sec-inner h3 {
    font-size: 20px;
    padding-left: 4%;
    font-weight: 600;
  }
}
section .sec-inner h3:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: #222a60;
  position: absolute;
  bottom: 0;
  right: 0;
}
section .sec-inner .news-wrap {
  width: 100%;
  max-width: 756px;
  margin: 0 auto;
  padding-right: 50px;
  position: relative;
}
@media only screen and (max-width: 1240px) {
  section .sec-inner .news-wrap {
    margin: 0;
    padding-left: 240px;
  }
}
@media only screen and (max-width: 768px) {
  section .sec-inner .news-wrap {
    padding: 48px 4% 0;
  }
}
section .sec-inner .news-wrap .more-btn {
  display: block;
  position: relative;
  width: 23px;
  height: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: auto;
}
@media only screen and (max-width: 768px) {
  section .sec-inner .news-wrap .more-btn {
    right: 4%;
  }
}
section .sec-inner .news-wrap .more-btn:after {
  content: "";
  display: block;
  width: 23px;
  height: 13px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
  background: url(../img/btn_more.png) center center no-repeat;
  background-size: 100% 100%;
  transform: rotate(0);
}
section .sec-inner .news-wrap .more-btn.visible {
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
}
section .sec-inner .news-wrap .more-btn.on:after {
  transform: rotate(180deg);
}
section .sec-inner .news-wrap ul {
  padding-top: 16px;
}
@media only screen and (max-width: 768px) {
  section .sec-inner .news-wrap ul {
    padding-right: 24px;
  }
}
section .sec-inner .news-wrap ul li {
  position: relative;
  padding-left: 74px;
  line-height: 1.4;
  margin-bottom: 14px;
}
section .sec-inner .news-wrap ul li:nth-child(n+4) {
  display: none;
}
section .sec-inner .news-wrap ul li span {
  display: block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  color: #222a60;
}
section .sec-inner .news-wrap ul li a {
  display: inline-block;
  position: relative;
  padding-right: 34px;
}
@media only screen and (max-width: 768px) {
  section .sec-inner .news-wrap ul li a {
    padding-right: 24px;
  }
}
section .sec-inner .news-wrap ul li.ig a:after {
  content: "";
  width: 17px;
  height: 17px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 4px;
  right: 0;
  background: url(../img/pict_icon_instagram.png) center center no-repeat;
  background-size: 100% 100%;
}

.fix-item {
  position: relative;
}
.fix-item .bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.fix-item .bg-wrap .bg {
  background: url("../img/img_bg_about.jpg") top/cover no-repeat;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .fix-item .bg-wrap .bg {
    background: url("../img/img_bg_about.jpg") top right/cover no-repeat;
  }
}
@media only screen and (max-width: 768px) {
  .fix-item .bg-wrap .bg:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.2s opacity;
    background: rgba(0, 0, 0, 0.5);
  }
  .fix-item .bg-wrap .bg.on:after {
    opacity: 1;
    transition: 3.2s opacity;
  }
}
.fix-item .bg-wrap .bg .tit-wrap {
  width: 100%;
  max-width: 1440px;
  padding-top: 167px;
  min-height: 200px;
  margin: 0 auto;
  position: relative;
}
.fix-item .bg-wrap .bg .tit-wrap h3 {
  font-size: 25px;
  letter-spacing: 0.2em;
  padding-left: 100px;
  color: #fff;
  position: absolute;
  z-index: 5;
}
.fix-item .bg-wrap .bg .tit-wrap h3:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .fix-item .bg-wrap .bg .tit-wrap h3 {
    display: none;
  }
}
.fix-item .text-wrap {
  padding: 600px 0 180px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: 0.2s opacity;
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap {
    padding: 100svh 0 90px;
    font-size: 14px;
  }
}
.fix-item .text-wrap.on {
  opacity: 1;
  transition: 3.2s opacity;
}
@media (min-width: 769px) {
  .fix-item .text-wrap h3 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap h3 {
    font-size: 20px;
    letter-spacing: 0.2em;
    padding-left: 4%;
    font-weight: 600;
    color: #fff;
    text-align: left;
    position: absolute;
  }
  .fix-item .text-wrap h3:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.fix-item .text-wrap h4 {
  color: #fff;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 46px;
  white-space: nowrap;
  margin-bottom: 64px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap h4 {
    font-size: 28px;
    padding-top: 120px;
  }
}
.fix-item .text-wrap p {
  line-height: 2;
  letter-spacing: 0.1em;
}
.fix-item .text-wrap p.name {
  padding-top: 2.4em;
  letter-spacing: 0.3em;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap p.name {
    font-size: 13px;
    line-height: 1.6;
  }
}
.fix-item .text-wrap p.name span {
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap p.name span {
    font-size: 12px;
  }
}
.fix-item .text-wrap .st {
  font-size: 24px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .fix-item .text-wrap .st {
    font-size: 20px;
  }
}

section#details-sec {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  section#details-sec {
    margin-bottom: 80px;
  }
}
section#details-sec .sec-inner h3 {
  top: 64px;
}
@media only screen and (max-width: 768px) {
  section#details-sec .sec-inner h3 {
    top: 36px;
    color: #fff;
  }
  section#details-sec .sec-inner h3:after {
    background: #fff;
  }
}
section#details-sec .slider img {
  display: block;
  width: 100%;
  height: auto;
}

.details-header {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .details-header {
    flex-wrap: wrap;
  }
}
.details-header .img {
  width: 47.77%;
  background: url(../img/img_details.jpg) top center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .details-header .img {
    width: 100%;
    height: auto;
    aspect-ratio: 780/574;
    background: url(../img/img_details_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.details-header .text {
  width: 46.18%;
}
@media only screen and (max-width: 768px) {
  .details-header .text {
    width: 100%;
  }
}
.details-header .text .st {
  overflow: hidden;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 33px;
  white-space: nowrap;
  padding: 84px 0 52px 132px;
}
@media only screen and (max-width: 768px) {
  .details-header .text .st {
    font-size: 26px;
    padding: 60px 0;
    margin: 0 auto;
  }
}
.details-header .text .st span {
  display: inline-block;
  position: relative;
  padding: 12px 0;
}
@media only screen and (max-width: 768px) {
  .details-header .text .st span {
    padding: 8px 0;
  }
}
.details-header .text .st span:before, .details-header .text .st span:after {
  content: "";
  display: block;
  width: 13px;
  height: 9px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .details-header .text .st span:before, .details-header .text .st span:after {
    width: 10px;
    height: 6px;
  }
}
.details-header .text .st span:before {
  background: url(../img/pict_dc_t.png) center center no-repeat;
  background-size: 100% 100%;
  top: 0;
  right: 8px;
}
.details-header .text .st span:after {
  background: url(../img/pict_dc_b.png) center center no-repeat;
  background-size: 100% 100%;
  bottom: 7px;
  left: 8px;
}
.details-header .text p {
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .details-header .text p {
    padding: 0 4% 60px;
    letter-spacing: 0em;
  }
}

.details-body {
  padding: 44px 0;
  background: #f1eff4;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .details-body {
    padding: 60px 0;
  }
}
.details-body .tit {
  font-size: 19px;
  margin-bottom: 16px;
}
.details-body p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .details-body p {
    letter-spacing: 0.1em;
    line-height: 1.8;
    padding: 0 4%;
    text-align: left;
  }
}

section#voices-sec {
  padding: 0;
  margin-bottom: 60px;
}
section#voices-sec .sec-inner h3 {
  top: 64px;
}
@media only screen and (max-width: 768px) {
  section#voices-sec .sec-inner h3 {
    top: 36px;
    color: #fff;
  }
  section#voices-sec .sec-inner h3:after {
    background: #fff;
  }
}

.voices-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .voices-body {
    flex-wrap: wrap;
  }
}
.voices-body .img {
  width: 47.77%;
  aspect-ratio: 680/770;
  background: url(../img/img_voice.jpg) top center no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .voices-body .img {
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .voices-body .img {
    width: 100%;
    height: auto;
    aspect-ratio: 780/574;
    background: url(../img/img_voice_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.voices-body .text {
  width: 49.28%;
}
@media (min-width: 769px) {
  .voices-body .text {
    order: 1;
    display: flex;
    justify-content: end;
  }
}
@media only screen and (max-width: 768px) {
  .voices-body .text {
    width: 100%;
  }
}
.voices-body .text .text-inner {
  max-width: 490px;
}
@media only screen and (max-width: 768px) {
  .voices-body .text .text-inner {
    max-width: none;
  }
}
.voices-body .text .st {
  overflow: hidden;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 33px;
  white-space: nowrap;
  padding: 84px 0 52px;
  margin: 0 auto;
}
@media only screen and (max-width: 1140px) {
  .voices-body .text .st {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 768px) {
  .voices-body .text .st {
    font-size: 26px;
    padding: 60px 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .voices-body .text .voices-item-wrap {
    padding: 0 4%;
  }
}
.voices-body .text .voices-item {
  position: relative;
  margin-bottom: 55px;
}
.voices-body .text .voices-item:before, .voices-body .text .voices-item:after {
  content: "";
  display: block;
  background: #222a60;
  position: absolute;
}
.voices-body .text .voices-item:before {
  width: 80px;
  height: 1px;
  left: 0;
  top: 0;
}
.voices-body .text .voices-item:after {
  width: 1px;
  height: 68px;
  left: 0;
  top: 0;
}
.voices-body .text .voices-item .voices-item-inner {
  position: relative;
  padding: 20px 26px;
}
.voices-body .text .voices-item .voices-item-inner:before, .voices-body .text .voices-item .voices-item-inner:after {
  content: "";
  display: block;
  background: #222a60;
  position: absolute;
}
.voices-body .text .voices-item .voices-item-inner:before {
  width: 80px;
  height: 1px;
  right: 0;
  bottom: 0;
}
.voices-body .text .voices-item .voices-item-inner:after {
  width: 1px;
  height: 68px;
  right: 0;
  bottom: 0;
}
.voices-body .text .voices-item .voices-item-inner dl dt {
  font-size: 17px;
  letter-spacing: 0.2em;
  padding-bottom: 4px;
}
.voices-body .text .voices-item .voices-item-inner dl dd {
  font-size: 14px;
  letter-spacing: 0.06em;
}

section#philosophy-sec {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  section#philosophy-sec {
    margin-bottom: 60px;
  }
}
section#philosophy-sec .sec-inner h3 {
  top: 64px;
  color: #fff;
}
section#philosophy-sec .sec-inner h3:after {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  section#philosophy-sec .sec-inner h3 {
    top: 36px;
  }
}

.philosophy-header {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .philosophy-header {
    flex-wrap: wrap;
  }
}
.philosophy-header .img {
  width: 47.77%;
  background: url(../img/img_philosophy.jpg) top center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .img {
    width: 100%;
    height: auto;
    aspect-ratio: 780/574;
    background: url(../img/img_philosophy_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.philosophy-header .text {
  width: 52.23%;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text {
    width: 100%;
  }
}
.philosophy-header .text .st {
  overflow: hidden;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 33px;
  white-space: nowrap;
  padding: 84px 0 52px 210px;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text .st {
    font-size: 26px;
    padding: 60px 0;
    margin: 0 auto;
  }
}
.philosophy-header .text .st span {
  display: inline-block;
  position: relative;
  padding: 12px 0;
}
.philosophy-header .text .st span:before, .philosophy-header .text .st span:after {
  content: "";
  display: block;
  width: 13px;
  height: 9px;
  position: absolute;
}
.philosophy-header .text .st span:before {
  background: url(../img/pict_dc_t.png) center center no-repeat;
  background-size: 100% 100%;
  top: 0;
  right: 8px;
}
.philosophy-header .text .st span:after {
  background: url(../img/pict_dc_b.png) center center no-repeat;
  background-size: 100% 100%;
  bottom: 7px;
  left: 8px;
}
.philosophy-header .text p {
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 80px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text p {
    padding: 0 4% 40px;
    letter-spacing: 0.1em;
  }
}
.philosophy-header .text .img-group {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text .img-group {
    padding: 0 4%;
  }
}
.philosophy-header .text .img-group .img-item {
  position: relative;
  width: 33.33%;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text .img-group .img-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.philosophy-header .text .img-group .img-item .tit {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .philosophy-header .text .img-group .img-item .tit {
    font-size: 14px;
  }
}
.philosophy-header .text .img-group .img-item img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.philosophy-body {
  padding: 44px 0;
  background: #f1eff4;
  text-align: center;
}
.philosophy-body .tit {
  font-size: 19px;
  margin-bottom: 16px;
}
.philosophy-body p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2;
}

section#info-sec {
  padding: 0;
  margin-bottom: 110px;
}
section#info-sec .sec-inner {
  padding-top: 65px;
}
@media only screen and (max-width: 768px) {
  section#info-sec .sec-inner {
    padding-top: 36px;
  }
}

.info-header {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-right: 156px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .info-header {
    padding-right: 0;
  }
}
.info-header .img {
  width: 41.66%;
  padding: 0 70px 0 20px;
}
@media only screen and (max-width: 768px) {
  .info-header .img {
    padding: 0 4%;
    width: 100%;
  }
}
.info-header .img img {
  display: block;
  width: 100%;
  height: auto;
}
.info-header .text {
  width: 54.94%;
  padding-top: 40px;
  padding-left: 240px;
  position: relative;
}
@media only screen and (max-width: 1210px) {
  .info-header .text {
    padding-left: 40px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .info-header .text {
    width: 100%;
    padding: 0 4% 24px;
  }
}
.info-header .text .entry-title {
  font-size: 23px;
  padding-bottom: 36px;
}
.info-header .text .entry-body {
  font-size: 15px;
  line-height: 2;
}
.info-header .text a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 60px;
  font-size: 13px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .info-header .text a.more-btn {
    right: 4%;
  }
}
.info-header .text a.more-btn:before {
  content: "";
  display: block;
  width: 55px;
  height: 13px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: url(../img/btn_more_arrow.png) center center no-repeat;
  background-size: 100% 100%;
}

section#support-sec {
  padding: 0;
}
section#support-sec .sec-inner h3 {
  top: 64px;
  color: #fff;
}
section#support-sec .sec-inner h3:after {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  section#support-sec .sec-inner h3 {
    top: 36px;
  }
}

.support-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.support-header .img {
  width: 47.77%;
  height: auto;
  position: relative;
  aspect-ratio: 686/943;
  background: url(../img/img_support.jpg) top center no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .support-header .img {
    width: 100%;
    height: auto;
    aspect-ratio: 780/574;
    background: url(../img/img_support_sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.support-header .text {
  width: 52.23%;
}
@media only screen and (max-width: 768px) {
  .support-header .text {
    width: 100%;
  }
}
.support-header .text .st {
  overflow: hidden;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 33px;
  white-space: nowrap;
  padding: 84px 0 52px 210px;
}
@media only screen and (max-width: 768px) {
  .support-header .text .st {
    font-size: 26px;
    padding: 60px 0;
    margin: 0 auto;
  }
}
.support-header .text .st span {
  display: inline-block;
  position: relative;
  padding: 12px 0;
}
.support-header .text .st span:before, .support-header .text .st span:after {
  content: "";
  display: block;
  width: 13px;
  height: 9px;
  position: absolute;
}
.support-header .text .st span:before {
  background: url(../img/pict_dc_t.png) center center no-repeat;
  background-size: 100% 100%;
  top: 0;
  right: 8px;
}
.support-header .text .st span:after {
  background: url(../img/pict_dc_b.png) center center no-repeat;
  background-size: 100% 100%;
  bottom: 7px;
  left: 8px;
}
.support-header .text p {
  letter-spacing: 0.2em;
  line-height: 2;
  padding-bottom: 60px;
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .support-header .text p {
    padding: 0 4% 40px;
    letter-spacing: 0.1em;
  }
}
.support-header .text .comment {
  padding-left: 80px;
}
@media only screen and (max-width: 768px) {
  .support-header .text .comment {
    padding: 0 4%;
  }
}
.support-header .text .comment .comment-head {
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 768px) {
  .support-header .text .comment .comment-head {
    justify-content: space-between;
  }
}
.support-header .text .comment .comment-head .comment-name {
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .support-header .text .comment .comment-head .comment-name {
    margin-right: 0;
  }
}
.support-header .text .comment .comment-head .comment-name dl {
  line-height: 1;
  letter-spacing: 0.1em;
}
.support-header .text .comment .comment-head .comment-name dl dt {
  font-size: 12px;
}
.support-header .text .comment .comment-head .comment-name dl dt span {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: solid 1px #c7c5d2;
}
.support-header .text .comment .comment-head .comment-name dl dd {
  font-size: 15px;
  font-weight: 600;
  padding-top: 16px;
}
.support-header .text .comment .comment-head .comment-name dl dd span {
  font-size: 12px;
  font-weight: 400;
}
.support-header .text .comment .comment-head .comment-img {
  max-width: 120px;
}
.support-header .text .comment .comment-head .comment-img img {
  display: block;
  width: 100%;
  height: auto;
}
.support-header .text .comment .comment-body {
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-top: 32px;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .support-header .text .comment .comment-body {
    letter-spacing: 0em;
  }
}

.support-body {
  padding: 44px 0;
  background: #f1eff4;
  text-align: center;
}
.support-body .tit {
  font-size: 19px;
  margin-bottom: 16px;
}
.support-body p {
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 2;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: "";
  fallback: disc;
}
section#etc-sec {
  padding: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  section#etc-sec .sec-inner {
    padding: 0 4%;
  }
}
section#etc-sec .sec-inner dl.etc-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 56px;
}
section#etc-sec .sec-inner dl.etc-list:last-of-type {
  margin-bottom: 26px;
}
section#etc-sec .sec-inner dl.etc-list dt {
  writing-mode: vertical-rl;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3em;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  line-height: 1.4;
}
section#etc-sec .sec-inner dl.etc-list dd {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
section#etc-sec .sec-inner dl.etc-list dd .inner {
  text-align: left;
  line-height: 1.8;
}
section#etc-sec .sec-inner dl.etc-list dd .inner p {
  text-align: center;
  padding-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  section#etc-sec .sec-inner dl.etc-list dd .inner p {
    text-align: left;
  }
}
section#etc-sec .sec-inner dl.etc-list dd .inner ul {
  text-align: left;
  list-style: middle-dot;
  transform: translate(15px, 0);
}
section#etc-sec .sec-inner dl.etc-list dd .inner ul li {
  padding-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  section#etc-sec .sec-inner dl.etc-list dd .inner ul li {
    padding-right: 4%;
  }
}
section#etc-sec .sec-inner dl.etc-list dd .inner .s-list {
  font-size: 15px;
}
section#etc-sec .sec-inner dl.etc-list dd .inner .s-list span {
  font-size: 12px;
}
section#etc-sec .sec-inner .entry-btn {
  text-align: center;
  padding-bottom: 110px;
}
section#etc-sec .sec-inner .entry-btn p {
  font-size: 14px;
  padding-bottom: 24px;
}
section#etc-sec .sec-inner .entry-btn ul.btn {
  display: flex;
  justify-content: center;
}
section#etc-sec .sec-inner .entry-btn ul.btn li {
  background: #222a60;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  margin: 0 24px;
}
@media only screen and (max-width: 768px) {
  section#etc-sec .sec-inner .entry-btn ul.btn li {
    font-size: 16px;
    margin: 0 5px;
  }
}
section#etc-sec .sec-inner .entry-btn ul.btn li a {
  display: block;
  color: #fff;
  padding: 10px 22px;
}
@media only screen and (max-width: 768px) {
  section#etc-sec .sec-inner .entry-btn ul.btn li a {
    padding: 16px 26px;
  }
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.mailform-col {
  display: none;
}

.mailform-wrap .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  border: solid 1px #dc3232;
  color: #dc3232;
  padding: 12px;
}
.mailform-wrap h4 {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: block;
  padding-bottom: 4px;
  border-bottom: solid 1px #222a60;
  max-width: 530px;
  margin: 0 auto;
  margin-bottom: 38px;
}
.mailform-wrap p.st {
  font-size: 15px;
  max-width: 530px;
  margin: 0 auto;
  padding-bottom: 54px;
}
.mailform-wrap > div {
  max-width: 530px;
  margin: 0 auto;
}
.mailform-wrap input, .mailform-wrap textarea {
  width: 100%;
  display: block;
  border: solid 1px #222a60;
  padding: 8px 16px;
  color: #222a60;
}
.mailform-wrap input[type=text],
.mailform-wrap input[type=email],
.mailform-wrap input[type=tel] {
  font-size: 16px;
}
.mailform-wrap input[type=submit] {
  width: auto;
  display: flex;
  margin: 0 auto;
  background: #222a60;
  color: #fff;
  font-size: 12px;
  padding: 10px 22px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .mailform-wrap input[type=submit] {
    font-size: 16px;
    padding: 16px 26px;
  }
}
.mailform-wrap label {
  font-size: 13px;
  display: block;
  letter-spacing: 0.1em;
  margin-top: 16px;
}
.mailform-wrap label span.cautuion {
  color: #b95246;
}
.mailform-wrap .form-submit-btn {
  padding-top: 50px;
}
.mailform-wrap .select {
  position: relative;
  border: solid 1px #222a60;
}
.mailform-wrap .select:before {
  content: "";
  display: block;
  width: 22px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../img/btn_form_select.png) center center no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}
.mailform-wrap .select > p {
  position: relative;
  z-index: 1;
}
.mailform-wrap .select > p > span {
  display: block;
}
.mailform-wrap .select select {
  padding: 8px 16px;
  width: 100%;
  color: #222a60;
}

section#group {
  padding: 0 0 140px;
}
section#group .sec-inner h3 {
  top: 0;
}

.group-body {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
.group-body .group-text-head {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .group-body .group-text-head {
    padding: 60px 4% 0;
  }
}
.group-body .group-text-head .text-wrap {
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .group-body .group-text-head .text-wrap {
    width: 100%;
  }
}
.group-body .group-text-head .text-wrap .col1 {
  line-height: 2.8;
  margin-bottom: 28px;
}
.group-body .group-text-head .text-wrap .col2 {
  line-height: 2.2;
  margin-bottom: 68px;
}
.group-body dl.cooperate {
  text-align: center;
  margin-bottom: 80px;
}
.group-body dl.cooperate dt {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 30px;
}
.group-body dl.cooperate dd {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .group-body dl.cooperate dd {
    padding: 0 4%;
  }
}
@media only screen and (max-width: 768px) {
  .group-body dl.cooperate dd:after {
    content: "";
    display: block;
    height: 1px;
    width: 31.6%;
  }
}
.group-body dl.cooperate dd .item {
  width: 18.63%;
  margin: 0.6%;
}
@media only screen and (max-width: 768px) {
  .group-body dl.cooperate dd .item {
    width: 31.6%;
    margin-bottom: 18px;
  }
}
.group-body dl.cooperate dd .item .img img {
  display: block;
  width: 100%;
  height: auto;
}
.group-body dl.cooperate dd .item .text {
  font-size: 13px;
  padding-top: 12px;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .group-body dl.cooperate dd .item .text {
    padding-top: 5px;
  }
}
.group-body dl.cooperate dd .item .text span {
  display: block;
  font-size: 12px;
}
.group-body dl.sponsorship {
  font-size: 15px;
  text-align: center;
}
.group-body dl.sponsorship dt {
  font-weight: 600;
  padding-bottom: 20px;
}
.group-body dl.sponsorship dd {
  text-align: center;
}
@media (min-width: 769px) {
  .group-body dl.sponsorship dd .pc {
    display: inline !important;
  }
}

section#inquiry-sec {
  padding: 0px 0 140px;
}
@media (min-width: 769px) {
  section#inquiry-sec .sec-inner {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  section#inquiry-sec .sec-inner {
    padding-top: 30px;
  }
}
section#inquiry-sec .sec-inner h3 {
  top: 66px;
}
@media only screen and (max-width: 768px) {
  section#inquiry-sec .sec-inner h3 {
    top: 36px;
  }
}

.inquiry-body {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1159px) {
  .inquiry-body {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .inquiry-body {
    padding: 60px 4%;
  }
}
.inquiry-body .group-text-head {
  display: flex;
  justify-content: center;
}
.inquiry-body .group-text-head .text-wrap {
  font-size: 15px;
}
.inquiry-body .group-text-head .text-wrap .col1 {
  line-height: 2.8;
  margin-bottom: 28px;
}
.inquiry-body .group-text-head .text-wrap .col2 {
  line-height: 2.2;
  margin-bottom: 68px;
}

.stage-wrap {
  padding-top: 180px;
}
@media only screen and (max-width: 768px) {
  .stage-wrap {
    padding-top: 100px;
  }
}

section#stage {
  padding: 0;
}
@media only screen and (max-width: 768px) {
  section#stage {
    margin-bottom: 80px;
  }
}

.stage-contents {
  max-width: 996px;
  margin: 0 auto;
}

.stage-head {
  padding-top: 24px;
  margin-bottom: 92px;
}
@media only screen and (max-width: 768px) {
  .stage-head {
    padding-top: 84px;
    margin-bottom: 42px;
  }
}
.stage-head .link-year {
  display: flex;
  justify-content: center;
}
.stage-head .link-year ul {
  display: flex;
  padding-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .stage-head .link-year ul {
    padding-bottom: 40px;
  }
}
.stage-head .link-year ul li {
  border-right: 1px solid #858dc4;
}
.stage-head .link-year ul li:last-child {
  border-right: none;
}
.stage-head .link-year ul li a {
  color: #858dc4;
  letter-spacing: 0.2em;
  display: block;
  padding: 0 18px;
  line-height: 1;
  font-size: 17px;
  font-weight: 600;
}
.stage-head .link-year ul li.current a {
  color: #222a60;
}
.stage-head .year-tit {
  display: flex;
  justify-content: center;
}
.stage-head .year-tit span {
  color: #fff;
  display: flex;
  background: #222a60;
  padding: 0px 18px;
  letter-spacing: 0.1em;
  justify-content: center;
  font-size: 20px;
}

#mailform-area-wrap {
  position: relative;
}

.stage-body article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 148px;
}
.stage-body article .text {
  width: 52%;
  padding-left: 4%;
}
@media only screen and (max-width: 768px) {
  .stage-body article .text {
    width: 100%;
    padding: 0 4% 40px;
  }
}
.stage-body article .text h4 {
  font-size: 23px;
  padding-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  .stage-body article .text h4 {
    font-size: 20px;
    padding-bottom: 22px;
  }
}
.stage-body article .text .entry-content {
  font-size: 15px;
}
.stage-body article .img {
  width: 45.55%;
}
@media only screen and (max-width: 768px) {
  .stage-body article .img {
    width: 100%;
    padding: 0 4%;
  }
}
.stage-body article .img img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.grecaptcha-badge {
  opacity: 0;
  pointer-events: none;
}

.page-contents {
  position: relative;
  max-width: 996px;
  margin: 0 auto;
  padding: 0 4%;
  padding-top: 140px;
  font-size: 15px;
}
@media only screen and (max-width: 768px) {
  .page-contents {
    padding: 80px 4%;
  }
}

.privacypolicy-head {
  margin-bottom: 4em;
}
.privacypolicy-head > p {
  margin-bottom: 1em;
}

.privacypolicy-body {
  padding-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .privacypolicy-body {
    padding-bottom: 0;
  }
}
.privacypolicy-body > dl {
  margin-bottom: 4em;
}
.privacypolicy-body > dl dt {
  font-weight: 600;
  padding-bottom: 1em;
}
.privacypolicy-body > dl dd > ul {
  text-align: left;
  list-style: middle-dot;
  padding: 8px 0;
  padding-left: 1em;
  padding-right: 16px;
  transform: translate(15px, 0);
}
.privacypolicy-body .pp-foot {
  text-align: right;
}
.privacypolicy-body .info-box {
  display: flex;
  padding-top: 16px;
}
.privacypolicy-body .info-box .info-box-inner {
  border: solid 1px;
  padding: 10px 20px;
}
.privacypolicy-body .info-box .info-box-inner .m-box a {
  text-decoration: underline;
}

.link-pp {
  padding: 26px 0 0;
  font-size: 13px;
  text-align: center;
}
.link-pp a {
  text-decoration: underline;
}

.entry-editor p {
  margin-bottom: 1em;
}
.entry-editor a {
  text-decoration: underline;
}

.mailform-wrap .checkbox01 {
  margin-top: 36px;
  position: relative;
}
.mailform-wrap .checkbox01:after {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: 5px;
  top: 4px;
  pointer-events: none;
  opacity: 0.2;
}
.mailform-wrap .checkbox01 span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item {
  display: block;
  line-height: 1;
}

.wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
}

input[type=checkbox] {
  display: none;
}

.wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 1.6;
  padding-left: 32px;
  display: inline-block;
}

.wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #222a60;
  background: #222a60;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: 5px;
  top: 4px;
}

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