
/**
* Default
**/

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 55%;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 45%;
  }
}

@media screen and (max-width: 960px) {
  html {
    font-size: 100%;
  }
}

body {
    position: relative;
    width: 100%;
    background-color: var(--color_bg);
    color: var(--color_main);
    line-height: var(--line_height);
    letter-spacing: var(--letter_spacing);
    font-family: var(--font_family);
}

@media screen and (max-width: 960px) {
  body {
    line-height: 1.6;
  }
}

a {
    transition-duration: 0.3s;
}

a:hover {
    opacity: 0.8;
}

/**
* Font
**/

@font-face {
  font-family: "ShipporiMincho-Regular";
  src: url("../fonts/ShipporiMinchoB1-OTF-Regular.otf") format("truetype");
  src: url("../fonts/ShipporiMinchoB1-OTF-Regular.woff") format("woff");
  font-display: swap;
}


@font-face {
  font-family: "ShipporiMincho-SemiBold";
  src: url("../fonts/ShipporiMinchoB1-OTF-SemiBold.otf") format("truetype");
  src: url("../fonts/ShipporiMinchoB1-OTF-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "ShipporiMincho-Bold";
  src: url("../fonts/ShipporiMinchoB1-OTF-Bold.otf") format("truetype");
  src: url("../fonts/ShipporiMinchoB1-OTF-Bold.woff") format("woff");
  font-display: swap;
}

/**
* Layout
**/

.l-body {
  opacity: 0;
  transition-duration: 0.2s;
  transition-delay: 0.02s;
  min-width: 960px;
}

.is-active {
  opacity: 1;
}

.l-wrapper {
  padding: 7rem 0 0;
}

@media only screen and (max-width: 960px) {
  .l-wrapper {
    padding: 8vw 0 0;
  }
}

.l-main {
  padding-top: var(--header_size);
}

.l-content__f {
    width: var(--size_content--full);
}

.l-content__l {
    position: relative;
    max-width: var(--size_content--l);
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .l-content__l {
        width: 100%;
        padding: 0;
    }
}

.l-content__m {
    position: relative;
    max-width: var(--size_content--m);
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .l-content__m {
        width: 100%;
    }
}

.l-content__m02 {
  position: relative;
  max-width: var(--size_content--m2);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
  .l-content__m02 {
      width: 100%;
  }
}

.l-content__s {
    position: relative;
    max-width: var(--size_content--s);
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .l-content__s {
        width: 100%;
    }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.l-padding {
  padding: 0 8rem;
}

@media only screen and (max-width: 960px) {
  .l-padding {
    padding: 0 5vw;
  }
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    color: var(--color_header);
    background: var(--bg_header);
    z-index: 3;
    box-shadow: 0 0 4px 2.8px rgba(98,98,98,0.06);
}

@media only screen and (max-width: 960px) {
  .l-header {
    padding: 0;
    box-shadow: 0 0 4px 2.8px rgba(98,98,98,0.04);
  }
}

.l-footer {
    color: var(--color_footer);
    background: var(--bg_footer);
}

@media only screen and (max-width: 960px) {
  .l-footer {
  }
}

/**
* Project
**/

.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

@media only screen and (max-width: 960px) {
  .p-header {
    height: 58px;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
  }
}

.p-header__logo {
  display: block;
  position: relative;
  width: 280px;
  overflow: hidden;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 1400px) {
  .p-header__logo {
    width: 260px;
  }
}

@media only screen and (max-width: 1200px) {
  .p-header__logo {
    width: 240px;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__logo {
    position: absolute;
    width: 160px;
    top: 14px;
    left: 4vw;
    z-index: 3;
  }
}

.p-header__logo a {
  display: block;
  line-height: 1;
}

.p-header__global {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.4rem; 
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .p-header__global {
    display: none;
  }
}

.p-header__hotel {
  display: flex;
  gap: 2rem;
  font-size: 1.4rem;
}

@media only screen and (max-width: 960px) {
  .p-header__hotel {
    flex-wrap: wrap;
    gap: 5vw;
    margin: 5vw 0;
    padding: 8vw 5vw;
    font-size: 3.6vw;
    background: #f8f7f3;
  }
}

.p-header__hotel li a {
  position: relative;
  padding-bottom: 0.2rem;
}

.p-header__hotel li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition-duration: 0.3s;
  transform: scale(0);
}

@media only screen and (max-width: 960px) {
  .p-header__hotel li a:after {
    display: none;
  }
}

.p-header__hotel li a:hover:after {
  transform: scale(1);
}

@media only screen and (max-width: 960px) {
  .p-header__hotel li a:hover:after {
    display: none;
  }
}

.p-header__hotel--sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .p-header__hotel--sp {
    display: flex;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__hotel li {
    width: 100%;
    text-align: left;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__hotel li a {
    display: block;
    text-align: left;
    background: url(../img/common/icon-link.png) no-repeat;
    background-size: 3vw;
    background-position: 100% center;
  }
}

.p-header__other {
  display: none;
}

@media only screen and (max-width: 960px) {
  .p-header__other {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2vw;
    margin: 4vw 0 0;
    padding: 0 5vw;
    font-size: 3.2vw;
    text-align: left;
  }
}

.p-header__nav {
  font-size: 1.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .p-header__nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 3.8vw;
    text-align: center;
    color: #1d307f;
    overflow: hidden;
  }
}

.p-header__navInner {
  display: flex;
  align-items: center;
  gap: 6rem;
}

@media only screen and (max-width: 1400px) {
  .p-header__navInner {
    gap: 4rem;
  }
}

@media only screen and (max-width: 1200px) {
  .p-header__navInner {
    gap: 2rem;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__navInner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5vw;
    height: 100vh;
    padding: 80px 0 12vw;
    overflow: auto;
  }
}
.p-header__list {
  display: flex;
  gap: 6rem;
}

.l-header__hotel .p-header__list {
  gap: 5.3rem;
}

@media only screen and (max-width: 1400px) {
  .p-header__list {
    display: flex;
    gap: 3.2rem;
  }
}

@media only screen and (max-width: 1200px) {
  .p-header__list {
    display: flex;
    gap: 2rem;
  }
}

@media only screen and (max-width: 960px) {
  .p-header__list {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    width: 100%;
    padding: 0 5vw;
  }
  .l-header__hotel .p-header__list {
    gap: 5vw;
  }
}

.p-header__list li {
}

@media only screen and (max-width: 960px) {
  .p-header__list li {
    line-height: 1;
  }
}

.p-header__list li a {
  display: block;
  position: relative;
  line-height: 1.4;
}

@media only screen and (max-width: 960px) {
  .p-header__list li a {
    text-align: left;
    background: url(../img/common/icon-link.png) no-repeat;
    background-size: 3vw;
    background-position: 100% center;
  }
}

.p-header__list li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition-duration: 0.3s;
  transform: scale(0);
}

@media only screen and (max-width: 960px) {
  .p-header__list li a:after {
    display: none;
  }
}

.p-header__list li a:hover:after {
  transform: scale(1);
}

@media only screen and (max-width: 960px) {
  .p-header__list li a:hover:after {
    display: none;
  }
}

.p-header__lang {
  position: relative;
  display: flex;
  align-items: center;
  width: 7.3rem;
  height: 40px;
  padding: 0 1.4rem;
  border: 1px solid var(--color_main);
  border-radius: 50px;
  text-align: left;
  background-image: url(../img/common/icon-select02.png);
  background-position: calc(100% - 10px) center;
  background-size: 5px;
  background-repeat: no-repeat; 
  font-size: 1.6rem;
  font-weight: 400;
}

.p-header__lang.s-sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .p-header__lang {
    position: absolute;
    top: 12px;
    right: 16.2vw;
    width: 73px;
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
    text-indent: 6px;
    background-position: calc(100% - 16px) center;
  }
  .p-header__lang.s-sp {
    display: block;
  }
  .p-header__lang.s-pc {
    display: none;
  }
}

.p-header__hamburger {
    display: none;
    position: absolute;
    width: 25px;
    height: 30px;
    right: 5.3vw;
    top: 13px; 
    cursor: pointer;
}

@media only screen and (max-width: 960px) {
    .p-header__hamburger {
        display: block;
    }
}

.p-header__hamburger span {
    position: absolute;
    display: inline-block;
    width: 100%;
    right: 0;
    height: 1px;
    background: var(--color_hamburger);
    transition-duration: 0.3s;
}

.p-header__hamburger span:first-child  {
    top: 7px; 
}

.p-header__hamburger.is-active span:first-child  {
    top: 13px;
    transform: rotate(32deg);
}

.p-header__hamburger span:nth-child(2) {
    top: 14px; 
}

.p-header__hamburger.is-active span:nth-child(2)  {
    opacity: 0;
}

.p-header__hamburger span:nth-child(3) {
    bottom: 7px; 
    right: 0;
}

.p-header__hamburger.is-active span:nth-child(3)  {
    bottom: 15px;
    transform: rotate(-32deg);
}

.p-footer {
    position: relative;
    margin: 0 auto;
    padding: 4rem 4rem 0;
    color: var(--color_footer);
    background: var(--bg_footer);
}

@media only screen and (max-width: 960px) {
    .p-footer {
        padding: 10vw 5vw;   
    }
}

.p-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p-footer__logo {
  max-width: var(--size_footerlogo--pc);
  margin: 0 auto;
}

@media only screen and (max-width: 960px) {
    .p-footer__logo {
      max-width: 42vw;
    }
}

.p-footer__navList {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 5rem auto;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}

@media only screen and (max-width: 960px) {
    .p-footer__navList {
      flex-wrap: wrap;
      gap: 4vw 5vw;
      margin: 8vw auto;
      font-size: 3.6vw;
    }
}

@media only screen and (max-width: 960px) {
    .p-footer__navList li {
      width: calc((100% - 5vw) / 2);
    }
}

.p-footer__hotelList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem; 
  padding: 3.8rem 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  background: #263a8c;
}

@media only screen and (max-width: 960px) {
    .p-footer__hotelList {
      flex-wrap: wrap;
      gap: 3.2vw; 
      padding: 4vw 5vw 3.5vw;
      background: #263a8c;
    }
}

.p-footer__hotelList li {
  width: 25%;
  text-align: center;
}

@media only screen and (max-width: 960px) {
    .p-footer__hotelList li {
      justify-content: center;
      width: calc((100% - 3.2vw) / 2);
      text-align: center;
    }
}

.p-footer__globalList {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 5rem auto 2rem;
  font-size: 1.8rem;
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
    .p-footer__globalList {
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 4vw 5vw;
      padding: 0;
      margin: 8vw auto 2vw;
      font-size: 3.6vw;
      /* text-align: center; */
    }
}

@media only screen and (max-width: 960px) {
    .p-footer__globalList li {
      width: calc((100% - 5vw) / 2);
      text-align: center;
    }
}

.p-footer__copy {
  display: block;
  padding: 6rem 0;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
}

@media only screen and (max-width: 960px) {
    .p-footer__copy {
      padding: 8vw 0;
      font-size: 3.2vw;
    }
}

.p-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 1px;
  text-align: right;
  z-index: 3;
}

.p-fixed:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 6px;
  background: #162666;
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .p-fixed:after {
    height: 4px;
  }
}

.p-fixed a {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  padding: 3.4rem 8.2rem;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  background: #162666;
}

@media only screen and (max-width: 960px) {
  .p-fixed a {
    padding: 3.2vw 10vw;
    font-size: 3.6vw;
  }
}

.p-fixed a:hover {
  background: #283b89;
  opacity: 1;
}

.p-sns {
  padding: 8rem 0;
  background: var(--color_accent02);
}

@media only screen and (max-width: 960px) {
  .p-sns {
    padding: 10vw 5vw;
  }
}

.p-sns__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  max-width: 690px;
  margin: 0 auto;
  padding: 2.8rem;
  background: var(--color_bg);
  border-radius: 4px;
  box-shadow: 0 0 2px 3.2px rgb(242 242 242);
}

@media only screen and (max-width: 960px) {
  .p-sns__inner {
    flex-direction: column;
    gap: 3.8vw;
    max-width: 100%;
    margin: 0 auto;
    padding: 5vw;
  }
}

.p-sns strong {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color_accent01);
}

@media only screen and (max-width: 960px) {
  .p-sns strong {
    font-size: 3.2vw;
  }
}

.p-sns__list {
  display: flex;
  gap: 2.8rem;
}

@media only screen and (max-width: 960px) {
  .p-sns__list {
    gap: 8vw;
  }
}

.p-sns__list li {
  width: min(3vw,40px);
}

@media only screen and (max-width: 960px) {
  .p-sns__list li {
    width: 9vw;
  }
}

.c-btn {
  display: inline-block;
  max-width: 266px;
  width: 100%;
  padding: 1.4rem 0 1.5rem;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  border-radius: 50px;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 960px) {
  .c-btn {
    max-width: 44vw;
    padding: 4vw 0;
    font-size: 3.6vw;
  }
}

.c-btn__border {
  border: 2px solid var(--color_bg);
}

.c-btn__white {
  color: var(--color_bg);
  border: 2px solid var(--color_bg);
}

@media only screen and (max-width: 960px) {
  .c-btn__blue {
    border: 1px solid var(--color_bg);
  }
}


.c-btn__white:hover {
  color: var(--color_accent01);
  background: var(--color_bg);
  opacity: 1;
}

.c-btn__blue {
  color: var(--color_accent01);
  border: 2px solid var(--color_accent01);
}

@media only screen and (max-width: 960px) {
  .c-btn__blue {
    border: 1px solid var(--color_accent01);
  }
}

.c-btn__blue:hover {
  color: var(--color_bg);
  background: var(--color_accent01);
  opacity: 1;
}

.c-link {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Montserrat";
}

@media only screen and (max-width: 960px) {
  .c-link {
    font-size: 3.4vw;
  }
}

.c-link:after {
  display: inline-block;
  content: "";
  width: 14px;
  height: 15px;
  margin-left: 8px;
  background: url(../img/common/icon-external.png) no-repeat;
  background-size: 100%;
  font-family: "Montserrat";
  vertical-align: -3px;
}

@media only screen and (max-width: 960px) {
  .c-link:after {
    width: 3.4vw;
    height: 3.6vw;
    vertical-align: 0vw;
  }
}

.c-link span {
  position: relative;
}

.c-link span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition-duration: 0.3s;
  transform: scale(1);
}

@media only screen and (max-width: 960px) {
  .c-link span:before {
  }
}

.c-link span:hover:before {
  transform: scale(0);
}

@media only screen and (max-width: 960px) {
  .c-link span:hover:before {
    transform: scale(1);
  }
}

.c-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl {
    gap: 5vw;
    margin-bottom: 3.2vw;
  }
}

.c-ttl__l {
  margin-bottom: 7.8rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl__l {
    justify-content: center;
    margin-bottom: 5vw;
  }
}

.c-ttl h2,
.c-ttl h3,
.c-ttl h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

@media only screen and (max-width: 960px) {
  .c-ttl h2,
  .c-ttl h3,
  .c-ttl h4 {
    gap: 0;
  }
}

.c-ttl__l h2,
.c-ttl__l h3,
.c-ttl__l h4 {
  gap: 0;
}

@media only screen and (max-width: 960px) {
  .c-ttl__l h2,
  .c-ttl__l h3,
  .c-ttl__l h4 {
    flex-direction: column;
    gap: 0;
  }
}

.c-ttl h2 strong,
.c-ttl h3 strong,
.c-ttl h4 strong  {
  font-size: 4.4rem;
  line-height: 1.1;
  font-family: "Montserrat";
  color: var(--color_accent01);
}

@media only screen and (max-width: 960px) {
  .c-ttl h2 strong,
  .c-ttl h3 strong,
  .c-ttl h4 strong {
    font-size: 5.8vw;
  }
}

.c-ttl__s h2 strong,
.c-ttl__s h3 strong,
.c-ttl__s h4 strong {
  font-size: 4.4rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl__s h2 strong,
  .c-ttl__s h3 strong,
  .c-ttl__s h4 strong {
    font-size: 4vw;
    line-height: 1.2;
  }
}

.c-ttl__l h2 strong,
.c-ttl__l h3 strong,
.c-ttl__l h4 strong {
  font-size: 4.4rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl__l h2 strong,
  .c-ttl__l h3 strong,
  .c-ttl__l h4 strong {
    font-size: 7.2vw;
    line-height: 1.2;
  }
}

.c-ttl h2 small,
.c-ttl h3 small,
.c-ttl h4 small  {
  font-size: 2.8rem;
  margin-top: 0.4rem; 
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
  .c-ttl h2 small,
  .c-ttl h3 small,
  .c-ttl h4 small {
    margin-top: 0.4vw; 
    font-size: 3.4vw;
  }
}

.c-ttl__s h2 small,
.c-ttl__s h3 small,
.c-ttl__s h4 small {
  margin-top: 0.2rem; 
  font-size: 2.8rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl__s h2 small,
  .c-ttl__s h3 small,
  .c-ttl__s h4 small {
    margin-top: 0vw; 
    font-size: 3.2vw;
  }
}

.c-ttl__l h2 small {
  margin-top: 1.4rem; 
  font-size: 2.8rem;
}

@media only screen and (max-width: 960px) {
  .c-ttl__l h2 small {
    margin-top: 0vw; 
    font-size:3.6vw;
  }
}

.c-ttl__block h2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}

@media only screen and (max-width: 960px) {
  .c-ttl__block h2 {
    justify-content: center;
    align-items: center;
    gap: 1.2vw;
  }
}

.c-breadcrumb {
  padding: 0 8rem;
}

@media only screen and (max-width: 960px) {
  .c-breadcrumb {
    padding: 0 5vw;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 3.2rem;
  max-width: var(--size_content--l);
  margin: 2.8rem 0;
  color: var(--color_main);
  font-size: 1.4rem;
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
  .c-breadcrumb__list {
    gap: 1.2vw 7vw;
    margin: 2.8vw 0 0;
    font-size: 2.8vw;
  }
}

.c-breadcrumb__list li {
  position: relative;
}

.c-breadcrumb__list li:after {
  content: "/";
  position: absolute;
  right: -1.7rem;
  top: 0;
  transform: translate(0,0);
}

@media only screen and (max-width: 960px) {
  .c-breadcrumb__list li:after {
    right: -4vw;
  }
}

.c-breadcrumb__list li:last-child:after {
  display: none;
}

.c-pageTtl {
  position: relative;
  height: 300px;
  margin-bottom: 4rem;
  padding: 0 8rem;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl {
    height: 40vw;
    margin-bottom: 0;
    padding: 0 5vw;
  }
}

.c-pageTtl__none {
  margin-bottom: -6rem;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl__none {
    margin-bottom: -3vw;
  }
}

.c-pageTtl:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 40%;
  height: 100%;
  /*background: linear-gradient(to right, rgba(255,255,255,0) 0, #1D307F 80%);*/
  background: linear-gradient(to right, #1D307F 50%, rgba(52,87,229,0) 100%);
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl:after {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3)
  }
}

.c-pageTtl__none:after {
    display: none;
}

.c-pageTtl__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl__none .c-pageTtl__inner {
    padding-top: 11vw;
  }
}

.c-pageTtl__wrap h1 {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
  margin-top: 5rem;
  color: #fff;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl__wrap h1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.4vw;
    margin-top: 0;
  }
}

.c-pageTtl__none h1 {
  color: var(--color_main);
}

.c-pageTtl__wrap h1 strong {
  font-size: 6rem;
  line-height: 0.7;
  font-family: "Montserrat";
}

@media only screen and (max-width: 960px) {
  .c-pageTtl__wrap h1 strong {
    font-size: 8.2vw;
  }
}

.c-pageTtl__wrap h1 small {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl__wrap h1 small {
    font-size: 3.6vw;
  }
}

.c-pageTtl .c-breadcrumb {
  position: absolute;
  top: 30px; 
  padding: 0;
}

@media only screen and (max-width: 960px) {
  .c-pageTtl .c-breadcrumb {
    top: 2.8vw; 
  }
}

.c-pageTtl .c-breadcrumb__list {
  margin: 0;
  color: var(--color_bg);
}

.c-pageTtl__none .c-breadcrumb__list {
  color: var(--color_main);
}

.c-explan {
  display: flex;
  flex-direction: column;
  gap: 4.3rem;
}

@media only screen and (max-width: 960px) {
  .c-explan {
    gap: 5vw;
  }
}

.c-explan + section {
  margin-top: 8rem;
} 

@media only screen and (max-width: 960px) {
  .c-explan + section {
    margin-top: 8vw;
  }
}

.c-explan__ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: "ShipporiMincho-Regular";
}

@media only screen and (max-width: 960px) {
  .c-explan__ttl {
    font-size: 3.6vw;
  }
}

.c-explan__desc {
  font-size: 1.8rem;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  .c-explan__desc {
    font-size: 3.6vw;
  }
}

.c-explan__note {
  display: block;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  .c-explan__note {
    margin-top: 2vw;
    font-size: 3.2vw;
  }
}

.c-explan__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-explan__inner {
    gap: 5vw;
  }
}

.c-paging__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem 0 8rem;
}

@media only screen and (max-width: 960px) {
  .c-paging__list {
    gap: 5vw;
    margin: 8.8vw 0 10vw;
  }
}

.c-paging__list li {
  width: 50px;
  height: 50px;
}

@media only screen and (max-width: 960px) {
  .c-paging__list li {
    width: 12vw;
    height: 12vw;
  }
}

.c-paging__list li a,
.c-paging__list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  color: var(--color_accent01);
  text-align: center;
  border-radius: 100%;
  font-family: "Montserrat";
}

@media only screen and (max-width: 960px) {
  .c-paging__list li a,
  .c-paging__list li span {
    font-size: 3.6vw;
  }
}

.c-paging__list li a {
  border: 2px solid #ddd;
}

@media only screen and (max-width: 960px) {
  .c-paging__list li a {
    border: 1px solid #ddd;
  }
}

.c-paging__list li span {
  border: 2px solid var(--color_accent01);
  background: #EDEFF6;
}

@media only screen and (max-width: 960px) {
  .c-paging__list li span {
    border: 1px solid var(--color_accent01);
  }
}

.c-index {
  margin: 10rem 0;
}

@media only screen and (max-width: 960px) {
  .c-index {
    margin: 10vw 0;
  }
}

@media only screen and (max-width: 960px) {
  .c-index__inner {
    padding: 12vw 0;
    border-top: 2px solid var(--color_border02);
    border-bottom: 2px solid var(--color_border02);
  }
}

.c-index__list {
  display: flex;
  gap: 4rem;
}

@media only screen and (max-width: 960px) {
  .c-index__list {
    flex-direction: column;
    gap: 5vw;
  }
}

.c-index__item {
  position: relative;
  width: calc((100% - 8rem) / 3);
}

@media only screen and (max-width: 960px) {
  .c-index__item {
    display: flex;
    width: 100%;
    background: #f7f7f7;
  }
}

.c-index__list--3column .c-index__item {
  width: calc((100% - 8rem) / 3);
}

@media only screen and (max-width: 960px) {
  .c-index__list--3column .c-index__item {
    width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .c-index__item a {
    position: relative;
    display: flex;
    width: 100%;
  }
}

@media only screen and (max-width: 960px) {
  .c-index__item a:after {
    position: absolute;
    top: 50%;
    right: 4vw;
    content: "";
    width: 3.6vw;
    height: 3vw;
    background: url(../img/common/icon-select.svg) no-repeat;
    background-size: 100%;
    display: flex;
    /* width: 100%; */
    transform: translate(0,-50%);
  }
}

.c-index__list--4column .c-index__item {
  width: calc((100% - 12rem) / 2);
}

@media only screen and (max-width: 960px) {
  .c-index__list--4column .c-index__item {
    width: 100%;
  }
}

.c-index__img {
  position: relative;
}

@media only screen and (max-width: 960px) {
  .c-index__img {
    position: relative;
    width: 43%;
    height: 26vw;
  }
}

@media only screen and (max-width: 960px) {
  .c-index__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.c-index__img:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/common/icon-index-w.svg);
  background-size: 100%;
  transform: translate(-50%,-50%);
  z-index: 1;
  transition-duration: 0.3s
}

@media only screen and (max-width: 960px) {
  .c-index__img:after {
    display: none;
  }
}

.c-index__item:hover .c-index__img:after {
  animation:fuwafuwa 3s infinite linear alternate;
}

  @keyframes fuwafuwa {
  0% {transform:translate(-50%, -50%);}
  50% {transform:translate(-50%, -65%);}
  100% {transform:translate(-50%, -50%);}
}

.c-index__name {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-index__name {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 60%;
    gap: 2.8vw;
    margin-top: 0;
    padding: 4vw 5vw;
  }
}

.c-index__name h4 strong {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--color_accent01);
  font-family: "Montserrat";
}

@media only screen and (max-width: 960px) {
  .c-index__name h4 strong {
    margin-bottom: 1.2vw;
    font-size: 4.4vw;
  }
}

.c-index__name h4 small {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
}

@media only screen and (max-width: 960px) {
  .c-index__name h4 small {
    font-size: 3.6vw;
  }
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
}

@media only screen and (max-width: 960px) {
  .c-form {
     flex-direction: column;
     gap: 6vw;
  }
}

.c-form__item {
  display: flex;
  gap: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-form__item {
     flex-direction: column;
     gap: 2.8vw;
  }
}

.c-form__label {
  min-width: 18.2rem;
  margin-top: 1.2rem;
  font-size: 1.8rem;
}

@media only screen and (max-width: 960px) {
  .c-form__label {
    min-width: inherit;
    margin-top: 0;
    font-size: 3.6vw;
  }
}

.c-form__label label sup {
  margin-left: 0.2rem;
  font-size: 1.2rem;
  vertical-align: 0.4rem;
}

@media only screen and (max-width: 960px) {
  .c-form__label label sup {
    margin-left: 0.2vw;
    font-size: 2.6vw;
    vertical-align: 4px;
  }
}

.c-form__input {
  width: 100%;
  font-size: 1.4rem;
}

@media only screen and (max-width: 960px) {
  .c-form__input {
    font-size: 3.6vw;
  }
}

.c-form__input span {
  display: block;
}

.c-form__input ::placeholder {
  color: #999999;
}

.c-form__input input[type="text"],
.c-form__input input[type="tel"],
.c-form__input input[type="mail"],
.c-form__input input[type="password"],
.c-form__input textarea {
  width: 100%;
  padding: 1.2rem 2rem;
  border: 2px solid var(--color_border02);
  background: var(--color_bg);
}

@media only screen and (max-width: 960px) {
  .c-form__input input[type="text"],
  .c-form__input input[type="tel"],
  .c-form__input input[type="mail"],
  .c-form__input input[type="password"],
  .c-form__input textarea {
  padding: 3.4vw 2.8vw;
  }
}

.c-form__input textarea {
  resize: none;
  height: 250px;
  white-space: pre-wrap;
}

@media only screen and (max-width: 960px) {
  .c-form__input textarea {
    height: 52vw;
  }
}

.c-form__note {
  display: block;
  margin-top: 1.2rem;
}

@media only screen and (max-width: 960px) {
  .c-form__note {
    margin-top: 2.8vw;
    font-size: 3.2vw;
  }
}

.p-form__btn {
  margin-top: 4rem;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .p-form__btn {
    margin-top: 6vw;
  }
}

.p-form__btn .c-btn {
  background: var(--color_bg);
}

.p-form__btn .c-btn:hover {
  color: var(--color_bg);
  background: var(--color_accent01);
}

.c-txt {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 0;
  border-top: 4px solid var(--color_border02);
}

@media only screen and (max-width: 960px) {
  .c-txt {
    gap: 4vw;
    padding: 10vw 0;
    border-top: 2px solid var(--color_border02);
  }
}

.c-txt * {
  font-size: 1.8rem;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  .c-txt * {
    font-size: 3.6vw;
  }
}

.c-txt h2 {
  font-size: 2.2rem;
}

@media only screen and (max-width: 960px) {
  .c-txt h2 {
    font-size: 4vw;
  }
}

.c-txt h3 {
  font-size: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-txt h3 {
    font-size: 3.8vw;
  }
}

.c-txt h4 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 960px) {
  .c-txt h4 {
    font-size: 3.6vw;
  }
}

.c-txt ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-txt ul {
    gap: 2vw;
    padding-left: 5vw;
  }
}

.c-txt ul li {
  padding-left: 1.5em;
  text-indent: -2.6em;
}

.c-data {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
  border-top: 2px solid var(--color_border02);
}

@media only screen and (max-width: 960px) {
  .c-data {
    gap: 4vw;
    padding: 4vw 0;
    border-top: 2px solid var(--color_border02);
  }
}

.c-data:first-child {
  padding: 0 0 4rem;
  border-top: 00;
}

@media only screen and (max-width: 960px) {
  .c-data:first-child {
    padding: 0 0 4vw;
  }
}

.c-data * {
  font-size: 1.8rem;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  .c-data * {
    font-size: 3.6vw;
  }
}

.c-data dl {
  display: flex;
  gap: 2rem;
}

@media only screen and (max-width: 960px) {
  .c-data dl {
    flex-direction: column;
    gap: 2vw;
  }
}

.c-data dl dt {
  min-width: 34.4rem;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .c-data dl dt {
    min-width: inherit;
  }
}

@media only screen and (max-width: 960px) {
  .c-data dl dt p {
    font-size: 3.6vw;
  }
}

.c-data address,
.c-data address a {
  font-size: 1.8rem;
}

@media only screen and (max-width: 960px) {
  .c-data address,
  .c-data address a {
    font-size: 3.6vw;
  }
}

.c-data a {
  text-decoration: underline;
}

@media only screen and (max-width: 960px) {
  .c-data dl dd p {
    font-size: 3.6vw;
  }
}

.c-data__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media only screen and (max-width: 960px) {
  .c-data__list {
    gap: 8vw;
  }
}

@media only screen and (max-width: 960px) {
  .c-data__list p {
    font-size: 4.4vw;
  }
}

/**
* Situation
**/

.s-pc {
    display: block;
}

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

.s-sp {
    display: none;
}

@media only screen and (max-width: 960px) {
    .s-sp {
        display: block;
    }
}

.s-pc__inline {
    display: inline;
}

@media only screen and (max-width: 960px) {
    .s-pc__inline {
        display: none;
    }
}

.s-sp__inline {
    display: none;
}

@media only screen and (max-width: 960px) {
    .s-sp__inline {
        display: inline;
    }
}

.s-pc__flex {
    display: flex;
}

@media only screen and (max-width: 960px) {
    .s-pc__flex {
        display: none;
    }
}

.s-sp__flex {
    display: none;
}

@media only screen and (max-width: 960px) {
    .s-sp__flex {
        display: flex;
    }
}
