@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
@font-face {
  font-family: "CaliforniaBright";
  src: url(assets/font/CaliforniaBright.otf);
}
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #333333;
  background-color: #fff;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 981px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 980px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 981px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .pcNone {
    display: block;
  }
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
}

.ja_r {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.ja_b {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.en_l {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.cursive {
  font-family: "CaliforniaBright";
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  color: #333333;
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
header {
  position: fixed;
  inset: 0;
  width: 100%;
  height: fit-content;
  z-index: 99;
  background-color: #fff;
}

@media screen and (max-width: 980px) {
  header {
    height: 64px;
  }
  header.active .humberger_menu .icon span:nth-child(1) {
    rotate: 20deg;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
  }
  header.active .humberger_menu .icon span:nth-child(2) {
    opacity: 0;
  }
  header.active .humberger_menu .icon span:nth-child(3) {
    rotate: -20deg;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
  }
  header.active nav {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  header .container {
    width: 100%;
  }
  header .logo {
    width: 120px;
    margin: 14px auto 0 15px;
  }
  header nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
  }
  header nav .contact_btn {
    display: none;
  }
  header nav ul {
    max-width: 300px;
    margin-inline: auto;
    padding: 40px 32px 72px 32px;
    display: grid;
    gap: 8px;
  }
  header nav ul li a {
    border-bottom: 1px solid #333333;
    padding: 12px 8px;
    display: flex;
    justify-content: space-between;
  }
  header nav ul li a:after {
    content: "";
    clip-path: polygon(100% 54%, 0 100%, 0 0);
    width: 12px;
    height: 8px;
    background-color: #333333;
  }
  header .pcNone:has(.humberger_menu) {
    position: absolute;
    right: 64px;
    top: 0;
  }
  header .pcNone:has(.contact_btn) {
    position: absolute;
    right: 0;
    top: 0;
  }
  header .humberger_menu {
    background-color: #f5f5f5;
    height: 64px;
    display: grid;
    place-content: center;
    gap: 12px;
    width: 120px;
  }
  header .humberger_menu .icon {
    position: relative;
    width: 24px;
    height: 8px;
    margin-inline: auto;
  }
  header .humberger_menu .icon span {
    transition: all 0.4s;
    height: 1px;
    width: 100%;
    background-color: #333333;
    position: absolute;
    left: 0;
  }
  header .humberger_menu .icon span:nth-child(1) {
    top: 0;
  }
  header .humberger_menu .icon span:nth-child(2) {
    translate: 0 -50%;
    top: 50%;
  }
  header .humberger_menu .icon span:nth-child(3) {
    bottom: 0;
  }
  header .contact_btn {
    width: 64px;
    display: grid;
    place-content: center;
    background: linear-gradient(45deg, #02ae88, #5ac2f7);
    height: 64px;
  }
  header .contact_btn img {
    width: 28px;
  }
}
@media screen and (min-width: 981px) {
  header .container {
    display: grid;
    grid-template-columns: min(160px, 11.1111111111vw) auto;
    align-items: center;
    padding-left: max(50px, 3.4722222222vw);
  }
  header nav {
    display: grid;
    grid-template-columns: auto 240px;
    gap: 48px;
    align-items: center;
  }
  header nav ul {
    display: flex;
    align-items: center;
    gap: min(16px, 1.1111111111vw);
  }
  header nav li a {
    padding: 1em;
    font-size: min(16px, 1.1111111111vw);
    transition: all 0.4s;
  }
  header nav li a:hover {
    color: #02ae88;
  }
  header .nav_menu {
    margin: 0 0 0 auto;
  }
  header .contact_btn {
    text-align: center;
    background: linear-gradient(45deg, #02ae88, #5ac2f7);
    color: #fff;
    height: 80px;
    display: grid;
    place-content: center;
    transition: all 0.4s;
    border: 1px solid #02ae88;
  }
  header .contact_btn:hover {
    color: #02ae88;
    background: #fff;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
footer {
  margin-top: 160px;
  background-color: #f5f5f5;
  padding: 96px 0 48px;
  position: relative;
}
footer .footer_logo {
  width: 220px;
}
footer .footer_grid {
  width: 590px;
  display: grid;
  gap: 40px;
}
footer .footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer .footer_nav ul li {
  width: 180px;
}
footer .footer_nav ul li a {
  width: auto;
  justify-content: space-between;
}
footer .link_wrap {
  display: flex;
  gap: 8px;
}
footer .link_wrap a {
  min-width: fit-content;
}
footer .sns_wrap {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  align-items: center;
  gap: 32px;
}
footer .footer_copy {
  font-size: 12px;
  text-align: center;
  padding-top: 96px;
  grid-column: 1/3;
  width: 100%;
}
.top_btn {
  width: 80px;
  height: 80px;
  background-color: #d9d9d9;
  position: fixed;
  bottom: 0;
  right: 0;
  border-radius: 8px 0 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 98;
}
.top_btn:before {
  content: "";
  width: 24px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@media screen and (min-width: 981px) {
  footer .footer_inner {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px 48px;
  }
}
@media screen and (max-width: 980px) {
  footer .footer_grid {
    width: auto;
    place-content: center;
  }
  footer .footer_logo {
    margin-inline: auto;
  }
  footer .footer_nav ul {
    justify-content: center;
  }
  footer .footer_nav ul li a {
    font-size: 14px;
  }
  footer .link_wrap {
    display: grid;
    width: 66.6666666667vw;
    margin-inline: auto;
  }
  footer .link_wrap a {
    font-size: 18px;
    padding: 20px 0;
  }
  footer .sns_wrap {
    justify-content: center;
  }
  footer .map {
    margin: 56px auto;
    width: 100%;
  }
  footer .map iframe {
    display: block;
    width: 100%;
    height: 165px;
  }
  footer .footer_copy {
    padding: 0 0 96px;
  }
  .top_btn {
    width: 64px;
    height: 64px;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.btn_wrap {
  position: relative;
  z-index: 11;
}
.btn_wrap li a {
  background: linear-gradient(45deg, #02ae88, #5ac2f7);
  border-radius: 16px;
  border: 1px solid linear-gradient(45deg, #02ae88, #5ac2f7);
  color: #fff;
  line-height: 1.4;
  position: relative;
}

.arrow_btn {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 8px 10px;
  border-bottom: 1px solid #fff;
  width: fit-content;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.arrow_btn .arrow {
  clip-path: polygon(100% 54%, 0 100%, 0 0);
  background-color: #fff;
  width: 12px;
  height: 8px;
}
.arrow_btn.black {
  color: #333333;
  border-bottom: 1px solid #333333;
}
.arrow_btn.black .arrow {
  background-color: #333333;
}
.arrow_btn.white {
  color: #02ae88;
  background-color: #fff;
  border-bottom: none;
  font-weight: 400;
  padding: 10px 24px;
}
.arrow_btn.white .arrow {
  background-color: #02ae88;
}

.gra_btn {
  font-size: 18px;
  text-align: center;
  padding: 20px 32px;
  background: linear-gradient(45deg, #02ae88, #5ac2f7);
  color: #fff;
  border-radius: 3px;
  min-width: max(280px, 19.4444444444vw);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.section_title h2 {
  font-size: 62px;
  padding-bottom: 8px;
}
.section_title .sub_title {
  font-size: 16px;
  letter-spacing: 0.08em;
}
.section_title.common_bottom {
  margin-bottom: 40px;
}
.section_title.center_title {
  text-align: center;
}

.cate_li {
  display: flex;
  gap: 4px;
}
.cate_li li {
  background-color: #fff;
  padding: 4px 10px;
  font-size: 16px;
  border-radius: 3px;
  line-height: 1.4;
}
.cate_li.single_page_cate li {
  background-color: #333;
  color: #fff;
}

.news_cate_li {
  display: grid;
  gap: 40px;
}

.cate_title {
  font-size: 18px;
  padding: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #333;
}

.cate_li {
  width: 100%;
  flex-wrap: wrap;
}
.cate_li li {
  border: 1px solid #333;
}

.page_wrapper {
  padding-top: 140px;
}
.page_wrapper .page_header {
  display: flex;
  align-items: flex-end;
  padding: 0 80px;
  justify-content: space-between;
}
.page_wrapper .page_header h1 {
  font-size: 64px;
  padding-bottom: 8px;
}
.page_wrapper .page_header .sub_title {
  font-size: 16px;
}
.page_wrapper .header_image {
  margin: 64px 0 72px;
}
.page_wrapper .page_lead_text {
  font-size: 16px;
  width: 520px;
  line-height: 1.8;
  margin: 0 auto 72px 80px;
}

.archive_wrapper,
.contact_wrapper,
.single_wrapper {
  margin-top: 80px;
}
.archive_wrapper .page_header,
.contact_wrapper .page_header,
.single_wrapper .page_header {
  padding: 64px 0;
  margin-bottom: 72px;
  background-color: #f5f5f5;
}
.archive_wrapper .page_header .common_container,
.contact_wrapper .page_header .common_container,
.single_wrapper .page_header .common_container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.archive_wrapper h1,
.contact_wrapper h1,
.single_wrapper h1 {
  font-size: 64px;
  padding-bottom: 8px;
}
.archive_wrapper .sub_title,
.contact_wrapper .sub_title,
.single_wrapper .sub_title {
  font-size: 16px;
}
@media screen and (min-width: 981px) {
  .archive_wrapper .page_title_section,
  .contact_wrapper .page_title_section,
  .single_wrapper .page_title_section {
    padding-left: 80px;
  }
  .archive_wrapper .pan_li,
  .contact_wrapper .pan_li,
  .single_wrapper .pan_li {
    padding-right: 80px;
  }
}

.pan_li {
  display: flex;
}

.news_more_btn {
  margin-top: 80px;
  border-radius: 3px;
  text-align: center;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0;
}
.news_more_btn .arrow {
  display: block;
  clip-path: polygon(100% 54%, 0 100%, 0 0);
  background-color: #333;
  width: 12px;
  height: 8px;
  rotate: 90deg;
}

@media screen and (max-width: 980px) {
  .btn_wrap .btn_li {
    display: grid;
    gap: 4px;
    width: 92vw;
    margin-inline: auto;
  }
  .btn_wrap li a {
    display: grid;
    gap: 24px;
    grid-template-columns: 56px auto 48px;
    padding: 8px 0 8px 16px;
    font-size: 16px;
    align-items: center;
  }
  .btn_wrap li a span {
    border-left: 0.5px solid #fff;
    width: 48px;
    height: 100%;
    position: relative;
  }
  .btn_wrap li a span:before {
    content: "";
    width: 8px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    rotate: -90deg;
  }
  .common_container {
    width: 92vw;
    margin-inline: auto;
  }
  .arrow_btn {
    font-size: 16px;
  }
  .section_title {
    text-align: center;
    margin-bottom: 24px;
  }
  .section_title h2 {
    font-size: 40px;
    padding-bottom: 4px;
  }
  .section_title .sub_title {
    font-size: 12px;
  }
  .section_title.common_bottom {
    margin-bottom: 0;
  }
  .section_title.center_title {
    text-align: center;
  }
  .cate_li li {
    font-size: 12px;
  }
  .page_wrapper {
    padding-top: 96px;
  }
  .page_wrapper .page_header {
    padding: 0 16px;
    justify-content: space-between;
  }
  .page_wrapper .page_header h1 {
    font-size: 32px;
    padding-bottom: 4px;
  }
  .page_wrapper .page_header .sub_title {
    font-size: 12px;
  }
  .page_wrapper .header_image {
    margin: 16px 0 72px;
    height: 180px;
  }
  .page_wrapper .page_lead_text {
    font-size: 14px;
    line-height: 1.8;
    width: 80vw;
    margin-inline: auto;
  }
  .archive_wrapper,
  .contact_wrapper,
  .single_wrapper {
    margin-top: 64px;
  }
  .archive_wrapper h1,
  .contact_wrapper h1,
  .single_wrapper h1 {
    font-size: 32px;
    padding-bottom: 4px;
  }
  .archive_wrapper .sub_title,
  .contact_wrapper .sub_title,
  .single_wrapper .sub_title {
    font-size: 12px;
  }
  .archive_wrapper .page_header,
  .contact_wrapper .page_header,
  .single_wrapper .page_header {
    margin-bottom: 32px;
  }
  .archive_wrapper .news .news_cate {
    display: block;
  }
  .archive_wrapper .news .common_container {
    gap: 80px;
    display: flex;
    flex-direction: column-reverse;
  }
  .archive_wrapper .news .common_container .pc_left {
    display: block;
  }
  .pan_li {
    justify-content: center;
    font-size: 11px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: left;
  }
}
@media screen and (min-width: 981px) {
  .max_container {
    max-width: 1440px;
    margin-inline: auto;
  }
  .common_container {
    width: 83.3333333333vw;
    margin-inline: auto;
  }
  .btn_wrap .btn_li {
    display: flex;
    gap: 8px;
  }
  .btn_wrap li a {
    display: grid;
    gap: 14px;
    width: min(200px, 13.8888888889vw);
    padding: 40px 0 0 0;
    text-align: center;
    justify-content: center;
    font-size: min(18px, 1.25vw);
    transition: all 0.4s;
  }
  .btn_wrap li a:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .btn_wrap li a figure {
    width: min(64px, 4.4444444444vw);
    margin-inline: auto;
  }
  .btn_wrap li a span {
    border-top: 0.5px solid #fff;
    width: min(200px, 13.8888888889vw);
    height: min(64px, 4.4444444444vw);
    position: relative;
  }
  .btn_wrap li a span:before {
    content: "";
    width: 8px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .gra_btn {
    transition: all 0.4s;
  }
  .gra_btn:hover {
    transform: translateY(-3px);
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.lead_slider .swiper-wrapper {
  transition-timing-function: linear;
}

.fade_slider .swiper-pagination {
  bottom: 16px !important;
}
.fade_slider .swiper-pagination-bullet {
  height: 4px;
  width: 64px;
  border-radius: 0;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .fade_slider .swiper-pagination-bullet {
    height: 2px;
    width: 32px;
  }
}

.staff_slider.swiper .swiper-arrow {
  position: absolute;
  bottom: 8px;
  right: min(120px, 8.3333333333vw);
  width: 96px;
  height: 40px;
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 980px) {
  .staff_slider.swiper .swiper-arrow {
    translate: -50% 0;
    left: 50%;
    right: initial;
  }
}
.staff_slider.swiper .swiper-button-prev,
.staff_slider.swiper .swiper-button-next {
  position: initial;
  margin: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.staff_slider.swiper .swiper-button-prev:after,
.staff_slider.swiper .swiper-button-next:after {
  content: "";
  clip-path: polygon(100% 54%, 0 100%, 0 0);
  background-color: #333;
  width: 12px;
  height: 8px;
}
.staff_slider.swiper .swiper-button-prev {
  rotate: 180deg;
}

.fv {
  position: relative;
}
.fv .fv_container {
  position: relative;
  z-index: 3;
}
.fv h1 {
  line-height: 1.2;
}
.fv h1 .color {
  color: #02ae88;
}
.fv .fv_text {
  color: #fff;
  line-height: 1.4;
}

.lead .lead_title {
  font-size: 80px;
  width: 320px;
  margin-inline: auto;
}
.lead .lead_title p {
  width: fit-content;
}
.lead .lead_title p:nth-child(2) {
  margin: -16px 0 0 auto;
}
.lead .lead_text {
  line-height: 1.4;
  text-align: center;
}

.service .service_li {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.service .service_li li a {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  color: #fff;
  line-height: 1.2;
}
.service .service_li .service_text {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 24px 20px 24px;
  height: 50%;
  position: absolute;
  width: calc(100% - 48px);
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent, #333333);
}

.top_news .top_news_li {
  display: grid;
  gap: 32px;
}
.top_news .thumnail {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  aspect-ratio: 16/9;
}
.top_news .thumnail .cate_li {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
}
.top_news .thumnail figure {
  height: 100%;
}
.top_news .thumnail figure img {
  height: 100%;
  object-fit: cover;
}
.top_news .archive_right {
  line-height: 1.4;
}
.top_news .archive_right .arrow_btn {
  margin: 8px 0 0 auto;
}
.top_news .news_text {
  display: -webkit-box; /* フレックスっぽく扱う */
  -webkit-box-orient: vertical; /* 縦方向に制御 */
  -webkit-line-clamp: 3; /* 行数を指定（ここでは3行） */
  overflow: hidden;
}

.top_news .news_title,
.news .news_title {
  line-height: 1.4;
}

.shop {
  background-color: #f5f5f5;
}
.shop .shop_box {
  background-color: #fff;
  position: relative;
  z-index: 3;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.shop .shop_box_inner {
  padding: 40px;
  display: grid;
  gap: 32px;
}
.shop .shop_box .logo {
  width: 200px;
  margin-inline: auto;
}
.shop .shop_box_text {
  line-height: 1.8;
}
.shop .shop_box .arrow_btn {
  margin-inline: auto;
}

.staff_card {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.staff_card li {
  display: grid;
  grid-template-columns: 75px auto;
  gap: 16px;
  padding: 12px 0;
  line-height: 1.4;
}
.staff_card li:not(.staff_card li:last-child) {
  border-bottom: 1px dotted #5d5d5d;
}
.staff_card li p {
  font-size: 16px;
}
.staff_card li p.ja_b {
  font-size: 14px;
}

.staff_slider.swiper {
  padding: 0 0 72px;
}

.license {
  margin-bottom: 160px;
}

.box_wrap {
  position: relative;
  margin: 56px auto 120px;
  border: 1px solid #5d5d5d;
  border-radius: 3px;
}
.box_wrap .box_title {
  text-align: center;
  font-size: 24px;
  padding-top: 32px;
}
.box_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px 0 40px;
}
.box_wrap ul li:has(.merit_text) {
  width: calc(33.3333333333% - 24px);
  text-align: center;
  display: grid;
  gap: 12px;
}
.box_wrap ul li:has(.flow_text) {
  position: relative;
  width: calc(33.3333333333% - 84px);
}
.box_wrap ul li:has(.flow_text) img {
  border-radius: 3px;
}
.box_wrap ul li:has(.flow_text) .flow_text {
  position: absolute;
  width: fit-content;
  bottom: 24px;
  left: 24px;
  color: #fff;
}
.box_wrap ul li:has(.flow_text) .cursive {
  font-weight: 100;
  font-size: 96px;
  line-height: 0.2;
  display: block;
}
.box_wrap ul li:has(.flow_text):not(.box_wrap ul li:has(.flow_text):last-child) {
  position: relative;
}
.box_wrap ul li:has(.flow_text):not(.box_wrap ul li:has(.flow_text):last-child):after {
  content: "";
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 100vmax;
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: -38px;
  z-index: 10;
}
.box_wrap ul li:has(.flow_text):not(.box_wrap ul li:has(.flow_text):last-child):before {
  content: "";
  clip-path: polygon(100% 54%, 0 100%, 0 0);
  background-color: #333;
  width: 12px;
  height: 8px;
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: -14px;
  z-index: 11;
}
.box_wrap .bottom_text {
  background-color: #5d5d5d;
  width: fit-content;
  line-height: 1.8;
  font-size: 14px;
  display: grid;
  place-content: center;
  padding: 8px 24px;
  position: absolute;
  rotate: -3deg;
  color: #fff;
  right: -8px;
  bottom: -40px;
}

.bg_section {
  position: relative;
}
.bg_section .bg_image {
  height: 580px;
  overflow: hidden;
}
.bg_section .bg_image img {
  object-fit: cover;
}
.bg_section .bg_inner {
  display: grid;
  place-content: center;
  gap: 32px;
  text-align: center;
  height: 580px;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
}
.bg_section .cursive {
  font-size: 48px;
  color: #fff;
  line-height: 0.5;
}
.bg_section .ja_b {
  font-size: 24px;
  line-height: 1.8;
  color: #fff;
}
.bg_section .arrow_btn {
  margin-inline: auto;
}

.tab_wrapper .license_wrap_inner {
  padding: 0 min(50px, 3.4722222222vw);
}
.tab_wrapper h3 {
  font-size: 24px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 20px 0;
}
.tab_wrapper h3.green {
  background-color: #02ae88;
}
.tab_wrapper h3.blue {
  background-color: #0096c7;
}
.tab_wrapper h4 {
  display: flex;
  height: fit-content;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  height: 80px;
}
.tab_wrapper h4.green {
  color: #02ae88;
}
.tab_wrapper h4.blue {
  color: #0096c7;
}
.tab_wrapper h4 span {
  font-weight: 100;
  font-size: 120px;
  height: 80px;
  background: linear-gradient(45deg, #02ae88, #5ac2f7);
  -webkit-background-clip: text; /* Safari / Chrome */
  background-clip: text; /* 標準 */
  color: transparent;
  align-items: center;
}
.tab_wrapper .bold {
  font-weight: bold;
}
.tab_wrapper .underline {
  text-decoration: underline;
}
.tab_wrapper .license_text {
  font-size: 16px;
  line-height: 1.8;
}
.tab_wrapper .license_wrap_inner {
  display: grid;
  gap: 24px;
}
article:not(.tab_wrapper:last-child) {
  margin-bottom: 80px;
}
.tab_wrapper .line {
  width: 100%;
  height: 1px;
  background-color: #333;
}
.tab_wrapper .wrap_title {
  font-size: 24px;
}
.tab_wrapper .license_btn_wrapper .license_btn_wrap {
  background-color: #f5f5f5;
  border-radius: 3px;
  padding: 32px;
  container-type: inline-size;
}

.diving .diving_price {
  max-width: 480px;
  margin: 64px auto;
}

.contact.front_contact {
  margin: 120px 0;
}
.contact .contact_text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact .contact_btn_wrap {
  margin: 48px auto 0;
}

.contact_btn_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 16px;
  max-width: 610px;
  margin-inline: auto;
}
.contact_btn_wrap li a {
  display: grid;
  gap: 4px;
  box-shadow: none;
  min-width: auto;
}
.contact_btn_wrap .ja_b {
  font-size: 18px;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.contact_btn_wrap li:last-child {
  grid-column: 1/3;
  background-color: #f5f5f5;
  color: #02ae88;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  border-radius: 8px;
}

.qa .qa_text {
  text-align: center;
  line-height: 1.4;
}
.qa .qa_li {
  display: grid;
  gap: 16px;
}
.qa .qa_li li {
  line-height: 1.8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.qa .qa_inner {
  display: flex;
  gap: 4px;
  padding: 16px;
}
.qa .question_wrap {
  border-radius: 3px 3px 0 0;
  font-size: 18px;
  color: #fff;
}
.qa .question_wrap.blue {
  background-color: #0096c7;
}
.qa .question_wrap.green {
  background-color: #02ae88;
}
.qa .answer_wrap {
  font-size: 16px;
}

@media screen and (max-width: 980px) {
  .fv {
    margin-top: 64px;
  }
  .fv .fv_container {
    padding: 40px 4vw 0;
  }
  .fv h1 {
    font-size: 8.5333333333vw;
    font-weight: 200;
  }
  .fv h1 span {
    font-weight: 500;
  }
  .fv .fv_text {
    padding-top: 4.2666666667vw;
    font-size: 3.7333333333vw;
  }
  .fv .fv_image {
    margin-top: -21.3333333333vw;
  }
  .fv .btn_wrap {
    margin-top: -30%;
  }
  .lead {
    padding: 80px 0;
  }
  .lead .lead_text {
    font-size: 14px;
  }
  .lead_slider {
    margin: 40px 0 0 0;
  }
  .service {
    margin-bottom: 110px;
  }
  .service .service_li {
    width: 345px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }
  .service .service_text {
    font-size: 14px;
  }
  .top_news .section_title + .arrow_btn {
    margin: 0 auto 32px;
  }
  .top_news .archive_right {
    padding: 12px 8px 0 8px;
  }
  .top_news .news_title {
    font-size: 18px;
  }
  .top_news .news_text {
    font-size: 14px;
    padding-top: 8px;
  }
  .shop {
    margin: 96px 0 0;
    padding: 56px 0;
  }
  .shop .section_title {
    margin-bottom: 40px;
  }
  .shop .shop_box {
    width: 92vw;
    margin: 4vw auto 0;
  }
  .shop .shop_box_text {
    font-size: 14px;
  }
  .staff_title {
    margin-top: 64px;
  }
  .staff_title .sub_title {
    line-height: 1.8;
    text-align: left;
    width: 92vw;
    margin: 0 auto 40px;
  }
  .staff_card {
    width: 92vw;
    max-width: 92vw;
  }
  .staff_card_inner {
    padding: 24px;
    display: grid;
    gap: 24px;
  }
  .staff_card .staff_image {
    width: 120px;
    position: relative;
    margin-inline: auto;
  }
  .staff_card .staff_image .instagram {
    background-color: #f5f5f5;
    width: 40px;
    height: 40px;
    position: absolute;
    border: 100vmax;
    bottom: -18px;
    right: -6px;
    display: grid;
    place-content: center;
    border-radius: 100vmax;
  }
  .staff_card .staff_image .instagram img {
    width: 20px;
  }
  .staff_slider.swiper {
    padding: 0 0 64px;
  }
  .bg_section .ja_b {
    font-size: 18px;
  }
  .bg_section .btn_wrap {
    margin-top: -50px;
  }
  .box_wrap .box_title {
    font-size: 18px;
  }
  .box_wrap ul {
    display: grid;
    gap: 24px;
  }
  .box_wrap ul li:has(.merit_text) {
    width: 80vw;
  }
  .box_wrap ul li:has(.flow_text) {
    width: 80vw;
  }
  .box_wrap ul li:has(.flow_text):before {
    translate: -50% 0 !important;
    left: 50% !important;
    right: inherit !important;
    top: inherit !important;
    bottom: -12px !important;
    rotate: 90deg;
  }
  .box_wrap ul li:has(.flow_text):after {
    translate: -50% 0 !important;
    left: 50% !important;
    right: inherit !important;
    top: inherit !important;
    bottom: -38px !important;
  }
  .box_wrap ul li:last-child:before, .box_wrap ul li:last-child:after {
    display: none;
  }
  .tab_wrapper .pc_left {
    display: none;
  }
  .tab_wrapper h3 {
    font-size: 20px;
  }
  .tab_wrapper h4 {
    font-size: 18px;
    gap: 16px;
  }
  .tab_wrapper article {
    padding: 0 16px;
  }
  .tab_wrapper .license_text {
    font-size: 14px;
  }
  .tab_wrapper .bus_free {
    max-width: 250px;
    margin-inline: auto;
  }
  .tab_wrapper .license_btn_wrapper {
    width: 100%;
  }
  .tab_wrapper .license_btn_wrapper .license_btn_wrap {
    padding: 24px;
  }
  .tab_wrapper .license_btn_wrapper h3 {
    font-size: 16px;
  }
  .tab_wrapper .license_btn_wrapper .arrow {
    display: none;
  }
  .tab_wrapper .license_btn_wrapper li {
    display: grid;
    gap: 12px;
    text-align: center;
  }
  .tab_wrapper .license_btn_wrapper li:nth-child(1) {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dotted #333;
  }
  .tab_wrapper .license_btn_wrapper li p {
    line-height: 1.8;
    font-size: 14px;
  }
  .tab_wrapper .license_btn_wrapper .gra_btn {
    min-width: auto;
    padding: 20px 0;
  }
  .diving .bg_section {
    position: relative;
  }
  .diving .bg_section .btn_wrap {
    position: absolute;
    margin-inline: auto;
    bottom: 92px;
    translate: -50% 0;
    left: 50%;
  }
  .diving .diving_price {
    width: 92vw;
  }
  .news .news_li {
    display: grid;
    gap: 40px;
  }
  .news .section_title {
    margin: 0;
    text-align: left;
  }
  .news .pc_left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .news .news_cate {
    display: none;
  }
  .news .thumnail {
    position: relative;
  }
  .news .thumnail .cate_li {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  .news .arrow_btn {
    margin: 8px 0 0 auto;
  }
  .news .data {
    font-size: 12px;
    padding: 16px 0 4px;
  }
  .news .news_title {
    font-size: 16px;
    line-height: 1.4;
  }
  .contact_btn_wrap {
    grid-template-columns: 1fr;
    width: 92vw;
  }
  .contact_btn_wrap li:last-child {
    grid-column: 1/2;
  }
  .contact_btn_wrap li a {
    padding: 12px 0;
  }
  .qa .qa_text {
    text-align: left;
    width: 80vw;
    margin: 16px auto 32px;
    font-size: 14px;
  }
  .qa .qa_inner {
    font-size: 14px;
  }
}
@media screen and (min-width: 981px) {
  .fv .fv_container {
    padding: 120px min(50px, 3.4722222222vw) 0 min(50px, 3.4722222222vw);
  }
  .fv h1 {
    font-size: 4.1666666667vw;
    font-weight: 200;
  }
  .fv h1 span {
    font-size: 4.4444444444vw;
    font-weight: 500;
  }
  .fv .fv_text {
    padding-top: 2.0833333333vw;
    font-size: 1.6666666667vw;
  }
  .fv .fv_image {
    margin-top: -11.1111111111vw;
  }
  .fv .fv_image .swiper-slide {
    max-height: 800px;
  }
  .fv .fv_image img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .fv .btn_wrap {
    z-index: 5;
    position: absolute;
    top: 120px;
    right: min(50px, 3.4722222222vw);
  }
  .lead {
    padding: 40px 0 0;
  }
  .lead .lead_text {
    padding: 0 0 32px 0;
  }
  .service {
    padding: 140px 0;
  }
  .service .service_container {
    padding: 0 max(120px, 8.3333333333vw);
  }
  .service a {
    transition: all 0.4s;
  }
  .service a:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .top_news {
    padding: 0 0 160px;
  }
  .top_news .common_container {
    display: flex;
    gap: 80px;
  }
  .top_news .section_title {
    margin-bottom: 40px;
  }
  .top_news .top_news_li li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    align-items: center;
  }
  .top_news .top_news_li .thumnail {
    max-width: 400px;
  }
  .top_news .archive_right {
    width: calc(100% - 424px);
    min-width: 320px;
  }
  .top_news .news_title {
    font-size: 24px;
    padding-bottom: 8px;
  }
  .shop {
    padding: 120px 0;
  }
  .shop .fade_slider {
    width: max(680px, 47.2222222222vw);
    margin: 0 auto 0 max(120px, 8.3333333333vw);
  }
  .shop .shop_box {
    width: max(600px, 41.6666666667vw);
    margin: max(-300px, -20.8333333333vw) max(120px, 8.3333333333vw) 0 auto;
  }
  .staff_title {
    margin: 40px auto 32px max(120px, 8.3333333333vw);
  }
  .staff_title .sub_title {
    line-height: 1.8;
  }
  .staff_card {
    width: 595px;
    max-width: 595px;
  }
  .staff_card_inner {
    padding: 40px;
    display: grid;
    grid-template-columns: 160px auto;
    gap: 24px;
  }
  .staff_card .instagram {
    width: 20px;
    padding: 18px;
    border-radius: 100vmax;
    background-color: #f5f5f5;
    margin: 18px auto 0;
  }
  .bg_section .btn_wrap {
    margin: -80px auto 0;
    display: grid;
    place-content: center;
  }
  .tabs {
    display: flex;
  }
  .tabs .tabpanel {
    margin-left: -1px;
    display: none;
    transition: all 0.4s;
    min-height: 700px;
    width: min(400px, 27.7777777778vw);
    border-radius: 0 16px 16px 16px;
  }
  .tabs .tabpanel.green {
    background-color: #02ae88;
  }
  .tabs .tabpanel.blue {
    background-color: #0096c7;
  }
  .tabs .tabpanel.blue ul li a.white {
    color: #0096c7;
  }
  .tabs .tabpanel.blue ul li a.white .arrow {
    background-color: #0096c7;
  }
  .tabs .tabpanel.active {
    display: block;
  }
  .tabs .tab {
    cursor: pointer;
    font-size: 32px;
    line-height: 1.2;
    padding: 24px 12px;
    writing-mode: vertical-rl;
    border-radius: 8px 0 0 8px;
    background-color: #fff;
  }
  .tabs .tab.green {
    color: #02ae88;
    border: solid #02ae88;
    border-width: 2px 0 2px 2px;
  }
  .tabs .tab.blue {
    color: #0096c7;
    border: solid #0096c7;
    border-width: 2px 0 2px 2px;
  }
  .tabs .tab.active {
    color: #fff;
  }
  .tabs .tab.active.green {
    background-color: #02ae88;
  }
  .tabs .tab.active.blue {
    background-color: #0096c7;
  }
  .tabs ul {
    padding: 56px 40px;
  }
  .tabs ul li a {
    width: auto;
    justify-content: space-between;
    padding: 12px 24px;
  }
  .tab_wrapper {
    display: grid;
    grid-template-columns: min(460px, 31.9444444444vw) auto;
    gap: 40px;
  }
  .tab_wrapper .pc_left {
    height: fit-content;
    position: sticky;
    top: 100px;
  }
  .tab_wrapper .license_price,
  .tab_wrapper .license_group,
  .tab_wrapper .bus_free {
    max-width: 600px;
    margin: 24px auto;
  }
  .tab_wrapper .license_btn_wrapper li {
    display: flex;
    align-items: center;
    gap: min(24px, 1.6666666667vw);
    flex-wrap: wrap;
    justify-content: center;
  }
  .tab_wrapper .license_btn_wrapper li:nth-child(1) {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px dotted #333;
  }
  .tab_wrapper .license_btn_wrapper li p {
    width: min(180px, 12.5vw);
    line-height: 1.4;
  }
  .tab_wrapper .license_btn_wrapper li .arrow {
    clip-path: polygon(100% 50%, 0 100%, 0 0);
    background-color: #333;
    width: min(18px, 1.25vw);
    height: min(16px, 1.25vw);
  }
  .tab_wrapper .license_btn_wrapper li .gra_btn {
    font-size: min(18px, 1.25vw);
    min-width: 22.2222222222cqi;
    max-width: 22.2222222222cqi;
    line-height: 1.4;
  }
  .news .common_container {
    display: grid;
    gap: 120px;
    grid-template-columns: 240px auto;
  }
  .news .pc_left {
    display: grid;
    gap: 48px;
    height: fit-content;
    position: sticky;
    top: 100px;
  }
  .news .thumnail {
    position: relative;
  }
  .news .thumnail .cate_li {
    z-index: 2;
    position: absolute;
    top: 16px;
    left: 16px;
  }
  .news .thumnail figure {
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 5px;
  }
  .news .thumnail figure img {
    height: 100%;
    object-fit: cover;
  }
  .news .news_li {
    display: grid;
    gap: 72px 24px;
    grid-template-columns: 1fr 1fr;
  }
  .news .news_li .arrow_btn {
    margin: 8px 0 0 auto;
    font-size: 16px;
  }
  .news .data {
    font-size: 14px;
    padding: 16px 0 4px;
  }
  .news .news_title {
    font-size: 18px;
  }
  .qa .pc_grid {
    display: grid;
    grid-template-columns: 260px auto;
    gap: 80px;
    margin-top: 40px;
  }
  .qa .pc_grid .pc_left {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: grid;
    gap: 16px;
  }
}
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
.news .thumnail {
  aspect-ratio: 16/9;
}
.news .thumnail figure {
  height: 100%;
}
.news .thumnail img {
  object-fit: cover;
  height: 100%;
}

/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@media screen and (min-width: 981px) {
  #shop_page .staff_title {
    margin: 120px 0 56px 80px;
  }
  #shop_page .staff_card_wrapper {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  #shop_page .staff_card {
    max-width: 595px;
  }
}
@media screen and (max-width: 980px) {
  #shop_page .staff_card_wrapper {
    display: grid;
    gap: 24px;
  }
}

@media screen and (min-width: 981px) {
  #license_page .lead_grid {
    padding-right: 80px;
    display: flex;
    gap: 40px;
  }
}

@media screen and (min-width: 981px) {
  #diving_page .lead_grid {
    padding-right: min(180px, 12.5vw);
    display: flex;
    gap: 40px;
  }
  #diving_page .diving_price {
    margin-top: 48px;
  }
}

.contanct_wrap {
  max-width: 600px;
  margin-inline: auto;
}
.contanct_wrap form .privacy_box:has(input[type=checkbox]:checked) + .arrow_btn {
  opacity: 1;
  pointer-events: auto;
}
.contanct_wrap form ul {
  display: grid;
  gap: 30px;
}
.contanct_wrap form ul li {
  display: grid;
}
.contanct_wrap form ul li p span input {
  display: block;
  width: 100%;
  border: 1px solid #333333;
  height: 40px;
  display: grid;
  align-items: center;
  border-radius: 5px;
  padding: 0 10px;
}
.contanct_wrap form ul li p span input::placeholder {
  color: #d2d2d2;
}
.contanct_wrap form ul li p span textarea {
  display: block;
  width: 100%;
  border: 1px solid #333333;
  border-radius: 5px;
  padding: 5px 10px;
}
.contanct_wrap form .arrow_btn {
  padding: 0;
  margin: 24px 0 0 auto;
}
.contanct_wrap form .arrow_btn input {
  all: unset;
  display: block;
  min-width: auto;
  width: auto;
  padding: 10px 15px;
  cursor: pointer;
  color: #333333;
}
.contanct_wrap form .arrow_btn p {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #333333;
}
.contanct_wrap form .arrow_btn p:after {
  padding-inline: 0 10px;
}
.contanct_wrap form .arrow_btn p .arrow {
  background-color: #333333;
}
.contanct_wrap form .arrow_btn p input {
  padding: 0;
}
.contanct_wrap form .off {
  opacity: 0.4;
  pointer-events: none;
}
.contanct_wrap form .privacy_box:has(input[type=checkbox]:checked) + .default_btn {
  opacity: 1;
  pointer-events: auto;
}
.contanct_wrap form .small {
  font-size: 11px;
  margin-left: 5px;
}
.contanct_wrap form .wpcf7-not-valid-tip {
  font-size: 12px;
  padding: 3px 0 0 3px;
}
.contanct_wrap form .wpcf7-list-item {
  margin: 0;
}
.contanct_wrap form .privacy_box p {
  margin-top: 25px;
  display: flex;
}
.contanct_wrap form .privacy_box p a {
  text-decoration: underline;
}
.contanct_wrap form .wpcf7-radio input {
  display: inline-block;
  height: auto;
  width: auto;
  padding: 0;
}
.contanct_wrap form .wpcf7-spinner {
  display: none;
}
.contanct_wrap form input[type=checkbox i] {
  border: 1px solid #333333;
}
@media screen and (min-width: 981px) {
  .contanct_wrap form ul {
    display: grid;
    gap: 25px;
  }
  .contanct_wrap form ul li {
    grid-template-columns: 180px auto;
    gap: 25px;
    font-size: 18px;
  }
}
@media screen and (max-width: 980px) {
  .contanct_wrap form {
    margin-top: 40px;
    width: 92vw;
    margin-inline: auto;
  }
  .contanct_wrap form ul li > p {
    padding-bottom: 5px;
    font-size: 14px;
  }
  .contanct_wrap form .wpcf7-list-item-label {
    font-size: 14px;
  }
  .contanct_wrap form .wpcf7-radio > span {
    display: block;
  }
  .contanct_wrap form ul li p span input,
  .contanct_wrap form ul li p span textarea {
    width: calc(100% - 20px);
  }
}

#contact_page .qa {
  margin-top: 120px;
}
@media screen and (max-width: 980px) {
  #contact_page .contact_text {
    font-size: 14px;
    width: 80vw;
    margin-inline: auto;
  }
}
@media screen and (max-width: 980px) {
  #contact_page .pc_left {
    display: none;
  }
}

#single_page .reverse_btn {
  max-width: 180px;
  font-size: 16px;
  padding: 10px 12px;
  border-bottom: #333 solid 1px;
  color: #333;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 180px;
  margin-bottom: 64px;
}
#single_page .reverse_btn .arrow {
  clip-path: polygon(100% 54%, 0 100%, 0 0);
  background-color: #333;
  width: 12px;
  height: 8px;
  rotate: 180deg;
}
#single_page article .data {
  font-size: 14px;
  padding-bottom: 16px;
}
#single_page article h2 {
  line-height: 1.4;
  padding: 8px 0;
}
#single_page .text_container {
  display: grid;
  gap: 24px;
}
#single_page .text_container p {
  font-size: 16px;
  line-height: 1.4;
}
#single_page .news_bottom_title {
  font-size: 32px;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 24px;
  margin: 80px 0 24px;
}
#single_page .news .common_container {
  max-width: 1600px;
}
@media screen and (min-width: 981px) {
  #single_page article h2 {
    font-size: 32px;
    padding: 16px 0;
  }
  #single_page .text_container {
    padding: 24px;
  }
}
@media screen and (max-width: 980px) {
  #single_page .news .pc_left {
    margin: 0;
  }
  #single_page .news .pc_right .news_cate {
    display: block;
  }
  #single_page article h2 {
    font-size: 18px;
    padding: 8px 0;
  }
  #single_page .text_container {
    padding: 16px;
    gap: 16px;
  }
  #single_page .text_container p {
    font-size: 14px;
  }
  #single_page .news_bottom_title {
    font-size: 18px;
    padding: 0 0 16px;
  }
}

.page_text_container {
  margin-top: 80px;
  max-width: 800px;
  padding: 0 16px;
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */