@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --green: #9DCB88;
  --blue: #8CC0DE;
  --bg_gray: #eff4f7;
  --ja: "Zen Maru Gothic", serif;
  --Josefin: "Josefin Sans", sans-serif;
  --Klee: "Klee One", cursive;
}

body {
  color: #2A2A2A;
  /* RGB */
  background-color: #FEFBF5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.6rem, 4.1vw, 2.0rem);
  line-height: 1.8;
  text-align: center;
}

.ja {
  font-family: var(--ja);
}

.en {
  font-family: var(--Josefin);
}

.Klee {
  font-family: var(--Klee);
}

h2,
h3,
h4 {
  font-weight: 500;
  line-height: 1.5;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

.vertical {
  position: static;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.01rem;
  line-height: 1.5;
  text-align: left;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.green {
  color: var(--green);
}

.blue {
  color: var(--blue);
}

.white {
  color: #ffffff;
}

.black {
  color: #2A2A2A;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.ft_35 {
  font-size: clamp(2.0rem, 5.8vw, 3.5rem);
}

.ft_20 {
  font-size: clamp(1.6rem, 4.1vw, 2.0rem);
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: min(4vw, 40px);
}

.flex.row {
  flex-direction: row;
  align-items: center;
}

.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

.inner {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 2vw 0;
}

/* header */
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fefbf5;
  height: 60px;
}

header .inner.flex {
  justify-content: space-between;
  padding: 0;
  height: 100%;
}

header .inner h1 {
  width: clamp(148px, 34vw, 247px);
}

.header-right {
  justify-content: space-between;
}

.header-btn {
  width: clamp(30px, 4vw, 40px);
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
  margin: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 5px;
  height: 4px;
  background: #2A2A2A;
  width: 30px;
  top: 18px;
}

.ham_btn span:nth-of-type(1) {
  top: 11px;
}

.ham_btn span:nth-of-type(2) {
  top: 25px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 14px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 26px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  max-width: 450px;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F0ECE3;
  overflow-y: auto;
  padding: 5%;
}

nav.sp_nav {
  width: 100%;
  margin: 0 0 0 auto;
}

.nav_wrap ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
}

.nav_wrap li a {
  color: #2A2A2A;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: clamp(2.0rem, 5.8vw, 2.5rem);
}

.nav_wrap .inner-ul {
  justify-content: flex-end;
  margin: 0 0 0 auto;
  max-width: 240px;
  gap: 4px;
}

.nav_wrap .inner-ul li {
  display: inline-block;
  position: relative;
}

.nav_wrap .inner-ul li::before {
  content: "";
  width: 13px;
  height: 1px;
  background-color: #2A2A2A;
  position: absolute;
  top: 50%;
  left: -20px;
  z-index: 1;
}

.nav_wrap .inner-ul li a {
  font-size: clamp(1.6rem, 4.1vw, 1.8rem);
  align-items: flex-start;
  padding: 0
}

.nav_wrap.show {
  right: 0;
}

/* MV */
.MV {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/2.5;
  max-height: 90vh;
  padding-top: 60px;
}

.MV_img {
  position: absolute;
  width: 80%;
  height: 70%;
  right: 0;
  bottom: 0;
  background-image: url(../img/sp_MV.png);
  background-position: center;
  background-size: cover;
}

.MV .inner {
  margin-top: 10vw;
}

.MV h2 {
  font-family: var(--Klee);
  font-size: min(6.5vw, 4.2rem);
  font-weight: 600;
  position: relative;
  z-index: 5;
}

.c-text {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  margin-inline: 0;
  position: absolute;
  bottom: 5vw;
  text-transform: uppercase;
  font-size: 4.0vw
}

.c-text.sp_none {
  display: none;
}

.loop {
  animation: loop 10s linear infinite;
  width: 100%;
  text-wrap: nowrap;
}

.loop2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  animation: loop 10s -5s linear infinite;
  text-wrap: nowrap;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* 共通 */
#wrapper {
  width: 100%;
  overflow: hidden;
}

section {
  position: relative;
}

section .inner {
  padding: min(10vw, 80px) 0;
  border-bottom: 1px dashed #D8D8D8;
  display: flex;
  flex-direction: column;
  gap: min(10vw, 80px);
}

h2.section-ttl {
  display: flex;
  text-align: left;
  align-items: center;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h2.section-ttl .initial.en {
  font-size: 71px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
}

h2.section-ttl .en {
  letter-spacing: 0.2em;
  font-size: 2.6rem;
}

#topics .inner {
  gap: min(5vw, 40px);
}

.news_list_wrap {
  width: 90%;
  margin: 0 auto;
}
#millevies .section-lead {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#millevies .section-lead h3 {
  word-break: keep-all;
  text-align:center;
}

#millevies .content02 h3 {
  font-size: clamp(2.0rem, 6.2vw, 5.0rem);
  font-weight: 300;
  position: relative;
  line-height: 1;
}

#millevies .content02 h3::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--green);
  position: absolute;
  top: 40%;
  left: 0;
}

#millevies .content02 h3::after {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  top: 40%;
  right: 0;
}

#millevies .anchor-wrap {
  padding: 20px 0;
}

#millevies .anchor {
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
}





#greeting .section-lead {
  display: flex;
  flex-direction: column;
  gap: min(5vw, 40px);
}

#greeting .section-lead h3 {
  word-break: keep-all;
  text-align: left;
}

#greeting .content02 h3 {
  font-size: clamp(2.0rem, 6.2vw, 5.0rem);
  font-weight: 300;
  position: relative;
  line-height: 1;
}

#greeting .content02 h3::before {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--green);
  position: absolute;
  top: 40%;
  left: 0;
}

#greeting .content02 h3::after {
  content: "";
  width: 30%;
  height: 1px;
  background-color: var(--blue);
  position: absolute;
  top: 40%;
  right: 0;
}

#greeting .anchor-wrap {
  padding: 20px 0;
}

#greeting .anchor {
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
}

#showroom .inner {
  border-bottom: none;
}

.CTA {
  background-color: #F8F8F8;
  padding: 40px 0
}

.CTA .container {
  border-bottom: none;
  width: 90%;
  max-width: 1090px;
  margin: 0 auto;
  background-image: url(../img/frame01.png), url(../img/frame02.png), url(../img/frame04.png), url(../img/frame03.png);
  background-size: 20px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
  background-position: left top, right top, left bottom, right bottom, top, bottom, left, right;
}

.CTA .inner {
  max-width: 700px;
  border-bottom: none;
  gap: min(2vw, 20px);
}

.CTA h2.section-ttl {
  justify-content: center;
}

.CTA .cta-btn {
  margin: 0 auto;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: min(4vw, 40px);
}

#bansei .bansei-itemWrap {
  gap: 0.5vw;
}

#bansei .content h3 {
  font-size: min(8.1vw, 3.5rem);
  margin-bottom: min(4vw, 40px);
}

#bansei .content h3 .ft_50 {
  font-size: min(11.6vw, 5.0rem);
}

#bansei .bansei-functionWrap {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

#bansei .bansei-function {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#bansei .bansei-function h4 {
  font-size: min(6.5vw, 2.8rem);
  font-weight: 500;
}

#bansei .bansei-function p {
  text-align: justify;
}

#service .inner {
  border-bottom: none;
}

#service .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#service .text-wrap {
  text-align: justify;
}

#service .text-wrap h3 {
  border-bottom: 1px solid var(--green);
  padding-bottom: min(1vw, 10px);
  margin-bottom: min(1vw, 10px);
}

#service .content02 h3 {
  word-break: keep-all;
}

.service_item h3 {
  font-family: var(--ja);
  font-weight: 700;
  font-size: clamp(2.0rem, 5.8vw, 3.5rem);
}

#service .content02 .content_img {
  max-width: 567px;
  margin: 0 auto;
}

.service_item p {
  text-align: justify;
}

.service-linkWrap {
  background-color: #FFFFFF;
  border: 10px solid #B4B4B5;
  position: relative;
  width: 100%;
  max-width: 1080px;
  padding: min(10vw, 80px) 0 min(4vw, 40px);
}

.service-linkWrap .fukidashi {
  width: 60%;
  max-width: 350px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-linkWrap .flex {
  width: 96%;
  max-width: 950px;
  margin: 0 auto;
  align-items: center;
}

.service-link__img {
  position: relative;
}

.service-link__img p {
  position: absolute;
  font-family: var(--ja);
  font-weight: 900;
  font-size: min(9.3vw, 5.2rem);
  right: 0;
  bottom: 0;
  transform: translateY(40%);
  line-height: 1;
}

.reazon-outer h4 {
  word-break: keep-all;
  font-size: clamp(2.0rem, 5.8vw, 3.5rem);
  padding-bottom: 10px;
  font-weight: 700;
  font-family: var(--ja);
}

.reason-wrap {
  padding: min(8vw, 40px) 0;
  display: flex;
  flex-direction: column;
  gap: min(8vw, 40px);
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
}

.reason-wrap h5 {
  gap: 0;
  padding-bottom: 10px;
  align-items: flex-start;
}

.reason-wrap .label {
  color: #ffffff;
  background-color: var(--blue);
  display: inline-block;
  font-family: var(--Josefin);
  font-weight: 400;
  font-size: min(4.8vw, 2.1rem);
  padding: 0 20px;
  border-radius: calc(infinity * 1px);
}

.reason-wrap h5 p {
  text-align: left;
  font-family: var(--ja);
  font-weight: 700;
  font-size: clamp(2.0rem, 5.4vw, 3.5rem);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

#service02 .inner {
  border-bottom: none;
}

#service03 h3 {
  width: 60%;
  max-width: 316px;
  margin: 0 auto;
}

#service03 .service-linkWrap {
  padding: min(12vw, 100px) 0 min(8vw, 60px);
}

.service-linkWrap .fukidashi {
  width: 60%;
  max-width: 350px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-linkWrap .flex {
  width: 80%;
  max-width: 860px;
  gap: 40px;
  margin: 0 auto;
}

.service-linkWrap .flex .service-link:nth-child(2) {
  width: 80%;
  max-width: 256px;
  margin: 0 auto;
}

#service03 .inner {
  border-bottom: none;
}

#company .section-ttl {
  justify-content: center;
}

#company dl {
  gap: 10px;
  font-size: min(4.4vw, 2.0rem);
}

.description-item {
  border-bottom: 1px dashed #D8D8D8;
}

#company dt {
  font-weight: 500;
}

#company .inner {
  border-bottom: none;
}

#contact {
  background-color: #F8F8F8;
}

#contact .inner {
  border-bottom: none;
}

#contact .inner {
  gap: min(2vw, 20px);
}

#contact h2 {
  justify-content: center;
}

form {
  margin: 20px auto;
  max-width: 700px;
  text-align: left;
  line-height: 3;
  container-type: inline-size;
  container-name: form;
  font-size: 1.8rem
}

.form_item--ttl {
  line-height: 2;
  font-size: min(4.4vw, 2.5rem);
}

.form_item--ttl .must {
  padding-left: 5%;
  color: #FF0000;
}

.form_item--input {
  padding: 0;
  margin-bottom: 1%;
}

.form_item--input span {
  color: #BCBCBC;
  line-height: 1;
  display: block;
  padding: 8px 0;
}

label {
  display: inline-block;
  font-size: 1.8rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #f4f3f3;
  border: 1px solid #C6C6C6;
}

input[id="postal_code"],
select {
  max-width: 272px;
}

input[type="tel"] {
  max-width: 400px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #f4f3f3;
}

.form_submit button {
  width: 100%;
  max-width: 345px;
  background-color: #2A2A2A;
  padding: 14px;
  margin: 40px auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.form_submit button:hover {
  opacity: 0.5;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.form_submit button p::after {
  content: "";
  width: 28px;
  aspect-ratio: 28.26/24;
  background-image: url(../img/submit.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-36%);
}

.cr {
  padding: 8px 0;
  background-color: var(--blue);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 50px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  .flex.reverse {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  header {
    width: 100%;
    height: 140px;
  }

  .header-right {
    gap: 50px;
  }

  .MV {
    padding: 0;
    aspect-ratio: 1.9 / 1;
  }

  .MV_img {
    width: 55%;
    height: calc(100% - 80px);
    background-image: url(../img/MV.png);
  }

  .MV .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .MV h2 {
    position: absolute;
    width: 90%;
    font-family: var(--Klee);
    font-size: min(6.5vw, 4.2rem);
    font-weight: 600;
  }

  .c-text {
    bottom: 20px;
    font-size: 2.0vw
  }

  .c-text.pc_none {
    display: none;
  }

  .c-text.sp_none {
    display: flex;
  }

  .loop {
    animation: loop 20s linear infinite;
    width: 100%;
    text-wrap: nowrap;
  }

  .loop2 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    animation: loop 20s -10s linear infinite;
    text-wrap: nowrap;
  }

  @keyframes loop {
    0% {
      transform: translateX(100%);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  h2.section-ttl {
    width: 263px;
  }
#millevies  h2.section-ttl {
    width: 100%;
    justify-content: center;
  }

  #topics .inner {
    flex-direction: row;
    gap: 5%;
  }
	#millevies .content {
    align-items: flex-start;
  }

  #millevies p {
    padding-right: 10%;
	text-align: center;
  }

  #millevies .content02 {
    max-width: 1123px;
    margin: 0 auto;
  }
	
	
	

  #greeting .content {
    align-items: flex-start;
  }

  #greeting p {
    padding-right: 10%;
  }

  #greeting .content02 {
    max-width: 1123px;
    margin: 0 auto;
  }

  #showroom .inner {
    flex-direction: row;
    align-items: flex-start;
  }

  #showroom .section-body {
    flex-direction: column;
    gap: 40px;
  }

  #showroom .section-body p {
    margin: 0 auto 0 0;
  }

  #showroom .section-body .showroom-img {
    margin: 0 0 0 auto;
    width: 70%;
  }

  .CTA {
    padding: 80px 0
  }

  .CTA .container {
    background-size: 60px;
  }

  .CTA .inner {
    align-items: center;
  }

  .CTA h2.section-ttl {
    justify-content: center;
  }

  .CTA .cta-btn {
    margin: 0 auto;
  }

  #bansei .content.flex {
    align-items: flex-start;
  }

  #bansei .section-body {
    max-width: 900px;
  }

  #bansei .bansei-itemWrap {
    gap: 30px;
    justify-content: center;
  }

  #bansei .bansei-functionWrap {
    gap: min(10vw, 100px);
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }

  .bansei-function {
    width: clamp(200px, 20%, 300px);
  }

  #service .section-body {
    align-items: center;
  }

  #service .section-body .text-wrap {
    width: 60%;
  }

  #service .section-body .content_img {
    width: 40%;
  }

  .service_item .inner {
    align-items: center;
    gap: 80px;
  }

  .service_item .inner p {
    text-align: center;
    margin-top: -20px;
  }

  .reason-wrap {
    gap: 40px;
  }

  .reason-wrap h5 {
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .service_item .reason-wrap p {
    text-align: justify;
  }

  .service-linkWrap .flex {
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
  }

  .service-linkWrap .flex .service-link:nth-child(2) {
    margin: 0;
  }

  #company .content {
    align-items: center;
  }

  #company h2.section-ttl {
    width: 100%;
  }

  #company dl {
    flex-direction: column;
  }

  #company dl .description-item {
    display: flex;
    padding-bottom: 10px;
  }

  #company dl .description-item dt {
    width: 170px;
  }

  #company dl .description-item dd {
    width: calc(100% - 170px);
  }

  #contact h2.section-ttl {
    width: 100%;
  }

  form {
    max-width: 1100px;
    padding-top: 20px;
  }

  .form_outer {
    position: relative;
  }

  .form_item {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .form_item--ttl {
    padding: 30px 10px;
    width: 40%;
    margin: 0;
    height: 80px;
    line-height: 1;
  }

  .form_item--input {
    width: calc(100% - 300px);
    margin: 0;
    padding: 20px 60px 20px 30px;
    line-height: 1;
    height: 80px;
  }

  .form_item:nth-of-type(10) .form_item--input {
    padding: 0 60px 0 30px;
  }

  .form_item--input label {
    line-height: 1;
  }

  .form_item:nth-of-type(2) .form_item--ttl {
    height: 100px;
    line-height: 1.5;
  }

  .form_item:nth-of-type(2) .form_item--input {
    height: 100px;
  }

  .form_item:nth-of-type(11) .form_item--ttl {
    border-bottom: none;
    margin: 0 0 auto;
  }

  .form_item:nth-of-type(11) .form_item--input {
    height: 300px;
  }

  .form_submit button {
    margin: 80px auto 0;
  }
}