@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #494444;
  --white-color: #fdfafa;
  --gray-color: #e6e6e6;
  --lightblue-color: #85d4eb;
  --yellow-color: #f0b844;
  --primary-color: #334195;
  --accent-color: #e67536;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Chonburi", "Noto Sans JP", sans-serif;
  /* font-family: "Inter", sans-serif; */
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u_sm-dn2 {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .lg-df {
    display: flex;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 98px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 120px 0;
  }
}

/* header */
.l_header {
  position: sticky;
  height: 96px;
  width: 100%;
  display: flex;
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header {
    height: 120px;
    padding: 24px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.l_header-logo {
  width: 128px;
}

@media screen and (min-width: 1080px) {
  .l_header-logo {
    width: 184px;
  }
}

.l_header-logo_link {
  height: 100%;
  width: 100%;
}

.l_header-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-index-menu);
  padding-left: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: block;
    position: static;
    background: transparent;
  }
}

.l_header-nav.is-active {
  display: block;
  background: var(--white-color);
}

.l_header-nav__service {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-index-menu);
  padding-left: 40px;
}

@media screen and (min-width: 1300px) {
  .l_header-nav__service {
    display: block;
    position: static;
    background: transparent;
  }
}

.l_header-nav__service.is-active {
  display: block;
  background: var(--white-color);
}

.l_header-nav_list {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: var(--white-color);
  /* padding-left: 40px; */
}

.l_header-nav_list__service {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: var(--white-color);
  /* padding-left: 40px; */
}

@media screen and (min-width: 1300px) {
  .l_header-nav_list__service {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
  }
}

.l_header__service {
  position: sticky;
  height: 96px;
  width: 100%;
  display: flex;
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header__service {
    height: 120px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
  }
}

.l_header__service-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.l_header__service-pc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.l_header-nav_list__location {
  justify-content: start;
  margin-top: 160px;
}

@media screen and (min-width: 1300px) {
  .l_header-nav_list__location {
    margin-top: 0;
  }
}

.l_header-nav_list__service {
  gap: 24px;
}

@media screen and (min-width: 1300px) {
  .l_header-nav_list__service {
    gap: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
  }
}

.l_header-nav_item {
  list-style: none;
  display: inline-block;
}

.l_header-nav_item__service {
  white-space: nowrap;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item__service.mobile {
    display: none;
  }
}

.l_header-nav_item__service_mobile {
  background: linear-gradient(90deg, var(--yellow-color), var(--accent-color));
  color: var(--white-color);
  width: 216px;
  height: 56px;
}

@media screen and (min-width: 1300px) {
  .l_header-nav_item__service_mobile {
    display: none;
  }
}

.l_header-nav_link_mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.l_header-nav_item__service._contact {
  color: var(--white-color);
  background: linear-gradient(to top right, var(--black-color), #b4b4b4);
  width: 264px;
}

.l_header-nav_link {
  text-decoration: none;
}

.l_header-nav_item._contact {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--lightblue-color)
  );
  color: var(--white-color);
  width: 187px;
}

.l_header-nav_link._contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 24px;
}

.l_header-nav_link._contact::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/contact-arrow-icon_ver3.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.l_header-nav_line-img {
  width: 60px;
  height: 60px;
}

.m_contact-icon {
  height: 40px;
  width: 40px;
  margin-left: 16px;
}

.__header_ul {
  position: relative;
  text-decoration: none;
  color: var(--black-color);
}

.__header_ul::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* 文字との距離 */
  width: 100%;
  height: 1px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.__header_ul:hover::after {
  transform: scaleX(1);
}

/* footer */

.l_footer {
  padding: 98px 0;
  text-align: center;
  background: linear-gradient(to top right, var(--black-color), #afa3a3);
  font-family: "Inter", sans-serif;
}

@media screen and (min-width: 1080px) {
  .l_footer {
    padding: 120px 0;
  }
}

.l_footer-inner {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l_footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.l_footer_logo {
  width: 200px;
  height: 160px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .l_footer_logo {
    margin: 0;
  }
}

.l_footer_logo_link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_footer_list {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media screen and (min-width: 1080px) {
  .l_footer_list {
    margin: 0;
  }
}

.l_footer_item {
  width: 60px;
  height: 60px;
}

.l_footer_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_footer-copyright {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .l_footer-copyright {
    text-align: left;
  }
}

.l_footer-copyright_txt {
  font-size: 16px;
  font-family: inter;
  color: var(--white-color);
}

/* footer-business */

@media screen and (min-width: 1080px) {
  .l_footer-business-inner {
    display: flex;
    justify-content: space-between;
  }
}

.l_footer-business-img__company {
  width: 200px;
  height: auto;
}

.l_footer-business-img__hummmo {
  width: 290px;
  height: auto;
  margin-top: 98px;
}

@media screen and (min-width: 1080px) {
  .l_footer-business-img__hummmo {
    margin-top: 0;
  }
}

.l_footer-business-wrapper {
  text-align: left;
  display: inline-block;
}

@media screen and (min-width: 1080px) {
  .l_footer-business-wrapper {
    display: block;
  }
}

.l_footer-business-ttl {
  margin-top: 40px;
}

.l_footer-business-title {
  font-size: 20px;
  color: var(--white-color);
}

.l_footer-business-nav {
  margin-top: 16px;
}

.l_footer-business-item {
  color: var(--white-color);
}

.l_footer-business-item:not(:first-child) {
  margin-top: 8px;
}

.l_footer-business-copy {
  color: var(--white-color);
  margin-top: 60px;
}

@media screen and (min-width: 1080px) {
  .l_footer-business-copy {
    margin-top: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer-business-copy {
    text-align: left;
  }
}

.l_footer-business__service {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_footer-business__service {
    display: block;
  }
}

.__footer_ul {
  position: relative;
  text-decoration: none;
  color: var(--white-color);
}

.__footer_ul::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* 文字との距離 */
  width: 100%;
  height: 1px;
  background: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.__footer_ul:hover::after {
  transform: scaleX(1);
}

/* ---------- toggle ---------- */

/* ===== スマホ（デフォルト） ===== */

.lang-switch {
  position: relative;
  width: 60px;
  height: 30px;
  border-width: 2px;
  border: 1px solid #444;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  cursor: pointer;
  font-weight: bold;
  box-sizing: border-box;
}

.lang-switch_hamburger {
  margin-top: 44px;
}

@media screen and (min-width: 1300px) {
  .lang-switch_hamburger {
    display: none;
  }
}

.lang-switch .label {
  width: 50%;
  text-align: center;
  font-size: 10px;
  line-height: 1;
  z-index: 2;
  color: #444;
}

.lang-switch .thumb {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: #444;
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 1;
}

/* EN */
.lang-switch.is-en .thumb {
  transform: translateX(20px);
}

.lang-switch .jp {
  color: #fff;
}

.lang-switch.is-en .jp {
  color: #444;
}

.lang-switch.is-en .en {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .lang-switch {
    width: 80px;
    height: 40px;
    border-width: 2px;
    padding: 4px;
  }

  .lang-switch .label {
    font-size: 12px;
  }

  .lang-switch .thumb {
    /* top: 4px; */
    top: 2px;
    left: 4px;
    width: 32px;
    height: 32px;
  }

  .lang-switch.is-en .thumb {
    transform: translateX(40px);
  }
}

/* ---------- SELECT ---------- */

/* 基本のセレクトボックスのカスタマイズ */
.select {
  background: #cfcedb;
  height: 40px;
  width: 300px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.select::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: -1;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

/* ---------- module ---------- */

/* hamburger */

.m_hamburger {
  width: 32px;
  height: 20px;
  position: relative;
  z-index: 150;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger__service {
  width: 32px;
  height: 20px;
  position: relative;
  z-index: 150;
}

@media screen and (min-width: 1300px) {
  .m_hamburger__service {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--black-color);
  left: 50%;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
  width: 32px;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-30%, -50%);
  width: 21px;
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(2px, -100%);
  width: 12px;
}

/* button */
.m_button {
  display: inline-block;
  font-family: Chonburi;
  font-size: 14px;
  border: solid 1px var(--black-color);
  border-radius: 100vh;
  padding: 12px 40px;
  background-color: var(--white-color);
  letter-spacing: 0.18em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  overflow: hidden;
  margin-top: 36px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.m_button:hover {
  opacity: 0.9;
  background-color: var(--black-color);
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .m_button {
    font-size: 16px;
    padding: 16px 60px;
    margin-top: 42px;
  }
}

.m_button__top-news {
  display: flex;
  justify-content: flex-end;
}

.m_button__top-service {
  margin-bottom: 32px;
  margin-left: 16px;
}

@media screen and (min-width: 768px) {
  .m_button__top-service {
    margin-left: 0;
  }
}

.m_button__contact {
  display: inline-block;
  font-family: Chonburi;
  font-size: 14px;
  border: solid 1px var(--black-color);
  border-radius: 100vh;
  background-color: var(--white-color);
  letter-spacing: 0.18em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  overflow: hidden;
  margin-top: 36px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.m_button__contact:hover {
  opacity: 0.9;
  background-color: var(--black-color);
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .m_button__contact {
    font-size: 16px;
    margin-top: 42px;
  }
}

.m_button__news {
  margin-left: 16px;
  margin-bottom: 32px;
}

@media screen and (min-width: 1080px) {
  .m_button__news {
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 1080px) {
  .m_button-news-pc {
    display: flex;
    justify-content: flex-end;
    margin-right: 40px;
    margin-bottom: 64px;
  }
}

.m_button__privacy {
  width: 154px;
  height: 47px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto 0;
  box-sizing: border-box;
}

@media screen and (min-width: 1080px) {
  .m_button__privacy {
    width: 224px;
    height: 56px;
    font-size: 16px;
    margin: 42px auto 0;
  }
}

.m_button.__spot-view.__1 {
  margin-right: 16px;
  color: var(--black-color);
}

@media screen and (min-width: 768px) {
  .m_button.__spot-view.__1 {
    margin-right: 0px;
  }
}

.m_button.__spot-view.__1:hover {
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .m_button.__spot-view.__2 {
    padding: 12px 40px;
  }
}

.m_button_input {
  cursor: pointer;
  padding: 12px 48px;
}

@media screen and (min-width: 1080px) {
  .m_button_input {
    padding: 12px 72px;
  }
}

/* top_about */

.m_about-ttl {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .m_about-ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .m_about-ttl {
    font-size: 40px;
  }
}

.m_about-label {
  font-size: 28px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .m_about-label {
    font-size: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .m_about-label {
    font-size: 64px;
    margin-top: 64px;
  }
}

.m_about-txt {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .m_about-txt {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .m_about-txt {
    margin-top: 40px;
    font-size: 20px;
  }
}

/* top_news */

.m_news {
  background: var(--gray-color);
}

.m_news-ttl {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .m_news-ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .m_news-ttl {
    font-size: 40px;
  }
}

.m_news-box-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
  justify-items: center;
}

@media screen and (min-width: 768px) {
  .m_news-box-wrapper {
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    gap: 40px 24px;
  }
}

@media screen and (min-width: 1080px) {
  .m_news-box-wrapper {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
    gap: 40px 24px;
  }
}

.m_news-box {
  width: 100%;
  padding: 24px 16px;
  background: var(--white-color);
  border: 1px solid;
  border-image: linear-gradient(to top, #707070, #b4b4b4) 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .m_news-box {
    max-width: 343px;
  }
}

.m_news-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.m_news-meta {
  padding-top: 32px;
}

@media screen and (min-width: 1080px) {
  .m_news-meta__news {
    padding-top: 0;
  }
}

.m_news-meta-cat {
  color: var(--white-color);
  font-size: 12px;
  padding: 4px 32px;
  margin-left: 16px;
  background-image: linear-gradient(
    0,
    var(--accent-color),
    var(--yellow-color)
  );
  border-radius: 100px;
}

.m_news-txt {
  padding-top: 18px;
}

.m_news-img:hover {
  opacity: 0.7;
}

/* ---------- top ---------- */

/* kv */

.top_kv {
  height: calc(100vh - 96px);
}

@media screen and (min-width: 1080px) {
  .top_kv {
    height: calc(100vh - 120px);
  }
}

.top_kv_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about */

.top_about-logo-wrapper {
  position: relative;
}

.top_about-logo {
  width: 209px;
  height: 165px;
  position: absolute;
  top: 15px;
  right: 13px;
}

@media screen and (min-width: 768px) {
  .top_about-logo {
    width: 400px;
    height: 316px;
    top: -100px;
    right: 26px;
  }
}

@media screen and (min-width: 1080px) {
  .top_about-logo {
    width: 550px;
    height: 434px;
    top: -192px;
  }
}

@media screen and (min-width: 1300px) {
  .top_about-logo {
    width: 787px;
    height: 622px;
    top: -400px;
    right: 46px;
  }
}

/* service */

.top_service-box {
  border: 1px solid;
  border-image: linear-gradient(to top, #707070, #b4b4b4) 1;
}

@media screen and (max-width: 767px) {
  .top_service-box {
    max-width: 343px;
    margin: 0 auto;
  }
}

.top_service-box:first-child {
  margin-top: 40px;
}

.top_service-box:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .top_services {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}

.top_service-ttl {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_service-ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-ttl {
    font-size: 40px;
  }
}

.top_service-img {
  width: 100%;
  height: 343px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .top_service-img {
    max-width: 343px;
    height: auto;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-img {
    max-width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .top_service-txt-wrapper {
    padding-left: 50px;
  }
}

.top_service-txt {
  padding-top: 32px;
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .top_service-txt {
    padding-left: 0;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-txt {
    padding-top: 60px;
  }
}

.top_service-main {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_service-main {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-main {
    font-size: 32px;
  }
}

.top_service-sub1 {
  padding-top: 32px;
  padding-right: 16px;
}

@media screen and (min-width: 1080px) {
  .top_service-sub1 {
    font-size: 20px;
  }
}

.top_service-sub2 {
  padding-top: 24px;
  padding-right: 16px;
}

@media screen and (min-width: 1080px) {
  .top_service-sub2 {
    padding-top: 32px;
    font-size: 24px;
  }
}

.top_service-txt__others {
  padding: 32px 0 32px 16px;
}

@media screen and (min-width: 768px) {
  .top_service-txt__others {
    text-align: center;
    padding: 60px 0;
  }
}

.top_service-main__others {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .top_service-main__others {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-main__others {
    font-size: 32px;
  }
}

.top_service-sub__others {
  padding-top: 39px;
}

@media screen and (min-width: 768px) {
  .top_service-sub__others {
    padding-top: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top_service-sub__others {
    font-size: 20px;
  }
}

/* contact */

.top_contact {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--lightblue-color)
  );
}

.top_contact-inner {
  display: flex;
  justify-content: space-between;
}

.top_contact-ttl {
  font-size: 20px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_contact-ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 1080px) {
  .top_contact-ttl {
    font-size: 40px;
  }
}

.top_contact-txt {
  color: var(--white-color);
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .top_contact-txt {
    font-size: 18px;
    text-align: center;
  }
}

@media screen and (min-width: 1080px) {
  .top_contact-txt {
    font-size: 20px;
  }
}

.top_contact-logo {
  width: 54px;
  height: 42px;
  transform: scaleX(-1);
}

@media screen and (min-width: 768px) {
  .top_contact-logo {
    width: 128px;
    height: 100px;
  }
}

@media screen and (min-width: 768px) {
  .top_contact-button {
    display: block;
    width: fit-content;
    margin: 42px auto 0;
  }
}

/* ---------- news ---------- */

.news_kv {
  background: linear-gradient(to bottom, #707070, #b4b4b4);
  height: 120px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .news_kv {
    height: 160px;
  }
}

@media screen and (min-width: 1080px) {
  .news_kv {
    height: 238px;
  }
}

.news_kv-ttl {
  font-size: 24px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .news_kv-ttl {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .news_kv-ttl {
    font-size: 40px;
  }
}

.news_sub {
  font-size: 20px;
  border-bottom: 2px solid #494444;
  display: inline-block;
  padding-bottom: 4px;
}

@media screen and (min-width: 768px) {
  .news_sub {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .news_sub {
    font-size: 28px;
  }
}

.news_top {
  border: 1px solid;
  border-image: linear-gradient(to top, #707070, #b4b4b4) 1;
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .news_top-pc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 40px 0;
  }
}

@media screen and (min-width: 1080px) {
  .news_top-img {
    width: 520px;
    height: 277px;
  }
}

.news-date {
  padding-left: 16px;
}

@media screen and (min-width: 1080px) {
  .news-date {
    padding-left: 0;
  }
}

.news_top-txt {
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .news_top-txt {
    padding: 0;
  }
}

.news_top-txt1 {
  padding-top: 32px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .news_top-txt1 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .news_top-txt1 {
    font-size: 24px;
  }
}

.news_top-txt2 {
  padding-top: 24px;
  font-size: 16px;
}

.news_btn {
  margin-top: 196px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media screen and (min-width: 1080px) {
  .news_btn {
    flex-direction: row;
    margin-top: 180px;
    margin-bottom: 64px;
    gap: 40px;
  }
}

.news_btn-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: Chonburi;
  border: solid 1px var(--black-color);
  border-radius: 100vh;
  padding: 8px 32px;
  background-color: var(--white-color);
  letter-spacing: 0.18em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .news_btn-item {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .news_btn-item {
    font-size: 28px;
  }
}

.news_btn-item:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

/* ---------- news-single ---------- */

.news-single-main {
  margin: 40px 16px 24px;
  max-width: 800px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .news-single-main {
    margin: 40px 0 24px;
    margin-left: auto;
    margin-right: auto;
  }
}

.news-single-sub {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news-single-buton {
  display: flex;
  justify-content: center;
}

.news-single-txt1 {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .news-single-txt1 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .news-single-txt1 {
    font-size: 28px;
  }
}

/* ---------- contact ---------- */
.l_main {
  background-color: var(--white-color);
}

.contact_main {
  margin-left: auto;
  margin-right: auto;
  max-width: 832px;
}

.contact_kv {
  background: linear-gradient(to bottom, #707070, #b4b4b4);
  height: 120px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .contact_kv {
    height: 160px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_kv {
    height: 238px;
  }
}

.contact_kv-ttl {
  font-size: 24px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .contact_kv-ttl {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_kv-ttl {
    font-size: 40px;
  }
}

.contact-sentence {
  font-size: 18px;
  margin: 0 16px;
}

@media screen and (min-width: 417px) {
  .contact-sentence {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .contact-sentence {
    font-size: 20px;
  }
}

.contact-sentence2 {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact-sentence2 {
    margin-top: 26px;
  }
}

.contact-basic {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .contact-basic {
    margin-top: 80px;
  }
}

.contact-basic-ttl {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .contact-basic-ttl {
    font-size: 20px;
  }
}

.contact-basic-ttl::after {
  content: "";
  display: block;
  height: 1px;
  background: rgba(73, 68, 68, 0.3);
  margin-top: 16px;
}

.contact_form_heading {
  display: flex;
  align-items: center;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .contact_form_heading {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form_heading {
    font-size: 20px;
  }
}

.contact_form_required {
  display: inline-flex;
  align-items: center;
  color: var(--white-color);
  font-size: 10px;
  background-image: linear-gradient(
    0,
    var(--accent-color),
    var(--yellow-color)
  );
  padding: 6px 10px;
  margin-left: 8px;
  border-radius: 9999px;
}

.contact_form_optional {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  padding: 6px 10px;
  margin-left: 8px;
  border-radius: 9999px;

  color: var(--accent-color); /* 文字は単色 */

  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(0deg, var(--accent-color), var(--yellow-color)) border-box;
}

.contact_form_pc {
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .contact_form_pc {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form_pc:not(:first-child) {
    margin-top: 32px;
  }
}

.contact_form_list {
  margin-top: 40px;
}

.contact_form_detail {
  margin-top: 8px;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 42px;
  padding: 8px;
  background: var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .contact_form_input {
    width: 562px;
    height: 60px;
  }
}

.contact_form-border {
  border-top: 1px solid rgba(73, 68, 68, 0.3);
  padding-top: 24px;
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 160px;
  padding: 8px;
  background: var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .contact_form_textarea {
    width: 562px;
    height: 200px;
  }
}

.contact_form_radio-item:last-child {
  margin-bottom: 24px;
}

.contact_form input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
}

.contact_form input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
}

.contact_form_privacy {
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .contact_form_privacy {
    margin-top: 64px;
  }
}

.contact_form_privacy__contact {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .contact_form_privacy__contact {
    margin-top: 64px;
  }
}

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

.contact_form_label {
  margin-left: 16px;
}

@media screen and (min-width: 1080px) {
  .contact_form_label {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form__type {
    width: 562px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form__top {
    align-items: start;
  }
}

.contact_form_privacy-label {
  font-size: 15px;
  letter-spacing: 0;
}

@media screen and (min-width: 1080px) {
  .contact_form_privacy-label {
    font-size: 20px;
  }
}

.contact_form_privacy-label a {
  text-decoration: underline;
}

/* ---------- download ---------- */

.download_kv {
  background: linear-gradient(to bottom, #707070, #b4b4b4);
  height: 120px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .download_kv {
    height: 160px;
  }
}

@media screen and (min-width: 1080px) {
  .download_kv {
    height: 238px;
  }
}

.download_kv-ttl {
  font-size: 24px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .download_kv-ttl {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .download_kv-ttl {
    font-size: 40px;
  }
}

.download {
  font-size: 16px;
  margin: 0 16px;
}

@media screen and (min-width: 768px) {
  .download {
    font-size: 18px;
    text-align: center;
  }
}

.download_main-txt2 {
  margin-top: 20px;
}

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

/* ---------- ABOUT-US ---------- */
.l_container-about-us {
  background: linear-gradient(to bottom, #707070, #b4b4b4);
  color: var(--white-color);
  height: 120px;
  align-items: center;
  display: flex;
}

.about_us {
  font-size: 24px;
  padding: 40px 0 40px 16px;
}

@media screen and (min-width: 1080px) {
  .about_us {
    font-size: 40px;
    padding: 119px 0 119px 180px;
  }
}

@media screen and (min-width: 1080px) {
  .l_container-about-us {
    font-size: 40px;
  }
}

.about-us_message {
  background-color: var(--gray-color);
}

@media screen and (min-width: 1080px) {
  .about-us_message {
    display: flex;
    height: 800px;
    justify-content: center;
    margin-top: 120px;
  }
}

.about-us_message-text {
  padding: 0 16px;
}

@media screen and (min-width: 1080px) {
  .about-us_message-text {
    padding: 0;
  }
}

.about-us_message-img-wrapper {
  margin-bottom: 40px;
  margin-top: 98px;
  padding: 0 16px;
}

.about-us_message-img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1080px) {
  .about-us_message-img-wrapper {
    flex: 1;
    margin: 0;
    display: flex;
    max-width: 600px;
    max-height: 800px;
  }

  .about-us_message-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.m_contents-ttl {
  margin-top: 40px;
}

.m_contents-ttl.sub {
  margin-bottom: 40px;
}

.about-us_message-ttl-txt {
  margin-top: 24px;
}

.m_contents-ttl,
.about-us_message-ttl-txt {
  font-size: 20px;
}

@media screen and (min-width: 1080px) {
  .about-us_message-ttl-txt {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .m_contents-ttl {
    font-size: 40px;
  }
}

.about-us_message-txt {
  margin-top: 16px;
}

.about-us_message-txt-group {
  padding: 0 16px 40px 16px;
}

@media screen and (min-width: 1080px) {
  .about-us_message-wrapper {
    max-width: 700px;
  }
}

.about-us_vision {
  margin: 192px 0 96px 0;
}

@media screen and (min-width: 1080px) {
  .about-us_vision {
    margin: 240px auto 120px;
  }
}

.about-us_vision-ttl-txt {
  font-size: 24px;
}

@media screen and (min-width: 1080px) {
  .about-us_vision-ttl-txt {
    font-size: 64px;
  }
}

.about-us_vision-txt {
  margin: 32px 0 64px 0;
}

@media screen and (min-width: 1080px) {
  .about-us_vision-txt {
    font-size: 24px;
  }
}

.m_contents-ttl-sub {
  font-size: 20px;
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 5px solid var(--black-color);
}

@media screen and (min-width: 1080px) {
  .about-us_vision-mobile {
    display: none;
  }
}

.about-us_vision-group {
  padding: 16px 0;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .about-us_vision-group {
    display: flex;
  }
}

.about-us_vision-group::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: calc(100% - 30px);
  background-color: rgba(73, 68, 68, 0.3);
}

.about-us_vision-group:first-child::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 1px;
  width: calc(100% - 30px);
  background-color: rgba(73, 68, 68, 0.3);
}

.about-us_vision-sub-item {
  padding: 0 0 8px 32px;
}

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_sm-dn {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .about-us_vision-sub-item {
    font-size: 20px;
  }
}

.about-us_vision-sub-item-txt {
  padding-left: 56px;
}

@media screen and (min-width: 1080px) {
  .about-us_vision-sub-item-txt {
    padding-left: 24px;
    margin-top: 6px;
  }
}

/* VISION 行動指針 PC */

@media screen and (min-width: 375px) {
  .about-us_vision-table {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .about-us_vision-table {
    display: block;
  }
}

.about-us_vision-table {
  font-size: 20px;
}

.about-us_vision-table_data {
  font-size: 16px;
}

.about-us_vision-table_row {
  position: relative;
}

.about-us_vision-table_row {
  border-bottom: 1px solid rgba(73, 68, 68, 0.3);
}

.about-us_vision-table_row.only {
  border-top: 1px solid rgba(73, 68, 68, 0.3);
}

.about-us_vision-table_heading {
  padding: 16px 0;
}

.about-us_vision-table_data {
  padding: 16px 0 16px 32px;
}

/* COMPANY PROFILE */

.about-us_company-profile {
  background: var(--gray-color);
  padding-top: 96px;
  padding-bottom: 96px;
}

@media screen and (min-width: 1080px) {
  .about-us_company-profile {
    padding: 120px;
  }
}

.about-us_company-profile-group {
  font-size: 20px;
  border-bottom: rgba(73, 68, 68, 0.3) solid 1px;
  padding: 24px 0;
}

@media screen and (min-width: 1080px) {
  .about-us_company-profile-group {
    font-size: 24px;
    display: flex;
  }
}

.about-us_company-profile-item {
  padding-bottom: 8px;
}

.about-us_company-profile-group:first-of-type {
  border-top: rgba(73, 68, 68, 0.3) solid 1px;
}

@media screen and (min-width: 1080px) {
  .about-us_company-profile-mobile {
    display: none;
  }
}

@media screen and (min-width: 375px) {
  .about-us_company-profile-table {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .about-us_company-profile-table {
    display: block;
  }
}

.about-us_company-profile-table {
  margin: 0 auto;
  text-align: left;
  max-width: 720px;
}

.about-us_company-profile-table_row {
  font-size: 24px;
}

.about-us_company-profile-table_heading {
  padding: 32px 0;
}

.about-us_company-profile-table_data {
  padding: 32px 0 32px 120px;
}

.about-us_company-profile-table_row {
  border-bottom: 1px solid rgba(73, 68, 68, 0.3);
}

.about-us_company-profile-table_row.only {
  border-top: 1px solid rgba(73, 68, 68, 0.3);
}

/* SPECIAL THANKS  */

.about-us_special-thanks {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media screen and (min-width: 1080px) {
  .about-us_special-thanks {
    margin: 0 auto;
  }
}

/* slider始まり */

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.about-us_special-thanks-slider-wrapper {
  display: flex;
  overflow: hidden;
}

.about-us_special-thanks-slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.about-us_special-thanks-slider-item.left {
  animation: infinity-scroll-left 80s infinite linear 0.2s both;
}

.about-us_special-thanks-img-wrapper {
  width: 375px;
  margin-bottom: 72px;
}

.about-us_special-thanks-img-wrapper.last {
  margin-right: 50px;
}

.about-us_special-thanks-img-wrapper > img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

/* slider終わり */

.about-us_special-thanks-img-wrapper {
  flex-shrink: 0;
}

.about-us_special-thanks-img {
  width: 375px;
  height: auto;
  display: block;
}

.about-us_special-thanks-slider-name {
  font-size: 24px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .about-us_special-thanks-img-fixed-group {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
}

.about-us_special-thanks-img-fixed-wrapper {
  text-align: center;
  margin-left: 0;
  margin-bottom: 24px;
}

@media screen and (min-width: 1080px) {
  .about-us_special-thanks-img-fixed-wrapper {
    margin-bottom: 0;
  }
}

.about-us_special-thanks-img-fixed {
  width: 224px;
}

.about-us_special-thanks-img-fixed.harsha {
  width: 104px;
  height: 120px;
  object-fit: cover;
}

.about-us_special-thanks-img-logo-name {
  display: flex;
  justify-content: center;
  margin-top: 13px;
}

/* @media screen and (min-width: 1080px) {
  .about-us_special-thanks-name-logo-group {
    display: flex;
    gap: 40px;
  }
} */

.about-us_special-thanks-name-logo {
  text-align: center;
  margin-bottom: 24px;
  white-space: nowrap;
}

@media screen and (min-width: 1080px) {
  .about-us_special-thanks-name-logo {
    margin-bottom: 0;
  }
}

/* ---------- no-find-404 ---------- */

.no-find-404_group {
  padding: 96px 16px;
}

.no-find-404_ttl {
  font-size: 18px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .no-find-404_ttl {
    font-size: 32px;
  }
}

.no-find-404_txt {
  padding: 40px 16px 32px 16px;
}

@media screen and (min-width: 768px) {
  .no-find-404_txt {
    text-align: center;
    font-size: 18px;
  }
}

.m_button.no-find-404 {
  display: block;
  margin: auto;
}

/* ---------- privacy-policy ---------- */

.privacy-policy_maintxt {
  letter-spacing: 0.1em;
}

.privacy-policy_subtxt_box {
  margin-top: 64px;
}

.privacy-policy_subtxt-ttl {
  font-size: 20px;
}

.privacy-policy_subtxt {
  margin-top: 16px;
}

.privacy-policy_contact {
  text-decoration-line: underline;
  cursor: pointer;
}

.privacy-policy_section {
  background: var(--white-color);
}

/* ---------- privacy.html ---------- */

.m_section_title {
  width: 100%;
  height: 120px;
  font-size: 24px;
  color: var(--white-color);
  text-align: left;
  align-items: center;
  display: flex;
  background: linear-gradient(to bottom, #707070, #b4b4b4);
}

@media screen and (min-width: 1080px) {
  .m_section_title {
    height: 240px;
    font-size: 40px;
    text-align: left;
  }
}

/* ---------- spot_view ---------- */
/* table wrapper */
.scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  margin-top: 64px;
}

/* table */
.table-table {
  width: 1080px; /* SPでも固定で横スクロール */
  border-collapse: collapse;
  border: 1px solid #b3b3b3;
  table-layout: fixed; /* 列幅固定 */
}

.table-th,
.table-td {
  border: 1px solid #b3b3b3;
  text-align: center;
  vertical-align: middle;
  padding: 24px 16px; /* デザインに合わせて調整可 */
  color: var(--black-color);
  white-space: nowrap;
  align-items: center;
}

/* 住所（2列目）だけ左寄せ */
.table-table td:nth-child(3) {
  text-align: left;
}

.table-th {
  background: #b3b3b3;
  color: var(--white-color);
  font-weight: 700;
}

/* 列幅（PC設計：合計1080px） */
.table-table th:nth-child(1),
.table-table td:nth-child(1) {
  width: 280px;
}

.table-table th:nth-child(2),
.table-table td:nth-child(2) {
  width: 150px;
}

.table-table th:nth-child(3),
.table-table td:nth-child(3) {
  width: 280px;
}

.table-table th:nth-child(4),
.table-table td:nth-child(4) {
  width: 180px;
}

.table-table th:nth-child(5),
.table-table td:nth-child(5) {
  width: 190px;
}

/* td の縦区切りだけ少し濃くする */
.table-table th:not(:last-child) {
  border-right: 1px solid #9e9e9e;
}

/* ---------- spot-view hero image ---------- */

.shopHeroWrap {
  padding: 0 16px; /* ← これが左右余白 */
}

.shopHero {
  width: 100%;
  aspect-ratio: 343 / 200;
  margin: 0 auto;
  overflow: hidden;
  background-image: url("../img/spot-view_spimg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .shopHero {
    max-width: 1080px;
    height: 324px;
    margin-top: 60px;

    background-image: url("../img/spot-view_pcimg.webp");
  }
}

/* PC（1080px〜） */
@media screen and (min-width: 1080px) {
  .scroll-box {
    overflow-x: visible; /* 横スクロール解除 */
    padding-left: 0;
    padding-right: 0;
    margin-top: 80px;
  }
}

.table-table {
  margin: 0 auto; /* ★中央寄せの本体 */
}

/* SP：表の左端に16px余白を作る */
@media screen and (max-width: 1079px) {
  .scroll-box {
    padding-left: 16px;
    padding-right: 16px; /* 右もあると気持ちよく揃う */
  }
}

.shopLink {
  color: #1a73e8; /* Google Mapsブルー */
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.shopLink_icon {
  font-size: 14px; /* ← imgのwidth代わり */
  color: var(--black-color);
}

.shopLink:hover {
  opacity: 0.7;
}

/* ---------- service ---------- */

/* .spot-view_btn-wrapper {
  width: 32px;
  height: auto;
  background: linear-gradient(
    to right,
    var(--yellow-color),
    var(--accent-color)
  );
  border-radius: 40px 0px 0px 140px;
  margin-left: auto;
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 999;
} */

.spot-view_section {
  background: var(--white-color);
}

/* 右側固定：取扱店を見る */
.spot-view_btn-wrapper {
  width: 40px;
  height: 130px; /* ← 縦の長さ（デザインに合わせて調整） */
  background: linear-gradient(
    to bottom,
    var(--yellow-color),
    var(--accent-color)
  );
  border-radius: 10px 0 0 10px;

  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);

  z-index: 999;
  overflow: hidden; /* 角丸を綺麗に */
}

/* aタグをボタン全面に広げる（クリック範囲を100%に） */
.spot-view_link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* 文字を縦書きにする */
.spot-view_btn-txt {
  writing-mode: vertical-rl; /* ← これが肝 */
  text-orientation: mixed;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-family: chombri;
  margin: 0; /* pを使っている場合の余白対策 */
  padding: 8px;
  color: var(--white-color);
}

/* PCで少し大きく */
@media screen and (min-width: 1080px) {
  .spot-view_btn-wrapper {
    width: 50px;
    height: 150px;
  }
  .spot-view_btn-txt {
    font-size: 16px;
  }
}

/* 右側固定ボタン：非表示 */
.spot-view_btn-wrapper.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(10px);
}

/* 表示/非表示をなめらかに */
.spot-view_btn-wrapper {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.top-kv {
  /* height: calc(100dvh - 96px); */
  background: var(--white-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 98px;
}

@media screen and (min-width: 768px) {
  .top-kv {
    height: 100%;
    width: 100%;
    position: relative;
    padding-bottom: 0px;
  }
}

.m_kv_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 90% center;
  display: block;
}

.m_kv-inner {
  padding-top: 24px;
}

@media screen and (min-width: 768px) {
  .m_kv-inner {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
  }
}

.m_kv-desc-box {
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (min-width: 768px) {
  .m_kv-desc-box {
    font-size: 24px;
    position: absolute;
    top: 50%;
    color: var(--white-color);
  }
}

@media screen and (min-width: 1080px) {
  .m_kv-desc-box {
    font-size: 40px;
  }
}

.m_kv-desc1 {
  background: linear-gradient(to top, #334195, #85d4eb);
  display: inline-block;
  width: fit-content;
  padding: 4px 16px 4px 24px;
}

.m_kv-desc2 {
  margin-top: 8px;
  background: linear-gradient(to top, #334195, #85d4eb);
  display: inline-block;
  width: fit-content;
  padding: 4px 16px 4px 24px;
}

.l_section._service {
  background: var(--gray-color);
}

.service_section_box {
  padding: 64px 0;
  position: relative;
}

.service_section_box.__voice {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 253, 253, 0.8)),
    url(../img/01_photo-shimanami.webp) center/cover;
}

.service_section_title {
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .service_section_title {
    font-size: 40px;
    margin-top: 40px;
  }
}

.service_section_txt {
  font-size: 11px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .service_section_txt {
    font-size: 20px;
  }
}

.service_section_txt.__use {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
}

.service_section_txt.__use::before,
.service_section_txt.__use::after {
  content: "";
  width: 32px; /* 線の長さ */
  height: 1px;
  background: #9a9a9a; /* 線の色 */
  flex: 0 0 auto;
}

@media screen and (min-width: 1080px) {
  .service_section_txt.__use::before,
  .service_section_txt.__use::after {
    width: 30px;
  }
}

.service_section_txt.__use::before {
  left: 90px;
}

@media screen and (min-width: 1080px) {
  .service_section_txt.__use::before {
    left: 250px;
  }
}

.service_section_txt.__use::after {
  right: 90px;
}

@media screen and (min-width: 1080px) {
  .service_section_txt.__use::after {
    right: 250px;
  }
}

@media screen and (min-width: 1080px) {
  .service_section_contents-wrapper {
    background: var(--white-color);
    position: relative;
    background: var(--white-color);
    padding: 40px;
    overflow: hidden; /* 三角はみ出し防止 */
  }
}

@media screen and (min-width: 1080px) {
  .service_section_contents-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    background: linear-gradient(
      to right,
      var(--yellow-color),
      var(--accent-color)
    );
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }
}

.service_section_contents-wrapper:not(:first-child) {
  margin-top: 80px;
}

.service_section_contents {
  padding: 4px 0 24px;
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .service_section_contents {
    display: flex;
  }
}

.service_section_contents_ttl {
  font-size: 18px;
  margin-top: 8px;
  padding-left: 8px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .service_section_contents_ttl {
    font-size: 24px;
    margin-top: 20px;
  }
}

.service_section_contents_ttl::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 32px;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    var(--yellow-color),
    var(--accent-color)
  );
}

@media screen and (min-width: 1080px) {
  .service_section_contents_ttl::after {
    display: none;
  }
}

.service_section_contents_txt {
  font-size: 16px;
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .service_section_contents_txt {
    margin-top: 40px;
  }
}

.service_section_number {
  color: var(--accent-color);
}

@media screen and (min-width: 1080px) {
  .service_section_number {
    position: absolute;
    top: 14px;
    left: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    z-index: 1;
  }
}

@media screen and (min-width: 1080px) {
  .service_section_contents_box {
    margin-top: 24px;
    height: 200px;
    padding: 0 40px;
  }
}

@media screen and (min-width: 1080px) {
  .service_section_img {
    width: 400px;
    height: auto;
    margin-top: 24px;
  }
}

.l_section._service.__use {
  background: var(--white-color);
}

.service_howtouse_ttl {
  font-size: 20px;
  text-align: center;
}

.service_howtouse_container {
  border: solid 1px var(--black-color);
  margin-top: 40px;
  padding: 24px 0 40px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .service_howtouse_container {
    border: none;
  }
}

.service_howtouse_img-wrapper {
  padding: 8px 16px 0;
}

.service_howtouse_txtbox {
  margin-top: 24px;
  text-align: center;
}

.service_howtouse_txt1 {
  font-size: 16px;
  white-space: nowrap;
}

.service_howtouse_txt2 {
  font-size: 14px;
  padding: 24px 0;
}

.service_howtouse_sub-txtbox {
  font-size: 12px;
}

.service_howtouse_sub-txtbox_u_lg-db {
  display: none;
}

@media screen and (min-width: 1080px) {
  .service_howtouse_sub-txtbox_u_lg-db {
    display: block;
    width: 240px;
  }
}

.cycling_img-wrapper {
  position: absolute;
  right: 0; /* 右端 */
  bottom: 80px; /* 下端 */
  width: 320px; /* サイズ調整（好み） */
  max-width: 40%; /* 画面が狭い時は縮む */
  pointer-events: none; /* クリック邪魔しない */
}

.cycling_img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1079px) {
  .cycling_img-wrapper {
    display: none;
  }
}

.cycling_img {
  display: block;
  /* top: 6px;
  right: -800px;
  position: absolute; */
}

.service_howtouse_sub-txt {
  padding-top: 16px;
}

@media screen and (min-width: 1080px) {
  .service_howtouse_sub-txt {
    padding: 16px 24px 0 0;
    font-size: 12px;
    text-align: left;
  }
}

.service_howtouse_sub-txt_underline,
.privacypolicy_link_underline {
  border-bottom: solid 1px var(--black-color);
}

.service_howtouse_arrow {
  position: relative;
  padding: 40px;
}

@media screen and (min-width: 1080px) {
  .service_howtouse_arrow {
    padding: 120px 40px;
  }
}

.service_howtouse_arrow::before {
  content: "";
  position: absolute;
  right: 45%;
  top: 95%;
  transform: translateY(-50%);
  border-width: 15px;
  border-style: solid;
  border-color: var(--black-color) transparent transparent transparent;
}

@media screen and (min-width: 1080px) {
  .service_howtouse_arrow::before {
    border-color: transparent transparent transparent var(--black-color);
  }
}

.l_section._service.__price {
  background: var(--white-color);
}

.service_price_img-wrapper__sp {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (min-width: 1080px) {
  .service_price_img-wrapper__sp {
    display: none;
  }
}

.service_price_img {
  width: calc((100% - 24px) / 2);
}

@media screen and (min-width: 1080px) {
  .service_price_img {
    width: calc((100% - 24px * 2) / 3);
  }
}

.service_price_img:nth-child(3) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .service_price_img:nth-child(3) {
    margin-top: 0;
  }
}

.service_price_img_lg {
  margin-top: 64px;
}

@media screen and (max-width: 1079px) {
  .service_price_img-wrapper__lg {
    display: none;
    width: 100%;
    height: auto;
  }
}

.l_section__voice {
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 253, 253, 0.4)),
    url(../img/01_photo-shimanami.webp) center/cover;
}

.service_voice_container {
  display: flex;
}

.service_voice-wrapper.__sp {
  background: var(--white-color);
  margin: 40px 24px 0 0;
  padding: 0 16px;
  width: 280px;
  height: 400px;
}

.service_voice {
  font-size: 14px;
  padding: 40px 0;
}

.service_voice_line {
  border: 1px solid var(--black-color);
  width: "90%";
  margin-top: 40px;
}

.service_voice_customer {
  display: flex;
  margin-top: 32px;
}

.service_voice_txt {
  font-size: 14px;
  white-space: nowrap;
}

.service_voice_subtxt {
  font-size: 12px;
  margin-top: 16px;
  white-space: nowrap;
}

.service_voice_img-wrapper-first {
  height: 72px;
  width: 72px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  background: url(../img/カップル-removebg-preview\ 1.webp) center/cover;
  margin-left: 24px;
}

.service_voice_img-wrapper-second {
  height: 72px;
  width: 72px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  background: url(../img/カップル０３-removebg-preview\ 1.webp) center/cover;
  margin-left: 24px;
}

.service_voice_img-wrapper-third {
  height: 72px;
  width: 72px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  background: url(../img/カップル02-removebg-preview\ 1.webp) center/cover;
  margin-left: 24px;
}

.service_voice_img-wrapper-fourth {
  height: 72px;
  width: 72px;
  border: 1px solid var(--black-color);
  border-radius: 50%;
  background: url(../img/カップル４-removebg-preview\ 2.webp) center/cover;
  margin-left: 24px;
}

.l_section._service.__introduction-guide {
  background: var(--white-color);
}

#howtouse {
  scroll-margin-top: 96px;
}

@media screen and (min-width: 1080px) {
  #howtouse {
    scroll-margin-top: 120px;
  }
}

#section_price {
  scroll-margin-top: 96px;
}

@media screen and (min-width: 1080px) {
  #section_price {
    scroll-margin-top: 120px;
  }
}

#section_voice {
  scroll-margin-top: 96px;
}

@media screen and (min-width: 1080px) {
  #section_voice {
    scroll-margin-top: 120px;
  }
}

#service_section_download {
  scroll-margin-top: 96px;
}

@media screen and (min-width: 1080px) {
  #service_section_download {
    scroll-margin-top: 120px;
  }
}

.introduction-guide_btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service_section_title_box {
  width: 100%;
  height: 96px;
  background: linear-gradient(
    to right,
    var(--yellow-color),
    var(--accent-color)
  );
  padding: 12px 16px;
}

@media screen and (min-width: 1080px) {
  .service_section_title_box {
    height: 160px;
  }
}

.service_section_bg {
  background: #f2f2f7;
  padding-bottom: 98px;
}

.introduction-guide_txtbox {
  margin-top: 40px;
}

.introduction-guide_txt {
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 24px 0;
}

@media (min-width: 600px) {
  .u_md-dn {
    display: none;
  }
}

.introduction-guide_sub-txtbox {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 11px;
  justify-content: center;
}

.introduction-guide_sub-txt {
  background: var(--black-color);
  color: var(--white-color);
  white-space: nowrap;
  padding: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  width: calc((100% - 11px) / 2);
}

.service_section_bg_second_box {
  display: flex;
  flex-direction: column; /* ← 縦積み */
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}

.introduction-guide_img-wrapper_second {
  width: 100%;
  aspect-ratio: 343 / 200;
  overflow: hidden;
}

.introduction-guide_img_second {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* SP */
.introduction-guide_txtbox_second {
  width: 100%;
  padding: 24px 16px;
}

.introduction-guide_sub-txt_second {
  font-size: 16px;
}

.introduction-guide_sub-txtbox_second {
  padding-top: 40px;
}

.introduction-guide_txt_second {
  font-size: 32px;
}

.introduction-guide_sub-txtbox_second {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.introduction-guide_sub-txt_second {
  background: var(--black-color);
  color: var(--white-color);
  white-space: nowrap;
  padding: 8px;
  font-size: 16px;
  text-align: center;
  width: calc((100% - 24px) / 2);
}

/* PC */
@media (min-width: 1080px) {
  /* セクション全体に左右分割背景をつける */
  .service_section_bg_second {
    background: linear-gradient(to right, #fdfdfb 50%, #f2f2f7 50%);
  }

  .service_section_bg_second_box {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%; /* ← これ重要：親幅を100%に固定 */
    max-width: 1440px;
    margin: 0 auto;
    align-items: stretch;
    background: transparent;
  }

  .introduction-guide_img-wrapper_second,
  .introduction-guide_txtbox_second {
    flex: 0 0 50%;
    background: #f2f2f7;
    min-width: 0; /* ← はみ出し防止（超重要） */
  }

  .introduction-guide_txtbox_second {
    padding: 124px 0 124px 80px;
    display: flex; /* 追加 */
    flex-direction: column; /* 縦並び */
    justify-content: center; /* ← 縦中央 */
    max-width: 540px;
  }

  /* 画像枠は「右テキストと同じ高さ」になる */
  .introduction-guide_img-wrapper_second {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfb; /* 画像の余白が出ても自然 */
  }

  /* 画像は枠いっぱいに */
  .introduction-guide_img_second {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ← 切れない */
    object-position: center;
    display: block;
  }
}

.m_button.introduction-guide {
  width: 250px;
}

@media screen and (min-width: 1080px) {
  .m_button.introduction-guide {
    width: 400px;
  }
}

@media screen and (min-width: 1080px) {
  .download_content_img_box {
    margin: 80px 80px 0 0;
  }
}

.service_section_bg.__download {
  background: var(--gray-color);
  padding-top: 60px;
}

.service_section_download_title-box {
  width: 100%;
  background: linear-gradient(
    to right,
    var(--yellow-color),
    var(--accent-color)
  );
  padding: 8px 0;
}

.service_section_download_title {
  font-size: 16px;
  color: var(--white-color);
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .service_section_download_title {
    font-size: 24px;
  }
}

.download_txtbox {
  padding: 24px 0;
  align-items: center;
  letter-spacing: 0;
}

@media screen and (min-width: 1080px) {
  .download_txtbox {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.download_ttl {
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .download_ttl {
    font-size: 20px;
  }
}

.download_txt1 {
  margin-top: 24px;
  font-size: 14px;
}

.download_txt2 {
  margin-top: 24px;
  font-size: 14px;
}

/* ーーここからーー serviceに追加してくださいーーここからーー */
.service_voice_container {
  overflow: hidden;
  position: relative;
}

.service_voice_track {
  display: flex;
  touch-action: pan-y;
}

.service_voice-wrapper {
  flex-shrink: 0;
  width: 80%; /* SP想定 */
  margin-right: 16px;

  opacity: 0.4;
  transform: scale(0.9);
}

.service_voice_dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.dot.active {
  background: #000;
}

.service_voice_track {
  touch-action: pan-y; /* 縦スクロール生かす */
  cursor: grab;
}

.service_voice_track:active {
  cursor: grabbing;
}

.carousel_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
}

.carousel_btn.prev {
  left: 8px;
}

.carousel_btn.next {
  right: 8px;
}

/* ーーここまでーー serviceに追加してくださいーーここまでーー */

/* ---------- contact ---------- */

.contactform-wrapper {
  background: var(--white-color);
  margin-top: 60px;
}

@media screen and (min-width: 1080px) {
  .contactform-wrapper {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form_pc.__service {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form__service {
    width: 580px;
  }
}

.contact_form__service {
  padding: 40px 16px;
}

@media screen and (min-width: 1080px) {
  .contact_form__service {
    padding: 40px;
  }
}

.contact_form_heading__service {
  display: flex;
}

.contact_form_heading__service:not(:first-child) {
  margin-top: 40px;
}

.contact_form_detail__service {
  margin-top: 16px;
}

.contact_form_input__service {
  width: 100%;
  height: 40px;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  padding: 0 8px;
}

.contact_form_textarea__service {
  width: 100%;
  height: 160px;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
  padding: 8px 16px;
  resize: none;
}

.contact_form_select {
  border: 1px solid var(--black-color);
  padding: 8px;
}

.contact_form__service input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
}

.contact_form__service input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
}

/* checkbox */

.checkboxItem {
  display: flex;
  align-items: center;
  column-gap: 4px;
  width: fit-content;
  line-height: 1;
  color: #494444;
  cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 16px;
}

.checkbox {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #494444;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox:checked {
  background-color: #e67536;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* ---------- js ---------- */

/* ハンバーガーメニュー */

.js_body.is-active {
  overflow: hidden;
}

body.is-active {
  overflow: hidden;
}

.js_hamburger-bar {
  transition:
    top 0.5s,
    transform 0.5s,
    opacity 0.5s;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%) rotate(135deg);
  width: 24px;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(3) {
  top: 50%;
  transform: translate(-50%) rotate(-135deg);
  width: 24px;
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_spot-view_btn-wrapper.is-active {
  z-index: 0;
}

/* 多言語切り替えボタン（トグルボタン） */
.lang-switch .jp {
  color: #fff;
}

.lang-switch .en {
  color: #444;
}

.lang-switch.is-active .jp {
  color: #444;
}

.lang-switch.is-active .en {
  color: #fff;
}

.lang-switch.is-active .thumb {
  transform: translateX(17px);
  top: 1px;
}

@media screen and (min-width: 768px) {
  .lang-switch.is-active .thumb {
    transform: translateX(33px);
    top: 2px;
  }
}

/* ---------- CONTACT FORM7 ---------- */

.wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.wpcf7 form {
  position: relative;
}

.wpcf7 form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.wpcf7-list-item-label {
  margin-left: 8px;
}

.wpcf7-list-item:last-child {
  margin-bottom: 40px;
}

input[type="radio"] {
  appearance: button;
}

input[type="checkbox"] {
  appearance: checkbox;
}

.langToggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 60px;
  height: 30px;
  padding: 1px;
  border: 1px solid #444;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.langToggle__btn {
  position: relative;
  z-index: 2;
  flex: 1;
  height: 100%;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #444;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}

.langToggle__thumb {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 27px;
  height: 24px;
  background: #444;
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.langToggle:not(.is-en) .langToggle__btn--jp {
  color: #fff;
}

.langToggle.is-en .langToggle__thumb {
  transform: translateX(25px);
}
.langToggle.is-en .langToggle__btn--jp {
  color: #444;
  font-family: "Noto Sans JP", sans-serif;
}
.langToggle.is-en .langToggle__btn--en {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.spMenuLang {
  position: absolute;
  top: 42px;
  left: 32px;
}

@media (min-width: 1300px) {
  .spMenuLang {
    display: none;
  }
}
