/*___________________________
Body
___________________________*/

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}

body.navOpen {
  overflow: hidden;
}

.ios-mac {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
}

p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
li,
figcaption,
button,
label,
input,
address {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/*___________________________
layout
___________________________*/

.container {
  box-sizing: content-box;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: var(--padding-side);
  padding-left: var(--padding-side);
}

/*___________________________
Common
___________________________*/

.for-sp {
  display: none;
}

.for-tab {
  display: none;
}

.footer-for-sp {
  display: none;
}

.footer-for-tab {
  display: none;
}

@media screen and (max-width: 1000px) {
  .for-tab {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .for-sp {
    display: inline-block;
  }

  .for-pc {
    display: none !important;
  }
}

@media screen and (max-width: 460px) {
  .footer-for-sp {
    display: inline-block;
  }

  .footer-for-pc {
    display: none !important;
  }
}

/*___________________________
header
___________________________*/

header {
  padding-bottom: 20px;
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 10;
}

.header_container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gnav ul {
  display: flex;
  align-items: center;
}

.gnav li {
  border-right: #d2d2d2 solid 1px;
}

.gnav li:last-child {
  border-right: none;
}

.gnav li a {
  padding: 0 26px;
  transition: 0.3s;
}

.gnav li a:hover {
  color: #e8465a;
  transition: 0.3s;
}

.gnav li:first-child a {
  padding: 0 16.5px;
}

.header_contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_contact_tel {
  margin-left: 18px;
  letter-spacing: -1.5%;
}

.header_contact_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494949;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  gap: 6px;
  white-space: nowrap;
}

.header_contact_tel a:before {
  content: "";
  background: url(../images/common/icon_tell.png) center center no-repeat;
  background-size: cover;
  display: block;
  height: 21px;
  width: 21px;
}

.header_contact_link {
  margin-left: 16px;
}

.header_contact_link a {
  background: #e8465a;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  height: 48px;
  text-align: center;
  transition: 0.3s;
  width: 295px;
}

.header_contact_link a:hover {
  color: #595757;
  background: #eeaab3;
  transition: 0.3s;
}

body.navOpen {
  overflow: hidden;
  position: fixed; /* 追加：iOSでの背景スクロールを防ぐ */
  width: 100%; /* 追加：fixedにした際のレイアウト崩れを防ぐ */
}

/*___________________________
header mobile menu
___________________________*/

@media screen and (max-width: 1279px) {
  header {
    padding: 24px 0;
  }
}

/*___________________________
footer
___________________________*/

footer {
  background: #727171;
  padding-bottom: 16px;
}

.footer_contact_container {
  background: #f4f4f4;
}

.footer_contact_inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 140px;
  padding-bottom: 140px;
  width: 100%;
}

.footer_contact_box {
  background: #fff;
  border-radius: 8px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 20px 87px 40px;
}

.footer_contact_box > dt {
  border-bottom: #333333 dotted 1px;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  padding-bottom: 16px;
  padding-top: 16px;
  text-align: center;
}

.footer_contact_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 60px;
  padding-left: 85.5px;
  padding-right: 85.5px;
}

.footer_contact_head dt {
  min-width: 134px;
}

.footer_contact_head dd {
  width: calc(100% - 134px);
}

.footer_contact_head dd p {
  color: #4d4d4d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align-last: left;
}

.footer_contact_bottom {
  margin-top: 36px;
}

.footer_contact_bottom ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_contact_bottom ul li {
  border-right: #333 dotted 1px;
  text-align: center;
  width: 50%;
}

.footer_contact_bottom ul li:last-child {
  border-right: none;
}

.footer_contact_tell a {
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.footer_contact_tell a:before {
  content: "";
  background: url(../images/common/icon_tell.png) center center no-repeat;
  background-size: cover;
  display: block;
  height: 32px;
  width: 32px;
}

.footer_contact_tell p {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.footer_contact_link {
  padding-left: 40px;
}
.footer_contact_link a {
  background: #e8465a;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 10%;
  height: 73px;
  text-align: center;
  transition: 0.3s;
}
.footer_contact_link a:hover {
  color: #595757;
  background: #eeaab3;
}

.footer_container {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1420px;
  width: 100%;
}

.bottom_nav_list {
  border-bottom: #fff solid 1px;
  padding-bottom: 30px;
}

.bottom_nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.bottom_nav_list li {
  font-size: 16px;
  line-height: 1.8;
}

.bottom_nav_list li a {
  color: #fff;
  padding-bottom: 2px;
  position: relative;
  text-decoration: none;
  font-size: 1rem;
}

.bottom_nav_list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.bottom_nav_list li a:hover::after {
  width: 100%;
}

.footer_bottom_content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}

.footer_bottom_date {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.footer_bottom_date dt img {
  margin-top: 2px;
}

.footer_bottom_date dd {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.footer_bottom_date dd .footer_name {
  font-size: 20px;
  line-height: 1.6;
}

.footer_policy_link a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: underline;
  gap: 5px;
}

.footer_policy_link a:hover {
  text-decoration: none;
}

.footer_policy_link a:after {
  content: "";
  display: block;
  background: url(../images/common/icon_link.svg) center center no-repeat;
  background-size: cover;
  height: 19px;
  width: 19px;
}

.copyright {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  padding-top: 16px;
  margin-top: 40px;
}

.three-lines {
  display: none;
  position: relative;
  width: 24px;
  min-width: 24px;
  height: 19px;
  cursor: pointer;
}

.three-lines span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #e8465a;
  position: absolute;
  transition: all 0.3s ease;
}

.three-lines span:nth-child(1) {
  top: 0;
}
.three-lines span:nth-child(2) {
  top: 8px;
}
.three-lines span:nth-child(3) {
  top: 16px;
}

.sp_header_contents {
  align-items: center;
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  z-index: 15;
  background: #fff;
  width: 100%;
  padding: 0;
  height: calc(100vh - 76px);
  height: calc(100dvh - 76px);
}

.sp_header_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1279px) {
  .header_contents {
    display: none;
  }
  .three-lines {
    display: inline-block;
  }
  .footer_bottom_date dd {
    font-size: .875rem;
  }
}

.three-lines.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.three-lines.active span:nth-child(2) {
  opacity: 0;
}

.three-lines.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1279px) {
  .sp_header_inner {
    display: block;
    height: calc(100vh - 76px);
    box-shadow: inset 0 -4px 4px 0 rgba(0, 0, 0, 0.05);
    position: relative;
  }
  .sp_menu_container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .header_contact_tel,
  .header_contact_link {
    margin-left: 0;
  }
  .header_contact_tel {
    margin-top: 40px;
  }
  .header_contact_link a {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-size: 14px;
    max-width: 230px;
  }
  .gnav ul {
    display: block;
  }
  .gnav li {
    border-right: none;
  }
  .gnav li a,
  .gnav li:first-child a {
    display: block;
    padding: 0 0;
    text-align: center;
    max-width: 165px;
    min-width: 165px;
    width: 100%;
    margin: 0 auto;
    border-bottom: #dcdcdc solid 1px;
    padding: 16px 0;
  }
  .gnav li:last-child a {
    border-bottom: none;
  }
}

@media screen and (max-width: 990px) {
  .footer_container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .footer_contact_box {
    background: #fff;
    border-radius: 8px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 20px 30px 40px;
  }
  .footer_contact_bottom ul {
    display: block;
    width: 100%;
  }
  .footer_contact_bottom ul li {
    border-right: none;
    padding-left: 0;
    width: 100%;
  }
  .footer_contact_link.for-pc {
    margin-top: 30px;
  }
  .footer_contact_link a {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .footer_bottom_content {
    display: block;
    margin-top: 0;
  }
  .footer_bottom_date {
    display: block;
  }
  .footer_bottom_date dd {
    width: 100%;
  }
  .footer_bottom_date dd .footer_name {
    display: block;
    font-size: .875rem;
    margin-top: 28px;
  }
  .bottom_nav_list {
    display: block;
    margin-top: 29px;
    padding-bottom: 28px;
    width: 100%;
  }
  .bottom_nav_list li {
    margin-bottom: 25px;
  }
  .bottom_nav_list li:last-child {
    margin-bottom: 0;
  }
  .footer_policy_link a {
    justify-content: flex-start;
    font-size: .625rem;
  }
  .footer_policy_link a:after {
    width: .8125rem;
    height: .8125rem;
  }
  .sp_large {
    display: block;
    font-size: .875rem;
  }
  .footer_policy_link {
    margin-top: 40px;
  }
  .footer_contact_inner {
    padding-bottom: 80px;
    padding-top: 83px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer_contact_box {
    padding: 20px 20px 20px 20px;
  }
  .footer_contact_box > dt {
    font-size: 24px;
  }
  .footer_contact_head {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .footer_contact_head dt {
    text-align: center;
  }
  .footer_contact_head dd {
    text-align: center;
    width: 100%;
  }
  .footer_contact_head dd p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 23px;
    display: inline-block;
  }
  .footer_contact_bottom ul {
    display: block;
  }
  .footer_contact_bottom ul li {
    border-right: none;
    width: 100%;
  }
  .footer_contact_tell a {
    font-size: 38px;
    gap: 8px;
    pointer-events: auto;
  }
  .footer_contact_tell p {
    margin-top: 11px;
  }
  .footer_contact_link {
    padding-left: 0;
  }
  .footer_contact_link.for-sp {
    margin-top: 24px;
  }
  .footer_contact_link a {
    line-height: 1.3;
    max-width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
  .footer_bottom_date dt img {
    margin-top: 0;
  }
}

/*___________________________
sub page
___________________________*/
.pageMV {
  position: relative;
  text-align: right;
  z-index: 2;
  width: 100%;
  height: auto;
}

.pageMV__img {
  width: 100%;
  height: auto;
}

.mv__textarea {
  position: absolute;
  top: 43%;
  left: 35%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 47.4375rem;
  padding-left: 2.75rem;
  letter-spacing: 2.28px;
}

.mv__textarea::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 97.6px;
  background-color: #e8465a;
}

.mv__title {
  font-size: 4rem;
  color: #333;
  font-weight: bold;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.mv__text {
  text-align-last: left;
}

@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2rem;
  }

  .mv__textarea::before {
    top: 50%;
    height: 74.6px;
  }
  .mv__textarea {
    top: 34%;
    left: 12%;
    padding-left: 2.2rem;
  }
}

/*___________________________
headline title
___________________________*/

.top_section_title {
  border-bottom: #e5e5e5 solid 4px;
  margin-bottom: 40px;
  padding-bottom: 22px;
  position: relative;
}

.top_section_title:before {
  content: "";
  background: #e8465a;
  display: block;
  height: 4px;
  width: 340px;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.top_section_title h2 {
  color: #595757;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.28px;
  margin-bottom: 1rem;
}

.top_section_title p {
  display: block;
  color: #333333 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 1.8px !important;
}

.top_section_head {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 60px;
}

.section_title {
  border-bottom: #e5e5e5 solid 4px;
  margin-bottom: 40px;
  padding-bottom: 22px;
  position: relative;
}

.section_title:before {
  content: "";
  background: #e8465a;
  display: block;
  height: 4px;
  width: 196px;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.section_title h2 {
  color: #595757;
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 2.75rem;
  letter-spacing: 1.28px;
  margin-bottom: 1rem;
  padding-top: 1.25rem;
}

.section_title p {
  display: block;
  color: #333333 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 1.8px !important;
}

.section_head {
  color: #4d4d4d;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .header_title {
    max-width: 180px;
  }
  .header_container {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
  }
  .top_section_title {
    padding-bottom: 13px;
    margin-bottom: 44px;
  }
  .top_section_title h2 {
    font-size: 36px;
    padding-top: 0;
  }
  .top_section_title p {
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .top_section_title {
    border-bottom: #e5e5e5 solid 4px;
  }
  .top_section_title:before {
    width: 198px;
  }
  .top_section_head {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .three-lines {
    position: absolute;
    right: 20px;
  }
  .section_title {
    padding-bottom: 13px;
    margin-bottom: 2.5rem;
  }
  .section_title h2 {
    font-size: 36px;
  }
  .section_title p {
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .section_title {
    border-bottom: #e5e5e5 solid 4px;
  }
  .section_title:before {
    width: 198px;
  }
  .section_head {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}

/*___________________________
breadcrumb
___________________________*/

.breadcrumb {
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
}

.breadcrumb .current-item {
  color: #333333;
}

.breadcrumb_Wrapper {
  max-width: 70rem;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.breadcrumb a {
  color: #a1a1a1;
}

.breadcrumb .separator {
  color: #a1a1a1;
}

.home {
  font-weight: 500;
  font-size: 18px;
}

.current-item {
  color: #000;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 12px;
    font-weight: 400;
  }
  .home {
    font-weight: 400;
    font-size: 12px;
  }
  .current-item {
    font-weight: 400;
    font-size: 12px;
  }
}
