@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap");
/* --------------------------------------------
  base
 -------------------------------------------- */
:root {
  /* メインカラー */
  --color-primary: #d19a51;
  --color-primary-rgb: 209,154,81;
  --color-primary-contrast: #000;
  --color-primary-contrast-rgb: 0,0,0;
  --color-secondary: #1d85be;
  --color-secondary-rgb: 29,133,190;
  --color-secondary-contrast: #fff;
  --color-secondary-contrast-rgb: 255,255,255;
  /* テキストカラー */
  --color-text-primary: #000;
  --color-text-secondary: #fff;
  --color-text-disabled: #999;
  --color-link: #0066cc;
  /* 背景カラー */
  --color-primary-bg: #f0ebe1;
  --color-primary-bg-rgb: 240,235,225;
  --color-secondary-bg: #c8e1eb;
  --color-secondary-bg-rgb: 200,225,235; }

/* --------------------------------------------
  basic setting
 -------------------------------------------- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

html {
  box-sizing: border-box; }

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

:root {
  scroll-padding-top: 100px;
  /* どの要素にスクロールしても100pxは空く 現状はcommon.jsのscrollableの設定を優先 */ }

html, body {
  height: 100%; }

body {
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  color: #2f2725;
  background: var(--color-bg);
  line-height: 1.4em;
  text-decoration: none;
  text-align: left;
  margin: 0;
  padding: 0;
  transition: all .2s ease; }
  body.dark-bg {
    color: #fff;
    background: #9b5abb; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.65rem; } }
.nopc {
  display: none; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .nopc {
    display: block; }

  .nosp {
    display: none !important; } }
img {
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: bottom;
  object-fit: contain; }
  img.of-cover {
    object-fit: cover !important; }
  img .w350 {
    width: 350px !important; }
  img .w450 {
    width: 450px !important; }
  img.w70per {
    width: 70% !important; }
  img.h100per {
    height: 100% !important; }

.float-img-left {
  float: left;
  margin: 5px 0.5em 0.5em 0; }

.float-img-right {
  float: right;
  margin: 5px  0 0.5em 0.5em; }

.float-img-left.w30,
.float-img-right.w30 {
  max-width: 30%; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  img {
    width: 100%; } }
sup {
  font-size: 1.25rem;
  vertical-align: middle; }

.nomg {
  margin: 0 !important; }

.mgauto {
  margin: 0 auto !important; }

.mt10 {
  margin-top: 10px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt60 {
  margin-top: 60px !important; }

.mt80 {
  margin-top: 80px !important; }

.mt100 {
  margin-top: 100px !important; }

.mt130 {
  margin-top: 130px !important; }

.mt-65 {
  margin-top: -65px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mb100 {
  margin-bottom: 100px !important; }

.mb130 {
  margin-bottom: 130px !important; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .mt0-sp {
    margin-top: 0 !important; }

  .mb0-sp {
    margin-bottom: 0 !important; } }
.nopd {
  padding: 0 !important; }

.pdtb60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important; }

.pdtb70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }

.pdtb80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important; }

.pdlr60 {
  padding-left: 60px !important;
  padding-right: 60px !important; }

.pdlr80 {
  padding-left: 80px !important;
  padding-right: 80px !important; }

.pdlr120 {
  padding-left: 120px !important;
  padding-right: 120px !important; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .pdlr15-sp {
    padding-left: 15px !important;
    padding-right: 15px !important; }

  .pdlr40-sp {
    padding-left: 40px !important;
    padding-right: 40px !important; } }
.t-c {
  text-align: center !important; }

.t-l {
  text-align: left !important; }

.t-r {
  text-align: right !important; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .t-c-sp {
    text-align: center !important; }

  .t-l-sp {
    text-align: left !important; }

  .t-r-sp {
    text-align: right !important; } }
.t-i {
  text-indent: -0.5em !important; }

.w-fc {
  width: fit-content !important; }

.caution {
  font-size: 1.5rem !important;
  color: #900 !important;
  text-indent: -1em !important;
  margin: 0 0 0 1em !important; }
  .caution:before {
    content: "※"; }

/* リンク部 */
a.trans {
  transition: all .3s; }

a.trans:link {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  filter: alpha(opacity=60);
  -moz-opacity: 1;
  opacity: 1;
  vertical-align: bottom; }

a.trans:visited {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  filter: alpha(opacity=60);
  -moz-opacity: 1;
  opacity: 1;
  vertical-align: bottom; }

a.trans:hover {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  filter: alpha(opacity=100);
  -moz-opacity: 0.60;
  opacity: 0.60;
  vertical-align: bottom; }

a.trans:active {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  filter: alpha(opacity=60);
  -moz-opacity: 1;
  opacity: 1;
  vertical-align: bottom; }

a.linkTel:link {
  text-decoration: none;
  color: #c7aa8a;
  font-size: 3rem; }

a.linkTel:visited {
  text-decoration: none;
  color: #c7aa8a;
  font-size: 3rem; }

a.linkTel:hover {
  text-decoration: none;
  color: #c7aa8a;
  font-size: 3rem; }

a.linkTel:active {
  text-decoration: none;
  color: #c7aa8a;
  font-size: 3rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  a.linkTel:link {
    text-decoration: none;
    color: #c7aa8a;
    font-size: 2.6rem; }

  a.linkTel:visited {
    text-decoration: none;
    color: #c7aa8a;
    font-size: 2.6rem; }

  a.linkTel:hover {
    text-decoration: none;
    color: #c7aa8a;
    font-size: 2.6rem; }

  a.linkTel:active {
    text-decoration: none;
    color: #c7aa8a;
    font-size: 2.6rem; } }
a.line {
  color: var(--color-secondary);
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: .3s; }
  a.line::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    /*下線の太さ*/
    background-color: var(--color-primary);
    transition: .3s; }
  a.line:hover {
    color: var(--color-primary); }
  a.line:hover::after {
    width: 100%; }

.arrowScroll {
  width: 40px;
  height: 40px;
  border: 2px solid #07f;
  border-radius: 50%;
  position: relative;
  animation: scroll_r 1.5s infinite;
  -webkit-animation: scroll_r 1.5s infinite;
  margin: 1em auto 0 auto; }
  .arrowScroll::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 8px;
    width: 16px;
    height: 16px;
    border-left: 2px solid #07f;
    border-bottom: 2px solid #07f;
    transform: rotate(225deg); }

@keyframes scroll_r {
  0% {
    transform: translate(0); }
  20% {
    transform: translateX(15px); }
  40% {
    transform: translate(0); } }
.arrow-anim {
  width: 30px;
  height: 40px; }
  .arrow-anim path {
    stroke: #2994D1;
    fill: transparent;
    stroke-width: 1px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; }
    .arrow-anim path.a1 {
      animation-delay: -1s; }
    .arrow-anim path.a2 {
      animation-delay: -0.5s; }
    .arrow-anim path.a3 {
      animation-delay: 0s; }
@keyframes arrow {
  0% {
    opacity: 0; }
  40% {
    opacity: 1; }
  80% {
    opacity: 0; }
  100% {
    opacity: 0; } }
.material-icons {
  vertical-align: middle; }

/* --------------------------------------------
float  setting
 -------------------------------------------- */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

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

/* --------------------------------------------
container  setting
 -------------------------------------------- */
.container {
  display: flex;
  padding: 0;
  margin: 0; }

/* --------------------------------------------
header  setting
 -------------------------------------------- */
header .headerwrap {
  background-color: rgba(255, 255, 255, 0);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 96px;
  padding: 0 2vw;
  margin: 0;
  z-index: 9999;
  transition: ease-out 1.2s all; }
  header .headerwrap .header-logo {
    width: 15%;
    max-width: 250px;
    margin-right: auto; }
    header .headerwrap .header-logo img {
      width: 100%; }
  header .headerwrap.fixed {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px); }
header .head-wrap {
  background: #fff url("/wp-content/themes/nagisa/img/head_bg.jpg") center bottom no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  header .head-wrap h1 {
    text-align: center;
    margin: 0 auto; }
    header .head-wrap h1 img {
      width: 320px;
      display: block;
      margin: 0 auto 30px; }
  header .head-wrap .lead {
    font-family: "Hina Mincho", serif;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.5em;
    text-align: center; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 1024px) {
  header .head-wrap {
    height: 570px; }
    header .head-wrap h1 {
      font-size: 4.5rem; } }
/* グローバルメニュー */
.gnav {
  flex: 1;
  padding: 0 20px 0 0;
  margin: 0;
  z-index: 9900; }
  .gnav > ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0; }
    .gnav > ul > li {
      color: #fff;
      padding: 0 0.5em; }
      .gnav > ul > li > a {
        font-size: 1.6rem;
        font-weight: 700;
        color: #7b4297;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        position: relative;
        transition: all 0.3s; }
        .gnav > ul > li > a::after {
          content: "";
          position: absolute;
          width: 0%;
          height: 2px;
          bottom: -1px;
          right: 100%;
          background-color: #7b4297;
          transition: width 0.3s ease, right 0.3s ease; }
        .gnav > ul > li > a:hover::after {
          width: 100%;
          right: 0; }

/* サブナビゲーション */
@media screen and (min-width: 1024px) {
  .gnav > ul .sub,
  .header-wrap.fixed .gnav > ul .sub {
    opacity: 0;
    position: absolute;
    transition: all 0.3s;
    visibility: hidden;
    padding: 20px 0; }
    .gnav > ul .sub > ul,
    .header-wrap.fixed .gnav > ul .sub > ul {
      margin: 0 auto;
      background-color: rgba(0, 65, 116, 0.85); }
      .gnav > ul .sub > ul > li,
      .header-wrap.fixed .gnav > ul .sub > ul > li {
        color: #fff;
        padding: 0.75em 0.85em 0.75em 1em;
        transition: all 0.3s;
        text-align: left;
        display: none;
        transition: all 0.3s; }
        .gnav > ul .sub > ul > li:first-child,
        .header-wrap.fixed .gnav > ul .sub > ul > li:first-child {
          padding: 1.5em 0.85em 0.75em 1em; }
        .gnav > ul .sub > ul > li:last-child,
        .header-wrap.fixed .gnav > ul .sub > ul > li:last-child {
          padding: 0.75em 0.85em 1.5em 1em; }
        .gnav > ul .sub > ul > li a,
        .header-wrap.fixed .gnav > ul .sub > ul > li a {
          font-size: 1.7rem;
          color: #fff;
          border-bottom: none;
          height: inherit;
          padding-left: 1em;
          border-bottom: none;
          text-align: left;
          position: relative;
          transition: all 0.3s; }
          .gnav > ul .sub > ul > li a::before,
          .header-wrap.fixed .gnav > ul .sub > ul > li a::before {
            font-family: "Material Icons";
            content: "\e5cc";
            position: absolute;
            top: 50%;
            left: 0;
            margin-top: -0.7em; }
        .gnav > ul .sub > ul > li:hover a,
        .header-wrap.fixed .gnav > ul .sub > ul > li:hover a {
          color: #fff; }
        .gnav > ul .sub > ul > li img,
        .header-wrap.fixed .gnav > ul .sub > ul > li img {
          width: 160px;
          margin: 0 auto 1em auto; }
    .gnav > ul .sub a,
    .header-wrap.fixed .gnav > ul .sub a {
      color: #fff;
      text-align: center;
      display: block; }
  .gnav > ul > li:hover .sub,
  .header-wrap.fixed .gnav > ul > li:hover .sub {
    opacity: 1;
    visibility: visible;
    display: flex; }
    .gnav > ul > li:hover .sub ul li,
    .header-wrap.fixed .gnav > ul > li:hover .sub ul li {
      display: block; } }
/* SP時：ハンバーガーメニューボタン */
.gnav-icon {
  display: none; }

@media screen and (max-width: 1024px) {
  .gnav-header {
    height: 50px;
    z-index: 9999; }

  .gnav > ul {
    background: white;
    display: none;
    left: 50%;
    padding: 50px 10px 10px 10px;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%; }
    .gnav > ul li a,
    .gnav > ul li div.nav-sub {
      font-size: 1.8rem;
      border-bottom: 1px solid #004174;
      border-right: none;
      color: #004174;
      font-weight: 700;
      padding: 1em 1em;
      text-align: left;
      display: flex;
      flex-wrap: wrap;
      text-decoration: none;
      justify-content: center;
      flex-direction: column;
      align-content: flex-start;
      align-items: flex-start;
      height: inherit; }
      .gnav > ul li a span,
      .gnav > ul li div.nav-sub span {
        font-size: 1.4rem; }
      .gnav > ul li a:last-child a,
      .gnav > ul li div.nav-sub:last-child a {
        border-bottom: none; }
    .gnav > ul li a.nav-sub,
    .gnav > ul li div.nav-sub {
      position: relative; }
    .gnav > ul li a.nav-sub::after,
    .gnav > ul li div.nav-sub::after {
      content: '';
      display: block;
      height: 11px;
      width: 8px;
      position: absolute;
      top: 50%;
      right: 15px;
      background: url("/official2024/wp-content/themes/conlabo/img/arrow.svg") no-repeat;
      -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
      transform: translateY(-50%) rotate(90deg);
      transition: transform 0.2s; }
    .gnav > ul li .sub > ul {
      background: rgba(5, 63, 106, 0.3); }
      .gnav > ul li .sub > ul > li img {
        display: none; }
    .gnav > ul li a.sub_open,
    .gnav > ul li div.sub_open {
      background: rgba(5, 63, 106, 0.6); }
      .gnav > ul li a.sub_open::after,
      .gnav > ul li div.sub_open::after {
        -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
        transform: translateY(-50%) rotate(-90deg); }

  .gnav-icon {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 15px;
    z-index: 2; } }
@media screen and (max-width: 1024px) {
  .sub {
    display: none; }

  .gnav {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1; }

  .nav {
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }

  .gnav-icon {
    display: none; }

  .menu-icon {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: #004174;
    border: 1px solid #fff; }

  .navicon {
    background: #fff;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s; }

  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #fff;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s; }

  .navicon:before {
    top: 9px; }

  .navicon:after {
    bottom: 9px; }

  .tel-btn a i {
    color: #174dfd;
    font-size: 3rem; }

  /* Hamburger Menu Animation Start */
  .gnav-icon:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg); }

  .gnav-icon:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg); }

  .gnav-icon:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0; }

  .gnav-icon:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0; }

  .gnav-icon:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s; }

  /* Hamburger Menu Animation End */ }
/* --------------------------------------------
splide設定 
 -------------------------------------------- */
/* splide設定 */
.splide .splide_lead {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.45em;
  text-align: left;
  text-shadow: 0 0 30px var(--color-primary); }
.splide .splide__track {
  height: 100vh; }
  .splide .splide__track .splide__list .splide__slide {
    height: 100% !important; }
    .splide .splide__track .splide__list .splide__slide .slideItem {
      width: 100%;
      height: 100%;
      margin: 0 auto;
      overflow: hidden;
      position: relative; }
      .splide .splide__track .splide__list .splide__slide .slideItem img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 7s 1s ease-out; }
  .splide .splide__track .splide__list .splide__slide[class*=-active] .slideItem img {
    transition-delay: 0s;
    transform: scale(1.1); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .splide__slide .slideItem p {
    font-size: 2.6rem;
    width: 85%;
    top: 50%;
    letter-spacing: normal;
    text-indent: 0; } }
/* luminous設定 */
.lum-lightbox.lum-open {
  display: block;
  z-index: 9999; }

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
  transition: opacity .62s ease-out; }

/* --------------------------------------------
 footer setting
 -------------------------------------------- */
footer {
  background: var(--color-primary);
  width: 100%;
  padding: 75px 0 0 0;
  margin: 0 auto; }
  footer .footer-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
    z-index: 9000; }
    footer .footer-main .info {
      width: calc(100% - 520px); }
      footer .footer-main .info p {
        color: #fff;
        font-size: 2.4rem;
        line-height: 1.6em;
        width: 100%;
        padding: 0 3px;
        margin-bottom: 20px; }
        footer .footer-main .info p span {
          font-size: 2.2rem;
          line-height: 1; }
        footer .footer-main .info p.title {
          font-size: 3.6rem;
          padding: 0 3px 6px 3px;
          border-bottom: 1px solid #fff; }
      footer .footer-main .info .info-cont {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
        footer .footer-main .info .info-cont dl {
          width: 60%; }
          footer .footer-main .info .info-cont dl div {
            color: #fff;
            display: flex; }
            footer .footer-main .info .info-cont dl div:not(last-child) {
              margin-bottom: 0.75em; }
            footer .footer-main .info .info-cont dl div dt {
              font-size: 1.9rem;
              width: 2em; }
            footer .footer-main .info .info-cont dl div dd {
              font-size: 1.9rem; }
        footer .footer-main .info .info-cont .img-area {
          width: 39%; }
          footer .footer-main .info .info-cont .img-area img {
            width: 100%;
            height: auto; }
    footer .footer-main .map {
      width: 500px; }
  footer .footer-sub {
    background: var(--color-secondary);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    margin: 0 auto;
    position: relative; }
    footer .footer-sub .copyright {
      color: #fff;
      font-size: 1.6rem; }
    footer .footer-sub .plivacy {
      font-size: 1.6rem;
      position: absolute;
      right: 0; }
      footer .footer-sub .plivacy a {
        text-decoration: none;
        color: #000;
        transition: all 0.5s; }
      footer .footer-sub .plivacy a:hover {
        text-decoration: none;
        color: #0077b6; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  footer {
    padding: 45px 0 0; }
    footer .footer-main {
      flex-direction: column;
      max-width: initial;
      padding: 0 15px;
      margin: 0 auto 50px; }
      footer .footer-main .info {
        flex: initial;
        width: 100%;
        margin-bottom: 20px; }
        footer .footer-main .info p {
          font-size: 1.8rem;
          line-height: 1.6em; }
          footer .footer-main .info p.title {
            font-size: 2.2rem; }
        footer .footer-main .info .info-cont {
          flex-direction: column; }
          footer .footer-main .info .info-cont dl {
            width: 100%; }
          footer .footer-main .info .info-cont .img-area {
            width: 100%; }
      footer .footer-main .map {
        width: 100%; }
    footer .footer-sub {
      max-width: initial;
      padding: 20px 0 100px 0; }
      footer .footer-sub .copyright {
        font-size: 1.6rem; } }
/* --------------------------------------------
 scroll setting スクロールで出現
 -------------------------------------------- */
/*scroll_up ｜下から上へ出現*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0; }

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0; }

/*scroll_down ｜上から下へ出現*/
.scroll_down {
  transition: 0.8s ease-in-out;
  transform: translateY(-30px);
  opacity: 0; }

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0; }

/*scroll_left ｜左から出現*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0); }

/*scroll_right ｜右から出現*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0); }

/*zoom_in ｜拡大出現*/
.zoom_in {
  transition: 0.8s ease-in-out;
  transform: scale(0.75);
  opacity: 0; }

.zoom_in.on {
  transform: scale(1);
  opacity: 1.0; }

/*rotate_3d ｜奥行回転出現*/
.rotate_3d {
  transition: 1.5s ease-in-out;
  perspective-origin: 365px center;
  perspective: 1000px;
  transform-origin: center top;
  transform: translate3d(0, 0, -300px) rotateZ(-3deg) rotateY(30deg) rotateX(-15deg);
  opacity: 0; }

.rotate_3d.on {
  transform: translate3d(0, 0, 0) rotateZ(0deg) rotateY(0deg) rotateX(0deg);
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s, opacity 0.6s ease 0.2s;
  opacity: 1; }

/*fade_in ｜フェードイン*/
.fade_in {
  transition: 1.0s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.fade_in.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0; }

/*img_wrap_left ｜徐々に現れる*/
.img_wrap_left {
  opacity: 0; }

.img_wrap_left.on {
  animation: img-opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative; }

.img_wrap_left.on::before {
  animation: img-animation 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1; }

/*img_wrap_right ｜徐々に現れる*/
.img_wrap_right {
  opacity: 0; }

.img_wrap_right.on {
  animation: img-opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative; }

.img_wrap_right.on::before {
  animation: img-animation-r 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1; }

@keyframes img-opacity {
  100% {
    opacity: 1; } }
@keyframes img-animation {
  100% {
    transform: translateX(100%); } }
@keyframes img-animation-r {
  100% {
    transform: translateX(-100%); } }
/*タイミング*/
.timing02 {
  transition-delay: .2s; }

.timing03 {
  transition-delay: .4s; }

.timing04 {
  transition-delay: .6s; }

.timing05 {
  transition-delay: .8s; }

/* --------------------------------------------
 ScrollTrigger スクロールで出現
 -------------------------------------------- */
/* 左から右にカーテン */
.curtain-leftto-right {
  position: relative; }

.curtain-leftto-right img,
.curtain-leftto-right h2,
.curtain-leftto-right h3,
.curtain-leftto-right div,
.curtain-leftto-right p,
.curtain-leftto-right li {
  transition: 1.0s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.curtain-leftto-right.visible img,
.curtain-leftto-right.visible h2,
.curtain-leftto-right.visible h3,
.curtain-leftto-right.visible div,
.curtain-leftto-right.visible p,
.curtain-leftto-right.visible li {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0; }

.curtain-leftto-right.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #004174;
  animation-name: curtainLeft;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards; }

@keyframes curtainLeft {
  0% {
    transform-origin: left;
    transform: scaleX(0); }
  50% {
    transform-origin: left;
    transform: scaleX(1); }
  50.001% {
    transform-origin: right; }
  100% {
    transform-origin: right;
    transform: scaleX(0); } }
/* --------------------------------------------
 headimg setting
 -------------------------------------------- */
.head-cont {
  width: 100%;
  height: 500px;
  position: relative; }
  .head-cont .text-area {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 8vw;
    width: fit-content;
    z-index: 10; }
    .head-cont .text-area .head-title {
      font-size: 3.8rem;
      font-weight: 500;
      color: var(--color-secondary);
      margin-top: 30px; }
      .head-cont .text-area .head-title span {
        display: block;
        font-size: 16rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.75);
        margin: 6px 0 0 10px;
        z-index: -1;
        position: absolute;
        bottom: 20px;
        left: -20px; }
  .head-cont .img-area {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    width: clamp(200px, 60%, 1380px);
    height: 100%;
    display: flex;
    justify-content: flex-end; }
    .head-cont .img-area img {
      width: auto;
      height: 100%;
      object-fit: cover; }

/* --------------------------------------------
 Contents setting
 -------------------------------------------- */
#contents {
  width: 100%;
  margin: 0 auto; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
section {
  width: 100%;
  position: relative;
  padding: 80px 0; }
  section.no-space {
    padding: 0; }
  section.bgoj {
    background: var(--color-primary-bg); }
  section.bgbl {
    background: var(--color-secondary-bg); }
  section.arrow {
    background: var(--color-secondary-bg);
    padding: 80px 0 60px;
    margin-bottom: 100px;
    position: relative; }
    section.arrow::after {
      content: "";
      position: absolute;
      bottom: 1px;
      left: 50%;
      border-style: solid;
      border-width: 100px 130px 0 130px;
      border-color: var(--color-secondary-bg) transparent transparent;
      translate: -50% 100%;
      z-index: 100; }
  section.arrow-bottom {
    padding: 180px 0 80px;
    margin-top: -100px; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
.inner {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  position: relative; }
  .inner.full {
    max-width: inherit;
    margin: 0 auto; }
  .inner.rr {
    flex-direction: row-reverse; }
  .inner.h-center {
    justify-content: center; }
  .inner.v-center {
    align-items: center;
    align-content: center; }
  .inner.no-space {
    padding: 0;
    margin: 0 auto;
    max-width: initial; }

.inner.inner-grid {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%; }
  .inner.inner-grid.grid4 {
    grid-template-columns: repeat(4, 1fr); }
  .inner.inner-grid .inner-area {
    padding: 0 20px; }

.inner-area100 {
  text-align: left;
  width: 100%;
  padding: 0 20px;
  align-self: auto; }

.inner-area75 {
  text-align: left;
  width: 73%;
  padding: 0 20px;
  align-self: auto; }

.inner-area70 {
  text-align: left;
  width: 68%;
  padding: 0 20px;
  align-self: auto; }

.inner-area60 {
  text-align: left;
  width: 58%;
  padding: 0 20px;
  align-self: auto; }

.inner-area50 {
  text-align: left;
  width: 48%;
  padding: 0 20px;
  align-self: auto; }

.inner-area40 {
  text-align: left;
  width: 38%;
  padding: 0 20px;
  align-self: auto; }

.inner-area33 {
  text-align: left;
  width: 31.3%;
  padding: 0 20px;
  align-self: auto; }

.inner-area30 {
  text-align: left;
  width: 28%;
  padding: 0 20px;
  align-self: auto; }

.inner-area25 {
  text-align: left;
  width: 23%;
  padding: 0 20px;
  align-self: auto; }

.inner-area100.t-c,
.inner-area75.t-c,
.inner-area70.t-c,
.inner-area60.t-c,
.inner-area50.t-c,
.inner-area40.t-c,
.inner-area33.t-c,
.inner-area30.t-c,
.inner-area25.t-c,
.inner-areaMenu.t-c {
  text-align: center; }
.inner-area100.t-l,
.inner-area75.t-l,
.inner-area70.t-l,
.inner-area60.t-l,
.inner-area50.t-l,
.inner-area40.t-l,
.inner-area33.t-l,
.inner-area30.t-l,
.inner-area25.t-l,
.inner-areaMenu.t-l {
  text-align: left; }
.inner-area100.t-r,
.inner-area75.t-r,
.inner-area70.t-r,
.inner-area60.t-r,
.inner-area50.t-r,
.inner-area40.t-r,
.inner-area33.t-r,
.inner-area30.t-r,
.inner-area25.t-r,
.inner-areaMenu.t-r {
  text-align: right; }
.inner-area100.no-space,
.inner-area75.no-space,
.inner-area70.no-space,
.inner-area60.no-space,
.inner-area50.no-space,
.inner-area40.no-space,
.inner-area33.no-space,
.inner-area30.no-space,
.inner-area25.no-space,
.inner-areaMenu.no-space {
  padding: 0 1em;
  margin: 0 auto; }
.inner-area100.v-c,
.inner-area75.v-c,
.inner-area70.v-c,
.inner-area60.v-c,
.inner-area50.v-c,
.inner-area40.v-c,
.inner-area33.v-c,
.inner-area30.v-c,
.inner-area25.v-c,
.inner-areaMenu.v-c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50vh; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .inner {
    font-size: 1.6rem;
    line-height: 1.4em;
    flex-direction: column;
    flex-direction: column;
    max-width: 768px; }
    .inner.full {
      padding: 0; }
    .inner.reverse {
      flex-direction: row-reverse; }
    .inner.menu {
      flex-direction: row;
      flex-wrap: wrap;
      margin: 0 auto; }

  section.event .inner {
    margin: 0 auto; }

  .inner-area100,
  .inner-area75,
  .inner-area70,
  .inner-area60,
  .inner-area50,
  .inner-area40,
  .inner-area33,
  .inner-area30,
  .inner-area25 {
    width: 100%;
    margin: 0 auto 20px; }
    .inner-area100.no-space,
    .inner-area75.no-space,
    .inner-area70.no-space,
    .inner-area60.no-space,
    .inner-area50.no-space,
    .inner-area40.no-space,
    .inner-area33.no-space,
    .inner-area30.no-space,
    .inner-area25.no-space {
      width: 100%;
      padding: 0 1em;
      margin: 0 auto; } }
.inner p {
  font-weight: 400;
  font-size: 1.8rem;
  font-feature-settings: "palt"; }
  .inner p strong {
    color: #f994ad;
    font-weight: 500;
    font-size: 2rem; }
  .inner p.lead {
    font-family: "Hina Mincho", serif;
    color: #000;
    font-weight: 400;
    font-size: 3.2rem;
    line-height: 1.6em;
    margin: 0 auto 45px auto; }
    .inner p.lead.w-v {
      writing-mode: vertical-rl;
      margin: 0; }
  .inner p.catch {
    font-size: 2.1rem;
    font-weight: 400; }
    .inner p.catch.warning {
      color: #c00;
      line-height: 1.5em;
      margin: 0.6em auto 0 auto; }
  .inner p.box {
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    background: #fff;
    display: inline-block;
    padding: 0.25em 0.75em; }

.inner p + p,
.inner ul + p,
.inner ol + p,
.inner p + ul,
.inner p + ol,
.inner p + dl {
  margin-top: 1em; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .inner p {
    font-size: 1.8rem;
    line-height: 1.5em;
    text-align: left; }
    .inner p.lead {
      font-size: 2.2rem;
      line-height: 28px;
      text-align: left; }
      .inner p.lead.fs-l-sp {
        font-size: 2.5rem;
        line-height: 1.4em; }
      .inner p.lead span {
        font-size: 2.6rem; }
    .inner p.catch {
      font-size: 1.8rem;
      text-align: center; }
    .inner p.sp_center {
      text-align: center; } }
.inner-area2Vc {
  width: 42%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .inner-area2Vc {
    display: block;
    width: 100%;
    position: relative;
    top: 0;
    transform: translate(0, 0); } }
.img-r1 {
  border-top-left-radius: 30%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 30%;
  border-bottom-left-radius: 0; }

.img-r2 {
  border-top-left-radius: 0;
  border-top-right-radius: 30%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 30%; }

.img-r3 {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%; }

.top-logo {
  margin-top: 30px; }
  .top-logo img {
    width: 180px; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .top-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh; } }
.titlebg1 {
  color: var(--color-primary);
  font-family: "Hina Mincho", serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.6em;
  margin-bottom: 1.5em;
  text-align: center;
  transition: all .2s ease; }
  .titlebg1.bl {
    color: var(--color-secondary); }
  .titlebg1.wh {
    color: #fff; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .titlebg1 {
    font-size: 4rem;
    line-height: 1.3em; } }
.titlebg2 {
  color: var(--color-primary);
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1.25em;
  position: relative;
  padding: 0 0 0.35em 1.75em;
  margin-bottom: 0.75em;
  border-bottom: 1px solid var(--color-secondary); }
  .titlebg2::before {
    content: attr(data-number);
    position: absolute;
    top: -5px;
    left: 0;
    color: rgba(var(--color-primary-rgb), 0.65);
    font-size: 4.8rem;
    font-weight: 500;
    z-index: -1; }
  .titlebg2 span {
    font-size: 2.25rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 1024px) {
  .titlebg2 {
    font-size: 2.5rem;
    padding-left: 1.3em; }
    .titlebg2::before {
      top: -3px;
      font-size: 3.7rem; }
    .titlebg2 span {
      font-size: 2.1rem; } }
.title-wrap {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto; }

.text-box1 {
  font-size: 3.2rem;
  text-align: center;
  padding: 0.5em 0.75em;
  border: 1px solid #fff; }

.text-box2 {
  color: var(--color-primary);
  font-size: 3.2rem;
  text-align: center;
  padding: 0.5em 0.75em;
  background: #fff; }

.cont-wrap1 {
  display: flex;
  position: relative;
  margin: 20px auto 0; }
  .cont-wrap1 .title-area {
    padding: 0 0.75em; }
    .cont-wrap1 .title-area p {
      -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
      font-size: 2rem;
      letter-spacing: 0.75em; }
  .cont-wrap1 .text-area {
    display: flex; }
    .cont-wrap1 .text-area p {
      font-size: 1.6rem;
      line-height: 1.5em; }
    .cont-wrap1 .text-area .left-box {
      padding: 0 1em; }
    .cont-wrap1 .text-area .right-box {
      padding: 0 1em;
      border-left: 1px solid #ccc; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .cont-wrap1 {
    margin-bottom: 20px; }
    .cont-wrap1 .title-area {
      padding: 0 1.1em 0 1em; }
      .cont-wrap1 .title-area p {
        font-size: 1.8rem; }
    .cont-wrap1 .text-area {
      display: flex; }
      .cont-wrap1 .text-area .left-box {
        padding: 0 0.7em; }
      .cont-wrap1 .text-area .right-box {
        padding: 0 0.7em; } }
.cont-wrap2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .cont-wrap2 .title-area {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto; }
  .cont-wrap2 .text-area {
    background: rgba(255, 255, 255, 0.65);
    width: 76%;
    padding: 45px 8% 45px clamp(20px, 16%, 300px);
    text-align: left; }
    .cont-wrap2 .text-area.bgno {
      background: none; }
  .cont-wrap2 .img-area {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%; }
    .cont-wrap2 .img-area img {
      width: 100%;
      height: 500px;
      object-fit: cover; }
  .cont-wrap2.rr {
    flex-direction: row-reverse; }
    .cont-wrap2.rr .text-area {
      padding: 45px clamp(5%, 10%, 30%) 45px clamp(4%, 16%, 20%); }
    .cont-wrap2.rr .img-area {
      right: initial;
      left: 0; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
.cont-wrap3 {
  position: relative;
  width: 100%;
  margin: 0 auto; }
  .cont-wrap3 .text-area {
    width: fit-content;
    margin: 0 0 0 auto; }

.cont-wrap4 {
  position: relative;
  width: 100%;
  margin-bottom: 130px;
  padding: 50px 10vw 0 0; }
  .cont-wrap4 .img-area {
    z-index: 10;
    position: absolute;
    top: -40px;
    left: 0;
    aspect-ratio: 800 / 495;
    width: 41%; }
    .cont-wrap4 .img-area img {
      max-width: 100%;
      height: auto;
      object-fit: cover; }
  .cont-wrap4 .text-area {
    position: relative;
    width: 76%;
    margin: 0 0 0 auto;
    padding: 2em 3em 2em clamp(200px, 25%, 1000px);
    border-radius: 15px;
    background-color: #fff;
    text-align: left; }
    .cont-wrap4 .text-area .title {
      position: absolute;
      top: -80px;
      right: 1em;
      line-height: 1;
      z-index: 50; }
    .cont-wrap4 .text-area ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px 10px; }
      .cont-wrap4 .text-area ul li figure {
        width: 100%; }
        .cont-wrap4 .text-area ul li figure img {
          width: 100%; }
        .cont-wrap4 .text-area ul li figure figcaption {
          font-size: 1.65rem;
          line-height: 1.4em;
          margin-top: 10px; }
  .cont-wrap4.rr {
    padding: 50px 0 0 10vw; }
    .cont-wrap4.rr .img-area {
      left: initial;
      right: 0; }
    .cont-wrap4.rr .text-area {
      margin: 0 auto 0 0;
      padding: 2em clamp(200px, 25%, 1000px) 2em 3em; }
      .cont-wrap4.rr .text-area .title {
        right: initial;
        left: 1em; }

.cont-wrap5 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 60px auto; }
  .cont-wrap5.rr {
    flex-direction: row-reverse; }
  .cont-wrap5 .text-area {
    background: rgba(255, 255, 255, 0.8);
    flex: 1;
    padding: 30px;
    margin: 0 -10% 0 0;
    z-index: 30; }
  .cont-wrap5 .img-area {
    width: 50%; }
    .cont-wrap5 .img-area img {
      width: 100%;
      height: 400px;
      object-fit: cover; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
.bnr-wrap {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
  background: var(--color-secondary);
  width: fit-content;
  padding: 20px 30px;
  margin: 20px auto;
  border-radius: 15px; }

.blog-list-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2%; }
  .blog-list-top li {
    width: 100%; }
    .blog-list-top li a,
    .blog-list-top li > div {
      display: block;
      transition: all 0.3s;
      opacity: 1.0;
      filter: alpha(opacity=100);
      -moz-opacity: 1.0; }
      .blog-list-top li a .img-area,
      .blog-list-top li > div .img-area {
        width: 100%;
        overflow: hidden; }
        .blog-list-top li a .img-area img,
        .blog-list-top li > div .img-area img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          transition: all 1s ease-out; }
      .blog-list-top li a .text-area,
      .blog-list-top li > div .text-area {
        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
        padding: 0.5em;
        margin: 0 auto; }
        .blog-list-top li a .text-area .cat-area,
        .blog-list-top li > div .text-area .cat-area {
          display: flex;
          justify-content: space-between;
          align-items: center; }
          .blog-list-top li a .text-area .cat-area .time,
          .blog-list-top li > div .text-area .cat-area .time {
            color: #333;
            display: block; }
          .blog-list-top li a .text-area .cat-area .cat,
          .blog-list-top li > div .text-area .cat-area .cat {
            background: var(--color-primary);
            color: #fff;
            padding: 0.45em 0.8em;
            line-height: 1; }
        .blog-list-top li a .text-area .title,
        .blog-list-top li > div .text-area .title {
          text-align: left; }
      .blog-list-top li a:hover,
      .blog-list-top li > div:hover {
        filter: alpha(opacity=60);
        -moz-opacity: 0.60;
        opacity: 0.60; }
        .blog-list-top li a:hover .img-area img,
        .blog-list-top li > div:hover .img-area img {
          transform: scale(1.05); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .blog-list-top {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 100px; } }
.blog-list-side {
  margin-bottom: 80px; }
  .blog-list-side ul li {
    font-size: 1.6rem;
    margin: 0.35em 0; }
    .blog-list-side ul li a {
      padding: 10px;
      transition: all 0.3s; }
      .blog-list-side ul li a:hover {
        color: #008dff; }
    .blog-list-side ul li.new a {
      padding: 10px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      transition: all 0.3s; }
      .blog-list-side ul li.new a .img-area {
        width: 67px;
        overflow: hidden; }
        .blog-list-side ul li.new a .img-area img {
          width: 100%;
          height: auto;
          transition: all 1s ease-out; }
      .blog-list-side ul li.new a .text-area {
        width: calc(100% - 67px - 10px);
        margin-left: 10px; }
        .blog-list-side ul li.new a .text-area .title {
          font-size: 1.5rem;
          line-height: 1.4em;
          transition: all 0.3s; }
      .blog-list-side ul li.new a:hover .img-area img {
        transform: scale(1.1); }
      .blog-list-side ul li.new a:hover .text-area .title {
        color: #008dff; }

.blog-wrap h2.blog-title {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4em;
  margin: 0 0 1em 0; }
.blog-wrap .cat-area {
  display: flex;
  margin: 0 0 0.75em 0; }
  .blog-wrap .cat-area time {
    margin-right: 1em;
    font-size: 1.5rem; }
    .blog-wrap .cat-area time span {
      vertical-align: sub; }
  .blog-wrap .cat-area .cat {
    color: #fff;
    background: var(--color-primary);
    padding: 0 0.65em;
    margin: 0 1em 0 0;
    font-size: 1.3rem; }
.blog-wrap .blog-cont p {
  font-size: 1.65rem;
  line-height: 1.4em; }
.blog-wrap .blog-cont img {
  width: inherit;
  max-width: 100%;
  margin: 1em 0 0 0; }
.blog-wrap .blog-cont a {
  color: #0041c9;
  font-size: 1.65rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: .3s; }
  .blog-wrap .blog-cont a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    /*下線の太さ*/
    background-color: #008dff;
    /*下線の色*/
    transition: .3s; }
  .blog-wrap .blog-cont a:hover {
    color: #008dff; }
  .blog-wrap .blog-cont a:hover::after {
    width: 100%; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .blog-wrap {
    padding: 15px; }
    .blog-wrap h2.blog-title {
      font-size: 2.0rem; }
    .blog-wrap .cat-area {
      flex-wrap: wrap; }
      .blog-wrap .cat-area time.blog-detail {
        width: 100%;
        margin: 0 0 0.75em 0; }
      .blog-wrap .cat-area .cat {
        color: #fff;
        padding: 0 0.65em;
        margin: 0 1em 0 0;
        font-size: 1.3rem;
        line-height: 2em; } }
.flow-wrap ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px; }
  .flow-wrap ul > li {
    background: #fff;
    border-radius: 20px;
    position: relative; }
    .flow-wrap ul > li:not(:last-child)::after {
      content: '';
      background: #fff;
      width: 50px;
      height: 4px;
      position: absolute;
      top: 50%;
      right: -50px;
      transform: translateY(-50%); }
    .flow-wrap ul > li dl {
      padding: 20px; }
      .flow-wrap ul > li dl dt {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        padding-top: 15px; }
        .flow-wrap ul > li dl dt .icon {
          width: 50px;
          height: 50px;
          text-align: center;
          border-radius: 100vh;
          display: grid;
          place-items: center;
          background: var(--color-primary);
          color: #fff;
          font-size: 3rem;
          position: absolute;
          top: -25px;
          left: 50%;
          transform: translateX(-50%); }
      .flow-wrap ul > li dl dd {
        margin: 10px auto 0; }

@media screen and (max-width: 767px) {
  .flow-wrap ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px; }
    .flow-wrap ul > li:not(:last-child)::after {
      width: 4px;
      height: 50px;
      top: initial;
      bottom: -50px;
      right: 50%;
      transform: translateX(-50%); }
    .flow-wrap ul > li dl {
      padding: 20px; }
      .flow-wrap ul > li dl dt {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-primary);
        text-align: center;
        padding-top: 15px; }
        .flow-wrap ul > li dl dt .icon {
          top: -25px;
          left: 50%;
          transform: translateX(calc(-50% - 4px)); } }
.lineup-nav-top {
  display: flex;
  margin: 40px auto; }
  .lineup-nav-top li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(25% + 1px);
    padding: 30px;
    border: 1px solid #000; }
    .lineup-nav-top li a {
      font-size: 2.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      transition: all 0.3s;
      position: relative; }
      .lineup-nav-top li a .img-area {
        width: 100%; }
        .lineup-nav-top li a .img-area img {
          width: 100%;
          height: 360px;
          object-fit: cover;
          opacity: 0.4;
          transition: all 0.3s; }
      .lineup-nav-top li a .text-area {
        font-size: 2.4rem;
        color: #000;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center; }
      .lineup-nav-top li a:hover .img-area img {
        opacity: 1; }

.lineup-nav {
  display: flex;
  margin: 40px auto; }
  .lineup-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(25% + 1px);
    border: 1px solid #000; }
    .lineup-nav li a {
      font-size: 2.8rem;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 65px;
      transition: all 0.3s; }
      .lineup-nav li a:hover {
        background: #d9e4ec; }
    .lineup-nav li.active a {
      background: #0077b6;
      color: #fff; }

.lineup-list {
  display: flex;
  flex-wrap: wrap; }
  .lineup-list li {
    width: 25%;
    margin: 0;
    border: 1px solid #000;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(25% + 1px); }
    .lineup-list li a .lineup-list-cont {
      padding: 25px 20px;
      position: relative; }
      .lineup-list li a .lineup-list-cont .img-area {
        width: 100%;
        margin-bottom: 20px; }
        .lineup-list li a .lineup-list-cont .img-area img {
          width: 100%;
          height: 340px;
          object-fit: cover; }
      .lineup-list li a .lineup-list-cont .text-area {
        font-size: 2.4rem;
        color: #000; }

.lineup-wrap .lineup-cont {
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px auto 85px;
  position: relative; }
  .lineup-wrap .lineup-cont .img-area {
    width: 50%;
    max-width: 600px;
    padding: 35px 0;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center; }
    .lineup-wrap .lineup-cont .img-area img {
      width: 100%;
      max-width: 415px;
      height: 550px;
      object-fit: cover; }
  .lineup-wrap .lineup-cont .text-area {
    width: 50%;
    padding: 35px 0 35px 65px; }
    .lineup-wrap .lineup-cont .text-area .name {
      font-family: "Fondamento", serif;
      font-weight: 400;
      font-size: 3rem;
      color: #000; }
    .lineup-wrap .lineup-cont .text-area .size {
      font-size: 2.2rem;
      font-weight: 600;
      color: #000;
      margin-bottom: 40px; }
    .lineup-wrap .lineup-cont .text-area .comment p {
      font-size: 2.2rem;
      line-height: 1.3em; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .lineup-wrap {
    padding: 0 40px; }
    .lineup-wrap .lineup-cont {
      flex-direction: column;
      padding: 40px; }
      .lineup-wrap .lineup-cont .img-area {
        width: 230px; }
        .lineup-wrap .lineup-cont .img-area img {
          width: 230px;
          height: 305px;
          object-fit: cover; }
      .lineup-wrap .lineup-cont .text-area {
        width: 100%; }
        .lineup-wrap .lineup-cont .text-area .name,
        .lineup-wrap .lineup-cont .text-area .board {
          font-size: 1.4rem; }
        .lineup-wrap .lineup-cont .text-area .board {
          margin-bottom: 15px; }
        .lineup-wrap .lineup-cont .text-area .comment p {
          font-size: 1.2rem;
          line-height: 1.3em; } }
ul.page-numbers {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; }
  ul.page-numbers li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    font-size: 2.1rem;
    color: #000;
    font-weight: 400;
    margin: 0 1em; }
    ul.page-numbers li a {
      display: block;
      padding: 0 25px;
      color: #000;
      transition: all 0.3s; }
      ul.page-numbers li a span.prev-arrow {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 1px;
        margin-top: 6.4px;
        border-radius: 9999px;
        background-color: #000; }
        ul.page-numbers li a span.prev-arrow::before {
          content: "";
          position: absolute;
          top: calc(50% - 0.5px);
          left: 0;
          width: 10px;
          height: 1px;
          border-radius: 9999px;
          background-color: #000;
          transform: rotate(-45deg);
          transform-origin: 0.5px 50%; }
      ul.page-numbers li a span.next-arrow {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 1px;
        margin-top: 6.4px;
        border-radius: 9999px;
        background-color: #000; }
        ul.page-numbers li a span.next-arrow::before {
          content: "";
          position: absolute;
          top: calc(50% - 0.5px);
          right: 0;
          width: 10px;
          height: 1px;
          border-radius: 9999px;
          background-color: #000;
          transform: rotate(45deg);
          transform-origin: calc(100% - 0.5px) 50%; }
      ul.page-numbers li a:hover {
        color: #0077b6; }
        ul.page-numbers li a:hover span.prev-arrow {
          background-color: #0077b6; }
          ul.page-numbers li a:hover span.prev-arrow::before {
            background-color: #0077b6; }
        ul.page-numbers li a:hover span.next-arrow {
          background-color: #0077b6; }
          ul.page-numbers li a:hover span.next-arrow::before {
            background-color: #0077b6; }
    ul.page-numbers li .current {
      font-weight: 900;
      display: block;
      pointer-events: none;
      position: relative; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  ul.page-numbers li {
    font-size: 1.6rem;
    margin: 0 0.65em; }
    ul.page-numbers li a {
      padding: 0 10px; }
    ul.page-numbers li .current {
      padding: 0.3em 0.8em; } }
.page-numbers2 {
  display: flex;
  justify-content: space-between;
  margin-top: 150px; }
  .page-numbers2 .prev,
  .page-numbers2 .next {
    width: 48%;
    height: auto; }
    .page-numbers2 .prev a,
    .page-numbers2 .next a {
      background: #fff;
      font-size: 1.8rem;
      display: block;
      height: 100%;
      transition: transform 0.3s;
      border-radius: 5px; }
      .page-numbers2 .prev a .arrow,
      .page-numbers2 .next a .arrow {
        color: #fff;
        font-size: 1.65rem;
        background: var(--color-primary);
        text-align: center;
        padding: 10px 20px;
        border-radius: 5px 5px 0 0;
        transition: .3s; }
      .page-numbers2 .prev a .title,
      .page-numbers2 .next a .title {
        font-size: 1.5rem;
        padding: 10px 20px;
        margin: 0;
        transition: .3s; }
      .page-numbers2 .prev a:hover,
      .page-numbers2 .next a:hover {
        background: #fcfcfc; }
        .page-numbers2 .prev a:hover .arrow,
        .page-numbers2 .next a:hover .arrow {
          background: var(--color-secondary); }
        .page-numbers2 .prev a:hover .title,
        .page-numbers2 .next a:hover .title {
          color: var(--color-secondary); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .page-numbers2 .prev a .arrow,
  .page-numbers2 .next a .arrow {
    font-size: 1.45rem; }
  .page-numbers2 .prev a .title,
  .page-numbers2 .next a .title {
    font-size: 1.4rem; } }
ul.imgnav {
  margin: 0 auto 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  ul.imgnav li {
    width: 25%;
    padding: 15px 5px;
    margin: 0 0 20px 0; }
    ul.imgnav li a {
      display: block;
      transition: all 0.3s; }
      ul.imgnav li a figure {
        position: relative;
        width: 100%;
        height: 230px;
        overflow: hidden; }
        ul.imgnav li a figure img {
          width: 100%;
          height: auto;
          object-fit: cover;
          transition: all 0.85s; }
        ul.imgnav li a figure figcaption {
          background: rgba(var(--color-secondary-rgb), 0.8);
          color: #fff;
          font-size: 2.4rem;
          font-weight: 500;
          line-height: 1.5em;
          margin: 10px auto 0;
          text-align: center;
          position: absolute;
          bottom: 0;
          width: 100%;
          padding: 10px; }
          ul.imgnav li a figure figcaption span {
            display: block;
            font-size: 1.6rem;
            font-weight: 400; }
      ul.imgnav li a:hover figure img {
        transform: scale(1.1); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 1024px) {
  ul.imgnav {
    flex-direction: column; }
    ul.imgnav li {
      width: 100%; } }
ul.imglist {
  margin: 0 auto 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  ul.imglist.al-fe {
    align-items: flex-end; }
  ul.imglist li {
    width: 20%;
    padding: 15px 5px;
    margin: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px; }
    ul.imglist li img {
      width: 100%;
      height: auto; }
  ul.imglist.w14 li {
    width: 14.28%;
    padding: 0 1%; }
  ul.imglist.w25 li {
    width: 24%; }
  ul.imglist.w33 li {
    width: 32.3%; }
  ul.imglist.left {
    justify-content: flex-start; }
  ul.imglist figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; }
    ul.imglist figure figcaption {
      color: #000;
      font-size: 1.9rem;
      font-weight: 500;
      line-height: 1.5em;
      margin: 10px auto 0;
      text-align: center; }
      ul.imglist figure figcaption span {
        display: block;
        font-size: 1.6rem;
        font-weight: 400; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 1024px) {
  ul.imglist {
    padding: 0 15px; }
    ul.imglist li {
      width: 33.3%;
      padding: 0 2%;
      margin: 0 0 10px 0; }
    ul.imglist.w14 li {
      width: 33.3%;
      padding: 0 2%; }
    ul.imglist.w25 li {
      width: 25%; }
    ul.imglist.w33 li {
      width: 100%; }
    ul.imglist.spw50 li {
      width: 50%;
      padding: 0 2%; }
    ul.imglist .imglist-btn .btn3 {
      font-size: 1.3rem; } }
ul.imglist2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%; }
  ul.imglist2 li {
    padding: 20px;
    margin: 0 0 20px 0;
    border: 1px solid var(--color-secondary); }
    ul.imglist2 li .text-area {
      width: 100%;
      margin-top: 0.75em; }
      ul.imglist2 li .text-area .title {
        color: #000;
        font-size: 1.9rem;
        font-weight: 500;
        margin-bottom: 0.35em; }
    ul.imglist2 li .img-area {
      width: 100%; }
      ul.imglist2 li .img-area img {
        width: 100%;
        height: 200px;
        object-fit: cover; }

ul.cont-list li {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  border-bottom: 4px dotted #fff;
  gap: 3%;
  padding: clamp(1.5em, 2.65vw, 2.4em) 3%; }
  ul.cont-list li:first-child {
    border-top: 4px dotted #fff; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  ul.cont-list li {
    font-size: 2rem;
    justify-content: center;
    text-align: center;
    line-height: 1.5em; } }
ul.type1 li {
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 0.75em; }
  ul.type1 li::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 10px 0; }

.btn1 {
  background: #06c755;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: fit-content;
  padding: 25px 65px;
  text-decoration: none;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease-in-out; }
  .btn1 i {
    margin-right: 0.5em; }
  .btn1:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 3.5rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 8px;
    height: 8px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg); }
  .btn1:hover {
    background: var(--color-primary); }
    .btn1:hover:after {
      right: 1.4rem; }
  .btn1.bl {
    background: var(--color-secondary); }
    .btn1.bl:hover {
      background: var(--color-primary); }
  .btn1.left:after {
    right: initial;
    left: 3.5rem;
    transition: left 0.3s;
    border-top: solid 2px currentColor;
    border-right: none;
    border-left: solid 2px currentColor;
    transform: translateY(-50%) rotate(-45deg); }
  .btn1.left:hover:after {
    left: 1.4rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .btn1 {
    padding: 20px 35px;
    font-size: 1.8rem; }
    .btn1:after {
      right: 2.3rem; }
    .btn1.left:after {
      right: initial;
      left: 2.3rem; } }
.btn2 {
  background: #06c755;
  border-radius: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 780px;
  height: 165px;
  text-decoration: none;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease-in-out; }
  .btn2 i {
    margin-right: 0.5em; }
  .btn2:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 6rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 14px;
    height: 14px;
    border-top: solid 3px currentColor;
    border-right: solid 3px currentColor;
    transform: translateY(-50%) rotate(45deg); }
  .btn2:hover {
    background: var(--color-primary); }
    .btn2:hover:after {
      right: 2rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .btn2 {
    font-size: 2.2rem;
    width: 100%;
    height: initial;
    padding: 40px 30px;
    margin: 0 auto; }
    .btn2:after {
      right: 1.8rem; } }
.btn3 {
  background: rgba(var(--color-secondary-rgb), 0);
  border-radius: 2px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  padding: 16px 45px;
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--color-secondary);
  transition: 0.3s ease-in-out; }
  .btn3 i {
    margin-right: 0.5em; }
  .btn3:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1.85rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 8px;
    height: 8px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg); }
  .btn3:hover {
    background: rgba(var(--color-secondary-rgb), 0.25); }
    .btn3:hover:after {
      right: 1.4rem; }
  .btn3.wh {
    background: "rgba(255,255,255,0)";
    border-radius: 2px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    padding: 16px 45px;
    text-decoration: none;
    color: #fff;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1;
    border: 1px solid #fff;
    transition: 0.3s ease-in-out; }
    .btn3.wh:hover {
      background: rgba(255, 255, 255, 0.25); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
dl.access-info {
  text-align: left; }
  dl.access-info div {
    padding: 0.25em 0.5em 0.75em;
    margin-bottom: 0.75em;
    border-bottom: 1px #999 solid; }
    dl.access-info div dt {
      color: #c00;
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.75em;
      width: 9em; }
      dl.access-info div dt span {
        margin-right: 0.5em;
        vertical-align: sub; }
    dl.access-info div dd {
      font-size: 1.8rem;
      line-height: 1.75em; }
    dl.access-info div strong {
      color: #ff0;
      font-weight: 900; }
    dl.access-info div.noborder {
      border: none; }

ul.disc {
  list-style-position: outside;
  margin: 0 0 0 24px; }
  ul.disc li {
    list-style-type: disc;
    margin: 0 0 0.5em 0; }
    ul.disc li:last-child {
      margin: 0; }

ul.disc2 {
  list-style-position: outside;
  margin: 0 0 2em 24px; }
  ul.disc2 li {
    list-style-type: disc;
    margin: 0 0 1em 0; }
    ul.disc2 li:last-child {
      margin: 0; }

ul.check {
  list-style-position: inside; }

ul.check li {
  list-style: none;
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin: 0 0 1em 0;
  font-size: 2.4rem; }

ul.check li:before {
  font-family: 'Material Icons';
  color: #08f;
  content: '\e834';
  margin: 0 0.5em 0 0;
  position: relative;
  top: 0.15em; }

ul.arrow {
  list-style-position: inside; }

ul.arrow li {
  list-style: none;
  padding-left: 1.5em;
  text-indent: -1.5em; }

ul.arrow li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f152";
  font-weight: 900;
  margin: 0 0.5em 0 0; }

ul li.caution:before {
  content: "※";
  font-weight: bold; }

ul.navlist {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 50px auto; }
  ul.navlist li {
    width: 18.5%;
    position: relative; }
    ul.navlist li img {
      width: 100%;
      height: auto;
      border-radius: 50%;
      opacity: 0.4; }
    ul.navlist li p {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.8rem;
      line-height: 1.4em;
      text-align: center;
      width: 100%; }
      ul.navlist li p span {
        display: block;
        font-size: 4rem;
        margin-bottom: 35px; }

ol.num-title-list {
  list-style: none;
  width: 80%;
  min-width: 500px;
  margin: 0 auto; }
  ol.num-title-list li {
    background: #fff;
    padding: 60px 30px 30px 30px;
    margin: 0 0 1em 0; }
    ol.num-title-list li p {
      font-size: 2.4rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  ol.num-title-list {
    width: 100%;
    min-width: initial;
    margin: 0 auto; }
    ol.num-title-list li {
      background: #fff;
      padding: 50px 15px 30px 15px;
      margin: 0 0 1em 0; }
      ol.num-title-list li p {
        font-size: 2rem; } }
ol.type1 {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 40px 0; }
  ol.type1 li {
    font-size: 2.5rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0.5em 0 1.85em;
    padding-left: 35px;
    position: relative;
    text-align: left; }
    ol.type1 li::before {
      content: counter(list-counter);
      counter-increment: list-counter;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      color: rgba(163, 134, 177, 0.6);
      font-family: "Fleur De Leah", cursive;
      font-weight: 400;
      font-size: 7.5rem; }

dl.type1 div {
  display: flex;
  padding: 2em 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #fff; }
  dl.type1 div:first-child {
    border-top: 1px solid #fff; }
  dl.type1 div dt {
    font-size: 2rem;
    font-weight: 400;
    width: 20%; }
  dl.type1 div dd {
    font-size: 2rem;
    font-weight: 400; }

dl.type2 div {
  margin-bottom: 1.5em; }
  dl.type2 div dt {
    font-size: 1.4rem;
    color: #8fc31f;
    margin: 0 0 0.5em 0; }
  dl.type2 div dd {
    font-size: 1.65rem;
    font-weight: 500; }

.faq-list .faq-item {
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-primary); }
  .faq-list .faq-item .faq-question__wrap {
    position: relative;
    background: var(--color-primary);
    padding: 10px 5px 10px 55px;
    cursor: pointer; }
    .faq-list .faq-item .faq-question__wrap .minus-icon,
    .faq-list .faq-item .faq-question__wrap .plus-icon {
      position: absolute;
      content: "";
      width: 20px;
      height: 3px;
      background: #fff;
      right: 20px;
      top: 50%; }
    .faq-list .faq-item .faq-question__wrap .minus-icon {
      transform: translateY(-50%); }
    .faq-list .faq-item .faq-question__wrap .plus-icon {
      transform: translateY(-50%) rotate(90deg);
      transition: ease all 0.5s; }
      .faq-list .faq-item .faq-question__wrap .plus-icon.active {
        transform: translateY(-50%); }
    .faq-list .faq-item .faq-question__wrap .faq-question__title {
      font-weight: 500;
      color: #fff;
      font-size: 2rem;
      position: relative; }
      .faq-list .faq-item .faq-question__wrap .faq-question__title::before {
        position: absolute;
        color: #fff;
        content: "Q";
        top: 50%;
        left: -35px;
        transform: translateY(-50%); }
  .faq-list .faq-item .faq-answer__wrap {
    background: #fff;
    opacity: 0;
    padding: 10px 10px 10px 55px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: ease all 0.7s;
    height: 0; }
    .faq-list .faq-item .faq-answer__wrap.active {
      opacity: 1;
      padding: 10px 10px 10px 55px;
      height: auto; }
    .faq-list .faq-item .faq-answer__wrap .faq-answer__title {
      position: relative;
      font-weight: bold;
      color: var(--color-primary);
      font-size: 2rem; }
    .faq-list .faq-item .faq-answer__wrap .faq-answer__text {
      position: relative;
      color: #000;
      font-size: 1.8rem; }
      .faq-list .faq-item .faq-answer__wrap .faq-answer__text::before {
        position: absolute;
        color: var(--color-primary);
        content: "A";
        top: 15px;
        left: -35px;
        transform: translateY(-50%);
        font-size: 2rem;
        font-weight: 900; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 1024px) {
  .faq-list .faq-item {
    max-width: 90%; }
    .faq-list .faq-item .faq-question__wrap {
      padding: 10px 40px 10px 55px; }
      .faq-list .faq-item .faq-question__wrap .faq-question__title {
        font-size: 1.7rem; }
    .faq-list .faq-item .faq-answer__wrap .faq-answer__title {
      font-size: 1.6rem; }
    .faq-list .faq-item .faq-answer__wrap .faq-answer__text {
      font-size: 1.7rem; }
      .faq-list .faq-item .faq-answer__wrap .faq-answer__text::before {
        font-size: 1.8rem; } }
.table-wrap {
  position: relative;
  overflow-x: auto;
  white-space: nowrap; }
  .table-wrap .scroll-hint {
    display: none; }
  .table-wrap .scroll-hint--show {
    display: none; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .table-wrap .scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
    display: none;
    animation: scroll-hint-animation 2s infinite ease; }
  @keyframes scroll-hint-animation {
    0% {
      transform: translate(-50%, -50%); }
    50% {
      transform: translate(-40%, -50%); }
    100% {
      transform: translate(-50%, -50%); } }
  .table-wrap .scroll-hint--show {
    display: block; } }
table.type1 {
  background: #fff;
  width: 100%;
  text-align: center;
  border-collapse: separate;
  border-spacing: 1px;
  margin: 0 auto; }
  table.type1 thead th {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.75em 1em;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    background: rgba(var(--color-primary-rgb), 1); }
  table.type1 tbody tr th {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0.75em 1em;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    background: rgba(var(--color-primary-rgb), 0.8); }
    table.type1 tbody tr th span {
      font-size: 1.5rem; }
  table.type1 tbody tr td {
    color: #000;
    font-size: 1.8rem;
    background: #fbdea5;
    padding: 0.75em 1em;
    text-align: center;
    vertical-align: middle;
    background: rgba(var(--color-primary-rgb), 0.4); }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
.wpcf7-form {
  margin: 0 auto;
  padding: 80px 0 50px 0; }
  .wpcf7-form p {
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 1.7rem; }
    .wpcf7-form p .mark {
      color: #762d28; }
  .wpcf7-form .form-dl {
    text-align: left;
    margin-bottom: 0; }
    .wpcf7-form .form-dl div {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 0 10px 30px;
      margin-bottom: 30px;
      border-bottom: 1px solid #000; }
      .wpcf7-form .form-dl div:last-of-type {
        margin-bottom: 10px; }
      .wpcf7-form .form-dl div dt {
        display: flex;
        align-items: center;
        width: 280px;
        padding: 0 1em 0 0;
        color: #151515;
        font-size: 2rem;
        font-weight: 400; }
        .wpcf7-form .form-dl div dt .mark {
          color: #fff;
          text-align: center;
          font-size: 1.4rem;
          font-weight: 700;
          line-height: 1;
          background: #555;
          display: inline-block;
          padding: 6px 10px;
          margin: 0 0 0 15px;
          white-space: nowrap; }
          .wpcf7-form .form-dl div dt .mark.req {
            background: #762d28; }
        .wpcf7-form .form-dl div dt.full {
          width: 100%;
          padding: 0; }
      .wpcf7-form .form-dl div dd {
        width: calc(100% - 290px); }
        .wpcf7-form .form-dl div dd p {
          font-size: 1.5rem;
          margin-top: 10px; }
        .wpcf7-form .form-dl div dd.full {
          width: 100%; }
  .wpcf7-form select, .wpcf7-form textarea, .wpcf7-form input:not([type="checkbox"]) {
    background: #fff;
    padding: 0.35em 0.5em;
    font-size: 1.7rem;
    border: none; }
    .wpcf7-form select::placeholder, .wpcf7-form textarea::placeholder, .wpcf7-form input:not([type="checkbox"])::placeholder {
      font-size: 1.6rem;
      color: #aaa; }
  .wpcf7-form input[type="checkbox"] {
    appearance: checkbox;
    width: 20px;
    height: 20px;
    margin-right: 10px; }
  .wpcf7-form textarea {
    height: 170px; }
  .wpcf7-form .select_wrap {
    position: relative; }
    .wpcf7-form .select_wrap::after {
      font: var(--fa-font-solid);
      content: "\f107";
      position: absolute;
      right: 16px;
      top: 50%;
      width: 16px;
      height: 14px;
      pointer-events: none;
      color: #949494;
      font-size: 1.8rem;
      transform: translateY(-50%); }
    .wpcf7-form .select_wrap select {
      width: 100%;
      line-height: 1.5em;
      outline: 0;
      -webkit-appearance: none;
      appearance: none; }
      .wpcf7-form .select_wrap select::-ms-expand {
        display: none; }
      .wpcf7-form .select_wrap select:focus {
        border: 1px solid #0072bc; }
      .wpcf7-form .select_wrap select option {
        background: #fff;
        color: #2e404d; }
        .wpcf7-form .select_wrap select option:nth-child(odd) {
          background: #efefef; }
  .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%; }
    .wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item {
      display: block;
      margin: 0 auto 20px; }
      .wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item.last {
        margin: 0; }
      .wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item label {
        display: flex;
        align-items: center; }
  .wpcf7-form .submit-area {
    text-align: center; }
  .wpcf7-form .form-privacy {
    font-size: 1.6rem; }
    .wpcf7-form .form-privacy .wpcf7-list-item {
      display: block; }
      .wpcf7-form .form-privacy .wpcf7-list-item.last {
        margin: 0; }
      .wpcf7-form .form-privacy .wpcf7-list-item label {
        display: flex;
        justify-content: center;
        align-items: center; }
  .wpcf7-form .submit {
    margin: 20px 0 0 0; }
    .wpcf7-form .submit > input[type="submit"],
    .wpcf7-form .submit > input[type="button"] {
      background: #932117;
      font-family: "Yusei Magic", sans-serif;
      font-weight: 400;
      font-size: 2.6rem;
      color: #fff;
      text-align: center;
      width: fit-content;
      padding: 5px 80px 0;
      cursor: pointer;
      transition: all 0.5s ease; }
      .wpcf7-form .submit > input[type="submit"]:hover,
      .wpcf7-form .submit > input[type="button"]:hover {
        background: #f90000;
        color: #fff; }
  .wpcf7-form .wpcf7-spinner {
    display: block; }
  .wpcf7-form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0.2em .35em !important;
    border: 2px solid #00a0d2 !important;
    background: #fff !important;
    text-align: center !important;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.15em; }
  .wpcf7-form span[data-name="hcap-cf7"] .h-captcha {
    margin: 0 auto; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  .wpcf7-form .form-dl {
    padding: 0 10px; }
    .wpcf7-form .form-dl div {
      flex-direction: column;
      margin-bottom: 40px; }
      .wpcf7-form .form-dl div:last-of-type {
        border-bottom: none; }
      .wpcf7-form .form-dl div dt {
        width: 100%;
        padding: 0; }
      .wpcf7-form .form-dl div dd {
        width: 100%;
        margin-top: 15px; }
  .wpcf7-form select, .wpcf7-form textarea, .wpcf7-form input:not([type="checkbox"]) {
    padding: 0.75em 0.5em;
    width: 100%; }
  .wpcf7-form input[type="checkbox"] {
    width: 35px;
    height: 35px;
    margin-right: 20px; }
  .wpcf7-form textarea {
    height: 400px; }
  .wpcf7-form .submit-area {
    padding: 50px 0 0; }
  .wpcf7-form .form-privacy {
    font-size: 1.4rem;
    margin: 30px auto 0 auto; }
    .wpcf7-form .form-privacy p {
      padding: 0; }
    .wpcf7-form .form-privacy .wpcf7-list-item {
      margin: 20px auto; }
      .wpcf7-form .form-privacy .wpcf7-list-item label input[type="checkbox"] {
        width: 35px;
        height: 35px; }
  .wpcf7-form .submit > input[type="submit"],
  .wpcf7-form .submit > input[type="button"] {
    width: 100%;
    min-height: 75px; } }
.privacypolicy p {
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.5em; }
.privacypolicy li {
  list-style-type: decimal;
  font-size: 1.7rem;
  line-height: 1.5em;
  margin: 0 0 2em 1em; }
  .privacypolicy li::marker {
    font-size: 2rem; }
  .privacypolicy li .title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75em 0; }
  .privacypolicy li p {
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1.5em; }
  .privacypolicy li ul {
    list-style-position: outside;
    margin-left: 1.6em; }
    .privacypolicy li ul li {
      list-style-type: disc;
      margin: 0 0 0.5em 0; }
      .privacypolicy li ul li:last-child {
        margin: 0; }

.cal_wrapper {
  max-width: 960px;
  min-width: 300px;
  margin: 0 auto; }

.googlecal {
  position: relative;
  padding-bottom: 100%;
  height: 0; }

.googlecal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 400px !important; }

@media only screen and (min-width: 1024px) {
  .googlecal {
    padding-bottom: 75%; }

  .googlecal iframe {
    height: 100% !important; } }
.ggmap {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden; }
  .ggmap iframe, .ggmap object, .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .ggmap iframe {
    opacity: 0.9; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
.ggmap-access {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden; }
  .ggmap-access iframe, .ggmap-access object, .ggmap-access embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
/* --------------------------------------------
 youtube setting
 -------------------------------------------- */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /* padding-top: 30px; */
  height: 0;
  overflow: hidden;
  margin: 0 auto 10px auto; }

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.youtube_short {
  position: relative;
  padding-bottom: 177.77%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 10px auto; }

.youtube_short iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* --------------------------------------------
 breadcrumbs setting
 -------------------------------------------- */
.breadcrumbs {
  width: 100%;
  max-width: 1200px;
  padding: 10px 80px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  position: relative;
  z-index: 100; }
  .breadcrumbs a {
    color: #000;
    transition: all .3s; }
    .breadcrumbs a:hover {
      color: #0077b6; }
  .breadcrumbs .home {
    margin: 0 1em 0 0; }
  .breadcrumbs .archive, .breadcrumbs .taxonomy, .breadcrumbs .current-item {
    margin: 0 1em; }

@media only screen and (max-width: 768px) {
  .breadcrumbs {
    display: none; } }
/* --------------------------------------------
backtotop  setting
 -------------------------------------------- */
#backtotop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0;
  z-index: 1500; }

#backtotop a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  background: rgba(180, 180, 180, 0.4); }

#backtotop a i {
  font-size: 3.4rem; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 768px) {
  #backtotop {
    width: 40px;
    height: 40px;
    right: 0; }

  #backtotop a i {
    font-size: 2.8rem; } }
/* --------------------------------------------
flt-bnr  setting
 -------------------------------------------- */
.flt-bnr {
  display: none; }

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media screen and (max-width: 960px) {
  .flt-bnr {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border-top: 2px solid #fff;
    z-index: 8000; }
    .flt-bnr .line {
      background: #00B900; }
    .flt-bnr .tel {
      background: var(--color-secondary); }
    .flt-bnr .insta {
      background: linear-gradient(to right, #f7cf00, #f62502 45%, #b62f52 75%, #713aa6); }
    .flt-bnr .line,
    .flt-bnr .tel,
    .flt-bnr .insta {
      width: 33.333%; }
      .flt-bnr .line a,
      .flt-bnr .tel a,
      .flt-bnr .insta a {
        color: #fff;
        text-decoration: none;
        font-size: 1.7rem;
        font-weight: 500;
        text-align: center;
        display: block;
        width: 100%;
        padding: 0.65em 0.35em; }
        .flt-bnr .line a i,
        .flt-bnr .tel a i,
        .flt-bnr .insta a i {
          font-size: 2.3rem; } }
/* --------------------------------------------
 * Photo
 -------------------------------------------- */
 /*
@media only screen and (max-width : 768px)  {
  .lg-sub-html p {
    display: none;
  }
}
*/
