@charset "UTF-8";
/*===========================================================================*/
/*  function  */
/*===========================================================================*/
/*===========================================================================*/
/*  mixin  */
/*===========================================================================*/
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html.is-modal-open {
  overflow: hidden;
}

section[id],
[id^="contents-"] {
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  section[id],
  [id^="contents-"] {
    scroll-margin-top: 80px;
  }
}

body {
  min-width: 375px;
  color: #323232;
}
body.is-modal-open,
body.is-menu-open {
  overflow: hidden;
}

main {
  position: relative;
}
@media (max-width: 767px) {
  main {
    padding-top: 76px;
  }
}

span {
  display: inline-block;
}

picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  display: inline-block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*===========================================================================*/
/*  utility  */
/*===========================================================================*/
.font-mincho {
  font-family: "Shippori Mincho", sans-serif;
}

.font-en {
  font-family: "Barlow Condensed", sans-serif;
}

.text-center {
  text-align: center;
}

/* 画面いっぱいの黒背景 */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(39, 39, 39, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9998;
}

.popup-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/*===========================================================================*/
/*  component, color  */
/*===========================================================================*/
.color-gray {
  color: #f0f0f0;
  transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

/* layout */
.l-inner {
  margin: 0 auto;
  max-width: 1160px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 100%;
  }
}
/* wrapper */
.l-wrapper {
  padding-left: clamp(22.4px, 11.4285714286px + 1.4285714286vw, 32px);
  padding-right: clamp(22.4px, 11.4285714286px + 1.4285714286vw, 32px);
}
@media (max-width: 767px) {
  .l-wrapper {
    padding: 0 20px;
  }
}

/*===========================================================================*/
/*  hover */
/*===========================================================================*/
@media screen and (min-width: 768px) {
  .hover-normal {
    transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
    cursor: pointer;
  }
  .hover-normal:hover {
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
}
.hover-border {
  position: relative;
}

.hover-border::before {
  background-color: #121212;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 0;
  transition: width 0.9s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

.hover-border-white {
  position: relative;
}

.hover-border-white::before {
  background-color: #fff;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  bottom: 0;
  width: 0;
  transition: width 0.9s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}

a:hover .hover-border::before,
a:hover .hover-border-white::before,
.hover-parent:hover .hover-border::before {
  width: 100%;
}

.hover-spin {
  transition: transform 1s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transform: rotate(0);
}

a:hover .hover-spin {
  transform: rotate(405deg);
}

.hover-spin-reverse {
  transition: transform 1s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  transform: rotate(0);
}

a:hover .hover-spin-reverse {
  transform: rotate(315deg);
}

.hover-text {
  position: relative;
  color: #121212;
  line-height: 1.6;
}

.hover-text-parent:hover .hover-text::after {
  clip-path: inset(0);
}

.hover-translate {
  cursor: pointer;
  transition:
    all 0.24s cubic-bezier(0.22, 0, 0.08, 1),
    -webkit-box-shadow 0.24s cubic-bezier(0.22, 0, 0.08, 1),
    -webkit-transform 0.24s cubic-bezier(0.22, 0, 0.08, 1);
}
.hover-translate:hover {
  -webkit-transform: translateY(-4px) !important;
  -ms-transform: translateY(-4px) !important;
  transform: translateY(-4px) !important;
  z-index: 2;
  text-decoration: none;
}

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #f6f6f0;
  padding-block: 5px;
  padding-right: clamp(38.5px, 19.6428571429px + 2.4553571429vw, 55px);
  padding-left: clamp(21.7px, 11.0714285714px + 1.3839285714vw, 31px);
  translate: 0 -100%;
  transition: translate 0.4s ease;
}
@media (max-width: 767px) {
  .header {
    padding: 13px 30px;
    translate: 0 0;
  }
}
@media (max-width: 767px) {
  .header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dadada;
  }
}
.header.is-visible {
  translate: 0 0;
}
.header__inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.header__logo {
  margin-right: clamp(40px, -104px + 18.75vw, 166px);
  width: clamp(176px, 50.2857142857px + 16.369047619vw, 286px);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__logo {
    margin-right: auto;
    width: 176px;
  }
}
.header__nav {
  margin-right: clamp(26.6px, 13.5714285714px + 1.6964285714vw, 38px);
  padding-top: 14px;
  padding-bottom: 16px;
  padding-inline: clamp(33.6px, 17.1428571429px + 2.1428571429vw, 48px);
  border-top: 1px solid #00beff;
  border-bottom: 1px solid #ffbe00;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 76px;
    right: 0;
    width: 100%;
    height: 100dvh;
    margin-right: 0;
    padding: 92px 20px 120px;
    border: none;
    background: #f6f6f0;
    overflow-y: auto;
    translate: 100% 0;
    transition: translate 0.4s ease;
    display: flex;
    flex-direction: column;
  }
  .header__nav.is-open {
    translate: 0 0;
  }
}
.header__nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(21px, 10.7142857143px + 1.3392857143vw, 30px);
}
@media (max-width: 767px) {
  .header__nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.header__nav__item {
  font-size: clamp(15px, 11.5714285714px + 0.4464285714vw, 18px);
  font-weight: 400;
  line-height: 16px;
}
@media (max-width: 767px) {
  .header__nav__item {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 16px;
    border-bottom: 1px solid #dadada;
  }
}
.header__nav__item a {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .header__nav__item a {
    padding-bottom: 16px;
  }
}
.header__nav__item a:hover {
  color: #f27900;
}
.header__nav__item a svg {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .header__nav__item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.header__nav__item--has-dropdown {
  position: relative;
}
.header__nav__item--has-dropdown:hover .header__nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: -50% 0;
}
@media (max-width: 767px) {
  .header__nav__item--has-dropdown:hover .header__nav__dropdown {
    translate: 0 0;
  }
}
.header__nav__dropdown {
  position: absolute;
  top: calc(100% + 11px);
  left: calc(50% + 48px);
  translate: -50% 8px;
  min-width: 198px;
  background: #f6f6f0;
  padding: 16px 0 13px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    translate 0.3s ease;
  z-index: 100;
}
.header__nav__dropdown::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 6px;
  display: block;
  width: 1px;
  height: 134px;
  background: #ffb500;
}
.header__nav__dropdown::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
.header__nav__dropdown li:not(:last-child) {
  margin-bottom: 5px;
}
.header__nav__dropdown li a {
  display: block;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.56px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.header__nav__dropdown li a:hover {
  color: #e84600;
}
@media (max-width: 767px) {
  .header__nav__dropdown {
    position: static;
    translate: 0 0;
    min-width: 0;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }
  .header__nav__dropdown::before,
  .header__nav__dropdown::after {
    display: none;
  }
  .header__nav__dropdown li a {
    padding: 8px 0;
  }
}
@media (max-width: 767px) {
  .header__nav__bottom {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .header__nav__button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: #fff;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.44px;
    width: calc(100% - 60px);
    margin: 0 auto;
    border-radius: 60px;
    box-shadow: 0 2.4px 2.4px 0 rgba(0, 0, 0, 0.25) inset;
  }
}
@media (max-width: 767px) {
  .header__nav__button:first-child {
    background: #f27900;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .header__nav__button:last-child {
    background: #aa9600;
  }
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f27900;
  color: #fff;
  padding: 13px 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
  font-weight: 700;
  letter-spacing: 1.6px;
  width: clamp(106.4px, 54.2857142857px + 6.7857142857vw, 152px);
  flex-shrink: 0;
  border-radius: 100px;
  transition: all 0.5s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
}
.header__button:hover {
  background: #e84600;
}
.header__hamburger {
  position: relative;
  width: 56px;
  height: 36px;
  border-radius: 2px;
  background: linear-gradient(270deg, #f9ad01 0%, #00beff 100%);
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.header__hamburger span {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 32px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: calc(50% - 4px);
}
.header__hamburger span:nth-child(2) {
  top: calc(50% + 4px);
}
.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  rotate: 45deg;
  translate: -50% -50%;
}
.header__hamburger.is-open span:nth-child(2) {
  top: 50%;
  rotate: -45deg;
  translate: -50% -50%;
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.footer {
  background-color: #f6f6f0;
  padding-top: clamp(28px, 14.2857142857px + 1.7857142857vw, 40px);
  padding-bottom: clamp(20.3px, 10.3571428571px + 1.2946428571vw, 29px);
  padding-inline: clamp(38.5px, 19.6428571429px + 2.4553571429vw, 55px);
}
@media (max-width: 767px) {
  .footer {
    padding-top: clamp(32px, 18.8804664723px + 3.4985422741vw, 45.7142857143px);
    padding-bottom: clamp(20px, 11.8002915452px + 2.1865889213vw, 28.5714285714px);
    padding-inline: clamp(33px, 19.4704810496px + 3.6078717201vw, 47.1428571429px);
  }
}
.footer__wrapper {
  max-width: 1290px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  width: clamp(200.2px, 102.1428571429px + 12.7678571429vw, 286px);
  margin-bottom: clamp(42px, 21.4285714286px + 2.6785714286vw, 60px);
}
@media (max-width: 767px) {
  .footer__logo {
    width: clamp(286px, 168.7441690962px + 31.2682215743vw, 408.5714285714px);
    margin-bottom: clamp(50px, 29.500728863px + 5.4664723032vw, 71.4285714286px);
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__navigation {
  display: flex;
  gap: clamp(42px, 21.4285714286px + 2.6785714286vw, 60px);
}
@media (max-width: 767px) {
  .footer__navigation {
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(16px, 9.4402332362px + 1.749271137vw, 22.8571428571px);
    width: 100%;
    margin: 0 auto;
  }
}
.footer__navigation a {
  transition: all 0.3s ease;
}
.footer__navigation a:hover {
  color: #f27900;
}
.footer__navigation__item {
  margin-bottom: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px);
}
@media (max-width: 767px) {
  .footer__navigation__item {
    margin-bottom: clamp(16px, 9.4402332362px + 1.749271137vw, 22.8571428571px);
  }
}
.footer__navigation__item:last-child {
  margin-bottom: 0;
}
.footer__navigation__item ul {
  padding-left: clamp(13.3px, 6.7857142857px + 0.8482142857vw, 19px);
  position: relative;
}
@media (max-width: 767px) {
  .footer__navigation__item ul {
    padding-left: clamp(19px, 11.2102769679px + 2.0772594752vw, 27.1428571429px);
  }
}
.footer__navigation__item ul::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 3px;
  top: 0;
}
@media (max-width: 767px) {
  .footer__navigation__item ul::before {
    left: 3px;
  }
}
.footer__navigation__item ul li {
  margin-bottom: clamp(11.2px, 5.7142857143px + 0.7142857143vw, 16px);
  cursor: pointer;
}
@media (max-width: 767px) {
  .footer__navigation__item ul li {
    margin-bottom: clamp(11px, 6.4901603499px + 1.2026239067vw, 15.7142857143px);
  }
}
.footer__navigation__item ul li:last-child {
  margin-bottom: 0;
}
.footer__navigation__link {
  font-size: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px);
  line-height: 1.3;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .footer__navigation__link {
    font-size: clamp(16px, 9.4402332362px + 1.749271137vw, 22.8571428571px);
  }
}
.footer__navigation__link__sub {
  font-size: clamp(10.5px, 5.3571428571px + 0.6696428571vw, 15px);
  line-height: 1.5;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .footer__navigation__link__sub {
    font-size: clamp(12px, 7.0801749271px + 1.3119533528vw, 17.1428571429px);
  }
}
.footer__navigation__wrapper {
  display: flex;
  gap: clamp(42px, 21.4285714286px + 2.6785714286vw, 60px);
}
@media (max-width: 767px) {
  .footer__navigation__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: clamp(16px, 9.4402332362px + 1.749271137vw, 22.8571428571px);
  }
}
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(20.3px, 10.3571428571px + 1.2946428571vw, 29px);
  margin-bottom: clamp(38.5px, 19.6428571429px + 2.4553571429vw, 55px);
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__buttons {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: clamp(62px, 36.5809037901px + 6.778425656vw, 88.5714285714px);
    margin-bottom: clamp(55px, 32.4508017493px + 6.0131195335vw, 78.5714285714px);
    gap: clamp(27px, 15.930393586px + 2.9518950437vw, 38.5714285714px);
  }
}
@media (max-width: 767px) {
  .footer__buttons__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__button {
  padding-block: clamp(9.1px, 4.6428571429px + 0.5803571429vw, 13px);
  width: clamp(213.5px, 108.9285714286px + 13.6160714286vw, 305px);
  border-radius: 60px;
  background: #f27900;
  box-shadow: 0 2.4px 2.4px 0 rgba(0, 0, 0, 0.25) inset;
  text-align: center;
  transition: all 0.5s ease;
}
.footer__button:hover {
  background: #e94600;
}
.footer__button:hover .footer__button__text {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .footer__button {
    width: 100%;
    margin: 0 auto;
    width: clamp(305px, 179.9544460641px + 33.3454810496vw, 435.7142857143px);
    padding-block: clamp(12px, 7.0801749271px + 1.3119533528vw, 17.1428571429px);
  }
}
.footer__button__text {
  color: #fff;
  font-size: clamp(10.08px, 5.1428571429px + 0.6428571429vw, 14.4px);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .footer__button__text {
    font-size: clamp(14.4px, 8.4962099125px + 1.5743440233vw, 20.5714285714px);
    letter-spacing: 1.44px;
  }
}
.footer__button.footer__button__award {
  border-radius: 60px;
  background: #aa9600;
  box-shadow: 0 2.4px 2.4px 0 rgba(0, 0, 0, 0.25) inset;
}
.footer__button.footer__button__award:hover {
  background: #7d6500;
}
@media (max-width: 767px) {
  .footer__button.footer__button__award {
    padding-block: clamp(14px, 8.2602040816px + 1.5306122449vw, 20px);
  }
}
.footer__copyright {
  font-size: clamp(10.5px, 5.3571428571px + 0.6696428571vw, 15px);
  margin-top: clamp(49.7px, 25.3571428571px + 3.1696428571vw, 71px);
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: clamp(15px, 8.8502186589px + 1.639941691vw, 21.4285714286px);
    margin-top: 0;
  }
}
.footer__publink {
  width: clamp(143.5px, 73.2142857143px + 9.1517857143vw, 205px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__publink {
    width: clamp(205px, 120.9529883382px + 22.4125364431vw, 292.8571428571px);
    margin-bottom: clamp(62px, 36.5809037901px + 6.778425656vw, 88.5714285714px);
  }
}

/*===========================================================================*/
/*  c-modal  */
/*===========================================================================*/
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 12px;
  overflow: auto;
}
@media (max-width: 767px) {
  .c-modal {
    padding: 40px 12px 20px;
  }
}
.c-modal {
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 100000000;
}
.c-modal.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease-out;
}
.c-modal__container {
  position: relative;
  max-width: 900px;
  width: 100%;
}
@media (max-width: 767px) {
  .c-modal__container {
    max-width: 500px;
  }
}
.c-modal__open {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #000;
  border: none;
  cursor: pointer;
  text-align: center;
  padding: 1rem 2rem;
}
.c-modal__close {
  background-image: url(../images/icon-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -64px;
  right: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-modal__close {
    top: -36px;
    width: 28px;
    height: 28px;
  }
}
.c-modal__content {
  background: #fff;
  text-align: center;
  line-height: 1;
  padding-top: clamp(34.3px, 17.5px + 2.1875vw, 49px);
  padding-bottom: clamp(43.4px, 22.1428571429px + 2.7678571429vw, 62px);
  padding-left: clamp(25.2px, 12.8571428571px + 1.6071428571vw, 36px);
  padding-right: clamp(51.1px, 26.0714285714px + 3.2589285714vw, 73px);
  border-radius: 20px;
  border: 1px solid #323232;
  overflow-y: auto;
  max-height: calc(100vh - 80px - 64px);
}
@media (max-width: 767px) {
  .c-modal__content {
    padding: 24px 17px 24px;
    border-radius: 20px;
    max-height: calc(100vh - 80px - 36px);
  }
}
.c-modal__text {
  font-size: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
/*===========================================================================*/
/*  c-infinity */
/*===========================================================================*/
.c-infinity-slide {
  display: flex;
  width: fit-content;
  will-change: transform;
}
.c-infinity-slide__items {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-shrink: 0;
}
.c-infinity-slide__items li {
  margin-right: 32px;
}
.c-infinity-slide__image {
  width: 410px;
  height: auto;
}
@media (max-width: 767px) {
  .c-infinity-slide__image {
    width: 280px;
  }
}
.c-infinity-slide__hidden {
  overflow: hidden;
}

/*===========================================================================*/
/*  c-cta-link */
/*===========================================================================*/
.c-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  width: 100%;
  max-width: clamp(452.2px, 230.7142857143px + 28.8392857143vw, 646px);
  padding-top: clamp(14.7px, 7.5px + 0.9375vw, 21px);
  padding-bottom: clamp(14.7px, 7.5px + 0.9375vw, 21px);
  background-color: #aa9600;
  border-radius: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
  transition: all 0.5s ease;
}
.c-cta-link:hover {
  background-color: #7d6500;
}
.c-cta-link:hover .c-cta-link__text {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .c-cta-link {
    border: 1px solid #aa9600;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.08) inset;
    padding-top: clamp(18px, 10.6202623907px + 1.9679300292vw, 25.7142857143px);
    padding-bottom: clamp(18px, 10.6202623907px + 1.9679300292vw, 25.7142857143px);
  }
}
.c-cta-link__text {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2.4px;
  font-size: clamp(16.8px, 8.5714285714px + 1.0714285714vw, 24px);
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .c-cta-link__text {
    font-size: clamp(16px, 9.4402332362px + 1.749271137vw, 22.8571428571px);
    letter-spacing: 1.6px;
  }
}
.c-cta-link__sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.6px;
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .c-cta-link__sub {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

/*===========================================================================*/
/*  c-heading */
/*===========================================================================*/
.c-heading__title {
  color: #323232;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 1.92px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .c-heading__title {
    font-size: 40px;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }
}
.c-heading__title::before,
.c-heading__title::after {
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.6s ease-out;
}
.c-heading.is-inview .c-heading__title::before,
.c-heading.is-inview .c-heading__title::after {
  transform: scaleX(1);
}
.c-heading__title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffb500;
  position: absolute;
  bottom: 1px;
  left: 0;
}
@media (max-width: 767px) {
  .c-heading__title::before {
    bottom: -6px;
  }
}
.c-heading__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #00beff;
  position: absolute;
  bottom: -4px;
  left: 0;
}
@media (max-width: 767px) {
  .c-heading__title::after {
    bottom: -12px;
  }
}
.c-heading__title.is-award::before {
  background: #aa9600;
}
.c-heading__title.is-award::after {
  background: #887800;
}
.c-heading__text {
  color: #323232;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .c-heading__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

/*===========================================================================*/
/*  c-accordion  */
/*===========================================================================*/
.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 851px;
  margin: 0 auto;
}
.c-accordion summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを削除 */
  display: block;
  /* Safari用三角アイコン削除 */
}
.c-accordion summary::-webkit-details-marker {
  display: none;
}
.c-accordion {
  /* is-openedクラスが付与されたときのスタイル */
}
.c-accordion details.is-opened .c-accordion__icon {
  transform: rotate(180deg);
}
.c-accordion details.is-opened .c-accordion__summary__inner {
  border-radius: 12px 12px 0 0;
}
.c-accordion__summary__inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f6f6f0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.64px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .c-accordion__summary__inner {
    gap: 16px;
    padding: 16px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
.c-accordion__icon {
  position: relative;
  background-image: url(../images/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.4s;
  margin-right: 22px;
}
@media (max-width: 767px) {
  .c-accordion__icon {
    width: 24px;
    height: 24px;
    margin-right: 0;
  }
}
.c-accordion {
  /* --------アコーディオンの中身のスタイル-------- */
}
.c-accordion__content {
  overflow: hidden;
  background: #f6f6f0;
  border-radius: 0 0 12px 12px;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.c-accordion__content__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 20px 15px;
  margin: 0 15px;
  color: #f27900;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.64px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .c-accordion__content__inner {
    padding: 16px 0;
    margin: 0 16px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

/*===========================================================================*/
/*  fixed-button  */
/*===========================================================================*/
.fixed-button {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  background: #f27900;
  color: #fff;
  padding: 7px 0 9px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2.8px;
  width: 300px;
  border-radius: 100px;
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  .fixed-button {
    display: none;
  }
}
.fixed-button:hover {
  background: #e94600;
}
.fixed-button:hover .main {
  transform: scale(1.05);
}
.fixed-button.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fixed-button .main {
  transition: all 0.5s ease;
}
.fixed-button .sub {
  color: #342c2c;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: normal;
}
