@charset "UTF-8";
:root {
  --color-white: #F0F7F7;
  --color-black: #212529;
  --color-link: #10A6D5;
  --color-red: #E05153;
  --color-blue: #10A6D5;
  --color-green: #26A6A1;
  --color-border: #EAF4F4;
  --shadow: 0 0 80px #10A6D5, 0 0 20px #10A6D5;
}

/* ==========================================================================
   Reset
   ========================================================================== */
/* Initialize
   ========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
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, main,
menu, nav, output, ruby, section, summary, input, textarea,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  letter-spacing: 0;
  vertical-align: baseline;
}

html {
  font-size: 0.625em;
  height: 100%;
  overflow-y: scroll;
}
html.--fixed {
  overflow: hidden;
}

body {
  color: var(--color-black);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
body.is-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

button {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

dd,
dt,
td,
th,
ol,
ul,
p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  dd,
dt,
td,
th,
ol,
ul,
p {
    font-size: 12px;
  }
}

td dl,
td ul,
td ol,
td td,
td th,
td p,
td li,
dd dd,
dd dt,
dd p,
dd li,
dd ul,
dd ol,
li th,
li td,
li table,
li dd,
li dt,
li ol,
li ul,
ol li,
ul li,
li p {
  font-size: 1em;
}

ol,
ul {
  list-style: none;
}

a {
  color: var(--color-link);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  a:hover img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: normal;
}

/* google chrome input button padding */
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button, button {
  padding: 1px 6px;
}

input[type=checkbox] {
  margin: 0;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.img-box {
  font-size: 0;
  line-height: 0;
}

.wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1180px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrap {
    padding-left: 30px;
    padding-right: 30px;
    width: auto;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

sup {
  font-size: 1.2rem;
  font-weight: normal;
  vertical-align: top;
}

.text-bold,
strong {
  font-weight: bold;
}

.text-small {
  font-size: 0.8em;
}

.text-large {
  font-size: 2.4em;
}

.text-underline {
  text-decoration: underline;
}

.text-italic {
  font-style: italic;
}

video {
  outline: none;
}

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

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

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

.text-red {
  color: var(--color-red) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* ---------------------------------------------------------

■■■ PC SP ■■■■■■■■■■

--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  img.sp,
br.sp,
span.sp,
.sp {
    display: none !important;
  }
  br.sp {
    width: 0 !important;
  }
  .pc {
    display: block !important;
  }
  span.pc,
img.pc,
br.pc {
    display: inline !important;
  }
  th.pc,
td.pc {
    display: table-cell !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  th.pc,
td.pc,
span.pc,
br.pc,
img.pc,
.pc {
    display: none !important;
  }
  img.sp,
br.sp,
span.sp {
    display: inline !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

/* f-move-top
========================================================================== */
.f-move-top {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.f-move-top.--delay {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.f-move-top.--delay2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-move-top.--delay2, .f-move-top.--delay {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.f-move-top.--move {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* btn
------------------------------------------- */
.c-btn > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-green);
  border-radius: 100px;
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 24px;
  padding-right: 48px;
  width: 200px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-btn > a::after {
  background: url(../img/icon-arrow-green.svg) no-repeat 50% 50% var(--color-white);
  background-size: 12px 12px;
  border-radius: 50%;
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-btn > a:hover {
    background-color: var(--color-blue);
  }
  .c-btn > a:hover::after {
    right: 10px;
  }
}
.c-btn.--blue > a {
  background-color: var(--color-blue);
}
.c-btn.--blue > a::after {
  background-image: url(../img/icon-arrow-blue.svg);
}
@media (hover: hover) {
  .c-btn.--blue > a:hover {
    background-color: var(--color-green);
  }
}
.c-btn.--large > a {
  width: 400px;
}
.c-btn.--blank > a > span {
  display: inline-block;
  padding-left: 28px;
  position: relative;
}
.c-btn.--blank > a > span::before {
  background: url(../img/icon-blank.svg) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn > a {
    height: 48px;
    padding-left: 24px;
    padding-right: 48px;
    width: 100%;
  }
  .c-btn > a::after {
    background-size: 12px 12px;
    height: 24px;
    width: 24px;
    right: 16px;
  }
  .c-btn.--large > a {
    width: 100%;
  }
  .c-btn.--blank > a > span {
    padding-left: 24px;
  }
  .c-btn.--blank > a > span::before {
    height: 18px;
    width: 18px;
  }
}

/* more
------------------------------------------- */
.c-more {
  background-color: var(--color-blue);
  border-radius: 100px;
  color: #fff;
  display: table;
  margin-left: auto;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px 8px 36px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-more::after, .c-more::before {
  background-color: #fff;
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-more::before {
  -webkit-transform: rotate(90deg) translate(-1px, -webkit-calc(-50% + 1px));
      -ms-transform: rotate(90deg) translate(-1px, calc(-50% + 1px));
          transform: rotate(90deg) translate(-1px, calc(-50% + 1px));
}
@media (hover: hover) {
  .c-more:hover {
    background-color: var(--color-green);
  }
}
@media screen and (max-width: 767px) {
  .c-more {
    font-size: 14px;
    padding: 8px 20px 8px 36px;
  }
  .c-more::after, .c-more::before {
    height: 2px;
    width: 10px;
    left: 18px;
  }
}

/* tag
------------------------------------------- */
.c-tag {
  background-color: var(--color-red);
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 4px;
  text-align: center;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .c-tag {
    border-radius: 4px;
    padding: 4px;
    width: 80px;
  }
}

/* title
------------------------------------------- */
.c-title {
  color: var(--color-white);
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 72px;
  text-align: center;
  text-shadow: var(--shadow);
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
}

/* pagetop
------------------------------------------- */
.c-pagetop {
  cursor: pointer;
  height: 56px;
  width: 56px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    height: 48px;
    width: 48px;
    bottom: 16px;
    right: 16px;
  }
}

/* container
------------------------------------------- */
.l-container {
  background: url(../img/bg.jpg) 50% 0;
}

/* header
------------------------------------------- */
.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  padding: 0 48px 0 20px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.--move {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
  pointer-events: all;
}
.header .logo img {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 72px;
    padding-left: 18px;
    padding-right: 24px;
  }
  .header .logo img {
    width: 135px;
  }
}

/* menu
------------------------------------------- */
.menu {
  display: none;
  height: 56px;
  width: 56px;
  position: fixed;
  right: 12px;
  top: 5px;
  z-index: 10001;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
  }
}
.menu > b {
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0.9) rotate(0deg);
      -ms-transform: scale(0.9) rotate(0deg);
          transform: scale(0.9) rotate(0deg);
}
.menu > b::after, .menu > b::before {
  background-color: var(--color-white);
  content: "";
  height: 1px;
  width: 32px;
  position: absolute;
  left: 12px;
  top: 27px;
}
.menu > b:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu > b:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu::after, .menu::before {
  background-color: var(--color-white);
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  position: absolute;
  left: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu::after {
  top: 23px;
}
.menu::before {
  top: 31px;
}
.menu.--active::after, .menu.--active::before {
  opacity: 0;
}
.menu.--active > b {
  opacity: 1;
  -webkit-transform: scale(1) rotate(720deg);
      -ms-transform: scale(1) rotate(720deg);
          transform: scale(1) rotate(720deg);
}

/* gnav
------------------------------------------- */
.gnav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 48px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.gnav > ul a {
  color: #fff;
}
@media (hover: hover) {
  .gnav > ul a:hover {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    height: -webkit-calc(100dvh - 128px);
    height: calc(100dvh - 128px);
    overflow-y: auto;
    padding: 64px 30px;
    pointer-events: none;
    width: 100%;
    position: fixed;
    left: 0;
    top: 73px;
    z-index: 1000;
  }
  .gnav.--active {
    opacity: 1;
    pointer-events: all;
  }
  .gnav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 32px;
    gap: 64px;
    line-height: 1;
  }
}

/* section
------------------------------------------- */
.section {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 80px;
  }
}

/* footer
------------------------------------------- */
.footer {
  background-color: #000;
  color: #A1B4BF;
  padding-bottom: 80px;
  padding-top: 80px;
  text-align: center;
}
.footer small {
  display: block;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .footer small {
    font-size: 14px;
  }
}

img {
  width: 100%;
}

/* mv
========================================================================== */
.mv {
  height: 800px;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 0;
}
.mv img,
.mv video {
  max-width: initial;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1440px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .mv {
    height: 404px;
  }
  .mv img,
.mv video {
    width: 100%;
  }
}

/* lead
========================================================================== */
.lead {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.lead p,
.lead h2 {
  color: var(--color-white);
  font-weight: 500;
  text-align: center;
  text-shadow: var(--shadow);
}
.lead h2 {
  font-size: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .lead {
    margin-top: -20px;
  }
  .lead h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

/* generate
========================================================================== */
.generate .generate_list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
.generate .generate_list > li a {
  background-color: rgba(33, 37, 41, 0.5);
  border: 1px solid rgba(234, 244, 244, 0.3);
  border-radius: 30px;
  color: var(--color-white);
  display: block;
  padding: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .generate .generate_list > li a:hover {
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
  }
  .generate .generate_list > li a:hover .c-more {
    background-color: var(--color-green);
  }
}
.generate .generate_list > li h3 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 16px;
}
.generate .generate_list > li p {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .generate .generate_list {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .generate .generate_list > li a {
    border-radius: 12px;
    padding: 24px;
  }
  .generate .generate_list > li h3 {
    font-size: 22px;
    margin-bottom: 8px;
    margin-top: 14px;
  }
  .generate .generate_list > li p {
    margin-bottom: 20px;
  }
}

/* news
========================================================================== */
.news {
  background-color: rgba(33, 37, 41, 0.5);
  padding-bottom: 180px;
  padding-top: 180px;
}
.news .news_list > li {
  border-bottom: 1px solid rgba(234, 244, 244, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  padding-bottom: 28px;
  padding-top: 28px;
}
.news .news_list > li:first-child {
  padding-top: 0;
}
.news .news_list > li time {
  color: #688A8F;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.news .news_list > li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.news .news_list > li a {
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff)) no-repeat 100% 100%;
  background: -webkit-linear-gradient(bottom, #fff, #fff) no-repeat 100% 100%;
  background: linear-gradient(0deg, #fff, #fff) no-repeat 100% 100%;
  background-size: 0 1px;
  color: var(--color-white);
  -webkit-transition: background-size 0.3s;
  transition: background-size 0.3s;
}
@media (hover: hover) {
  .news .news_list > li a:hover {
    background-position: 0 100%;
    background-size: 100% 1px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .news .news_list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    padding-bottom: 22px;
    padding-top: 22px;
  }
  .news .news_list > li time {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .news .news_list > li p {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}

/* action
========================================================================== */
.action {
  background: url(../img/action_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  padding-bottom: 180px;
  padding-top: 180px;
}
.action .action_list {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.action .action_list a {
  background-color: #212529;
  border-radius: 10px;
  -webkit-box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.45), -8px -8px 24px rgba(253, 255, 255, 0.12);
          box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.45), -8px -8px 24px rgba(253, 255, 255, 0.12);
  color: var(--color-white);
  display: block;
  font-weight: 700;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.action .action_list a figure {
  overflow: hidden;
}
.action .action_list a figure img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.action .action_list a p {
  padding: 20px 60px 20px 20px;
  position: relative;
}
.action .action_list a p::before {
  background: url(../img/icon-arrow.svg) no-repeat 50% 50% var(--color-blue);
  background-size: 12px 12px;
  border-radius: 50%;
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .action .action_list a:hover {
    -webkit-box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.45), -8px -8px 32px rgba(253, 255, 255, 0.12);
            box-shadow: 8px 8px 32px rgba(0, 0, 0, 0.45), -8px -8px 32px rgba(253, 255, 255, 0.12);
  }
  .action .action_list a:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .action .action_list a:hover p::before {
    right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .action {
    background-image: url(../img/action_bg-sp.jpg);
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .action .action_list {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .action .action_list a {
    -webkit-box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.45), -8px -8px 24px rgba(253, 255, 255, 0.12);
            box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.45), -8px -8px 24px rgba(253, 255, 255, 0.12);
  }
  .action .action_list a p {
    padding: 16px 52px 16px 16px;
  }
  .action .action_list a p::before {
    background-size: 12px 12px;
    height: 24px;
    width: 24px;
    right: 20px;
  }
}

/* Modal
========================================================================== */
.c-modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  padding-left: 30px;
  padding-right: 30px;
  visibility: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal.--active {
  opacity: 1;
  visibility: visible;
}
.c-modal.--active .c-modal_content {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
      -ms-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
@media screen and (max-width: 767px) {
  .c-modal {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.c-modal_container {
  cursor: auto;
  width: 940px;
  height: -webkit-calc(100dvh - 95px - 95px);
  height: calc(100dvh - 95px - 95px);
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-modal_container {
    height: -webkit-calc(100dvh - 30px - 30px);
    height: calc(100dvh - 30px - 30px);
    width: auto;
  }
}

.c-modal_content {
  background-color: var(--color-black);
  border: 1px solid rgba(234, 244, 244, 0.3);
  border-radius: 12px;
  height: 100%;
  overflow-y: auto;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .c-modal_content {
    border-radius: 12px;
    padding: 24px;
  }
}
.c-modal_content::-webkit-scrollbar {
  width: 6px;
}
.c-modal_content::-webkit-scrollbar-track {
  background: rgba(234, 244, 244, 0.1);
  border-radius: 3px;
}
.c-modal_content::-webkit-scrollbar-thumb {
  background: rgba(234, 244, 244, 0.3);
  border-radius: 3px;
}
.c-modal_content::-webkit-scrollbar-thumb:hover {
  background: rgba(234, 244, 244, 0.5);
}

.c-modal_close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--color-blue);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: block;
  height: 80px;
  padding: 0;
  width: 80px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
}
@media (hover: hover) {
  .c-modal_close:hover {
    background-color: var(--color-green);
  }
}
.c-modal_close::before, .c-modal_close::after {
  background: var(--color-white);
  content: "";
  height: 2px;
  width: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.c-modal_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal_close span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
@media screen and (max-width: 767px) {
  .c-modal_close {
    height: 56px;
    width: 56px;
  }
  .c-modal_close::before, .c-modal_close::after {
    height: 2px;
    width: 24px;
  }
}

/* detail
========================================================================== */
.c-detail {
  color: var(--color-white);
}
.c-detail h2 {
  font-size: 32px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 16px;
}
.c-detail .c-detail_list {
  border-top: 1px solid rgba(234, 244, 244, 0.1);
  counter-reset: point;
  display: grid;
  font-size: 14px;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  padding-top: 24px;
}
.c-detail .c-detail_list > li {
  counter-increment: point;
}
.c-detail .c-detail_list > li::before {
  content: counter(point, decimal-leading-zero);
  color: rgba(234, 244, 244, 0.3);
  display: block;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.c-detail .c-detail_list > li h3 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.c-detail .c-detail_btn {
  border-top: 1px solid rgba(234, 244, 244, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
}
.c-detail .c-detail_btn .c-detail_btn_inner {
  border-right: 1px solid rgba(234, 244, 244, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-right: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-detail h2 {
    font-size: 24px;
    margin-bottom: 8px;
    margin-top: 12px;
  }
  .c-detail .c-detail_list {
    font-size: 12px;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding-top: 24px;
  }
  .c-detail .c-detail_list > li::before {
    font-size: 22px;
  }
  .c-detail .c-detail_list > li h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .c-detail .c-detail_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
    padding-top: 24px;
  }
  .c-detail .c-detail_btn .c-detail_btn_inner {
    border-bottom: 1px solid rgba(234, 244, 244, 0.1);
    border-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    margin-right: 0;
    padding-bottom: 24px;
    padding-right: 0;
  }
}