@charset "UTF-8";
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 300;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 400;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 500;
  src: url("../../font/Kiwi_Maru/woff2/KiwiMaru-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Kosugi";
  font-weight: 400;
  src: url("../../font/Kosugi/woff2/Kosugi-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Kosugi Maru";
  font-weight: 400;
  src: url("../../font/Kosugi_Maru/woff2/KosugiMaru-Regular.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}
html body {
  font-family: "Kosugi Maru", serif;
  color: #0f1111;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "pkna" 1;
  font-size: clamp(0.9rem, 0.864rem + 0.18vw, 1rem);
  line-height: 1.5;
  letter-spacing: normal;
  position: relative;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.15em;
}

.wrap-all {
  overflow: hidden;
  height: 100%;
  position: relative;
  width: 100%;
}

.wrap-all::-webkit-scrollbar {
  display: none;
}

th,
dt {
  font-weight: 400;
}

.coming-soon {
  font-size: 1.8em;
  text-align: center;
  font-family: "Kiwi Maru", serif;
  color: #0f1111;
}
.coming-soon .br {
  display: none;
}

* {
  min-width: 0;
  min-height: 0;
}

.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0);
  transition: 1s all;
  text-shadow: rgba(74, 74, 79, 0.85) 0px 2px 7px;
}
.header.page-open {
  background: rgba(222, 55, 76, 0.85);
  text-shadow: none;
}
.header .menu-container {
  display: none;
}
.header__wrap {
  height: 100%;
  width: calc(100% - 30px);
  margin: 0 0 0 auto;
  display: flex;
  justify-content: space-between;
}
.header__logo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
  color: #fff;
}
.header__logo img {
  width: 60px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.header nav {
  display: flex;
  align-items: center;
}
.header nav ul {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 998;
  margin-right: 15px;
}
.header nav ul li a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: 1s all;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav .link {
  height: 100%;
  aspect-ratio: 1/1;
}
.header__nav .link li {
  height: 100%;
  width: 100%;
}
.header__nav .link li a {
  transition: 1s all;
  color: #fff;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}
.header__nav .link li a img {
  width: 24px;
}
.header.page-open .header__nav .link li a {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
}

.sp-fixed-link {
  display: none;
}

@media screen and (max-width: 1280px) {
  .header nav ul li a {
    font-size: 1em;
  }
  .header__logo a {
    font-size: 20px;
  }
  .header__logo a img {
    width: 50px;
  }
  .header__wrap {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 928px) {
  .header__nav .link {
    display: none;
  }
  .header {
    height: 60px;
    text-shadow: none !important;
  }
  .header__wrap {
    position: relative;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .header .menu-container {
    display: flex;
    height: 100%;
    position: absolute;
    right: 0;
    z-index: 9999;
  }
  .header .menu-container .responsive_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.75s ease;
  }
  .header .menu-container .responsive_btn .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .menu-container .responsive_btn .menu_btn img {
    width: 30px;
  }
  .header .menu-container .responsive_btn span {
    color: #0f1111;
    font-size: 36px;
  }
  .header .menu-container .responsive_btn.menu_close {
    display: none;
  }
  .header .menu-container .responsive_btn.menu_close.active {
    display: flex;
  }
  .header .menu-container .responsive_btn.menu_open.active {
    display: none;
  }
  .header nav {
    position: fixed;
    top: 0%;
    transform: translateX(-50%);
    left: 160%;
    transition: 0.75s ease;
    width: 100vw;
    height: 102vh;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .header nav ul {
    flex-direction: column;
    justify-content: center;
  }
  .header nav ul li a {
    color: #0f1111;
    font-size: 1.2em;
  }
  .header nav.active {
    left: 50%;
  }
  .sp-fixed-link {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    position: -webkit-fixed;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 998;
    background: #f4f6f6;
    transition: all 1s;
    color: #fff;
  }
}
@media screen and (max-width: 480px) {
  .header__logo a {
    font-size: 16px;
    gap: 5px;
  }
  .header__logo a img {
    width: 42px;
  }
  .header__wrap {
    width: calc(100% - 20px);
  }
}
.sp-fixed-link {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr;
  row-gap: 5px;
  position: -webkit-fixed;
  position: fixed;
  right: -1px;
  transform: translateY(-50%);
  top: 50%;
  z-index: 998;
  color: #fff;
  transition: 0.75s ease-in-out;
}
.sp-fixed-link a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #de374c;
  border-right: 1px solid #fff;
  font-family: "Kiwi Maru", serif;
  width: 75px;
  height: 75px;
}
.sp-fixed-link a p {
  font-size: 12px;
}
.sp-fixed-link a img {
  width: 36px;
}
.sp-fixed-link a:nth-child(2) {
  display: none;
}
.sp-fixed-link a:nth-child(2) img {
  width: 21px;
}
.sp-fixed-link a:last-child {
  border: none;
}

@media screen and (max-width: 928px) {
  .sp-fixed-link {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    bottom: 0;
    left: 0;
    top: unset;
    right: unset;
    transform: unset;
    width: 100%;
    transition: all 1s;
    height: 55px;
  }
  .sp-fixed-link.scroll {
    bottom: -15px;
    opacity: 0;
  }
  .sp-fixed-link a {
    width: 100%;
    height: 55px;
    letter-spacing: 0.15em;
    display: flex !important;
  }
  .sp-fixed-link a p {
    font-size: 0.9em;
  }
  .sp-fixed-link a img {
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  .sp-fixed-link a {
    font-size: 0.8em;
  }
}
#blog {
  padding: 180px 0 120px;
  background-color: #f3ede3;
}
#blog .section {
  z-index: 10;
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #blog .section {
    width: 90%;
  }
}
#blog .section__img {
  margin: 0 50%;
}
#blog .section__img img {
  width: 150px;
}
#blog .section__title {
  color: #595757;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
#blog .section__title span {
  color: #ee836f;
  font-family: "Kiwi Maru", serif;
  font-size: 0.8em;
}
#blog .section .list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 30px;
}
#blog .section .list__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#blog .section .list__inner a {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
  row-gap: 5px;
}
#blog .section .list__inner a:hover .list__image img {
  scale: 1.1;
}
#blog .section .list__title {
  font-size: 1.1em;
}
#blog .section .list__date {
  font-size: 0.8em;
}
#blog .section .list__image {
  grid-row: 1/2;
  position: relative;
  width: 100%;
  overflow: hidden;
}
#blog .section .list__image img {
  width: 100%;
  aspect-ratio: 4/3;
  transition: 0.75s all;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .section .list__inner:first-child .list__image::before {
  position: absolute;
  display: block;
  content: "新着";
  font-size: 14px;
  background-color: #de374c;
  padding: 5px 60px;
  rotate: -45deg;
  transform: translate(-50%, -50%);
  top: -30px;
  left: 15px;
  white-space: nowrap;
  z-index: 10;
  color: #fff;
}
#blog .section__btn {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 0 0 auto;
}
#blog .section__btn a {
  position: relative;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  border: 2px solid #de374c;
  color: #fff;
  transition: 0.75s;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  color: #de374c;
  border-radius: 30px;
  background-color: #fff;
}
#blog .section__btn a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../../img/common/arrow-color.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.75s;
}
#blog .section__btn a:hover {
  background-color: #de374c;
  color: #fff;
}
#blog .section__btn a:hover::after {
  background-image: url(../../img/common/arrow.svg);
}

@media screen and (max-width: 768px) {
  #blog .section .list {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  #blog {
    padding: 120px 0 90px;
  }
  #blog .section .list {
    grid-template-columns: 1fr;
  }
  #blog .section__btn {
    margin: 0 auto;
  }
}
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
}
#main-visual h1 {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#main-visual .copy {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#main-visual .copy p {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 5px 10px;
  background-color: #de374c;
  position: relative;
  bottom: -15px;
  opacity: 0;
  transition: 1s all;
}
#main-visual .copy p.main {
  font-size: 2em;
}
#main-visual .copy p.sub {
  font-size: 1.5em;
  transition-delay: 0.5s;
}
#main-visual .copy p.is-show {
  bottom: 0;
  opacity: 1;
}
#main-visual .swiper-top {
  width: 100%;
  height: 100% !important;
  position: relative;
}
#main-visual .swiper-top .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 99;
}
#main-visual .swiper-top .swiper-slide__image {
  width: 100%;
  height: 100%;
}
#main-visual .swiper-top .swiper-slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 2s ease-in-out;
}
#main-visual .swiper-top .swiper-slide__image--3 img {
  -o-object-position: center 40%;
     object-position: center 40%;
}
#main-visual .swiper-top .swiper-slide__image--4 img {
  -o-object-position: center 30%;
     object-position: center 30%;
}

@media screen and (max-width: 1024px) {
  #main-visual .copy p.sub {
    font-size: 1.25em;
  }
  #main-visual .copy p.sub span {
    display: inline-block;
  }
}
@media screen and (max-width: 928px) {
  #main-visual {
    height: calc(100vh - 55px);
  }
  #main-visual .copy {
    left: 15px;
    bottom: 15px;
    row-gap: 5px;
  }
  #main-visual .copy p.sub {
    font-size: 1.2em;
  }
  #main-visual .copy p.main {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 768px) {
  #main-visual .copy p.sub span:last-child {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  #main-visual .copy p.sub span {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #main-visual .copy {
    writing-mode: vertical-rl;
    bottom: unset;
    left: unset;
    right: 5px;
    top: 75px;
  }
  #main-visual .copy p {
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 5px;
  }
  #main-visual .copy p.main {
    font-size: 1.25em;
  }
  #main-visual .copy p.sub {
    font-size: 1em;
  }
  #main-visual .copy p.sub span:first-child {
    display: inline;
  }
  #main-visual .swiper-top .swiper-slide__image--1 img {
    -o-object-position: 100% center;
       object-position: 100% center;
  }
  #main-visual .swiper-top .swiper-slide__image--3 img {
    -o-object-position: 100% center;
       object-position: 100% center;
  }
  #main-visual .swiper-top .swiper-slide__image--4 img {
    -o-object-position: 100% center;
       object-position: 100% center;
  }
}
#link {
  padding: 120px 0;
  position: relative;
}
#link .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media screen and (max-width: 480px) {
  #link .section {
    width: 90%;
  }
}
#link .section__title {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
#link .section__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
#link .section__list li {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
#link .section__list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #595757;
  font-weight: bold;
}
#link .section__list li a img {
  margin-top: 30px;
  width: 30px;
}
#link .section__list li a span {
  font-family: "Kiwi Maru", serif;
  color: #ee836f;
}
#link .section__list li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../img/common/heading/heading.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 1s all;
}
#link .section__list li a::after {
  content: "";
  display: block;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  background-color: #fff;
  z-index: -1;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0.5;
  transition: 1.25s all;
}
#link .section__list li a:hover::after {
  width: 110%;
  height: 110%;
}
#link .section__list li:nth-child(2) a::before {
  background-image: url(../../img/common/heading/nh.jpg);
}
#link .section__list li:nth-child(3) a::before {
  background-image: url(../../img/common/heading/vn.jpg);
}
#link .section__list li:nth-child(4) a::before {
  background-image: url(../../img/common/heading/vnc.jpg);
}
#link .section__list li:last-child {
  grid-row: 2/3;
  grid-column: 1/5;
  aspect-ratio: unset;
  height: 100%;
}
#link .section__list li:last-child a::before {
  background-image: url(../../img/common/heading/recruit.jpg);
  background-position: center 25%;
}
#link .section__list li:last-child a::after {
  width: 50%;
  height: calc(100% - 60px);
}
#link .section__list li:last-child a:hover::after {
  width: calc(50% + 60px);
  height: calc(100% - 30px);
}

@media screen and (max-width: 1280px) {
  #link .section__list li a span {
    font-size: 0.8em;
  }
  #link .section__list li a h3 {
    font-size: 1.25em;
  }
  #link .section__list li a img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #link .section__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1.5fr;
  }
  #link .section__list li {
    aspect-ratio: 2/1;
  }
  #link .section__list li:last-child {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  #link .section__list li:last-child a::after {
    width: 60%;
    height: calc(100% - 30px);
  }
  #link .section__list li:last-child a:hover::after {
    width: calc(60% + 60px);
    height: calc(100% - 15px);
  }
}
@media screen and (max-width: 768px) {
  #link .section__list li a img {
    margin-top: 5px;
  }
  #link .section__list li {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 600px) {
  #link .section__list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1.5fr;
  }
  #link .section__list li {
    aspect-ratio: 2/1;
  }
  #link .section__list li:last-child {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  #link .section__list li:last-child a::after {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
  #link .section__list li:last-child a:hover::after {
    width: 110%;
    height: 110%;
  }
}
@media screen and (max-width: 480px) {
  #link {
    padding: 90px 0;
  }
}
#contact {
  padding: 120px 0 180px;
  background-color: #f3ede3;
  min-height: 0;
}
#contact .section {
  width: 80%;
  margin: 0 auto;
  max-width: 1120px;
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  #contact .section {
    width: 90%;
  }
}
#contact .section__img {
  margin: 0 55%;
}
#contact .section__img img {
  width: 120px;
}
#contact .section__title {
  color: #595757;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
#contact .section__title span {
  color: #ee836f;
  font-family: "Kiwi Maru", serif;
  font-size: 0.8em;
}
#contact .contact__wrap {
  width: 90%;
  margin: 0 auto;
}
#contact .contact__wrap--tel {
  margin-bottom: 60px;
}
#contact .contact__wrap--tel a {
  margin: 0 auto;
  display: flex;
  align-items: end;
  margin-top: 30px;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  color: #595757;
}
#contact .contact__wrap--tel a span {
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
}
#contact .contact__wrap--tel a p {
  font-size: clamp(2.2rem, 2.127rem + 0.36vw, 2.4rem);
  font-weight: bold;
}
#contact .contact__wrap--formbox {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 30px;
}
#contact .contact__wrap--formbox--list {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
#contact .contact__wrap--formbox--list--title {
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #de374c;
  padding: 15px;
  font-weight: bold;
  color: #fff;
}
#contact .contact__wrap--formbox--list--title span {
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #595757;
  font-weight: bold;
  padding: 0 5px;
  white-space: nowrap;
}
#contact .contact__wrap--formbox--list--title span.optional {
  background-color: #fff;
}
#contact .contact__wrap--formbox--list--title.date {
  font-size: 0.9em;
}
#contact .contact__wrap--formbox--list--title.mail br {
  display: none;
}
#contact .contact__wrap--formbox--list--title.contact {
  height: auto;
  align-items: start;
}
#contact .contact__wrap--formbox--list--title.contact span {
  margin-top: 5px;
}
#contact .contact__wrap--formbox--list:nth-child(5) .contact__wrap--formbox--list--title {
  align-items: start;
  height: 200px;
}
#contact .contact__wrap--formbox--list--contents {
  width: calc(100% - 255px);
  display: flex;
  align-items: center;
}
#contact .contact__wrap--formbox--list--contents input[type=text],
#contact .contact__wrap--formbox--list--contents input[type=email],
#contact .contact__wrap--formbox--list--contents input[type=tel] {
  width: 100%;
  padding: 1rem;
  border: solid 1px #ee836f;
  background-color: #ffffff;
  text-align: left;
}
#contact .contact__wrap--formbox--list--contents textarea {
  width: 100%;
  height: 200px;
  padding: 1rem;
  border: solid 1px #ee836f;
  background-color: #ffffff;
  text-align: left;
}
#contact .contact__wrap--formbox--list--contents ::-moz-placeholder {
  color: #e0e0e0;
}
#contact .contact__wrap--formbox--list--contents ::placeholder {
  color: #e0e0e0;
}
#contact .contact__wrap--formbox--list--contents label {
  padding: 15px 30px;
  background-color: #ee836f;
  margin: 0 15px 0 0;
  transition: 0.5s;
}
#contact .contact__wrap--formbox--list--contents label:hover {
  background-color: #de374c;
  color: #f4f6f6;
}
#contact .contact__wrap--formbox--list--contents input[type=radio]:checked + label {
  background-color: #de374c;
  color: #f4f6f6;
}
#contact .contact__wrap--formbox--list--contents#date-time {
  position: relative;
}
#contact .contact__wrap--formbox--list--contents#date-time::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  background-image: url(../../img/common/date.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#contact .contact__wrap--formbox--list--contents--check {
  width: 160px;
  border: solid 1px #ee836f;
  background-color: #ffffff;
  text-align: left;
  position: relative;
}
#contact .contact__wrap--formbox--list--contents--check select {
  width: 100%;
  height: 100%;
  padding: 15px;
  padding-right: 30px;
  z-index: 10;
  position: relative;
}
#contact .contact__wrap--formbox--list--contents--check::after {
  content: "";
  position: absolute;
  width: 25px;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background-image: url(../../img/contact/arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: calc(100% - 20px);
  top: 50%;
}
#contact .contact__wrap--formbox--list--contents .copy {
  display: flex;
  align-items: center;
}
#contact .contact__wrap--formbox--list--contents .copy input {
  text-align: center;
  width: 80px !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
}
#contact .contact__wrap--formbox--list--contents .copy input:focus {
  outline: none;
}
#contact .contact__wrap--formbox--list--contents .copy img {
  width: 18px;
}
#contact .contact__wrap--formbox--list--certification .contact__wrap--formbox--list--contents {
  flex-direction: column;
  align-items: start;
}
#contact .contact__wrap--privacy {
  margin: 60px 0 0 0;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  text-align: left;
}
#contact .contact__wrap--privacy h2 {
  font-size: 1.5em;
  border-bottom: solid 1px #0f1111;
  margin: 0 0 30px 0;
}
#contact .contact__wrap--privacy--box {
  border: solid 1px #ee836f;
  visibility: hidden;
  height: 0;
}
#contact .contact__wrap--privacy--box ul li h3 {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  margin: 15px 0;
  padding: 0 0 5px 0;
  border-bottom: dashed 1px #de374c;
}
#contact .contact__wrap--privacy--box ul li p {
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
}
#contact .contact__wrap--privacy--box ul li table tbody tr th {
  width: 200px;
  height: 60px;
  background-color: #de374c;
  color: #fff;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  border-bottom: 1px solid #fff;
}
#contact .contact__wrap--privacy--box ul li table tbody tr td {
  width: calc(100% - 200px);
  height: 60px;
  vertical-align: middle;
  padding: 1rem;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  border-bottom: 1px solid #de374c;
  border-right: 1px solid #de374c;
}
#contact .contact__wrap--privacy--box ul li table tbody tr:first-child {
  border-top: 1px solid #de374c;
}
#contact .contact__wrap--privacy--box ul li table tbody tr:last-child th {
  height: auto;
  border-bottom: 1px solid #de374c;
}
#contact .contact__wrap--privacy--box ul li table tbody tr:last-child td {
  height: auto;
}
#contact .contact__wrap--privacy--box ul li ol li {
  list-style-type: none;
  counter-increment: cnt;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
}
#contact .contact__wrap--privacy--box ul li ol li::before {
  content: "(" counter(cnt) ") ";
}
#contact .contact__wrap--privacy .accordion--btn {
  margin: 15px auto;
  background-color: #f3ede3;
  padding: 10px 15px;
  color: #595757;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#contact .contact__wrap--privacy .accordion--btn::after {
  content: "";
  width: 20px;
  display: block;
  aspect-ratio: 1/1;
  background-image: url(../../img/common/accordion_open.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#contact .contact__wrap--privacy .accordion--btn::before {
  content: "プライバシーポリシーを開く";
}
#contact .contact__wrap--privacy .accordion--contact.active .contact__wrap--privacy--box {
  visibility: visible;
  height: auto;
  padding: 15px 30px;
}
#contact .contact__wrap--privacy .accordion--contact.active .accordion--btn::after {
  background-image: url(../../img/common/accordion_close.svg);
}
#contact .contact__wrap--privacy .accordion--contact.active .accordion--btn::before {
  content: "プライバシーポリシーを閉じる";
}
#contact .contact__wrap--privacy--checks {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 0;
}
#contact .contact__wrap--privacy--checks--checkbox {
  color: #595757;
}
#contact .contact__wrap--privacy--checks input[type=checkbox] {
  display: none;
}
#contact .contact__wrap--privacy--checks input[type=checkbox] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px "Open Sans", Arial, sans-serif;
  color: #595757;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
#contact .contact__wrap--privacy--checks input[type=checkbox] + label:last-child {
  margin-bottom: 0;
}
#contact .contact__wrap--privacy--checks input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #595757;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: all 0.12s, border-color 0.08s;
}
#contact .contact__wrap--privacy--checks input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}
#contact .contact__wrap--privacy--attention {
  margin: 2rem 0;
}
#contact .contact__wrap--privacy--attention p {
  font-size: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  line-height: clamp(0.8rem, 0.764rem + 0.18vw, 0.9rem);
  text-indent: -0.9rem;
  padding-left: 0.9rem;
}
#contact .contact__wrap--submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .contact__wrap--submit--button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 60px;
  padding: 15px 60px;
  background-color: #de374c;
  border-radius: 50px;
  transition: 0.75s;
  font-weight: bold;
  color: #fff;
  border: 2px solid #de374c;
}
#contact .contact__wrap--submit--button:hover {
  background-color: #fff;
  color: #de374c;
}

.simplebar-track {
  background: #e5e5e5;
  /* バーの背景色を設定できます*/
  border-radius: 10px;
  /* バーに丸みをもたせる*/
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  /* デフォルトだと薄くなっています。*/
}

.simplebar-track .simplebar-scrollbar::before {
  background: #de374c;
  /* ここでバーの色を設定 */
}

@media screen and (max-width: 1280px) {
  #contact .contact__wrap {
    width: 100%;
  }
  #contact .contact__wrap--formbox--list--contents .copy {
    flex-wrap: wrap;
    white-space: nowrap;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  #contact .contact__wrap {
    width: 100%;
  }
}
@media screen and (max-width: 928px) {
  #contact .contact__wrap--formbox--list--title {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact__wrap--formbox--list {
    flex-direction: column;
    gap: 5px;
  }
  #contact .contact__wrap--formbox--list--title {
    width: 100%;
    height: 60px !important;
    align-items: center !important;
  }
  #contact .contact__wrap--formbox--list--title.mail, #contact .contact__wrap--formbox--list--title.date {
    font-size: unset;
  }
  #contact .contact__wrap--formbox--list--title.mail br, #contact .contact__wrap--formbox--list--title.date br {
    display: none;
  }
  #contact .contact__wrap--formbox--list--contents {
    width: 100%;
  }
  #contact .contact__wrap--formbox--list--contents--check {
    width: 160px;
  }
}
@media screen and (max-width: 600px) {
  #contact .contact__wrap--privacy--box ul li table {
    display: block;
    width: 100%;
  }
  #contact .contact__wrap--privacy--box ul li table tbody {
    display: block;
    width: 100%;
  }
  #contact .contact__wrap--privacy--box ul li table tbody tr {
    display: block;
    width: 100%;
  }
  #contact .contact__wrap--privacy--box ul li table tbody tr th,
  #contact .contact__wrap--privacy--box ul li table tbody tr td {
    display: block;
    width: 100%;
    border-left: 1px solid #de374c;
  }
  #contact .contact__wrap--privacy--box ul li table tbody tr th {
    height: 48px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  #contact {
    padding: 90px 0 120px;
  }
  #contact .contact__wrap--tel a p {
    font-size: 28px;
    white-space: nowrap;
  }
  #contact .contact__wrap--tel p {
    text-align: left;
  }
  #contact .contact__wrap--tel .line {
    flex-direction: column;
    width: 100%;
  }
}
/* ローディング画面のスタイル */
#loading {
  width: 100vw;
  height: 100vh;
  transition: opacity 1s, visibility 1s; /* フェードアウト用 */
  position: fixed;
  background-color: #f3ede3;
  top: 0;
  left: 0;
  z-index: calc(infinity);
  will-change: transform, opacity; /* GPUアクセラレーションを明示 */
  backface-visibility: hidden; /* レンダリングの最適化 */
}
#loading figure {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#loading figure img {
  width: 100%;
}

#loading.loaded {
  opacity: 0; /* フェードアウト */
  visibility: hidden; /* 完全に見えなくする */
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
@media screen and (max-width: 480px) {
  #loading::before {
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 130px;
    height: 150px;
  }
  #loading figure {
    width: 150px;
  }
}
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #de374c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0px 6px 10px -6px #74635d;
  overflow: hidden;
}
#page-top a img {
  width: 30px;
}

#page-top a:hover {
  opacity: 0.8;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(200px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@media screen and (max-width: 928px) {
  #page-top {
    bottom: 60px;
  }
}
.footer {
  background-color: #ee836f;
  color: #fff;
  position: relative;
}
.footer__wrap {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 15px;
  padding: 60px 0 30px;
  position: relative;
  z-index: 20;
}
.footer__logo {
  grid-row: 1/4;
  grid-column: 1/2;
  text-align: center;
}
.footer__logo img {
  width: 180px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 5px;
}
.footer__logo p {
  color: #fff;
  font-size: 1.2em;
  font-family: "Kiwi Maru", serif;
  white-space: nowrap;
}
.footer__man img {
  width: 150px;
}
.footer__address {
  grid-row: 1/2;
  grid-column: 2/3;
}
.footer__address p {
  display: flex;
  flex-direction: column;
}
.footer__address p span span {
  display: inline-block;
}
.footer__tel {
  grid-row: 2/3;
  grid-column: 2/3;
}
.footer__tel a {
  display: flex;
  align-items: center;
  gap: 2.5px;
  white-space: nowrap;
  font-size: 1.2em;
}
.footer__tel a img {
  width: 24px;
}
.footer__nav {
  grid-row: 3/4;
  grid-column: 2/3;
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__nav ul li a {
  display: flex;
  align-items: center;
  position: relative;
}
.footer__nav ul li a::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url(../../img/common/chevron_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer__copy {
  grid-row: 3/4;
  grid-column: 3/4;
  display: flex;
  align-items: end;
  white-space: nowrap;
  font-size: 0.9em;
}

@media screen and (max-width: 1280px) {
  .footer__wrap {
    padding-bottom: 0;
  }
  .footer__man {
    display: none;
  }
  .footer__copy {
    grid-row: 4/5;
    grid-column: 1/3;
    padding: 15px 0;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 928px) {
  .footer {
    padding-bottom: 55px;
  }
  .footer::after {
    top: auto;
    bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .footer__logo img {
    width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .footer__wrap {
    display: flex;
    flex-direction: column;
  }
  .footer__logo p {
    font-size: 1.5em;
  }
  .footer__tel a {
    justify-content: center;
  }
  .footer__address {
    text-align: center;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 1fr auto;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .footer__man {
    display: block;
    width: 150px;
    margin: 0 auto;
  }
  .footer::after {
    width: 45%;
    top: auto;
    bottom: -10px;
  }
}
@media screen and (max-width: 480px) {
  .footer::after {
    left: 50%;
    bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */