@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
}

p {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

.container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 390px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 390px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 390px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 390px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 390px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
header
*************************************************/
.header {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  padding: 0 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.header .header_inner {
  margin: auto 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*************************************************
footer
*************************************************/
footer {
  position: relative;
  z-index: 2;
  max-width: 39rem;
  margin: 0 auto;
  background-color: #e6f3f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
footer p {
  font-size: 12px;
}

.logo {
  max-width: 85px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}

/*************************************************
top
*************************************************/
.pc_fv {
  background: url(../images/pc_bg.jpg) center/cover;
  width: 100%;
  height: 100vh; /* ファーストビューの高さを画面全体に */
  overflow: hidden;
  position: fixed;
}
.pc_fv .menu {
  width: 93.0555555556vw;
  height: 100vh;
  margin: 0 auto;
  padding-top: 10rem;
  position: relative;
}
@media screen and (max-width: 1350px) {
  .pc_fv .menu {
    width: 97%;
  }
}
@media screen and (max-width: 1150px) {
  .pc_fv .menu {
    display: none;
  }
}
.pc_fv .menu .logo {
  width: 10.4166666667vw;
  max-width: 15rem;
  margin-left: 50px;
}
.pc_fv .menu .logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.pc_fv .menu .nav {
  padding-top: 4.8rem;
  margin-left: 50px;
}
.pc_fv .menu .nav li {
  margin-bottom: 0.6rem;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding-left: 1rem;
  width: 240px;
  border-bottom: 1px dashed #006891;
}
.pc_fv .menu .nav li a {
  padding: 1rem;
  display: inline-block;
  transition: color 0.3s, font-weight 0.3s; /* アニメーションを追加 */
  /* 左側にアイコンを表示 */
}
.pc_fv .menu .nav li a:hover, .pc_fv .menu .nav li a:focus {
  font-weight: bold; /* ホバーまたはフォーカス時に太字に */
  color: #111; /* 色も変更可能 */
}
.pc_fv .menu .nav li a::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #006891;
  position: absolute;
  left: 0; /* アイコンをリンクの左に表示 */
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  opacity: 0; /* 初期状態では表示しない */
  transition: opacity 0.3s, transform 0.3s;
}
.pc_fv .menu .nav li a:hover::before, .pc_fv .menu .nav li a:focus::before {
  opacity: 1; /* ホバーまたはフォーカス時にアイコンを表示 */
  transform: translateY(-50%) translateX(-5px); /* スライドして表示 */
  -webkit-transform: translateY(-50%) translateX(-5px);
}
.pc_fv .menu .nav li a.active {
  font-weight: bold;
}
.pc_fv .menu .nav li a.active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px);
  -webkit-transform: translateY(-50%) translateX(-5px);
}
.pc_fv .menu .fv_right {
  position: absolute;
  bottom: 80px;
  right: 50px;
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  align-items: center; /* 水平方向の中央揃え */
  justify-content: center;
  gap: 1rem;
}

/*************************************************
contents
*************************************************/
.contents_wrap {
  position: relative;
  z-index: 2;
  max-width: 39rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 390px) {
  .contents_wrap {
    width: 100%;
  }
}
.contents_wrap .top_mv {
  height: 100%;
  width: 100%;
}
.contents_wrap .top_faq {
  padding: 50px 20px;
  background: #fff;
}
.contents_wrap .cta_wrap {
  background: url(../images/cta_bg.jpg) center center/cover no-repeat;
  height: 100%;
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contents_wrap .cta_wrap p {
  font-weight: bold;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.contents_wrap .cta_wrap .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* 縦並びなら */
}
.contents_wrap .cta_wrap .btn_wrap img {
  width: 100%;
}
.contents_wrap .cta_wrap .btn_wrap img.hours {
  margin-bottom: 5px;
  width: 100%;
  max-width: 153px;
}
.contents_wrap .top_point {
  padding: 50px 0;
  background: #fff;
}
.contents_wrap .top_point .title {
  max-width: 176px;
  width: 100%;
  margin: 0 auto 20px;
}
.contents_wrap .top_point .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contents_wrap .top_point .container .scroll-wrapper {
  width: 100%;
  overflow-x: scroll;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: auto;
  scrollbar-color: #006891;
}
.contents_wrap .top_point .container .scroll-wrapper img {
  display: block;
  height: auto;
  width: 550px;
  max-width: none;
}
.contents_wrap .top_point .container .scroll-wrapper .simplebar-scrollbar::before {
  background-color: #006891;
  border-radius: 5px;
  height: 10px;
  top: 0;
  bottom: 0;
  opacity: 1;
}
.contents_wrap .top_point .container .scroll-wrapper .simplebar-track {
  background: #f1f1f1;
  border-radius: 5px;
  height: 10px;
}
.contents_wrap .top_point .container .scroll-wrapper .simplebar-horizontal {
  height: 10px;
  bottom: 0;
}
.contents_wrap .top_point .container .scroll-wrapper .simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}
.contents_wrap .top_contact {
  padding: 50px 0;
  background: #fff;
}
.contents_wrap .top_contact .title {
  width: 100%;
  max-width: 276px;
  margin: 0 auto 50px;
}
.contents_wrap .cta_form {
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 0 20px;
}
.contents_wrap .cta_form .cta_ttl {
  width: 30%;
  margin: 0 auto 30px;
}
.contents_wrap .cta_form .formwrap {
  display: block;
  width: 100%;
}
.contents_wrap .cta_form .formwrap tbody {
  display: block;
}
.contents_wrap .cta_form .formwrap tr {
  width: 100%;
  display: block;
  margin-bottom: 25px;
  font-size: 16px;
  color: #333;
}
.contents_wrap .cta_form .formwrap tr th {
  display: block;
  margin-bottom: 10px;
}
.contents_wrap .cta_form .formwrap tr th span {
  color: #fff;
  font-size: 12px;
  padding: 5px 8px;
  background: #008ac1;
  margin-left: 5px;
}
.contents_wrap .cta_form .formwrap tr th .ken {
  color: #a2a2a2;
}
.contents_wrap .cta_form .formwrap tr td {
  display: block;
  border: 1px #ecebeb solid;
  border-radius: 5px;
}
.contents_wrap .cta_form .formwrap tr td input[type=text],
.contents_wrap .cta_form .formwrap tr td input[type=email],
.contents_wrap .cta_form .formwrap tr td input[type=tel] {
  width: 100%;
  padding: 10px;
}
.contents_wrap .cta_form .formwrap tr td input[type=text] ::-moz-placeholder, .contents_wrap .cta_form .formwrap tr td input[type=email] ::-moz-placeholder, .contents_wrap .cta_form .formwrap tr td input[type=tel] ::-moz-placeholder {
  color: #a2a2a2;
}
.contents_wrap .cta_form .formwrap tr td input[type=text] ::placeholder,
.contents_wrap .cta_form .formwrap tr td input[type=email] ::placeholder,
.contents_wrap .cta_form .formwrap tr td input[type=tel] ::placeholder {
  color: #a2a2a2;
}
.contents_wrap .cta_form .formwrap tr td input[type=checkbox] {
  width: 15px;
  height: 15px;
}
.contents_wrap .cta_form .formwrap tr td input[type=radio] {
  border: none;
}
.contents_wrap .cta_form .formwrap tr td textarea {
  width: 100%;
  padding: 10px;
}
.contents_wrap .cta_form .formwrap tr td select {
  padding: 10px;
  width: 100%;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.contents_wrap .cta_form .formwrap tr td label {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.contents_wrap .cta_form .formwrap tr td.area {
  position: relative;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%23333333" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}
.contents_wrap .cta_form .formwrap tr .border_none {
  border: none;
}
.contents_wrap .cta_form button {
  display: block;
  margin: 20px auto 0;
  width: 100%;
  background: #008ac1;
  text-align: center;
  padding: 20px 0;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: opacity 0.3s, transform 0.3s;
}
.contents_wrap .cta_form button:hover {
  opacity: 0.8;
}
.contents_wrap .cta_form .checkbox-group {
  font-size: 14px;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .contents_wrap .cta_form .checkbox-group {
    flex-direction: row;
    gap: 10px;
  }
}
.contents_wrap .cta_form .checkbox-group input {
  width: 15px;
  height: 15px;
}
.contents_wrap .cta_form .checkbox-group a {
  color: #006891;
  text-decoration: underline;
}

.follow {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  z-index: 100;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .follow {
    display: flex;
    justify-content: space-between;
  }
}
.follow a {
  display: block;
}
.follow a img {
  display: block;
  width: 100%;
  height: auto;
}

/*************************************************
thanks
*************************************************/
.contents_wrap {
  position: relative;
  z-index: 2;
  max-width: 39rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 390px) {
  .contents_wrap {
    width: 100%;
  }
}

.wrapper_thanks {
  padding-top: 100px;
}
.wrapper_thanks .thanks_box {
  text-align: center;
}
.wrapper_thanks .thanks_box h2 {
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.wrapper_thanks .btn_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 350px;
  aspect-ratio: 1/0.2;
  text-align: center;
  color: #fff;
  background: #006891;
  margin: 50px auto 0;
  font-size: 16px;
  font-weight: bold;
}

/*************************************************
privacy
*************************************************/
.privacy-policy,
.trade-law,
.terms-of-use {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .privacy-policy,
  .trade-law,
  .terms-of-use {
    padding: 60px 0;
  }
}
.privacy-policy:nth-child(even),
.trade-law:nth-child(even),
.terms-of-use:nth-child(even) {
  background-color: #f8f9fa;
}
.privacy-policy .container,
.trade-law .container,
.terms-of-use .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-policy .policy-content,
.trade-law .policy-content,
.terms-of-use .policy-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}
@media (max-width: 768px) {
  .privacy-policy .policy-content,
  .trade-law .policy-content,
  .terms-of-use .policy-content {
    padding: 40px 20px;
  }
}

.policy-title {
  font-size: 32px;
  color: #006891;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}
.policy-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #006891;
}
@media (max-width: 768px) {
  .policy-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

.section-intro {
  margin-bottom: 50px;
}
.section-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.policy-section {
  margin-bottom: 40px;
}
.policy-section:last-child {
  margin-bottom: 0;
}
.policy-section h3 {
  font-size: 20px;
  color: #006891;
  margin-bottom: 20px;
  padding-left: 15px;
  position: relative;
}
.policy-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #006891;
}
@media (max-width: 768px) {
  .policy-section h3 {
    font-size: 18px;
  }
}
.policy-section h4 {
  font-size: 16px;
  color: #333;
  margin: 15px 0 10px;
  font-weight: bold;
}
.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}
.policy-section ul,
.policy-section ol {
  margin-left: 20px;
  margin-bottom: 15px;
}
.policy-section ul li,
.policy-section ol li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}
.policy-section ul li ul,
.policy-section ol li ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.policy-section ul {
  list-style-type: disc;
}
.policy-section ol {
  list-style-type: decimal;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}
.contact-info p {
  margin-bottom: 5px;
  font-size: 16px;
}
.contact-info p:last-child {
  margin-bottom: 0;
}

.policy-date {
  text-align: right;
  color: #666;
  font-size: 14px;
  margin-top: 50px;
}

.trade-table {
  margin-bottom: 40px;
}
.trade-table table {
  width: 100%;
  border-collapse: collapse;
}
.trade-table table tr {
  border-bottom: 1px solid #e0e0e0;
}
.trade-table table tr:last-child {
  border-bottom: none;
}
.trade-table table th,
.trade-table table td {
  padding: 15px;
  text-align: left;
  font-size: 16px;
}
.trade-table table th {
  width: 30%;
  background-color: #f8f9fa;
  font-weight: bold;
  color: #333;
}
@media (max-width: 768px) {
  .trade-table table th {
    width: 100%;
    display: block;
    background-color: #006891;
    color: #fff;
    margin-bottom: 5px;
  }
}
.trade-table table td {
  color: #333;
}
@media (max-width: 768px) {
  .trade-table table td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-bottom: 20px;
  }
}