@charset "UTF-8";
html {
  font-size: 14px;
}
main {
  font-family: "Noto Serif JP", serif !important;
  background-color: #2d2d2d;
  color: #fff;
}

.garamond {
  font-family: "EB Garamond", serif !important;
}

.row-reverse {
  flex-direction: row-reverse;
}
a:hover,
a:active {
  color: #fff !important;
}

/* 予告広告
======================================== */
.yokoku {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-top: 10px;
  padding-bottom: 10px;
}
.inn {
  margin: 0 auto;
  padding: 3px 20px;
  box-sizing: border-box;
}
.yokoku dl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yokoku dt {
  font-size: 13px;
  padding: 5px 15px;
  background: #eee;
  border: 1px solid #444;
  text-align: center;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.yokoku dd {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.yokoku dd span {
  font-size: 12px;
}
.yokoku dd .ml {
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .yokoku .inn dl {
    justify-content: flex-start;
  }
  .yokoku dd .ml {
    margin-left: 0px;
  }
  .yokoku .inn dl dt {
    padding: 3px 8px;
    font-size: 11px !important;
  }
  .yokoku .inn dl dd {
    font-size: 14px;
  }
  .sp_yokoku {
    font-size: 10px;
    margin-top: 6px;
  }
}

/* mainvisual
====================================== */
.mv_contents {
  position: relative;
}
#mainvisual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 800;
  background-color: #2d2d2d;
}
.swiper-slide {
  position: relative;
}
/* .swiper-slide:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 20%;
  background: linear-gradient(
    to bottom,
    rgba(30, 87, 153, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
} */
#mainvisual .main_slide {
  opacity: 1;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#mainvisual .main_slide .main_slide_image {
  position: absolute;
  inset: 0;
}
#mainvisual .main_slide .main_slide span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#mainvisual .main_slide .swiper-slide .main_slide {
  opacity: 0;
  /* filter: brightness(500%); */
  transition:
    opacity 1.5s linear,
    filter 1.5s linear;
  will-change: opacity;
}
#mainvisual .main_slide .swiper-slide.swiper-slide-active .main_slide {
  opacity: 1;
  /* filter: brightness(100%); */
  transition:
    opacity 1.5s linear,
    filter 1.5s linear;
}
#mainvisual .main_slide .swiper-slide-active .main_slide span,
#mainvisual .swiper-slide-prev .main_slide span {
  /* スライド時は下記を使う */
  /* animation:10s zoom_down linear 0s both; */

  /* 1枚の時は下記を使う */
  /* animation: 2s zoom_down linear 0s both; */
}
@keyframes zoom_down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#mainvisual .main_slide .main_slide.main_slide01 span {
  background-image: url("../img/top/mv01_pc.jpg");
}
#mainvisual .main_slide .main_slide.main_slide02 span {
  background-image: url("../img/top/mv02_pc.jpg");
}
#mainvisual .main_slide .main_slide.main_slide03 span {
  background-image: url("../img/top/mv03_pc.jpg");
}

@media only screen and (max-width: 768px) {
  #mainvisual {
    aspect-ratio: 750 / 950;
  }
  #mainvisual .main_slide .main_slide.main_slide01 span {
    background-image: url("../img/top/mv01_sp.jpg");
  }
  #mainvisual .main_slide .main_slide.main_slide02 span {
    background-image: url("../img/top/mv02_sp.jpg");
  }
  #mainvisual .main_slide .main_slide.main_slide03 span {
    background-image: url("../img/top/mv03_sp.jpg");
  }
}

/* 
============================ */
.inner {
  width: calc(100% - 40px);
  max-width: 1600px;
  margin-inline: auto;
}

/* ========================================
mv_lead_area
===========================================*/
.mv_lead_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 1s ease,
    filter 1s ease;
    z-index: 10;
}
.mv_lead_area.active {
  opacity: 1;
  filter: blur(0);
}

/* 
=========================== */
.contents_lead {
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #fff;
}
.contents_text {
  margin-top: 36px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.25;
  color: #fff;
}
.section_title {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.section_title .en {
  display: block;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

@media only screen and (max-width: 768px) {
  .contents_lead {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .contents_text {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 2;
  }
  .section_title {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .section_title .en {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

/* top_area
============================== */
.top_area {
  padding-top: 80px;
  padding-bottom: 60px;
}
.top_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 100px;
}

@media only screen and (max-width: 768px) {
  .top_area {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .top_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
}

/* lineup
============================ */
.lineup {
  position: relative;
  padding-bottom: 180px;
}
.lineup::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 790px;
  bottom: 0;
  left: 0;
  background: url(../img/top/lineup_bg.jpg) no-repeat center center / cover;
}
.lineup_wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 66px;
}
.lineup_item {
  width: 100%;
  max-width: 480px;
  transition: 0.4s;
}
.lineup_item_body {
  position: relative;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff !important;
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 50px;
  font-weight: 100;
}
.lineup_item_body::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: url(../img/top/icon_down.png) no-repeat center center / contain;
}
.lineup_item:hover {
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

@media only screen and (max-width: 768px) {
  .lineup {
    position: relative;
    padding-bottom: 120px;
  }
  .lineup::before {
    height: 560px;
  }
  .lineup_wrap {
    margin-top: 30px;
    gap: 14px;
  }
  .lineup_item {
    display: flex;
  }
  .lineup_img {
    width: 46%;
    overflow: hidden;
  }
  .lineup_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lineup_item_body {
    flex: 1;
    font-size: 12px;
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .lineup_item_body::before {
    bottom: 10px;
    width: 20px;
    height: 10px;
  }
}

/* project
============================= */
.project_head {
  padding-top: 80px;
  padding-bottom: 60px;
}
.project_contents {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 90px;
}
.project_top {
  display: flex;
  /* align-items: center; */
}
.project_kv figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 900 / 650;
  overflow: hidden;
}
.project_kv figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project_body {
  width: 100%;
  max-width: 760px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.project_body.right {
  margin-right: calc((100vw - 1400px) / 2);
  padding-left: 100px;
}
.project_body.left {
  margin-left: calc((100vw - 1400px) / 2);
  padding-right: 100px;
}
.project_body_contents {
  width: 100%;
  padding-top: 20px;
}
.project_name {
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin-bottom: 42px;
}
.project_merit_list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.project_merit {
  padding: 10px;
  padding-left: 20px;
  width: 100%;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.project_merit .text_s {
  font-size: 16px;
  line-height: 1.2;
}
.project_merit .num {
  font-size: 36px;
  line-height: 1;
}
.project_spec {
  margin-top: 80px;
}
.project_spec .inner {
  max-width: 1400px;
}
.project_spec_wrap {
  display: flex;
  column-gap: 30px;
}
.project_plan {
  width: 100%;
  max-width: 760px;
  background-color: #fff;
  padding: 10px 30px;
  box-sizing: border-box;
}
.project_plan_slider {
  width: 100%;
}
.project_plan_item {
  line-height: 0;
}
.project_plan_item img {
  width: 100%;
  height: auto;
  display: block;
}
/* 矢印 */
.project_plan .slick-prev:before,
.project_plan .slick-next:before {
  content: "";
}
.project_plan .slick-prev,
.project_plan .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.project_plan .slick-prev {
  left: -30px;
  background: url("../img/top/icon_prev.png") no-repeat center / contain;
}
.project_plan .slick-next {
  right: -30px;
  background: url("../img/top/icon_next.png") no-repeat center / contain;
}
.project_plan .slick-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}
.project_plan .slick-next:hover {
  transform: translateY(-50%) translateX(3px);
}
/* ドット */
.project_plan .slick-dots {
  bottom: -35px;
}
.project_plan .slick-dots li button:before {
  font-size: 12px;
  color: #000;
}
.project_plan .slick-dots li.slick-active button:before {
  color: #000;
}

.project_spec_body {
  width: calc(100% - 40px);
  margin-inline: auto;
  max-width: 640px;
  display: flex;
  justify-content: center;
}
.project_spec_item {
  width: 100%;
}
.ldk {
  word-break: break-all;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin-bottom: 26px;
}
.menseki {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 400;
}
.menseki .num_l {
  font-size: 30px;
}
.menseki .num_m {
  font-size: 21px;
}
.spec_text {
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.btn_wrap {
  margin-top: 65px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn {
  display: block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #000000 !important;
  padding-block: 13px;
  transition: 0.4s;
}
.btn.req {
  background-color: #868686;
  color: #fff !important;
}
.btn.reserve {
  background-color: #cac5a2;
  color: #000000 !important;
}
a.btn.hp:hover,
a.btn.hp:active,
a.btn.reserve:hover,
a.btn.reserve:active {
  color: #000 !important;
}
.btn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1440px) {
  .project_body.right {
    margin-right: 20px;
    padding-left: 40px;
  }
  .project_body.left {
    margin-left: 20px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .project_spec_wrap {
    margin-inline: auto;
    max-width: 760px;
    flex-direction: column;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .project_head {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .project_contents {
    padding-bottom: 50px;
  }
  .project_top {
    flex-direction: column;
  }
  .project_body {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding-top: 40px;
    justify-content: center;
  }
  .project_body.right,
  .project_body.left {
    padding-inline: 0px;
    margin-inline: auto;
    max-width: 760px;
  }
  .project_body_contents {
    padding-top: 0px;
  }
  .project_name {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .project_merit {
    padding-left: 10px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .project_merit .text_s {
    font-size: 12px;
  }
  .project_merit .num {
    font-size: 20px;
  }
  .project_spec {
    margin-top: 40px;
  }
  .project_plan {
    padding: 10px 20px;
  }
  .project_plan .slick-prev {
    left: -30px;
  }
  .project_plan .slick-next {
    right: -30px;
  }
  .project_spec_body {
    width: 100%;
  }
  .ldk {
    font-size: 18px;
    letter-spacing: 0.2em;
    line-height: 1.6;
    margin-bottom: 26px;
  }
  .menseki {
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
  .menseki .num_l {
    font-size: 20px;
  }
  .menseki .num_m {
    font-size: 16px;
  }
  .spec_text {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .btn_wrap {
    margin-top: 34px;
    flex-direction: column;
    gap: 16px;
  }
  .btn {
    margin-inline: auto;
  }
}

/* contents_wrap
=============================== */

.contents_area {
  padding-top: 90px;
  padding-bottom: 140px;
  color: #fff;
  background: url(../img/top/quality_bg.jpg) no-repeat center center / cover;
}
.contents_wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.contents_wrap + .contents_wrap {
  margin-top: 50px;
}
.contents_wrap.aic {
  align-items: center;
}
.contents_large {
  position: relative;
  width: calc(1050 / 1600 * 100%);
  max-width: 1050px;
  aspect-ratio: 105 / 50;
}
.contents_small {
  position: relative;
  width: calc(500 / 1600 * 100%);
  max-width: 500px;
  aspect-ratio: 1 / 1;
}
.contents_small.contents_small_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_small.bg01 {
  background-color: #2d2d2d;
}
.contents_small.bg02 {
  background-color: #fff;
  color: #000;
}
.contents_small_en {
  font-size: 46px;
  font-size: clamp(1.857rem, -0.689rem + 3.478vw, 3.286rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 24px;
}
.contents_small_text {
  font-size: 15px;
  font-size: clamp(0.786rem, 0.276rem + 0.696vw, 1.071rem);
  letter-spacing: 0.1em;
  line-height: 1.875;
  font-weight: 200;
}
.contents_small_lead {
  font-size: 30px;
  font-size: clamp(1.571rem, 0.553rem + 1.391vw, 2.143rem);
  letter-spacing: 0.1em;
  line-height: 2.4;
  font-weight: 400;
}

@media only screen and (max-width: 1024px) {
  .contents_area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contents_wrap {
    max-width: 500px;
    margin-inline: auto;
    flex-direction: column;
    row-gap: 20px;
  }
  .contents_wrap.column-reverse {
    flex-direction: column-reverse;
    row-gap: 10px;
  }
  .contents_wrap.sp_gap {
    row-gap: 10px;
  }
  .contents_wrap + .contents_wrap {
    margin-top: 20px;
  }
  .contents_large {
    width: 100%;
    aspect-ratio: initial;
  }
  .contents_small {
    width: 100%;
    aspect-ratio: initial;
  }
  .contents_title {
    font-size: 28px;
  }

  .contents_small.contents_small_center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contents_small.sp_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
  .contents_small.sp_grid .contents_text {
    margin-top: 0;
    text-align: justify;
  }
  .contents_small.bg01 {
    padding-block: 20px;
    padding-inline: 30px;
    justify-content: left;
  }
  .contents_small.bg02 {
    padding-block: 20px;
  }
  .contents_small_en {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .contents_small_text {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .contents_small_lead {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
    padding-block: 25px;
  }
}

/* contents_small_link
============================ */
.contents_small.contents_small_link {
  overflow: hidden;
  transition: all 0.4s ease-out;
}
.contents_small.contents_small_link img {
  transition: all 0.4s ease-out;
}
.contents_small.contents_small_link:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}
a .contents_small_link_title {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 72px;
  font-size: clamp(3.429rem, 0.373rem + 4.174vw, 5.143rem);
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff !important;
  font-weight: 200;
  text-shadow:
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3);
}
a .more {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 15px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #fff !important;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-shadow:
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3),
    0px 0px 10px rgba(0, 0, 0, 0.3);
}
.more_arrow {
  margin-bottom: 12px;
}

@media only screen and (max-width: 1024px) {
  .contents_wrap.sp_wrap {
    margin-top: 30px;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }
  .contents_small.contents_small_link {
    width: calc(50% - 5px);
  }
  a .contents_small_link_title {
    top: 6px;
    right: 6px;
    font-size: 30px;
  }
  a .more {
    bottom: 0px;
    right: 5px;
    font-size: 10px;
    letter-spacing: 0.1em;
    column-gap: 6px;
  }
  .more_arrow {
    width: 26px;
    margin-bottom: 12px;
  }
}

/* pickup
======================================== */
.pickup {
  padding-top: 110px;
  padding-bottom: 110px;
}
.pickup_wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 68px;
}
.pickup_link {
  display: block;
  transition: 0.4s;
}
.pickup_link:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  .pickup {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pickup_wrap {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 16px;
  }
}

/* モーダル
============================================ */
.modaal-container {
  max-width: 1200px;
  background-color: #fff;
}
.modaal-content-container {
  padding-block: 80px;
  overflow: hidden;
}
.modal_contents {
  font-family: "Noto Serif JP", serif !important;
  max-width: 1000px;
  margin-inline: auto;
}
.modal_title {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.modal_title::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 120px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
  font-weight: 300;
}
.modal_wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.modal_wrap.aic {
  align-items: center;
}
.modal_item_body {
  width: 100%;
  max-width: 480px;
}
.modal_item_body.flex_space-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.modal_item_meta {
  margin-bottom: 16px;
}
.modal_item_title {
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.modal_item_title span {
  font-size: 16px;
}
.modal_item_text {
  text-align: justify;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.modal_item_body_cap {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: normal;
  line-height: 1.5;
  min-height: 15px;
}

@media only screen and (max-width: 768px) {
  .modaal-content-container {
    padding-block: 40px;
    padding-inline: 20px;
  }
  .modal_title {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .modal_title::before {
    content: attr(data-title);
    position: absolute;
    top: -38px;
    right: -28px;
    transform: none;
    font-size: 80px;
  }
  .modal_wrap {
    margin-top: 40px;
    flex-direction: column;
    row-gap: 30px;
  }
  .modal_item_meta {
    margin-bottom: 10px;
  }
  .modal_item_title {
    font-size: 15px;
    letter-spacing: 0.05em;
    padding-bottom: 6px;
    margin-bottom: 12px;
  }
  .modal_item_title span {
    font-size: 13px;
  }
  .modal_item_text {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .modal_item_body_cap {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: normal;
    line-height: 1.5;
  }
}

/* modal_contents_tec
======================== */
.modal_contents_tec .modal_item_img {
  margin-right: -10%;
}
@media only screen and (max-width: 768px) {
  .modal_contents_tec .modal_item_img {
    margin-right: -20%;
    margin-left: -10%;
  }
}

/* modal_contents_hepa
======================== */
.hepa_box {
  margin-top: 50px;
  border: 1px solid #cccccc;
  padding: 30px 30px;
}
.hepa_box_wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.hepa_box_body {
  width: 100%;
  max-width: 560px;
}
.hepa_box_img {
  width: 100%;
  max-width: 320px;
}
.hepa_box_title {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hepa_box_text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
a.hepa_box_link {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding-right: 16px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #000000 !important;
  border-bottom: 1px solid #000;
  transition: 0.4s;
}
.hepa_box_link:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hepa_box_link:hover {
  opacity: 0.6;
  color: #000000 !important;
}

@media only screen and (max-width: 768px) {
  .hepa_box {
    margin-top: 20px;
    padding: 20px;
  }
  .hepa_box_wrap {
    flex-direction: column;
    row-gap: 20px;
  }
  .hepa_box_title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .hepa_box_text {
    font-size: 13px;
  }
  .hepa_box_link {
    display: inline-block;
    margin-inline: auto;
    text-align: center;
    margin-top: 20px;
    padding-right: 16px;
    font-size: 13px;
  }
  .hepa_box_link:after {
    top: 6px;
    right: 2px;
    width: 7px;
    height: 7px;
  }
}

/* inline_design
=============================== */
.inline_design_wrap {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}
.inline_design01 {
  width: 100%;
  max-width: 400px;
}
.inline_design02 {
  width: 100%;
  max-width: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 20px;
}
.inline_design_grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}
.inline_design_title {
  text-align: center;
  margin-top: 10px;
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.inline_design_title span {
  display: block;
  font-size: 16px;
}
.inline_design_text {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .inline_design_wrap {
    margin-top: 24px;
    flex-direction: column;
    row-gap: 6px;
  }
  .inline_design_grid {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
  .inline_design_title {
    margin-top: 10px;
    font-size: 17px;
  }
  .inline_design_title span {
    font-size: 12px;
  }
  .inline_design_text {
    margin-top: 8px;
    font-size: 12px;
  }
}

/* modal_btn
=========================== */
.modal_btn_wrap {
  text-align: center;
  margin-top: 40px;
}
a.modal_btn {
  position: relative;
  margin-inline: auto;
  text-align: center;
  display: inline-block;
  padding: 15px 28px;
  border: 1px solid #111;
  background: transparent;
  color: #111 !important;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.modal_btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.4s;
}
.modal_btn:hover {
  background: #111;
  color: #fff !important;
}
.modal_btn:hover::after {
  border-color: #fff;
}

@media only screen and (max-width: 768px) {
  .modal_btn_wrap {
    margin-top: 40px;
  }
  a.modal_btn {
    width: 90%;
    padding: 8px 20px;
    font-size: 14px;
  }
}
