@charset "utf-8";
/* Reset
----------------------------------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0
}
ul[role='list'], ol[role='list'] {
  list-style: none
}
body {
  min-height: 100vh;
  line-height: 1.5
}
h1, h2, h3, h4, button, input, label {
  line-height: 1.1
}
h1, h2, h3, h4 {
  text-wrap: balance
}
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor
}
img, picture {
  max-width: 100%;
  display: block
}
input, button, textarea, select {
  font: inherit
}
textarea:not([rows]) {
  min-height: 10em
}
:target {
  scroll-margin-block: 5ex
}
/* Break Point
----------------------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  /*16px * 62.5% = 10px*/
}
body {
  font-size: 1.6rem;
  /*10px * 1.6 = 16px*/
}
.vpc1367_in {
  display: inline !important;
}
.vsp1367 {
  display: none !important;
}
.vsp1367_in {
  display: none !important;
}
@media screen and (max-width: 1367px) {
  .vsp1367 {
    display: block !important;
  }
  .vsp1367_in {
    display: inline !important;
  }
  .vpc1367, .vpc1367_in {
    display: none !important;
  }
}
.vpc1023_in {
  display: inline !important;
}
.vsp1023 {
  display: none !important;
}
.vsp1023_in {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .vsp1023 {
    display: block !important;
  }
  .vsp1023_in {
    display: inline !important;
  }
  .vpc1023, .vpc1023_in {
    display: none !important;
  }
}
.vpc767_in {
  display: inline !important;
}
.vsp767 {
  display: none !important;
}
.vsp767_in {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .vsp767 {
    display: block !important;
  }
  .vsp767_in {
    display: inline !important;
  }
  .vpc767, .vpc767_in {
    display: none !important;
  }
}
/* Common
----------------------------------------------------------------------------------------------------*/
body {
  background-color: #FFF;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit; /* 必要に応じて色も調整 */
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-height: 100%;
    position: relative;
  }
  body {
    margin: 0;
    padding: 0;
  }
}
/* リンクカラー */
a {
  color: #000000; /* default #0a0a0a */
}
/* Anker Link */
.jump_point {
  display: block;
  padding-top: 6rem;
  margin-top: -6rem;
}
/* Header
----------------------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 12rem;
  background: #fff;
  padding: 0 4rem;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 8rem;
    padding: 0;
  }
}
/*　上に上がる動き　*/
.header.UpMove {
  animation: UpAnime 1s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    transform: translateY(-250px);
  }
}
/*　下に下がる動き　*/
.header.DownMove {
  animation: DownAnime 1s;
}
@keyframes DownAnime {
  from {
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Header Logo
----------------------------------------------------------------------------------------------------*/
.header__logo img {
  width: min(90%, 55rem);
  min-width: 20rem;
}
@media screen and (max-width: 1023px) {
  .header__logo img {
    width: 20rem;
    margin-left: 2rem;
  }
}
/* Header Navigation
----------------------------------------------------------------------------------------------------*/
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 4rem;
}
.header-inner__nav {
  display: block;
}
.header-inner__nav ul {
  display: flex;
  gap: 4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-inner__nav li a {
  position: relative;
  display: inline-block;
  overflow: hidden; /* はみ出し部分を隠す */
  width: 8.5rem; /* 横幅 */
  height: 8rem; /* 縦幅 */
  color: #000;
  font-size: min(1.5vw, 2rem);
  font-weight: 600;
  text-decoration: none;
  line-height: 8rem; /* 行の高さ(heightと同じ値にする) */
  white-space: nowrap;
}
.header-inner__nav li:nth-child(1) a {
  width: 10rem; /* 横幅 */
}
.header-inner__nav li:nth-child(2) a {
  width: 12rem; /* 横幅 */
}
.header-inner__nav li:nth-child(3) a {
  width: 5rem; /* 横幅 */
}
.btn__text {
  position: absolute;
  left: 0;
  display: block;
  width: 100%; /* 横幅をボタンと同じにする */
  height: 100%; /* 縦幅をボタンと同じにする */
  transition: all 0.3s;
}
.btn__text:nth-child(1) {
  top: 0;
}
.btn__text:nth-child(2) {
  top: -100%;
  font-size: min(1.5vw, 1.8rem);
  font-family: "DM Sans", sans-serif;
}
.header-inner__nav a:hover .btn__text:nth-child(1) {
  top: 100%;
}
.header-inner__nav a:hover .btn__text:nth-child(2) {
  top: 0;
}
@media screen and (max-width: 1023px) {
  .header-inner {
    gap: 0;
  }
  .header-inner__nav {
    position: fixed;
    top: -200rem;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100dvh;
    background: #ffeca6;
    margin-top: 8rem;
  }
  .header-inner__nav.panelactive {
    top: 0;
    opacity: 1;
  }
  .header-inner__nav ul {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0;
    margin: 3rem 0 2rem;
  }
  .header-inner__nav li a {
    position: static;
    display: block;
    overflow: inherit;
    width: 33rem;
    height: 6rem;
    border-bottom: 2px solid #ffbb00;
    padding-bottom: 0;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    line-height: 5rem; /* 行の高さ(heightと同じ値にする) */
  }
  .header-inner__nav li:nth-child(1) a, .header-inner__nav li:nth-child(2) a, .header-inner__nav li:nth-child(3) a {
    width: 33rem;
  }
  .btn__text {
    position: inherit;
  }
  .btn__text:nth-child(2) {
    display: none;
  }
  .header-inner__nav a:hover .btn__text:nth-child(2) {
    display: none;
  }
  .header-inner__nav-sub a {
    display: block;
    width: 33rem;
    height: inherit;
    padding-bottom: 2rem;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    line-height: inherit;
  }
  .header-inner__nav-contact {
    display: block;
    width: 33rem;
    margin: 0 auto;
    font-size: 1.4rem;
    text-align: left;
  }
  .header-inner__nav-contact span {
    font-size: 4.8rem;
    font-weight: 500;
  }
}
/* Header Contact
----------------------------------------------------------------------------------------------------*/
.header-inner__contact a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 28rem;
  height: 8rem;
  background: #FF820C;
  padding: 0 1.7rem;
  border-radius: 1rem;
  color: #fff;
  font-size: min(1.5vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.5s ease;
}
.header-inner__contact a::before {
  content: "";
  display: inline-block;
  width: 5.47rem;
  height: 3rem;
  background-image: url("../img/icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.header-inner__contact a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1367px) {
  .header-inner__contact a {
    gap: 1rem;
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .header-inner__contact a {
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    width: 7rem;
    height: 8rem;
    border-radius: 0;
    font-size: 1.1rem;
  }
  .header-inner__contact a::before {
    width: 3.65rem;
    height: 2rem;
  }
}
/* Header Menu
----------------------------------------------------------------------------------------------------*/
.header-inner__openbtn {
  position: inherit;
  display: none;
}
@media screen and (max-width: 1023px) {
  .header-inner__openbtn {
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 8rem;
    width: 7rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #FF820C;
  }
  .header-inner__openbtn.active {
    background-color: #ffeca6;
  }
  .header-inner__openbtn span {
    position: absolute;
    left: 2.25rem;
    top: 0;
    display: inline-block;
    width: 2.5rem;
    height: 0.2rem;
    background: #FF820C;
    margin: 0.3rem 0;
    border-radius: 5rem;
    transition: all .4s;
  }
  .header-inner__openbtn span:nth-of-type(1) {
    top: 1rem;
  }
  .header-inner__openbtn span:nth-of-type(2) {
    top: 2rem;
  }
  .header-inner__openbtn span:nth-of-type(3) {
    top: 3rem;
  }
  .header-inner__openbtn div {
    position: absolute;
    top: 4.8rem;
    left: 0;
    right: 0;
    font-weight: 700;
  }
  .header-inner__openbtn.active span {
    background: #ff820c;
  }
  .header-inner__openbtn.active span:nth-of-type(1) {
    top: 2.2rem;
    left: 2rem;
    width: 2.5rem;
    transform: translateY(0.01rem) rotate(-45deg);
  }
  .header-inner__openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header-inner__openbtn.active span:nth-of-type(3) {
    top: 2.2rem;
    left: 2rem;
    width: 2.5rem;
    transform: translateY(-0.01rem) rotate(45deg);
  }
}
/* Footer
----------------------------------------------------------------------------------------------------*/
.footer-inner {
  width: 100%;
  background-color: #ffeca6;
}
/* Footer Corporate Info
----------------------------------------------------------------------------------------------------*/
.footer-corpo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 154.2rem;
  margin: 0 auto;
  padding: 8rem 0 6rem;
  background-color: #FFFFFF;
}
.footer-corpo__add {
  width: 50%;
  text-align: left;
}
.footer-corpo__add h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
}
.footer-corpo__add h4 img {
  margin-bottom: 2rem;
}
.footer-corpo__add address {
  font-size: 2.2rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.25;
}
.footer-corpo__add .add__zip {
  font-size: 1.8rem;
}
.footer-corpo__add .add__tel {
  font-size: 2rem;
}
.footer-corpo__nav {
  width: 50%;
}
.footer-corpo__nav ul {
  margin: 0;
  padding: 0 0 1rem;
  list-style: none;
}
.footer-corpo__nav li {
  text-align: right;
}
.footer-corpo__nav li a {
  display: block;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 1367px) {
  .footer-corpo {
    max-width: 130rem;
    padding: 8rem 3rem 6rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer-corpo {
    flex-direction: column;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 3rem 5rem;
  }
  .footer-corpo__add {
    width: 100%;
  }
  .footer-corpo__add h4 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
  }
  .footer-corpo__add h4 img {
    margin-bottom: 1.5rem;
  }
  .footer-corpo__add address {
    font-size: 1.6rem;
    font-weight: 600;
    font-style: normal;
    line-height: 1.25;
  }
  .footer-corpo__add .add__zip {
    font-size: 1.2rem;
  }
  .footer-corpo__add .add__tel {
    font-size: 1.4rem;
  }
  .footer-corpo__nav {
    width: 100%;
  }
  .footer-corpo__nav ul {
    margin: 0;
    padding: 0 0 1rem;
    list-style: none;
  }
  .footer-corpo__nav li {
    text-align: left;
  }
  .footer-corpo__nav li a {
    display: block;
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
/* Footer Corporate Contact
----------------------------------------------------------------------------------------------------*/
.footer-corpo__contact {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.footer-corpo__contact a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 28rem;
  height: 8rem;
  background: #FF820C;
  padding: 0 1.7rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.5s ease;
}
.footer-corpo__contact a::before {
  content: "";
  display: inline-block;
  width: 5.47rem;
  height: 3rem;
  background-image: url("../img/icon-mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.footer-corpo__contact a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .footer-corpo__contact {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}
/* Footer Navigation
----------------------------------------------------------------------------------------------------*/
.footer-inner {
  width: 100%;
  background-color: #ffeca6;
}
.footer-inner__nav {
  display: block;
}
.footer-inner__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-inner__nav a {
  padding: 0 3rem;
  color: #000;
  font-size: min(1.5vw, 2.4rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .footer-inner__nav {
    padding: 2rem 3rem;
  }
  .footer-inner__nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
    height: inherit;
  }
  .footer-inner__nav a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-inner__nav ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-inner__nav ul li {
    width: 48%;
    text-align: left;
  }
  .footer-inner__nav a {
    padding: 0;
  }
}
/* Footer Banner
----------------------------------------------------------------------------------------------------*/
.footer-banner__xon {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto 4rem;
}
.footer-banner__xon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  height: 20rem;
  border: 1px solid #4d4d4d;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-banner__xon a:hover {
  opacity: 0.7;
}
.footer-banner__group {
  width: 100%;
  max-width: 154.2rem;
  margin: 0 auto;
  padding-bottom: 4.5rem;
}
.footer-banner__group ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-banner__group li {
  width: calc(75.6 / 154.2 * 100%);
  margin-bottom: 1.5rem;
}
.footer-banner__group li img {
  width: 100%;
}
.footer-banner__group li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1367px) {
  .footer-banner__xon {
    max-width: min(93%, 90rem);
  }
  .footer-banner__group {
    max-width: min(93%, 154.2rem);
  }
}
@media screen and (max-width: 767px) {
  .footer-banner__xon {
    max-width: 100%;
    padding: 0 3rem 2.5rem;
  }
  .footer-banner__xon a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 24rem;
  }
  .footer-banner__group {
    max-width: 100%;
    padding: 0 3rem 2.5rem;
  }
  .footer-banner__group ul {
    flex-direction: column;
  }
  .footer-banner__group li {
    width: 100%;
  }
}
/* Footer Copy
----------------------------------------------------------------------------------------------------*/
.footer-copy {
  width: 100%;
  padding: 1rem;
  background-color: #ffbb00;
  color: #FFF;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-copy {
    padding: 0.8rem;
  }
}
/* Link Button
----------------------------------------------------------------------------------------------------*/
.arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 28rem;
  height: 7.5rem;
  background: #fff;
  padding: 1rem 1.5rem 1rem 2.2rem;
  border: 1px solid #4D4D4D;
  border-radius: 10rem;
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.5s ease;
}
.arrow-button .arrow {
  width: 5.5rem;
  height: 5.5rem;
  background: #FFC600;
  border-radius: 50%;
  position: relative;
  overflow: hidden; /* ← 円の外にはみ出さない */
}
/* 通常アイコン */
.arrow-button .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/icon-arrow.svg") no-repeat center/contain;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
}
/* 左から入ってくる“新しい”アイコン */
.arrow-button .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3rem; /* ← 円の外で待機 */
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/icon-arrow.svg") no-repeat center/contain;
  transform: translateY(-50%);
  opacity: 0;
  transition: left 0.35s ease, opacity 0.35s ease;
}
/* hover時：beforeは右へ抜ける */
.arrow-button:hover .arrow::before {
  transform: translate(calc(50% + 3rem), -50%);
}
/* hover時：afterは左から中央へ入る */
.arrow-button:hover .arrow::after {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.arrow-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .arrow-button {
    gap: 3rem;
    width: 22rem;
    height: 6rem;
    padding: 1rem 1.5rem;
    border-radius: 10rem;
    font-size: 1.6rem;
  }
  .arrow-button .arrow {
    width: 4.2rem;
    height: 4.2rem;
  }
  .arrow-button .arrow::before {
    top: 50%;
    left: 50%;
  }
}
/* Section - Contact
----------------------------------------------------------------------------------------------------*/
.sec-contact {
  width: 100%;
  padding: 12rem 0;
}
.sec-contact__headline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: min(90%, 123rem);
  border: 1px solid #4d4d4d;
  border-radius: 1rem;
  padding: 8rem 6rem;
  margin: 0 auto;
}
.sec-contact__headline .top-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 8.5rem;
}
.sec-contact__headline .top-title h3 {
  font-size: 6rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.sec-contact__headline .top-title .top-title__en {
  font-family: "DM Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
}
.sec-contact__headline .top-title__text {
  width: 54.1rem;
}
.sec-contact__headline .top-title__text p {
  font-size: 2rem;
  text-align: left;
}
.sec-contact__headline .top-title__text span {
  color: #ff820c;
  font-size: 2.4rem;
  font-weight: 700;
}
.sec-contact__headline .top-title__linkbtn {
  margin-top: 7rem;
  text-align: right;
}
.sec-contact__headline .top-title__image {
  width: 54.1rem;
}
.sec-contact__headline .top-title__image img {
  margin: 0 auto;
}
@media screen and (max-width: 1367px) {
  .sec-contact__headline .top-title__text, .sec-contact__headline .top-title__image {
    width: 100%;
  }
  .sec-contact__headline .top-title__image {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-contact {
    padding: 8rem 0;
  }
  .sec-contact__headline {
    flex-direction: column;
    width: 100%;
    padding: 4rem 2rem;
    margin: 0 auto;
  }
  .sec-contact__headline .top-title {
    margin-bottom: 3rem;
  }
  .sec-contact__headline .top-title h3 {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
  }
  .sec-contact__headline .top-title .top-title__en {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
  }
  .sec-contact__headline .top-title__text {
    width: 100%;
    font-size: 1.8rem;
  }
  .sec-contact__headline .top-title__text p {
    font-size: 1.8rem;
    text-align: left;
  }
  .sec-contact__headline .top-title__text span {
    font-size: 2rem;
  }
  .sec-contact__headline .top-title__linkbtn {
    margin-top: 2rem;
  }
  .sec-contact__headline .top-title__image {
    width: 100%;
    margin-top: 4rem;
  }
  .sec-contact__headline .top-title__image img {
    width: 22rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 8rem 0;
  }
  .sec-contact__headline {
    flex-direction: column;
    width: 100%;
    max-width: 33rem;
    padding: 4rem 2rem;
    margin: 0 auto;
  }
  .sec-contact__headline .top-title {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
/* Link Button */
.sec-contact__headline .arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  width: 29.5rem;
  height: 7.5rem;
  background: #ff820c;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10rem;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.5s ease;
}
.sec-contact__headline .arrow-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .sec-contact__headline .arrow-button {
    gap: 2rem;
    width: 24rem;
    height: 6rem;
    font-size: 1.6rem;
  }
}
/* Section - Contact
----------------------------------------------------------------------------------------------------*/
.sec-contact {
  width: 100%;
  padding: 12rem 0;
}
.sec-contact__headline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: min(90%, 123rem);
  border: 1px solid #4d4d4d;
  border-radius: 1rem;
  padding: 8rem 6rem;
  margin: 0 auto;
}
.sec-contact__headline .top-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 8.5rem;
}
.sec-contact__headline .top-title h3 {
  font-size: 6rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.sec-contact__headline .top-title .top-title__en {
  font-family: "DM Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: left;
}
.sec-contact__headline .top-title__text {
  width: 54.1rem;
}
.sec-contact__headline .top-title__text p {
  font-size: 2rem;
  text-align: left;
}
.sec-contact__headline .top-title__text span {
  color: #ff820c;
  font-size: 2.4rem;
  font-weight: 700;
}
.sec-contact__headline .top-title__linkbtn {
  margin-top: 7rem;
  text-align: right;
}
.sec-contact__headline .top-title__image {
  width: 54.1rem;
}
.sec-contact__headline .top-title__image img {
  margin: 0 auto;
}
@media screen and (max-width: 1367px) {
  .sec-contact__headline .top-title__text, .sec-contact__headline .top-title__image {
    width: 100%;
  }
  .sec-contact__headline .top-title__image {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .sec-contact {
    padding: 8rem 0;
  }
  .sec-contact__headline {
    flex-direction: column;
    width: 100%;
    padding: 4rem 2rem;
    margin: 0 auto;
  }
  .sec-contact__headline .top-title {
    margin-bottom: 3rem;
  }
  .sec-contact__headline .top-title h3 {
    font-size: 4rem;
    font-weight: 700;
    text-align: left;
  }
  .sec-contact__headline .top-title .top-title__en {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
  }
  .sec-contact__headline .top-title__text {
    width: 100%;
    font-size: 1.8rem;
  }
  .sec-contact__headline .top-title__text p {
    font-size: 1.8rem;
    text-align: left;
  }
  .sec-contact__headline .top-title__text span {
    font-size: 2rem;
  }
  .sec-contact__headline .top-title__linkbtn {
    margin-top: 2rem;
  }
  .sec-contact__headline .top-title__image {
    width: 100%;
    margin-top: 4rem;
  }
  .sec-contact__headline .top-title__image img {
    width: 22rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-contact {
    padding: 8rem 0;
  }
  .sec-contact__headline {
    flex-direction: column;
    width: 100%;
    max-width: 33rem;
    padding: 4rem 2rem;
    margin: 0 auto;
  }
  .sec-contact__headline .top-title {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
/* Link Button */
.sec-contact__headline .arrow-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  width: 29.5rem;
  height: 7.5rem;
  background: #ff820c;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10rem;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.5s ease;
}
.sec-contact__headline .arrow-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .sec-contact__headline .arrow-button {
    gap: 2rem;
    width: 24rem;
    height: 6rem;
    font-size: 1.6rem;
  }
}
/* Animation
----------------------------------------------------------------------------------------------------*/
/* Fade In */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Fade Up */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger {
  opacity: 0;
}
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 12rem;
}
.mv-page__item {
  height: 30rem;
  background-color: #ffeca6;
  margin: 0 3rem;
}
.mv-title {
  display: flex;
  align-items: baseline;
  height: 7.6rem;
  padding: 11.2rem 15.5rem;
  margin: 0 auto;
}
.mv-title__jp h2 {
  color: #000000;
  font-size: 6rem;
  font-weight: 700;
  text-wrap: auto;
  line-height: 1;
}
.mv-title__en {
  padding: 0 1rem;
  color: #000000;
  font-size: 3rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .mv-title {
    padding: 11.2rem 8rem;
  }
  .mv-page {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .mv-page__item {
    margin: 0;
  }
  .mv-title {
    flex-direction: column;
    height: auto;
    padding: 11.2rem 3rem;
    margin: 0 auto;
  }
  .mv-title__jp h2 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
  }
  .mv-title__en {
    padding: 0;
    font-size: 2rem;
  }
}
/* Breadcrumbs
----------------------------------------------------------------------------------------------------*/
.breadcrumbs {
  width: 100%;
  padding: 0 3rem;
}
.breadcrumbs ul {
  display: flex;
  list-style: none;
  padding: 1rem 2rem;
  margin: 0;
  font-size: 2rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #282828;
}
.breadcrumbs li + li::before {
  content: ">";
  margin: 0 0.8rem;
}
.breadcrumbs a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .breadcrumbs ul {
    padding: 1rem 0;
  }
}
/* Page Contents
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 123rem);
  margin: 0 auto;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* Telephone Link
----------------------------------------------------------------------------------------------------*/
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width:767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: none;
  }
}
/* Page Top
----------------------------------------------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 8rem;
  right: 1.5rem;
}
.pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  width: 10rem;
  height: 13.6rem;
  background-color: #ffbb00;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  filter: drop-shadow(0 1rem 0.5rem #666666);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    display: none;
  }
}