@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap);
/*font-family: 'M PLUS Rounded 1c', sans-serif;*/
* {
  box-sizing: border-box;
}

/*************************
* base
**************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
@media (max-width: 780px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 1.2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

section {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  a:hover {
    opacity: 0.5;
    transition: 0.4s;
  }
}
/*************************
* 汎用アニメーション
**************************/
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* 表示状態 */
.js-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* --- 方向バリエーション ---------- */
/* 上から */
.js-fade--down {
  transform: translateY(-20px);
}

.js-fade--down.is-inview {
  transform: translateY(0);
}

/* 左から */
.js-fade--left {
  transform: translateX(20px);
}

.js-fade--left.is-inview {
  transform: translateX(0);
}

/* 右から */
.js-fade--right {
  transform: translateX(-20px);
}

.js-fade--right.is-inview {
  transform: translateX(0);
}

/* 拡大しながら */
.js-fade--zoom {
  transform: scale(0.95);
}

.js-fade--zoom.is-inview {
  transform: scale(1);
}

/*************************
* レスポンシブ
**************************/
.pc_content {
  display: block;
}
@media (max-width: 780px) {
  .pc_content {
    display: none;
  }
}

.sp_content {
  display: none;
}
@media (max-width: 780px) {
  .sp_content {
    display: block;
  }
}

.pc_br {
  display: initial;
}
@media (max-width: 780px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 780px) {
  .sp_br {
    display: initial;
  }
}

.x_sp_br {
  display: none;
}
@media (max-width: 480px) {
  .x_sp_br {
    display: initial;
  }
}

.br_content {
  display: inline-block;
}

/*************************
* flex
**************************/
.f_boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/*************************
* pagetop
**************************/
html {
  scroll-behavior: smooth;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #d4000f;
  background: #fff;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.pagetop:hover {
  background: #fff5f5;
}
.pagetop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 780px) {
  .pagetop {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

.pagetop__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.pagetop__icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-top: 3px solid #d4000f;
  border-left: 3px solid #d4000f;
  transform: rotate(45deg);
}
@media (max-width: 780px) {
  .pagetop__icon::before {
    width: 12px;
    height: 12px;
  }
}

/*************************
* haeder
**************************/
body.is-menu-open {
  overflow: hidden;
}

/*ハンバーガーメニュー*/
.hamburger-menu__content {
  position: relative;
  z-index: 1000;
}

/* トリガー位置：右上固定 */
.hamburger-btn {
  position: fixed;
  top: 16px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1100;
}

/* チェックボックスは非表示 */
.hamburger-check {
  display: none;
}

/* MENU テキスト */
.hamburger-btn .text {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
@media (max-width: 480px) {
  .hamburger-btn .text {
    font-size: 12px;
  }
}

/* 三本線アイコン */
.hamburger-btn__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 42px;
  height: 20px;
}
@media (max-width: 780px) {
  .hamburger-btn__icon {
    width: 38px;
  }
}

.hamburger-btn__icon .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d4000f;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* チェック時：×アイコンに変形 */
.hamburger-check:checked ~ .hamburger-btn .line1 {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-check:checked ~ .hamburger-btn .line2 {
  opacity: 0;
}

.hamburger-check:checked ~ .hamburger-btn .line3 {
  transform: translateY(-9px) rotate(-45deg);
}

/* オーバーレイ全体 */
.hamburger-menu__gnav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* 内部レイアウト */
.hamburger-menu__gnav__inner {
  width: 100%;
  max-width: 960px;
  padding: 40px 20px;
}

.scroll-box {
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hamburger-menu_gnav_lists {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.nav_list .link {
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  color: #211815;
  line-height: 1.8;
}
@media (max-width: 780px) {
  .nav_list .link {
    font-size: 16px;
  }
}

.nav_list .en {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #7d7d7d;
}
@media (max-width: 480px) {
  .nav_list .en {
    font-size: 10px;
  }
}

/* 閉じるボタン */
.hamburger-close-btn {
  display: inline-block;
  cursor: pointer;
  width: 500px;
  max-width: 80%;
}

.hamburger-close-btn .base_btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid #d4000f;
  color: #d4000f;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .hamburger-close-btn .base_btn {
    padding: 12px 20px;
  }
}

.hamburger-close-btn .base_btn .link {
  text-decoration: none;
  color: inherit;
}

/* ✔ チェックされたらメニュー表示 */
.hamburger-check:checked ~ .hamburger-menu__gnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}

/*************************
* footer
**************************/
.footer {
  width: 700px;
  max-width: 96%;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
.footer .footer_inner .f_logo {
  text-align: center;
  margin-bottom: 60px;
}
.footer .footer_inner .f_logo .logo {
  display: inline-block;
  max-width: 260px;
  width: 100%;
  height: auto;
}
@media (max-width: 780px) {
  .footer .footer_inner .f_logo .logo {
    max-width: 200px;
  }
}
.footer .footer_inner .table {
  width: 100%;
  margin: 0 auto 100px;
  border-collapse: collapse;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.footer .footer_inner .table tr {
  border-bottom: 1px solid #111;
}
.footer .footer_inner .table tr:first-child {
  border-top: 1px solid #111;
}
.footer .footer_inner .table tr th {
  padding: 18px 0;
  text-align: left;
  vertical-align: middle;
  width: 10rem;
  padding-right: 60px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
@media (max-width: 780px) {
  .footer .footer_inner .table tr th {
    font-size: 14px;
    padding: 10px 0;
    letter-spacing: 0.12em;
  }
}
.footer .footer_inner .table tr td {
  padding: 18px 0;
  text-align: left;
  vertical-align: middle;
  font-weight: 400;
}
@media (max-width: 780px) {
  .footer .footer_inner .table tr td {
    font-size: 14px;
    padding: 10px 0;
  }
}
.footer .footer_inner .copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/*************************
* common
**************************/
/* sectioon */
.section {
  padding: 60px 0px;
}
@media (max-width: 780px) {
  .section {
    padding: 45px 0;
  }
}
@media (max-width: 780px) {
  .section {
    padding: 40px 0;
  }
}
.section .inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}

/*pagenation*/
.breadcrumbs {
  width: 1000px;
  max-width: 90%;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 10px 0;
  margin: 0 auto 30px;
}
@media (max-width: 780px) {
  .breadcrumbs {
    font-size: 12px;
  }
}

/* svg anime */
.fv_logo {
  margin: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(80px, 12vh, 120px);
  margin: 0 0 clamp(40px, 10vh, 120px);
}
.fv_logo .fv_svg {
  width: 100%;
  max-width: 780px;
  height: 200px;
  margin: 0 0 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: clamp(180px, 26vw, 320px);
  height: auto;
}
.fv_logo .fv_svg svg {
  width: 100%;
  height: auto;
}
.fv_logo .fv_svg #move01,
.fv_logo .fv_svg #move02,
.fv_logo .fv_svg #move03,
.fv_logo .fv_svg #move04 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.fv_logo .fv_svg #mask01 path,
.fv_logo .fv_svg #mask02 path,
.fv_logo .fv_svg #mask03 path,
.fv_logo .fv_svg #mask04 path {
  fill: none; /* 塗りの色 */
  stroke: #fff; /* 線の色 */
  stroke-width: 40px; /* 線幅 */
  stroke-linecap: round; /* 線端の形状 */
  stroke-linejoin: round; /* 角の形状 */
}
.fv_logo .fv_svg #base01 path,
.fv_logo .fv_svg #base02 path,
.fv_logo .fv_svg #base03 path,
.fv_logo .fv_svg #base04 path {
  fill: #d4000f;
}
.fv_logo .ttl {
  width: clamp(160px, 20vw, 260px);
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

#js-fv-subtext,
#js-fv-name {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#js-fv-subtext {
  transform: translateY(20px);
}

#js-fv-subtext.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#js-fv-name {
  transform: scale(1.02);
}

#js-fv-name.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ④ ヘッダー：上からスッと */
#js-header {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#js-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  position: fixed;
  z-index: 1000;
  width: 100vw;
}

body:not(.home) #js-header {
  opacity: 1;
  transform: translateY(0);
}

.toppage .section .midashi_content {
  margin: 0 calc(50% - 50vw) 60px;
  width: 100vw;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content {
    margin-bottom: 30px;
  }
}
.toppage .section .midashi_content .midashi_area {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area {
    flex-direction: column;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area {
  width: 360px;
  max-width: 36%;
  overflow: visible;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .ttl_area {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  /* --- keyframes --- */
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .ttl_area .midashi {
    align-items: center;
    display: inline-block;
    min-width: 80%;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .en {
  font-size: clamp(22px, 3.2vw, 32px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .ttl_area .midashi .en {
    padding: 0 30px;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi hr {
  width: 100%;
  border: 1.6px solid #d4000f;
  margin: 10px 0 12px;
  width: 100vw;
  position: relative;
  left: calc(-100vw + 100%);
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .ttl_area .midashi hr {
    left: 0;
    width: 100%;
    border-width: 1px;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .jp {
  font-size: clamp(16px, 2.35vw, 24px);
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .ttl_area .midashi .jp {
    padding: 0 30px;
  }
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .en,
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .jp {
  opacity: 0;
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .en {
  transform: translateY(10px);
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi .jp {
  transform: translateY(-10px);
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi.is-animated hr {
  animation: midashi-line 1s ease-out forwards;
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi.is-animated .en {
  animation: midashi-en 1.8s ease-out forwards 1s;
}
.toppage .section .midashi_content .midashi_area .ttl_area .midashi.is-animated .jp {
  animation: midashi-jp 1.8s ease-out forwards 1s;
}
@keyframes midashi-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes midashi-en {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes midashi-jp {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.toppage .section .midashi_content .midashi_area .headline_area {
  width: 600px;
  max-width: 60%;
  padding-top: 4px;
}
@media (max-width: 780px) {
  .toppage .section .midashi_content .midashi_area .headline_area {
    width: 100%;
    max-width: 100%;
  }
}
.toppage .section .midashi_content .midashi_area .headline_area .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: justify;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s ease 1s, transform 1.8s ease 1s;
}
.toppage .section .midashi_content .midashi_area .headline_area.is-animated .text {
  opacity: 1;
  transform: translateY(0);
}
.toppage .section .sub_midashi_area {
  margin: 0 0 40px;
}
@media (max-width: 780px) {
  .toppage .section .sub_midashi_area {
    margin: 0 0 36px;
  }
}
@media (max-width: 480px) {
  .toppage .section .sub_midashi_area {
    margin: 0 0 30px;
  }
}
.toppage .section .sub_midashi_area .sub_midashi {
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 600;
}
@media (max-width: 780px) {
  .toppage .section .sub_midashi_area .sub_midashi {
    font-size: clamp(16px, 2.2vw, 18px);
  }
}
.toppage .section .sub_midashi_area hr {
  width: 100%;
  border: 1px solid #211815;
  margin: 4px 0 4px;
}
@media (max-width: 780px) {
  .toppage .section .sub_midashi_area hr {
    border-width: 0.8px;
  }
}
.toppage .section .sub_midashi_area .sub_text {
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.75;
}

/*************************
* toppage
**************************/
.toppage .fv_sec {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 0;
}
.toppage .fv_sec .fv_inner .fv_midashi {
  font-size: clamp(16px, 3.2vw, 28px);
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: center;
  font-weight: 500;
}
.toppage .design_sec .inner .three_cols .f_boxs,
.toppage .gifudesign_sec .inner .three_cols .f_boxs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}
@media (max-width: 780px) {
  .toppage .design_sec .inner .three_cols .f_boxs,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs {
    row-gap: 40px;
  }
}
@media (max-width: 480px) {
  .toppage .design_sec .inner .three_cols .f_boxs,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs {
    row-gap: 30px;
  }
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 780px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box {
    flex: 0 0 calc((100% - 0px) / 1);
  }
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link .img_box,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .img_box {
  position: relative;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 4/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #211815;
  padding: 14px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box .link .img_box,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .img_box {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box .link .img_box,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .img_box {
    margin-bottom: 8px;
  }
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link .img_box .thumnail,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .img_box .thumnail {
  width: 100%;
  height: 100%;
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link .img_box .thumnail img,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .img_box .thumnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.4s;
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link .midashi,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .midashi {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box .link .midashi,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .midashi {
    font-size: 12px;
    margin: 0 0 6px;
  }
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link .text,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .text {
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .toppage .design_sec .inner .three_cols .f_boxs .f_box .link .text,
  .toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link .text {
    font-size: 10px;
    margin: 0;
  }
}
.toppage .design_sec .inner .three_cols .f_boxs .f_box .link:hover .thumnail img,
.toppage .gifudesign_sec .inner .three_cols .f_boxs .f_box .link:hover .thumnail img {
  transform: scale(1.04);
  transition: 0.4s;
}
.toppage .cta_box {
  margin: 80px 0;
  border: 1px solid #e70000;
}
.toppage .cta_box .cta_box__inner {
  width: 850px;
  max-width: 86%;
  margin: 0 auto;
  /* 外枠：赤線 */
  padding: 56px 0px 48px;
  position: relative;
  background: #fff;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner {
    padding: 40px 0px 40px;
  }
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner {
    max-width: 92%;
    padding: 32px 0px 34px;
  }
}
.toppage .cta_box .cta_box__inner .midashi {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin: 0 0 22px;
  border-bottom: 1px solid #d4000f;
  padding: 0 0 12px;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner .midashi {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner .midashi {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}
.toppage .cta_box .cta_box__inner .f_boxs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner .f_boxs {
    flex-direction: column-reverse;
    row-gap: 20px;
    margin: 0 0 14px;
  }
}
.toppage .cta_box .cta_box__inner .f_boxs .f_box {
  flex: 1;
  min-width: 0;
  flex: 0 0 48%;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner .f_boxs .f_box {
    flex: 1 1 auto;
  }
}
.toppage .cta_box .cta_box__inner .f_boxs .lists {
  margin: 0 0 22px;
  padding: 0;
}
.toppage .cta_box .cta_box__inner .f_boxs .lists .list {
  list-style: none;
  position: relative;
  padding-left: 1em;
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  font-weight: 500;
  /* ● */
}
.toppage .cta_box .cta_box__inner .f_boxs .lists .list::before {
  content: "●";
  position: absolute;
  left: -4px;
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner .f_boxs .lists .list {
    font-size: 14px;
  }
}
.toppage .cta_box .cta_box__inner .f_boxs .text {
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner .f_boxs .text {
    font-size: 12px;
  }
}
.toppage .cta_box .cta_box__inner .price {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid #111;
  line-height: 1.5;
}
.toppage .cta_box .cta_box__inner .price .min1 {
  font-size: 14px;
  letter-spacing: 0em;
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner .price .min1 {
    font-size: 12px;
  }
}
.toppage .cta_box .cta_box__inner .price .min {
  display: block;
  font-size: 12px;
  margin-left: 6px;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner .price {
    font-size: 16px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .toppage .cta_box .cta_box__inner .price {
    font-size: 14px;
  }
}
.toppage .cta_box .cta_box__inner .link_text {
  text-align: right;
  margin: 20px 0 0;
}
@media (max-width: 780px) {
  .toppage .cta_box .cta_box__inner .link_text {
    text-align: center;
  }
}
.toppage .cta_box .cta_box__inner .link_text .link {
  transition: 0s;
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.toppage .cta_box .cta_box__inner .link_text .link:hover {
  transition: 0s;
  opacity: 1;
  color: #d4000f;
  text-decoration: underline;
}
.toppage .book_sec .inner .category_content {
  margin: 0 0 60px;
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs {
  display: flex;
  flex-wrap: wrap;
  align-items: self-start;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 50px;
}
@media (max-width: 780px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs {
    row-gap: 40px;
    -moz-column-gap: 14px;
         column-gap: 14px;
  }
}
@media (max-width: 480px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs {
    row-gap: 30px;
  }
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box {
  flex: 0 0 calc((100% - 60px) / 4);
  box-sizing: border-box;
  height: 100%;
}
@media (max-width: 780px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .img_box {
  position: relative;
  margin-bottom: 12px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #211815;
}
@media (max-width: 780px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .img_box {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .img_box {
    margin-bottom: 8px;
  }
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .img_box .thumnail {
  width: 100%;
  overflow: hidden;
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .img_box .thumnail img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .midashi {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .midashi {
    font-size: 12px;
    margin: 0 0 6px;
  }
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .text {
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link .text {
    font-size: 10px;
    margin: 0;
  }
}
.toppage .book_sec .inner .category_content .four_cols .f_boxs .f_box .link:hover .thumnail img {
  transform: scale(1.04);
  transition: 0.4s;
}
@media (max-width: 780px) {
  .toppage .book_sec .inner .category_content .no_columns .f_boxs .f_box {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
.toppage .book_sec .inner .category_content .desc_text {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 480px) {
  .toppage .book_sec .inner .category_content .desc_text {
    font-size: 10px;
  }
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents {
    width: 90%;
    margin: 0 auto;
  }
}
.toppage .about_sec .inner .about_contents .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 40px;
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box {
  width: 48%;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .f_boxs .f_box {
    width: 100%;
    margin: 0 0 30px;
  }
  .toppage .about_sec .inner .about_contents .f_boxs .f_box:last-child {
    margin: 0;
  }
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: inline-block;
  position: relative;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi {
    font-size: 18px;
    margin: 0 0 14px;
  }
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi .ig {
  position: absolute;
  right: -60px;
  top: 0px;
  width: 32px;
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi .ig .ig_link {
  width: 36px;
  height: 36px;
  display: block;
  background-image: url("../images/ig_icon.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box .midashi .ig .ig_link:hover {
  opacity: 1;
  background-image: url("../images/ig_icon_hov.png");
}
.toppage .about_sec .inner .about_contents .f_boxs .f_box .text {
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .f_boxs .f_box .text {
    margin: 0 0 20px;
  }
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .f_boxs .f_box .ig_link {
    width: 40px;
    height: 40px;
    margin: 0 0 20px;
  }
}
.toppage .about_sec .inner .about_contents .media_area {
  margin: 0 0 40px;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .media_area {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 40px;
  }
}
.toppage .about_sec .inner .about_contents .media_area .f_boxs {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box {
  width: 48%;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box {
    width: 100%;
  }
}
.toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box .link .img {
  height: 220px;
  transition: 0.4s;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box .link .img {
    height: auto;
    margin: 0 0 10px;
  }
}
.toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box .link .text {
  font-size: 14px;
  letter-spacing: 0;
}
@media (max-width: 780px) {
  .toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box .link .text {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .toppage .about_sec .inner .about_contents .media_area .f_boxs .f_box .link .text {
    font-size: 10px;
  }
}
.toppage .about_sec .inner .about_contents .btn_area {
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #211815;
}
.toppage .about_sec .inner .about_contents .btn_area .btn {
  display: block;
  padding: 20px 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.toppage .about_sec .inner .about_contents .btn_area:hover {
  border-color: #d4000f;
}
.toppage .about_sec .inner .about_contents .btn_area:hover .btn {
  color: #d4000f;
  opacity: 1;
  transition: 0s;
}

/*************************
* subpage common
**************************/
.subpage .subpage_header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.subpage .subpage_header .sec_inner .subpage_ttl {
  font-size: clamp(20px, 4vw, 36px);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 0px;
}

/*************************
* contact
**************************/
.subpage_contact article .page_content .inner .contact_content .headline {
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: center;
  margin: 0 0 50px;
  font-family: "Noto Sans", sans-serif;
}
@media (max-width: 780px) {
  .subpage_contact article .page_content .inner .contact_content .headline {
    margin: 0 0 30px;
  }
}
@media (max-width: 480px) {
  .subpage_contact article .page_content .inner .contact_content .headline {
    margin: 0px;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box {
  background-color: #fff;
  padding: 50px 0;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form {
  width: 800px;
  max-width: 94%;
  margin: 0 auto;
  /* プライバシーボックス */
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table {
  width: 100%;
  border-collapse: collapse;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table td {
  display: block;
  letter-spacing: 0.05em;
  width: 100%;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table .wpcf7-form-control-wrap {
  display: block;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=text],
.subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=email],
.subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=tel],
.subpage_contact article .page_content .inner .contact_content .form_box .form table textarea {
  width: 100%;
  padding: 14px 10px;
  background-color: #fff;
  border-width: 1px;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media (max-width: 780px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=text],
  .subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=email],
  .subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=tel],
  .subpage_contact article .page_content .inner .contact_content .form_box .form table textarea {
    padding: 10px 6px;
    font-size: 14px;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table input[type=radio] {
  display: none;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table .wpcf7-form-control-wrap:has(select) {
  display: inline-block;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form table .wpcf7-form-control-wrap:has(select) select {
  padding: 14px 10px;
  padding: 14px 20px 14px 10px;
  background-color: #fff;
}
@media (max-width: 780px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form table td {
    display: block;
    text-align: left;
    width: 100%;
  }
  .subpage_contact article .page_content .inner .contact_content .form_box .form table td:first-child {
    width: 100%;
  }
  .subpage_contact article .page_content .inner .contact_content .form_box .form table td:last-child {
    width: 100%;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .privacy {
  margin-top: 10px;
  text-align: center;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .privacy label {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form .privacy label {
    font-size: 12px;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .privacy label .link {
  text-decoration: underline;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .privacy label input[type=checkbox] {
  margin-right: 5px;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box {
  border-radius: 6px;
  margin: 24px 0 16px;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__head {
  font-weight: 700;
  margin-bottom: 8px;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body {
  line-height: 1.65;
  max-height: 15em; /* 行高1.6 × 6行 = 約6行ぶんの高さ */
  overflow: auto;
  padding: 10px 10px 30px;
  background: #fff;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
}
@media (max-width: 780px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body {
    max-height: 20em;
  }
}
@media (max-width: 480px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body {
    max-height: 24em;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body p {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 480px) {
  .subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body p {
    font-size: 12px;
  }
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__body p .bold {
  font-weight: 600;
  margin: 20px 0 0;
  display: inline-block;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .policy-box__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.95em;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn {
  width: 700px;
  max-width: 90%;
  margin: 40px auto 0;
  text-align: center;
  border: 1px solid #211815;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn p {
  margin: 0;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn .btn {
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn .btn .submit {
  border: none;
  padding: 0;
  background: none;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: #000;
  opacity: 1;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn .btn span.wpcf7-spinner {
  display: none;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn:hover {
  border-color: #d4000f;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn:hover .btn {
  color: #d4000f;
  opacity: 1;
  transition: 0s;
}
.subpage_contact article .page_content .inner .contact_content .form_box .form .submit_btn:hover .btn .submit {
  color: #d4000f;
}/*# sourceMappingURL=style.css.map */