/*
 * FLOCSS
 * -----------------------------------------------------------------
 * Foundation: Reset, Base styles
 * Layout:     Header, Footer, Container, Grid...
 * Object:
 *   - Component: Reusable, smaller parts
 *   - Project:   Project-specific parts
 *   - Utility:   Helper classes
 * -----------------------------------------------------------------
 */

/*
 * =================================================================
 * Foundation
 * =================================================================
 */

/* Basic CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  /* scroll-behavior: smooth; */
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

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

/* Base Styles */
body {
  font-family: Hiragino Kaku Gothic Pro,Noto Sans JP,"游ゴシック体", "Yu Gothic", YuGothic,"\30D2\30E9\30AE\30CE\89D2\30B4  Pro W3",Sans-Serif;
  background-color: #DF0212;
  color: #fff;
  font-size: 12px;
  line-height: 1.6;
  padding-bottom: 85px;
}

body.is-drawer-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body {
    min-width: 1280px;
    padding-bottom: 0;
  }
}



/*
 * =================================================================
 * Layout
 * =================================================================
 */
.l-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.l-footer {
  background-color: #fff;
  color: #333;
  padding: 24px 0;
}

@media (min-width: 768px) {
  .l-container {
    max-width: 1920px;
    padding-left: 0;
    padding-right: 0;
  }
}

/*
 * =================================================================
 * Object >> Component
 * =================================================================
 */

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #fff;
  color: #DF0212;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease-out;
}

/* アイコン共通スタイル */
.c-button[class*="c-button--icon-"]::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* アイコン種類 */
.c-button--icon-review::before {
  width: 20px;
  height: 20px;
  background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_review_1.png");
}
.c-button--icon-review.c-button--medium::before,
.c-button--icon-review.c-button--large::before {
  width: 24px;
  height: 24px;
  background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_review_1.png");
}

.c-button--icon-search::before {
  width: 20px;
  height: 20px;
  background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_search_1.png");
}

@media (min-width: 768px) {
  .c-button--icon-review.c-button--large::before {
    width: 28px;
    height: 28px;
    background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_review_1.png");
  }
  .c-button--icon-search.c-button--medium::before {
    width: 24px;
    height: 24px;
    background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_search_1.png");
  }
}

/* Sizes */
.c-button--large {
  padding: 10px 20px;
  font-size: 16px;
  height: 44px;
}
.c-button--medium {
  padding: 8px 16px;
  font-size: 16px;
  height: 48px;
}
.c-button--small {
  padding: 4px 8px;
  font-size: 14px;
  height: 40px;
}

@media (min-width: 768px) {
  .c-button--large {
    font-size: 20px;
    width: 400px;
    height: 56px;
  }
}

@media (min-width: 768px) {
  .c-button:hover {
    background-color: #DF0212;
    border-color: #fff;
    color: #fff;
  }
  .c-button.c-button--icon-review:hover::before {
    background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_review_2.png");
  }
  .c-button.c-button--icon-search:hover::before {
    background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/icon_search_2.png");
  }
}


.c-section-title {
  text-align: center;
  margin-bottom: 24px;
}
.c-section-title__en {
  display: block;
  font-family: "DIN 2014", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.c-section-title__ja {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
}
.c-section-description {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 16px;
}
.c-section-description span {
  font-size: 10px;
}

@media (min-width: 768px) {
  .c-section-title {
    margin-bottom: 32px;
  }
  .c-section-title__en {
    font-size: 14px;
  }
  .c-section-title__ja {
    font-size: 32px;
  }
  .c-section-description {
    font-size: 14px;
  }
}


/*
 * =================================================================
 * Object >> Project
 * =================================================================
 */

/* Display Helpers */
.is-sp { display: block; }
.is-sp-374 { display: none; }
.is-pc { display: none; }

@media (max-width: 374px) {
  .is-sp-374 { display: block; }
}

@media (min-width: 768px) {
  .is-sp { display: none; }
  .is-pc { display: block; }
}

/* ----------------------------------
 * Header
 * ---------------------------------- */

@media (min-width: 768px) {
  .p-header.is-pc {
      padding: 12px 0;
  }
  .p-header__inner {
    /* width: 1032px; */
    width: 872px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* padding: 8px 24px; */
    padding: 8px 16px;
    background-color: #DF0212;
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
  }
  .p-header__logo {
    margin-right: auto;
  }
  .p-header__logo img {
    width: 92px;
    height: 37px;
  }
  .p-header__nav {
    margin-right: 24px;
  }
  .p-header__nav-list {
    display: flex;
    /* gap: 32px; */
    gap: 16px;
  }
  .p-header__nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    transition: opacity 0.3s ease-out;
  }
  .p-header__nav-link:hover {
    opacity: 0.7;
  }

  .p-header__cta .c-button {
    width: 220px;
    height: 48px;
  }
}

/* ----------------------------------
 * Hamburger Menu (SP)
 * ---------------------------------- */
.p-hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: #DF0212;
  text-align: center;
}
.p-hamburger__icon::before,
.p-hamburger__icon::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 1px;
  background-color: #fff;
}
.p-hamburger__icon::before {
  top: 17px;
}

.p-hamburger__text {
  display: block;
  padding-top: 21px;
  font-family: "DIN 2014", sans-serif;
  font-size: 10px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ----------------------------------
 * Drawer Menu (SP)
 * ---------------------------------- */
.p-drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 327px;
  height: 100%;
  background-color: #DF0212;
  z-index: 1000;
  padding: 0 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.p-drawer-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.p-drawer-menu__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
}
.p-drawer-menu__logo img {
  width: 145px;
  height: 60px;
}

.p-drawer-menu__close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0.8px solid #fff;
  background-color: transparent;
  text-align: center;
}
.p-drawer-menu__close-icon::before,
.p-drawer-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 18px;
  height: 1px;
  background-color: #fff;
}
.p-drawer-menu__close-icon::before {
  transform: rotate(45deg);
}
.p-drawer-menu__close-icon::after {
  transform: rotate(-45deg);
}
.p-drawer-menu__close-text {
  display: block;
  padding-top: 24px;
  font-family: "DIN 2014", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-drawer-menu__nav {
  margin-top: 32px;
}
.p-drawer-menu__list {
  border-bottom: 1px solid #fff;
}
.p-drawer-menu__item {
  border-top: 1px solid #fff;
}
.p-drawer-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.p-drawer-menu__link img {
  margin-right: 8px;
}
.p-drawer-menu__cta {
  margin-top: 56px;
}
.p-drawer-menu__cta .c-button {
  width: 100%;
  height: 56px;
  font-size: 16px;
  background-color: #FAFAFA;
  border-color: #FAFAFA;
}
.p-drawer-menu__cta .c-button__icon {
  filter: invert(15%) sepia(89%) saturate(4649%) hue-rotate(345deg) brightness(92%) contrast(100%);
}
.p-drawer-menu__share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 0 16px;
}
.p-drawer-menu__share-title {
  font-family: "DIN 2014", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.p-drawer-menu__sns-list {
  display: flex;
  gap: 24px;
}
.p-drawer-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease-out, visibility 300ms ease-out;
}
.p-drawer-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ----------------------------------
 * Main Visual
 * ---------------------------------- */
.p-mv {
  position: relative;
  height: calc(698 / 375 * 100vw);
  background: #000 url("https://img.goo-net.com/cache/lp/search/kankoucp202508/sp/mv_bg.jpg") no-repeat center center / cover;
  display: flex;
  flex-direction: column;
}
.p-mv__content {
  padding: 0 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  padding-bottom: 24px;
}
.p-mv__lead-text {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 0 4px rgba(0,0,0,0.2);
  text-align: left;
}
.p-mv__title-wrapper {
  margin: 44px auto 0;
}
.p-mv__title-img {
  width: 100%;
  height: auto;
}
.p-mv__cta {
  margin-top: calc(20 / 375 * 100vw);
  text-align: center;
}
.p-mv__cta .c-button {
  width: 100%;
}
.p-mv__cta-note {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}
.p-mv__cta-note span {
  font-size: 8px;
}

@media (min-width: 768px) {
  .p-mv {
    height: 800px;
    background-image: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/mv_bg.jpg");
    background-size: 2220px 800px;
  }
  .p-mv__content {
    justify-content: flex-start;
    padding: 0;
    align-items: center;
  }
  .p-mv__lead-text {
    margin-top: 88px;
  }
  .p-mv__title-wrapper {
    width: 752px;
    margin-top: 13px;
  }
  .p-mv__cta {
    margin-top: 24px;
  }
  .p-mv__cta .c-button {
    width: 400px;
    height: 56px;
  }
  .p-mv__cta-note {
    font-weight: 300;
  }
}

/* ----------------------------------
 * Lineup
 * ---------------------------------- */
.p-lineup {
  padding: 72px 0 0;
}
.p-lineup .l-container {
    max-width: 100%;
}
.p-lineup__list {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.p-lineup__item {
  width: 50%;
  padding: 4px;
  aspect-ratio: 1/1;
}
.p-inn-card {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.p-inn-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-inn-card:hover .p-inn-card__img {
  transform: scale(1.1);
}
.p-inn-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,0.56);
}
.p-inn-card__region {
  font-size: 13px;
  font-weight: 600;
}
.p-inn-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .p-lineup {
    padding: 72px 0 0;
  }
  .p-lineup__list {
    max-width: 1280px;
    margin: 32px auto 0;
  }
  .p-lineup__item {
    width: 20%;
    padding: 0;
  }
  .p-inn-card__overlay {
    padding: 16px;
  }
  .p-inn-card__region {
    font-size: 15px;
  }
  .p-inn-card__name {
    font-size: 20px;
  }
}

/* ----------------------------------
 * Flow
 * ---------------------------------- */
.p-flow {
  padding: 72px 0 0;
}
.p-flow .l-container {
  max-width: 960px;
}
.p-flow__steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.p-flow__step {
  width: 100%;
}
.p-flow-step {
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: left;
}
.p-flow-step__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 16px;
  white-space: nowrap;
}
.p-flow-step__number {
  font-family: "DIN 2014", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
}
.p-flow-step__description {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.p-flow-step__cta .c-button {
  margin-top: 12px;
  width: 100%;
}
.p-flow-step__cta:not(:last-of-type) {
  margin: 16px 0 12px;
}
.p-flow-step__logo {
  line-height: 1;
  text-align: center;
}
.p-flow-step__cta-single {
  margin-top: 16px;
}
.p-flow-step__cta-single .c-button {
  width: 100%;
}
.p-flow-step__note {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 8px;
}
.p-flow__icon-wrapper {
  margin-top: 40px;
  position: relative;
  width: 100%;
  text-align: center;
}
.p-flow__icon-wrapper::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/sp/flow_bg.png") repeat-x bottom;
  background-size: auto 2px;
}
.p-flow__step:not(:first-of-type) .p-flow__icon-wrapper img {
  margin-left: 10px;
}

@media (max-width: 374px) {
  .p-flow__step:nth-child(2) .p-flow__icon-wrapper img {
    margin-left: calc(322 / 375 * 100vw);
  }
  .p-flow__step:not(:first-of-type) .p-flow__icon-wrapper img {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .p-flow {
    padding: 80px 0 0;
  }
  .p-flow__steps {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 365px;
    max-width: 960px;
    margin: 0 auto;
    background: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/flow_bg.png") no-repeat bottom;
    background-size: 960px auto;
  }
  .p-flow__step {
    flex-shrink: 0;
    width: 272px;
  }
  .p-flow-step {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .p-flow-step__title {
    justify-content: center;
  }
  .p-flow-step__logo img {
    width: 94px;
    height: 18px;
  }
  .p-flow-step__cta {
    align-items: center;
  }
  .p-flow-step__cta:not(:last-of-type) {
    margin: 16px 0;
  }

  .p-flow-step__cta .c-button {
    width: 186px;
    margin-top: 8px;
  }
  .p-flow-step__cta-single .c-button {
    width: 186px;
  }
  .p-flow__icon-wrapper {
    background: none;
    width: auto;
  }
}

/* ----------------------------------
 * Rule
 * ---------------------------------- */
.p-rule {
  padding: 88px 0 0;
}
.p-rule .l-container {
  max-width: none;
  padding: 0 16px;
}
.p-rule__content-wrapper {
  position: relative;
  margin: 24px auto 0;
  padding: 4px 3px 4px 0;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
}
.p-rule__content-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 18px);
  height: 50px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  border-radius: 0 0 4px 4px;
  pointer-events: none;
}
.p-rule__content {
  max-height: 504px;
  padding: 20px 13px 44px 16px;
  overflow-y: scroll;
}
.p-rule__content::-webkit-scrollbar {
  width: 8px;
}
.p-rule__content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.p-rule__content::-webkit-scrollbar-thumb {
  background: #DF0212;
  border-radius: 4px;
}
.p-rule__content::-webkit-scrollbar-thumb:hover {
  background: #b3020e;
}
.p-rule__content {
  scrollbar-width: thin;
  scrollbar-color: #DF0212 #f1f1f1;
}
.p-rule__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.p-rule__text {
  font-size: 14px;
  line-height: 1.5;
}
.p-rule__section {
  margin-top: 20px;
}
.p-rule__sub-title {
  font-weight: 600;
  font-size: 14px;
}
.p-rule__inn {
  max-width: 320px;
  padding: 20px;
  background: #F7F7F7;
}
.p-rule__inn-list li {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.p-rule__inn-region {
  margin-right: 5px;
  font-weight: 600;
}
.p-rule__inn-link {
  text-decoration: underline;
  color: #DF0212;
}
.p-rule__list {
  list-style: none;
}
.p-rule__list li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 1.5;
}
.p-rule__list li::before {
  content: "・";
}
.p-rule__link {
  color: #DF0212;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .p-rule {
    padding: 96px 0 0;
  }
  .p-rule .l-container {
    padding: 0 40px;
    max-width: 1040px;
  }
  .p-rule__content-wrapper {
    max-width: 960px;
    padding: 4px 3px 4px 0;
  }
  .p-rule__content {
    max-height: 312px;
    padding: 24px 37px 44px 40px;
    overflow-y: scroll;
  }
  .p-rule__inn-link,
  .p-rule__link {
    transition: text-decoration 0.3s ease-out;
  }
  .p-rule__inn-link:hover,
  .p-rule__link:hover {
    text-decoration: none;
  }
}

/* ----------------------------------
 * CTA
 * ---------------------------------- */
.p-cta {
  padding: 72px 0 16px;
  text-align: center;
}
.p-cta .l-container {
  max-width: 960px;
}
.p-cta__wrapper {
  position: relative;
  padding-bottom: 96px;
  background: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/sp/cv.png") no-repeat center bottom;
  background-size: 178px auto;
}
.p-cta__wrapper::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/sp/flow_bg.png") repeat-x bottom;
  background-size: 2px auto;
}
.p-cta__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.p-cta__buttons {
  max-width: 343px;
  margin: 24px auto 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.p-cta__buttons .c-button {
  width: 100%;
}
.p-cta__button-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .p-cta {
    padding: 96px 0;
  }
  .p-cta__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    background: url("https://img.goo-net.com/cache/lp/search/kankoucp202508/pc/cv_bg.png") no-repeat left bottom;
    background-size: 360px auto;
  }
  .p-cta__wrapper::after {
    content: none;
  }
  .p-cta__title {
    width: 360px;
    height: 200px;
    font-size: 36px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: left;
  }
  .p-cta__buttons {
    flex-direction: row;
    justify-content: space-between;
    width: 560px;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .p-cta__button-item {
    width: 272px;
  }
  .p-cta__logo-wrapper img {
    width: 140px;
    height: 27px;
  }
  .p-cta__buttons .c-button {
    height: 56px;
    font-size: 18px;
  }
  .p-cta__share {
    margin-top: 96px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  .p-cta__share-title {
    font-family: "DIN 2014", sans-serif;
    font-size: 18px;
    font-weight: 600;
  }
  .p-cta__sns-list {
    display: flex;
    gap: 32px;
  }
  .p-cta__sns-item a {
    transition: opacity 0.3s ease-out;
  }
  .p-cta__sns-item a:hover {
    opacity: 0.7;
  }

}

/* ----------------------------------
 * SP Floating CTA Footer
 * ---------------------------------- */
.p-sp-cta-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 85px;
  background-color: #DF0212;
  padding: 8px 16px;
  z-index: 50;
  text-align: center;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.4s ease-out, visibility 0.4s;
}
.p-sp-cta-footer.is-visible {
    visibility: visible;
    transform: translateY(0);
}

.p-sp-cta-footer .c-button {
  width: 100%;
}
.p-sp-cta-footer__note {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 300;
  margin: 6px -16px 0;
  text-align: center;
}

@media (max-width: 374px) {
  .p-sp-cta-footer__note {
    margin-top: 4px;
  }
}

/* ----------------------------------
 * To Top Button
 * ---------------------------------- */
.p-to-top {
  display: block;
  position: fixed;
  bottom: 92px;
  right: 4px;
  z-index: 50;
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}
.p-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .p-to-top {
    right: 8px;
    bottom: 14px;
    transition: bottom 0.6s ease-out;
  }
  .p-to-top:hover {
    bottom: 19px;
  }

  .p-to-top img {
    width: 96px;
    height: 96px;
  }

}



/*
 * =================================================================
 * Animation
 * =================================================================
 */
.u-fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-animation-group .p-rule,
.p-animation-group .p-cta {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}
.p-animation-group.is-visible .p-rule,
.p-animation-group.is-visible .p-cta {
  opacity: 1;
  transform: translateY(0);
}
.p-animation-group.is-visible .p-cta {
  transition-delay: 0.2s;
}



/* css3 */
@font-face {
  font-family: Noto Sans JP;
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: Noto Sans JP;
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Bold.woff) format("woff");
  font-weight: 700;
}

/* footer_sp----------*/
.o-footer__nav {
  background: #9f9f9f;
  padding: 20px 10px 10px;
}
.o-footer__nav .m-nav__item {
  display: inline-block;
  width: 49%;
  margin-right: 0;
  margin-bottom: 18px;
  position: relative;
  padding-left: 14px;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.o-footer__nav .m-nav__item a {
  color: #fff;
}
.o-footer__nav .m-nav__item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.o-footer__logo {
  padding: 18px 0;
  background: #fff;
  text-align: center;
}
.o-footer__logo img {
  width: 238px;
  margin: 0 auto;
}

/* footer_pc --------------*/
@media (min-width:768px) {
  .o-footer-pc {
    background: #fff;
    /* padding-top: 22px; */
  }
  .TheFooter_footer {
    width: 100%;
    /* margin: 60px auto 0; */
    padding: 20px 0;
    /* background: url(https://img.goo-net.com/common_v2/img/bg_footer_line.gif) repeat-x 0 0; */
  }
  .TheFooter_footer__logo {
    display: block;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center;
    color: #333;
    font-style: normal;
    float: none;
  }
  .TheFooter_footer__logo img {
    width: 230px;
    height: 19px;
    margin: 0 auto;
  }
  .TheFooter_footer__copyright {
    height: 26px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    background: url(https://img.goo-net.com/common_v2/img/bg_copyright.gif) repeat-x 0 0;
    line-height: 2.6;
  }
  .TheFooter_footerNav--utility {
    text-align: center;
    color: #333;
  }
  .TheFooter_footerNav--utility__item {
    display: inline-block;
    padding: 0 10px 0 10px;
    border-left: 1px solid #ccc;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .TheFooter_footerNav--utility__item:first-child {
    border-left: none;
  }
  .TheFooter_footerNav--utility__item a {
    font-size: 10px;
    color: #676767;
    text-decoration: none;
  }
  .footer_area {
    width: 100%;
    background: #fff;
  }
  .TheFooter_footer__nav {
    background: #f1f1f1;
  }
  .TheFooter_footer__logo {
    display: block;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-align: center;
    color: #333;
    font-style: normal;
    float: none;
  }
  .TheFooter_footer__logo img {
    width: 230px;
    height: 19px;
    margin: 0 auto;
  }
  .TheFooter_footer__copyright {
    height: 26px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    background: url(https://img.goo-net.com/common_v2/img/bg_copyright.gif) repeat-x 0 0;
    line-height: 2.6;
  }
  .TheFooter_footerNav--utility {
    text-align: center;
    color: #333;
  }
  .TheFooter_footerNav--utility__item {
    display: inline-block;
    padding: 0 10px 0 10px;
    border-left: 1px solid #ccc;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .TheFooter_footerNav--utility__item:first-child {
    border-left: none;
  }
  .TheFooter_footerNav--utility__item a {
    font-size: 10px;
    color: #676767;
    text-decoration: none;
  }
}
/* /footer_pc --------------*/



/* sp -768px
------------------------------------*/
@media (max-width:767px) {
  .pc_block {
    display: none;
  }
}

/* pc 768px-
---------------------------------- */
@media (min-width:768px) {
  .sp_block {
    display: none;
  }
}
