@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oswald:wght@200..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

:root {
  --stxt-color: #4f5f64;
  --accent-color: #c59965;
  --dark-color: #1c184e;
}

/*---------------
	BASE
---------------*/
html {
  overflow-y: scroll;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  font-weight: 300;
  background-color: #1c184e;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 80%;
    overflow: hidden;
  }
}

a:link, a:visited {
  text-decoration: none;
  transition: 0.5s;
  color: #fff;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 92%;
  }
}

* {
  box-sizing: border-box;
}

/*レスポンシブ*/
*.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  *.pc {
    display: none;
  }
}

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

.sp_menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_menu {
    display: block;
    position: fixed;
    top: 0.7rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    z-index: 10000;
  }
  .sp_menu span {
    display: block;
    max-width: 70%;
    height: 1px;
    line-height: 1;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu span:nth-of-type(1) {
    top: 25%;
  }
  .sp_menu span:nth-of-type(2) {
    top: 50%;
  }
  .sp_menu span:nth-of-type(3) {
    top: 75%;
  }
  .sp_menu.open span {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    background-color: #333;
  }
  .sp_menu.open span:nth-of-type(1) {
    top: 50%;
    transform: rotate(-45deg);
  }
  .sp_menu.open span:nth-of-type(2) {
    display: none;
  }
  .sp_menu.open span:nth-of-type(3) {
    top: 50%;
    transform: rotate(45deg);
  }
}

/* CSS Document */
/*---------------
	FOOTER
---------------*/
.footer {
  background-color: #fff;
  padding: 3rem 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.5rem 0;
  }
}
.footer__bnr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__bnr {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__bottom {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 65%;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.footer__bottom-logo {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__bottom-logo img {
    max-width: 50%;
    margin: auto;
  }
}
.footer__bottom-logo p {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom-logo p {
    text-align: center;
  }
}
.footer__bottom-info {
  width: 100%;
}
.footer__bottom-info p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom-info p {
    text-align: center;
  }
}
.footer__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer__bottom-row {
    grid-template-columns: 1fr;
  }
}
.footer__bottom-row img {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom-row img {
    max-width: 70%;
    margin: auto;
  }
}
.footer__bottom-row a {
  height: 50px;
  background-color: #6185bc;
  color: #fff;
  display: block;
  width: 100%;
  line-height: 1;
  padding: 10px;
  padding-left: 2rem;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
}
@media screen and (max-width: 767px) {
  .footer__bottom-row a {
    max-width: 80%;
    margin: auto;
  }
}
.footer__bottom-row a::after {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_triangle_blue.webp);
  position: absolute;
  right: 6%;
}

.contact {
  margin-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 2.5rem;
  }
}
.contact__title {
  margin-bottom: 120px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__title {
    margin-bottom: 60px;
  }
}
.contact__title h2 {
  text-align: center;
}
.contact__title h2 img {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__title h2 img {
    max-width: 60%;
  }
}
.contact__title h2 {
  font-size: clamp(0.9rem, 0.75rem + 0.9vw, 1.2rem);
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contact__row {
    grid-template-columns: 1fr;
  }
}
.contact__row-txt h3 {
  font-size: clamp(1rem, 0.789rem + 0.901vw, 1.6rem);
}
.contact__row-txt .tel {
  margin-top: 1rem;
}
.contact__row-txt .time {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-weight: 500;
}
.contact__row-txt p {
  margin-top: 1rem;
  line-height: 1.8;
  font-size: clamp(0.9rem, 0.9rem + 0vw, 0.9rem);
}
@media screen and (max-width: 767px) {
  .contact__row-txt p br {
    display: none;
  }
}
.contact__row-btn {
  width: 100%;
}
.contact__row-btn .mail,
.contact__row-btn .req_info {
  height: 100px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__row-btn .mail,
  .contact__row-btn .req_info {
    height: 80px;
  }
}
.contact__row-btn .mail::after,
.contact__row-btn .req_info::after {
  width: 54px;
  height: 54px;
  border-radius: 100px;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  position: absolute;
  right: 5%;
}
@media screen and (max-width: 767px) {
  .contact__row-btn .mail::after,
  .contact__row-btn .req_info::after {
    width: 30px;
    height: 30px;
    background-size: 60%;
    right: 5%;
  }
}
.contact__row-btn .mail {
  background-color: #c59965;
  margin-bottom: 20px;
}
.contact__row-btn .mail::after {
  background-color: #4a4e5c;
  background-image: url(../img/common/arrow_wh.webp);
}
.contact__row-btn .req_info {
  background-color: #4a4e5c;
}
.contact__row-btn .req_info::after {
  background-color: #fff;
  background-image: url(../img/common/arrow_gy.webp);
}
.contact__row-btn span {
  color: #fff;
  padding-left: 50px;
  font-size: clamp(1rem, 0.894rem + 0.451vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 2px;
}
.contact__row-btn a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* CSS Document */
/*---------------
	HEADER
---------------*/
.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding-top: 1rem;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  top: 0;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 0;
  }
}
.header::after {
  display: none;
}
.header .inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .header .inner {
    display: block;
    padding: 2rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
}
.header__logo h1 img {
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header__logo h1 img {
    max-width: 65%;
  }
  .header__logo h1 img.pc {
    display: block;
  }
  .header__logo h1 img.sp {
    display: none;
  }
}
.header__nav {
  width: 100%;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
    margin-top: 4rem;
  }
}
.header__nav ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
}
.header__nav ul li a {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header__nav ul li a {
    color: #4f5f64 !important;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-cnav {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-cnav li {
    margin-bottom: 10px;
  }
}
.header__nav-cnav li a {
  background-color: #fff;
  line-height: 1;
  padding: 5px 20px;
  color: #4f5f64;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .header__nav-cnav li a {
    background-color: #f2f2f2;
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 1.1rem;
  }
}
.header__nav-gnav {
  margin-top: 1rem;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header__nav-gnav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-gnav li {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-gnav li a {
    display: block;
    padding: 10px 10px;
    background-image: url(../../assets/img/common/arrow_right.webp);
    background-repeat: no-repeat;
    background-position: center right 5px;
    background-size: 5%;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-gnav li:has(.header__nav-gnav-box) {
    max-width: 49%;
    margin-right: 2%;
    margin-top: 10px;
    border: 1px solid #ccc;
  }
  .header__nav-gnav li:has(.header__nav-gnav-box) a {
    background-image: none;
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-gnav li:nth-of-type(4) {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-gnav li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .header.open {
    transition: 0.5s;
    -webkit-transition: 0.5s;
    display: block;
    background-color: #fff !important;
  }
  .header.open .header__logo {
    display: block !important;
  }
  .header.open .header__logo img.pc {
    display: none !important;
  }
  .header.open .header__logo img.sp {
    display: block !important;
  }
  .header.open .header__nav {
    display: block;
  }
  .header.open::after {
    content: "";
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
}
.header.is-fixed {
  background-color: #1c184e;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .header.is-fixed {
    padding-top: 0.5rem;
  }
}
.header.is-fixed .header__logo {
  padding-bottom: 1rem;
}
.header.is-fixed .header__logo h1 img {
  width: 120px;
  height: auto;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .header.is-fixed .header__logo h1 img {
    width: 50%;
  }
}
.header.is-fixed .header__nav {
  padding-top: 0;
}
.header.is-fixed .header__nav .header__nav-cnav {
  display: none;
}
.header.is-fixed .header__nav .header__nav-gnav {
  margin-top: 0.5rem;
}

.content_title {
  margin-top: 200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .content_title {
    margin-top: 150px;
    margin-bottom: 50px;
  }
}
.content_title .inner {
  font-family: "Noto Serif JP", sans-serif;
}
.content_title .inner h1 {
  font-size: clamp(1.2rem, 1.059rem + 0.601vw, 1.6rem);
  font-weight: normal;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 {
    font-size: 0.8rem;
  }
}
.content_title .inner h1 span {
  display: block;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 span {
    margin-bottom: 1rem;
  }
}
.content_title .inner h1 span.um {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 span img {
    max-width: 30%;
  }
}
.content_title .content_title-snav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.content_title .content_title-snav ul li {
  letter-spacing: 4px;
}
.content_title.t2 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .content_title.t2 {
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.content_title.t2 .inner {
  text-align: center;
}
.content_title.t2 .inner h1 span img {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .content_title.t2 .inner h1 span img {
    max-width: 80%;
  }
}
.content_title.t2::after {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  max-width: 120px;
  display: block;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .content_title.t2::after {
    max-width: 80px;
    bottom: -30px;
  }
}

.content_stitle {
  background-color: var(--stxt-color);
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
  padding: 1rem 0;
}
.content_stitle h2 {
  font-size: clamp(1rem, 0.718rem + 1.202vw, 1.8rem);
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
}

.content_fv {
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .content_fv {
    margin-top: 90px;
  }
}
.content_fv .inner {
  padding: 200px 0;
}
@media screen and (max-width: 767px) {
  .content_fv .inner {
    padding: 100px 0;
  }
}
.content_fv .inner h1 {
  text-align: center;
  font-size: clamp(1.2rem, 0.918rem + 1.202vw, 2rem);
  font-weight: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .content_fv .inner h1 {
    font-size: 1rem;
  }
}
.content_fv .inner h1 img {
  margin: auto;
}
.content_fv.title_brand {
  background-image: url(../../assets/img/contents/brand/mv.webp);
}
.content_fv.title_planning {
  background-image: url(../../assets/img/contents/planning/mv.webp);
}
.content_fv.title_quality {
  background-image: url(../../assets/img/contents/quality/mv.webp);
}
.content_fv.title_value {
  background-image: url(../../assets/img/contents/value/mv.webp);
}
.content_fv.title_design {
  background-image: url(../../assets/img/contents/design/mv.webp);
}

/* CSS Document */
/*---------------
	BUTTON
---------------*/
/* CSS Document */
/*---------------
	MODALS
---------------*/
#news {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  #news {
    padding-bottom: 50px;
  }
}
#news .news__content .inner {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 60px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #news .news__content .inner {
    display: flex;
    flex-direction: column;
  }
}
#news .news__content-main {
  width: 100%;
}
#news .news__content-main-col {
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #news .news__content-main-col {
    margin-bottom: 3rem;
  }
}
#news .news__content-main-col span {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  border: 1px solid #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #news .news__content-main-col span {
    font-size: 1.1rem;
  }
}
#news .news__content-main-col h2 {
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  font-size: clamp(1rem, 0.718rem + 1.202vw, 1.8rem);
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #news .news__content-main-col h2 {
    margin-top: 15px;
    font-size: 1.1rem;
  }
}
#news .news__content-main-col p {
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #news .news__content-main-col p {
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
#news .news__content-main-col a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#news .news__content-main-pager {
  margin-top: 4rem;
}
#news .news__content-main-pager ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #news .news__content-main-pager ul {
    justify-content: center;
  }
}
#news .news__content-side {
  width: 100%;
}
#news .news__content-side h2 {
  background-color: #c59965;
  line-height: 1;
  padding: 15px;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 0.789rem + 0.901vw, 1.6rem);
  font-weight: normal;
}
#news .news__content-side ul {
  margin-bottom: 2rem;
}
#news .news__content-side ul li {
  margin-bottom: 0.5rem;
}
#news .news__content-side ul li a {
  display: block;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
}
#news .news__content-side ul.news__list li {
  border-bottom: 1px solid #fff;
}
#news .news__content-side ul.news__list li a {
  width: 100%;
  padding-left: 1rem;
  padding-bottom: 5px;
  background-image: url(../../assets/img/contents/news/icon_news_arrow.webp);
  background-size: auto 60%;
  background-position: top 2px left 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
#news .news__content-side ul.news__category li a {
  padding-left: 2.5rem;
  background-image: url(../../assets/img/contents/news/icon_news_category.webp);
  background-size: auto 60%;
  background-position: top 6px left 0;
  line-height: 2;
}
#news .news__content-side select {
  width: 100%;
  padding: 20px 15px;
  margin-bottom: 2rem;
  background-color: #9fa0a0;
  box-sizing: border-box;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#news .news__content-detail span {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  border: 1px solid #fff;
  text-align: center;
}
#news .news__content-detail h1 {
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  font-size: clamp(1rem, 0.718rem + 1.202vw, 1.8rem);
  font-weight: normal;
}
#news .news__content-txt {
  margin-top: 2rem;
  line-height: 2;
}
#news .news__contact {
  margin-top: 4rem;
}
#news .news__contact .inner {
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #news .news__contact .inner {
    grid-template-columns: 1fr;
  }
}
#news .news__contact-item {
  position: relative;
}
#news .news__contact-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
#news .news__contact-item:last-child::after {
  display: none;
}
#news .news__contact-item h2 {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  margin-bottom: 1rem;
}
#news .news__contact-item p.tel {
  margin-bottom: 1.5rem;
}
#news .news__contact-item p.tel a {
  display: block;
  font-size: clamp(1.2rem, 0.918rem + 1.202vw, 2rem);
  color: var(--accent-color);
}
#news .news__contact-item p.tel span {
  display: block;
  font-size: clamp(0.6rem, 0.53rem + 0.3vw, 0.8rem);
}

#real_estate {
  padding-bottom: 150px;
}
#real_estate .real_estate__content-img img {
  width: 100%;
  height: auto;
}
#real_estate .real_estate__content .inner {
  text-align: center;
}
#real_estate .real_estate__content .inner span {
  display: block;
  margin-top: 4rem;
}
#real_estate .real_estate__content .inner span img {
  margin: auto;
}
#real_estate .real_estate__content .inner p {
  max-width: 640px;
  margin: auto;
  text-align: left;
  margin-top: 4rem;
  line-height: 3;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  letter-spacing: 2px;
  font-family: "Noto Serif JP", sans-serif;
}
#real_estate .real_estate__content-btn {
  margin-top: 4rem;
}
#real_estate .real_estate__content-btn a {
  background-color: var(--accent-color);
  max-width: 580px;
  height: 135px;
  margin: auto;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  letter-spacing: 2px;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#real_estate .real_estate__content-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  right: 30px;
  border-radius: 100px;
  width: 74px;
  height: 74px;
  background-color: var(--stxt-color);
  background-image: url(../../assets/img/common/arrow_wh.webp);
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
}

#requested_real_estate {
  padding-bottom: 150px;
}
#requested_real_estate .requested_real_estate__content-img img {
  width: 100%;
  height: auto;
}
#requested_real_estate .requested_real_estate__content .inner {
  text-align: center;
}
#requested_real_estate .requested_real_estate__content .inner span {
  display: block;
  margin-top: 4rem;
}
#requested_real_estate .requested_real_estate__content .inner span img {
  margin: auto;
}
#requested_real_estate .requested_real_estate__content .inner p {
  max-width: 640px;
  margin: auto;
  text-align: left;
  margin-top: 4rem;
  line-height: 3;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  letter-spacing: 2px;
  font-family: "Noto Serif JP", sans-serif;
}
#requested_real_estate .requested_real_estate__content .inner p.area {
  text-align: center;
}
#requested_real_estate .requested_real_estate__content-btn {
  margin-top: 4rem;
}
#requested_real_estate .requested_real_estate__content-btn a {
  background-color: var(--accent-color);
  max-width: 580px;
  height: 135px;
  margin: auto;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  letter-spacing: 2px;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#requested_real_estate .requested_real_estate__content-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 20%;
  right: 30px;
  border-radius: 100px;
  width: 74px;
  height: 74px;
  background-color: var(--stxt-color);
  background-image: url(../../assets/img/common/arrow_wh.webp);
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
}

#model_room {
  padding-bottom: 100px;
}
#model_room .model_room__map-item {
  position: relative;
  width: 100%;
  padding-top: 46.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
#model_room .model_room__map-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#model_room .model_room__outline {
  margin-top: 4rem;
}
#model_room .model_room__outline .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
}
#model_room .model_room__outline-map {
  width: 100%;
}
#model_room .model_room__outline-table {
  width: 100%;
}
#model_room .model_room__outline-table dl {
  border-top: 1px solid #fff;
}
#model_room .model_room__outline-table dl > div {
  border-bottom: 1px solid #fff;
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 20px;
}
#model_room .model_room__outline-table dl > div dt {
  width: 100%;
  background-color: var(--accent-color);
  padding: 1.5rem 1rem;
}
#model_room .model_room__outline-table dl > div dd {
  width: 100%;
  padding: 1.5rem 1rem;
}
#model_room .model_room__outline-note {
  width: 100%;
  margin-top: 1rem;
}
#model_room .model_room__outline-btn {
  width: 100%;
  margin-top: 1rem;
}
#model_room .model_room__outline-btn a {
  color: var(--accent-color);
}
#model_room .model_room__contact {
  margin-top: 3rem;
}
#model_room .model_room__contact .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
}
#model_room .model_room__contact-item {
  width: 100%;
}
#model_room .model_room__contact-item h2 {
  font-size: clamp(1rem, 0.859rem + 0.601vw, 1.4rem);
  margin-bottom: 1rem;
}
#model_room .model_room__contact-item.internet {
  margin-top: 4rem;
}
#model_room .model_room__contact-item-tel {
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: clamp(1.2rem, 0.918rem + 1.202vw, 2rem);
}
#model_room .model_room__contact-item-tel span {
  font-size: clamp(1.4rem, 0.837rem + 2.404vw, 3rem);
}
#model_room .model_room__contact-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #model_room .model_room__contact-btn {
    grid-template-columns: 1fr;
  }
}
#model_room .model_room__contact-btn a {
  width: 100%;
  display: block;
  background-color: var(--accent-color);
  padding: 3rem 2rem;
  padding-right: 4rem;
  position: relative;
  font-size: clamp(1.2rem, 1.059rem + 0.601vw, 1.6rem);
  text-align: center;
  letter-spacing: 4px;
}
#model_room .model_room__contact-btn a::after {
  width: 74px;
  height: 74px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--stxt-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  position: absolute;
  top: 20%;
  right: 5%;
}

#corporate .corporate__title {
  margin-bottom: 4rem;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 4px;
  font-size: clamp(1.1rem, 0.994rem + 0.451vw, 1.4rem);
}
#corporate .corporate__title span {
  display: block;
  margin-top: 2rem;
}
#corporate .corporate__philosophy {
  margin-bottom: 4rem;
}
#corporate .corporate__philosophy .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  justify-items: flex-start;
  align-items: stretch;
}
#corporate .corporate__philosophy-txt {
  font-family: "Noto Serif JP", sans-serif;
}
#corporate .corporate__philosophy-txt img {
  margin-bottom: 2rem;
}
#corporate .corporate__philosophy-txt p {
  margin-bottom: 3rem;
  line-height: 2;
}
#corporate .corporate__philosophy-txt p:last-child {
  margin-bottom: 0;
}
#corporate .corporate__philosophy-img img {
  margin-bottom: 1rem;
}
#corporate .corporate__profile {
  background-color: var(--accent-color);
  padding-top: 100px;
  padding-bottom: 100px;
}
#corporate .corporate__profile .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
#corporate .corporate__profile-img .main {
  margin-bottom: 2rem;
}
#corporate .corporate__profile-img .thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: flex-start;
  align-items: stretch;
}
#corporate .corporate__profile-img .thumbs li img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
#corporate .corporate__profile-table dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 30px;
}
#corporate .corporate__profile-table dl > div dt {
  width: 100%;
  background-color: var(--dark-color);
  padding: 1.5rem 1rem;
}
#corporate .corporate__profile-table dl > div dd {
  width: 100%;
  padding: 1.5rem 1rem;
}
#corporate .corporate__map {
  padding: 4rem 0;
}
#corporate .corporate__map-item {
  position: relative;
  width: 100%;
  padding-top: 40.25%;
  height: 0;
}
#corporate .corporate__map-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#corporate .corporate__history {
  background-color: var(--accent-color);
  padding-top: 4rem;
  padding-bottom: 100px;
}
#corporate .corporate__history-table dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  padding: 1.5rem 0;
}
@media screen and (max-width: 640px) {
  #corporate .corporate__history-table dl > div dt {
    /*sp*/
  }
}
@media screen and (max-width: 640px) {
  #corporate .corporate__history-table dl > div dd {
    /*sp*/
  }
}

#history .history {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 200px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 600px;
}
@media screen and (max-width: 767px) {
  #history .history {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#history .history .txt-wrapper {
  width: 550px;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
#history .history .txt-wrapper .target {
  position: sticky;
  top: 0;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target {
    position: fixed;
    background-color: var(--dark-color);
    width: 100%;
    padding: 1.5rem 1rem;
    padding-top: 100px;
    padding-bottom: 0.5rem;
  }
}
#history .history .txt-wrapper .target .title {
  position: absolute;
  top: 200px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .title {
    top: 100px;
    left: 1rem;
  }
}
#history .history .txt-wrapper .target .title img {
  width: 85%;
  height: auto;
}
#history .history .txt-wrapper .target .title img:nth-of-type(1) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .title img.sp {
    max-width: 75%;
  }
}
#history .history .txt-wrapper .target .title p {
  max-width: 85%;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .title p {
    display: none;
  }
}
#history .history .txt-wrapper .target .img {
  position: absolute;
  bottom: -650px;
  right: 50px;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .img {
    top: 0;
    right: 0;
    display: none;
  }
}
#history .history .txt-wrapper .target .img img {
  width: 100%;
  height: auto;
}
#history .history .txt-wrapper .target .clock-wrapper {
  width: 200px;
  height: 200px;
  margin-top: 200px;
  margin-left: 300px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .clock-wrapper {
    width: 80px;
    height: 80px;
    margin-top: 0;
    margin-left: auto;
  }
}
#history .history .txt-wrapper .target .clock-wrapper .dial {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#history .history .txt-wrapper .target .clock-wrapper .hour-hand {
  position: absolute;
  top: 20%;
  left: 48%;
  transform: translate(-50%, -100%) rotate(0deg);
  transform-origin: 50% 100%; /* ← 下端が回転中心 */
  width: 10px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .clock-wrapper .hour-hand {
    width: 3px;
    height: 25px;
  }
}
#history .history .txt-wrapper .target .clock-wrapper .minute-hand {
  position: absolute;
  top: 20%;
  left: 48%;
  transform: translate(-50%, -100%) rotate(0deg);
  transform-origin: 50% 73%; /* 回転中心を少し下よりに調整 */
  width: 10px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #history .history .txt-wrapper .target .clock-wrapper .minute-hand {
    width: 3px;
    height: 32px;
  }
}
#history .history .gallery-wrapper {
  width: 600px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #history .history .gallery-wrapper {
    max-width: 92%;
    margin: auto;
    padding-top: 110px;
  }
}
#history .history .gallery-wrapper .img_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #history .history .gallery-wrapper .img_sp {
    display: block;
  }
}
#history .history .gallery-wrapper .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  #history .history .gallery-wrapper .row {
    padding-top: 40px;
  }
}
#history .history .gallery-wrapper .row .simg {
  display: block;
  width: 100%;
  color: #fff;
  text-align: left;
}
#history .history .gallery-wrapper .row .simg span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  #history .history .gallery-wrapper .row .simg span {
    font-size: 2rem;
  }
}
#history .history .gallery-wrapper .row .simg p {
  font-size: 0.8rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  #history .history .gallery-wrapper .row .simg p {
    font-size: 0.6rem;
  }
  #history .history .gallery-wrapper .row .simg p br {
    display: none;
  }
}

#brand {
  padding-bottom: 200px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #brand {
    padding-bottom: 100px;
  }
}
#brand .content_title {
  margin-top: 120px;
}
#brand .brand__sbox {
  max-width: 1500px;
  margin: auto;
  margin-top: 150px;
  position: relative;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox {
    margin-top: 100px;
    padding-top: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
}
#brand .brand__sbox .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox .inner {
    order: 3;
  }
}
#brand .brand__sbox-txt {
  width: 100%;
  max-width: 45%;
  position: absolute;
  top: 110px;
  right: 0;
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  #brand .brand__sbox-txt {
    max-width: 55%;
  }
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-txt {
    position: static;
    max-width: 100%;
    order: 3;
  }
}
#brand .brand__sbox-txt p {
  font-family: "Noto Serif JP", sans-serif;
  line-height: 3;
  font-size: clamp(1rem, 0.965rem + 0.15vw, 1.1rem);
  letter-spacing: 4px;
  display: inline-block;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #brand .brand__sbox-txt p {
    line-height: 2.4;
    font-size: clamp(1rem, 1rem + 0vw, 1rem);
    letter-spacing: 0.1vw;
  }
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-txt p {
    font-size: 0.8rem;
    line-height: 1.8;
  }
  #brand .brand__sbox-txt p br {
    display: none;
  }
}
#brand .brand__sbox-btn {
  margin-top: 1rem;
  text-align: right;
}
#brand .brand__sbox-btn img {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-btn img {
    max-width: 35%;
  }
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-ss {
    order: 1;
  }
}
#brand .brand__sbox-ss span {
  position: absolute;
}
#brand .brand__sbox-ss span:nth-of-type(1) {
  top: 0;
  left: 10%;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-ss span:nth-of-type(1) {
    top: 3rem;
  }
  #brand .brand__sbox-ss span:nth-of-type(1) img {
    max-height: 200px;
  }
}
#brand .brand__sbox-ss span:nth-of-type(2) {
  top: 0;
  right: -2%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #brand .brand__sbox-ss span:nth-of-type(2) {
    max-width: 60%;
  }
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-ss span:nth-of-type(2) {
    max-width: 70%;
    top: -1.5rem;
  }
}
#brand .brand__sbox-img {
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #brand .brand__sbox-img img {
    width: 75%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox-img {
    order: 1;
  }
  #brand .brand__sbox-img img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-txt {
  max-width: 50%;
  right: auto;
  left: 0;
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-img img {
  margin-left: auto;
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-btn {
  text-align: left;
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-btn img {
  margin: 0;
  margin-right: auto;
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-ss span:nth-of-type(1) {
  top: 0;
  left: auto;
  right: 15%;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox:nth-of-type(even) .brand__sbox-ss span:nth-of-type(1) {
    top: 3rem;
  }
  #brand .brand__sbox:nth-of-type(even) .brand__sbox-ss span:nth-of-type(1) img {
    max-height: 200px;
  }
}
#brand .brand__sbox:nth-of-type(even) .brand__sbox-ss span:nth-of-type(2) {
  top: 0;
  right: auto;
  left: -2%;
}
@media screen and (max-width: 767px) {
  #brand .brand__sbox:nth-of-type(even) .brand__sbox-ss span:nth-of-type(2) {
    max-width: 70%;
    top: -1.5rem;
  }
}
#brand .brand__sbox.sbox-value {
  margin-top: 250px;
}
#brand .brand__system {
  font-family: "Noto Serif JP", sans-serif;
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  #brand .brand__system {
    margin-top: 70px;
  }
}
#brand .brand__system h2 {
  text-align: center;
  position: relative;
  font-size: clamp(1.2rem, 0.707rem + 2.103vw, 2.6rem);
  font-weight: normal;
  letter-spacing: 10px;
  margin-bottom: 100px;
}
#brand .brand__system h2::after {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  max-width: 120px;
  display: block;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
}
#brand .brand__system .row {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #brand .brand__system .row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
#brand .brand__system-img {
  width: 100%;
}
#brand .brand__system-img img {
  margin: auto;
}
#brand .brand__system-txt {
  width: 100%;
  line-height: 3;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 767px) {
  #brand .brand__system-txt {
    font-size: 0.8rem;
    line-height: 1.8;
  }
}

#planning {
  padding-bottom: 150px;
  font-family: "Noto Serif JP", sans-serif;
}
#planning .content_title .inner h1 span img {
  max-width: 50%;
}
#planning .planning {
  padding-top: 100px;
}
#planning .planning__plan {
  background-image: url(../../assets/img/contents/planning/plan_bg.webp);
  background-repeat: no-repeat;
  background-size: 62% 260px;
  background-position: bottom 0 left 0;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #planning .planning__plan {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}
#planning .planning__plan .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #planning .planning__plan .inner {
    grid-template-columns: 1fr;
  }
}
#planning .planning__plan-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #planning .planning__plan-txt h2 {
    margin-bottom: 2rem;
  }
  #planning .planning__plan-txt h2 img {
    max-width: 70%;
  }
}
#planning .planning__plan-txt p {
  line-height: 2;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#planning .planning__consultation {
  background-image: url(../../assets/img/contents/planning/consultation_bg.webp);
  background-repeat: no-repeat;
  background-size: 70% 660px;
  background-position: bottom 40% right 0;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation {
    margin-bottom: 50px;
  }
}
#planning .planning__consultation .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation .inner {
    max-width: 100%;
  }
}
#planning .planning__consultation-txt {
  max-width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-txt {
    max-width: 90%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
#planning .planning__consultation-txt h2 {
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-txt h2 {
    margin-bottom: 2rem;
  }
  #planning .planning__consultation-txt h2 img {
    max-width: 70%;
  }
}
#planning .planning__consultation-txt p {
  line-height: 2;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-txt p br {
    display: none;
  }
}
#planning .planning__consultation-img {
  position: absolute;
  top: -100px;
  left: -200px;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-img {
    position: static;
  }
}
#planning .planning__consultation-bottom-img {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-bottom-img {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
#planning .planning__consultation-bottom-img-item {
  width: 100%;
}
#planning .planning__consultation-bottom-img-item:nth-of-type(1) {
  padding-top: 220px;
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-bottom-img-item:nth-of-type(1) {
    padding-top: 40px;
    max-width: 70%;
    margin-right: auto;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  #planning .planning__consultation-bottom-img-item:nth-of-type(2) {
    max-width: 90%;
    margin: auto;
  }
}
#planning .planning__consultation-bottom-img-item p {
  margin-bottom: 0.5re;
}
#planning .planning__consultation-bottom-img-item p.tr {
  text-align: right;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
#planning .planning__facility {
  background-image: url(../../assets/img/contents/planning/facility_bg.webp);
  background-repeat: no-repeat;
  background-size: 70% 426px;
  background-position: bottom 20% left 0;
}
#planning .planning__facility .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  #planning .planning__facility .inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #planning .planning__facility-txt {
    margin-bottom: 2rem;
  }
}
#planning .planning__facility-txt h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #planning .planning__facility-txt h2 {
    max-width: 90%;
    margin: auto;
    margin-bottom: 2rem;
  }
  #planning .planning__facility-txt h2 img {
    max-width: 75%;
  }
}
#planning .planning__facility-txt p {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  #planning .planning__facility-txt p {
    max-width: 90%;
    margin: auto;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #planning .planning__facility-txt img {
    max-width: 90%;
    margin-left: auto;
  }
}
#planning .planning__facility-img {
  position: absolute;
  top: -20px;
  right: -160px;
}
@media screen and (max-width: 767px) {
  #planning .planning__facility-img {
    position: static;
    max-width: 90%;
    margin-right: auto;
  }
}

#quality {
  font-family: "Noto Serif JP", sans-serif;
}
#quality .content_title .inner h1 span img {
  max-width: 50%;
}
#quality .quality__item {
  background-image: url(../../assets/img/contents/quality/item_bg.webp);
  background-repeat: no-repeat;
  background-size: 60% 412px;
  background-position: bottom 0 left 0;
  margin-top: 6rem;
  margin-bottom: 200px;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__item {
    margin-top: 3rem;
    margin-bottom: 100px;
    padding-bottom: 0;
  }
}
#quality .quality__check {
  padding-top: 6rem;
}
#quality .quality__check-txt {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
}
#quality .quality__check-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__check-txt h2 {
    margin-bottom: 2rem;
  }
}
#quality .quality__check-txt p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__check-txt p {
    margin-bottom: 1rem;
  }
}
#quality .quality__support {
  background-image: url(../../assets/img/contents/quality/item_bg2.webp);
  background-size: 60% 314px;
  background-position: bottom 0 right 0;
}
#quality .quality__support .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #quality .quality__support .inner {
    grid-template-columns: 1fr;
  }
}
#quality .quality__support-txt {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #quality .quality__support-txt {
    order: 1;
  }
}
#quality .quality__support-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__support-txt h2 {
    margin-bottom: 2rem;
  }
  #quality .quality__support-txt h2 img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #quality .quality__support-img {
    order: 2;
  }
}
#quality .quality__plan {
  background-image: url(../../assets/img/contents/quality/item_bg2.webp);
  background-size: 60% 314px;
  background-position: bottom 0 left 0;
  padding-bottom: 6rem;
}
#quality .quality__plan .inner {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #quality .quality__plan .inner {
    grid-template-columns: 1fr;
  }
}
#quality .quality__plan-txt {
  width: 100%;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
}
#quality .quality__plan-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__plan-txt h2 {
    margin-bottom: 2rem;
  }
  #quality .quality__plan-txt h2 img {
    max-width: 60%;
  }
}
#quality .quality__plan-img {
  width: 100%;
}
#quality .quality__license {
  background-image: url(../../assets/img/contents/quality/item_bg2.webp);
  background-size: 60% 314px;
  background-position: bottom 15% right 0;
  position: relative;
  margin-bottom: 15vw;
  padding-bottom: 240px;
}
@media screen and (max-width: 767px) {
  #quality .quality__license {
    padding-bottom: 50px;
  }
}
#quality .quality__license .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #quality .quality__license .inner {
    grid-template-columns: 1fr;
  }
}
#quality .quality__license-img {
  width: 100%;
  display: block;
  position: relative;
}
#quality .quality__license-img img {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 730px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #quality .quality__license-img img {
    position: static;
  }
}
#quality .quality__license-txt {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
  padding-top: 3rem;
}
#quality .quality__license-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__license-txt h2 {
    margin-bottom: 2rem;
  }
  #quality .quality__license-txt h2 img {
    max-width: 60%;
  }
}
#quality .quality__lifesupport {
  background-image: url(../../assets/img/contents/quality/item_bg2.webp);
  background-size: 60% 314px;
  background-position: bottom 40% left 0;
}
#quality .quality__lifesupport .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #quality .quality__lifesupport .inner {
    grid-template-columns: 1fr;
  }
}
#quality .quality__lifesupport-txt {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
}
#quality .quality__lifesupport-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #quality .quality__lifesupport-txt h2 {
    margin-bottom: 2rem;
  }
  #quality .quality__lifesupport-txt h2 img {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  #quality .quality__lifesupport-txt p br {
    display: none;
  }
}

#value {
  font-family: "Noto Serif JP", sans-serif;
}
#value .content_fv .inner h1 img {
  max-width: 80%;
  margin: auto;
}
#value .content_title .inner h1 span img {
  max-width: 50%;
}
#value .batch_common {
  position: relative;
}
#value .batch {
  position: absolute;
  display: block;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  #value .batch {
    width: 40px;
    height: 40px;
  }
}
#value .batch.batch_sun {
  background-image: url(../../assets/img/contents/value/batch_sun.webp);
}
#value .batch.batch_green {
  background-image: url(../../assets/img/contents/value/batch_green.webp);
}
#value .batch.sd {
  transform: scale(0.85) translateX(0);
}
#value .value__location {
  padding-top: 6rem;
  background-image: url(../../assets/img/contents/value/location_bg.webp);
  background-repeat: no-repeat;
  background-size: 66% 1500px;
  background-position: top 700px left 0;
  height: 2580px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #value .value__location {
    height: auto;
    padding-top: 4rem;
  }
}
#value .value__location .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  #value .value__location .inner {
    max-width: 100%;
  }
}
#value .value__location-txt {
  position: absolute;
  top: 0;
  left: 0px;
  max-width: 50%;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2;
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  #value .value__location-txt {
    position: static;
    padding-top: 0;
    max-width: 90%;
    margin: auto;
    margin-bottom: 2rem;
    padding-top: 0px;
  }
}
#value .value__location-txt h2 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #value .value__location-txt h2 {
    margin-bottom: 1rem;
  }
  #value .value__location-txt h2 img {
    max-width: 50%;
  }
}
#value .value__location-txt p {
  line-height: 2.4;
}
#value .value__location-img {
  position: relative;
}
#value .value__location-img span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span {
    position: static;
    margin-left: auto;
    margin-bottom: 3rem;
    display: block;
  }
}
#value .value__location-img span p {
  margin-top: 0.5rem;
  text-align: right;
}
#value .value__location-img span:nth-of-type(1) {
  top: 0px;
  right: -200px;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(1) {
    max-width: 90%;
    margin: 0;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
#value .value__location-img span:nth-of-type(1) p {
  text-align: right;
  max-width: 71%;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(1) p {
    padding-right: 0;
    text-align: left;
  }
}
#value .value__location-img span:nth-of-type(2) {
  top: 800px;
  left: -100px;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(2) {
    max-width: 90%;
    margin: 0;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: right;
  }
}
#value .value__location-img span:nth-of-type(2) p {
  text-align: right;
}
#value .value__location-img span:nth-of-type(3) {
  top: 1150px;
  right: 0px;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(3) {
    max-width: 90%;
    margin: 0;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
#value .value__location-img span:nth-of-type(3) p {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(3) p {
    text-align: left;
  }
}
#value .value__location-img span:nth-of-type(4) {
  top: 1440px;
  left: 0px;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(4) {
    max-width: 90%;
    margin: 0;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: right;
  }
}
#value .value__location-img span:nth-of-type(5) {
  top: 1780px;
  right: -110px;
}
@media screen and (max-width: 767px) {
  #value .value__location-img span:nth-of-type(5) {
    max-width: 90%;
    margin: 0;
    margin-left: auto;
    margin-bottom: 3rem;
  }
}
#value .value__location-img span:nth-of-type(5) p {
  max-width: 81%;
}
#value .value__environment {
  background-image: url(../../assets/img/contents/value/environment_bg.webp);
  background-repeat: no-repeat;
  background-size: 60% 525px;
  background-position: bottom 140px right 0;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  #value .value__environment {
    padding-bottom: 3rem;
  }
}
#value .value__environment .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #value .value__environment .inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}
#value .value__environment-img {
  position: relative;
  width: 100%;
}
#value .value__environment-img img {
  width: 673px;
  max-width: inherit;
  position: absolute;
  top: 0;
  left: -100px;
}
@media screen and (max-width: 767px) {
  #value .value__environment-img img {
    position: static;
    transform: scale(1) translateX(0);
    max-width: 90%;
  }
}
#value .value__environment-img p {
  padding-top: 0.5rem;
  text-align: right;
}
#value .value__environment-img {
  padding-top: 497px;
}
@media screen and (max-width: 767px) {
  #value .value__environment-img {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #value .value__environment-txt {
    max-width: 90%;
    margin: auto;
  }
}
#value .value__environment-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #value .value__environment-txt h2 {
    margin-bottom: 2rem;
  }
  #value .value__environment-txt h2 img {
    max-width: 70%;
  }
}
#value .value__environment-txt p {
  margin-bottom: 6rem;
  font-size: clamp(1rem, 0.859rem + 0.601vw, 1.4rem);
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  #value .value__environment-txt p {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #value .value__environment-txt img {
    max-width: 90%;
    margin-left: auto;
  }
}
#value .value__environment-txt span {
  display: block;
  padding-top: 0.5rem;
  text-align: right;
}
#value .value__zeh {
  background-image: url(../../assets/img/contents/value/zeh_bg.webp);
  background-repeat: no-repeat;
  background-size: 60% 2504px;
  background-position: bottom 200px left 0;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #value .value__zeh {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #value .value__zeh .inner {
    max-width: 100%;
  }
}
#value .value__zeh .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #value .value__zeh .row {
    grid-template-columns: 1fr;
  }
}
#value .value__zeh .row:nth-of-type(2) {
  margin-bottom: 200px;
}
#value .value__zeh-txt {
  padding-top: 110px;
}
#value .value__zeh-txt h2 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #value .value__zeh-txt h2 {
    max-width: 90%;
    margin: auto;
    margin-bottom: 2rem;
  }
  #value .value__zeh-txt h2 img {
    max-width: 60%;
  }
}
#value .value__zeh-txt p {
  margin-bottom: 3rem;
  font-size: clamp(1rem, 0.859rem + 0.601vw, 1.4rem);
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  #value .value__zeh-txt p {
    max-width: 90%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
#value .value__zeh-txt .btn {
  max-width: 90%;
}
#value .value__zeh-txt .btn a img {
  max-width: 80%;
}
#value .value__zeh-img {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #value .value__zeh-img {
    max-width: 90%;
    margin-right: auto;
  }
}
#value .value__zeh-img p {
  text-align: right;
  padding-top: 615px;
}
#value .value__zeh-img img {
  position: absolute;
  width: 738px;
  max-width: inherit;
  height: auto;
  top: 0;
  right: -140px;
}
#value .value__zeh-img--item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #value .value__zeh-img--item {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #value .value__zeh-img--item:nth-of-type(1) {
    margin-left: auto;
  }
}
#value .value__zeh-img--item:nth-of-type(1) img {
  width: 90%;
}
#value .value__zeh-img--item:nth-of-type(1) p {
  text-align: right;
  max-width: 90%;
  margin-top: 0.5rem;
}
#value .value__zeh-img--item:nth-of-type(2) {
  padding-top: 240px;
}
@media screen and (max-width: 767px) {
  #value .value__zeh-img--item:nth-of-type(2) {
    margin-right: auto;
    text-align: right;
  }
}
#value .value__zeh-img--item:nth-of-type(2) img {
  margin-left: auto;
}
#value .value__zeh-img--item:nth-of-type(2) p {
  text-align: right;
  margin-top: 0.5rem;
}
#value .value__solar h2 {
  background-color: #fff;
  line-height: 1rem;
  padding: 0.5rem;
  color: var(--dark-color);
  max-width: 180px;
  text-align: center;
  margin-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  #value .value__solar h2 {
    margin-bottom: 4rem;
  }
}
#value .value__solar .row {
  margin-bottom: 40px;
}
#value .value__solar-img-item {
  width: 100%;
  position: relative;
}
#value .value__solar-img-item p {
  margin-top: 0.5rem;
  text-align: right;
}
#value .value__solar-img-item:nth-of-type(1) p {
  margin-top: 3rem;
  padding-top: 550px;
}
@media screen and (max-width: 767px) {
  #value .value__solar-img-item:nth-of-type(1) p {
    margin-top: 1rem;
    text-align: left;
    padding-left: 10%;
  }
}
#value .value__solar-img-item:nth-of-type(1) > img {
  position: absolute;
  top: 0;
  left: -178px;
  max-width: inherit;
  width: 760px;
}
@media screen and (max-width: 767px) {
  #value .value__solar-img-item:nth-of-type(1) > img {
    max-width: 90%;
    margin-left: auto;
    transform: scale(1) translateX(0px);
  }
}
#value .value__solar-img-item:nth-of-type(2) {
  margin-top: 410px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #value .value__solar-img-item:nth-of-type(2) {
    padding-top: 0;
  }
}
#value .value__solar-img-item:nth-of-type(2) img {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #value .value__solar-img-item:nth-of-type(2) img {
    max-width: 90%;
    margin-right: auto;
  }
}
#value .value__solar-img-item:nth-of-type(2) p {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #value .value__solar-img-item:nth-of-type(2) p {
    padding-right: 10%;
  }
}
#value .value__green h2 {
  background-color: #fff;
  line-height: 1rem;
  padding: 0.5rem;
  color: var(--dark-color);
  max-width: 180px;
  text-align: center;
  margin-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
#value .value__green-img-item p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  #value .value__green-img-item:nth-of-type(1) {
    max-width: 90%;
    margin-left: auto;
  }
}
#value .value__green-img-item:nth-of-type(1) p {
  text-align: right;
}
#value .value__green-img-item:nth-of-type(2) {
  margin-top: 180px;
  transform: scale(1.2) translateX(75px);
}
@media screen and (max-width: 767px) {
  #value .value__green-img-item:nth-of-type(2) {
    padding-top: 0px;
    transform: scale(1) translateX(0);
    max-width: 90%;
    margin-right: auto;
  }
}
#value .value__green-img-item:nth-of-type(2) .batch img {
  transform: scale(0.85);
}
#value .value__green-img-item:nth-of-type(2) p {
  text-align: right;
  max-width: 80%;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #value .value__green-img-item:nth-of-type(2) p {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  #contact {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #contact .content_title {
    margin-bottom: 3rem;
  }
  #contact .content_title .inner h1 span img {
    max-width: 40%;
  }
}
#contact .contact__tel {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #contact .contact__tel {
    margin-bottom: 3rem;
  }
}
#contact .contact__tel h2 {
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#contact .contact__tel p {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #contact .contact__tel p {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact__tel p a {
    display: block;
    margin-bottom: 1rem;
  }
}
#contact .contact__tel.t2 {
  margin-top: 6rem;
}
#contact .contact__tel-note {
  margin-top: 1.5rem;
}
#contact .contact__mail h2 {
  background-color: #333;
  line-height: 1;
  padding: 1rem;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#contact .contact__mail .inner > dl {
  background-color: #fff;
}
#contact .contact__mail .inner > dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  padding-right: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail .inner > dl > div {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 10px;
  }
}
#contact .contact__mail .inner > dl > div > p {
  position: absolute;
  color: red;
  bottom: 1rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail .inner > dl > div > p {
    position: static;
    padding: 0.5rem 1rem;
  }
}
#contact .contact__mail .inner > dl > div dt {
  width: 100%;
  background-color: var(--accent-color);
  padding: 1rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
#contact .contact__mail .inner > dl > div dd {
  width: 100%;
  padding: 1rem;
  padding-left: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail .inner > dl > div dd {
    padding: 0.5rem 1rem;
  }
}
#contact .contact__mail .inner > dl > div dd > dl > div {
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail .inner > dl > div dd > dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#contact .contact__mail .inner > dl > div dd > dl > div dt {
  padding: 0;
  background-color: #fff;
}
#contact .contact__mail .inner > dl > div dd > dl > div dd {
  padding: 0;
}
#contact .contact__mail .inner input,
#contact .contact__mail .inner textarea,
#contact .contact__mail .inner select {
  background-color: #efefef;
  border: none;
  padding: 1rem;
}
#contact .contact__mail .inner input[type=text],
#contact .contact__mail .inner input[type=tel],
#contact .contact__mail .inner input[type=email] {
  width: 100%;
  box-sizing: border-box;
}
#contact .contact__mail .inner input[type=text].w20,
#contact .contact__mail .inner input[type=tel].w20,
#contact .contact__mail .inner input[type=email].w20 {
  width: 20%;
}
#contact .contact__mail .inner input[type=text].w25,
#contact .contact__mail .inner input[type=tel].w25,
#contact .contact__mail .inner input[type=email].w25 {
  width: 25%;
}
#contact .contact__mail .inner input[type=text].w30,
#contact .contact__mail .inner input[type=tel].w30,
#contact .contact__mail .inner input[type=email].w30 {
  width: 30%;
}
#contact .contact__mail .inner input[type=text].w50,
#contact .contact__mail .inner input[type=tel].w50,
#contact .contact__mail .inner input[type=email].w50 {
  width: 50%;
}
#contact .contact__mail .inner input[type=text].w70,
#contact .contact__mail .inner input[type=tel].w70,
#contact .contact__mail .inner input[type=email].w70 {
  width: 70%;
}
#contact .contact__mail .inner input[type=radio] {
  vertical-align: top;
}
#contact .contact__mail .inner > span {
  padding-left: 0px !important;
  position: relative;
}
#contact .contact__mail .inner > span select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px;
}
#contact .contact__mail .inner > span::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
#contact .contact__mail-name dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#contact .contact__mail-name dd dl {
  width: 100%;
}
#contact .contact__mail-name dd dl div {
  grid-template-columns: 30% 1fr !important;
}
#contact .contact__mail-name dd dl div dt,
#contact .contact__mail-name dd dl div dd {
  width: 100%;
}
#contact .contact__mail-name dd dl div dd {
  grid-template-columns: 1fr;
}
#contact .contact__mail-address dd dl div {
  margin-bottom: 0.7rem !important;
}
#contact .contact__mail-address dd dl div dd p {
  font-size: 0.9rem;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail-address dd dl div dd p {
    font-size: 0.8rem;
  }
}
#contact .contact__mail-address dd dl div dd a {
  background-color: #333;
  line-height: 1;
  padding: 0.7rem 10px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail-address dd dl div dd a {
    padding: 0.4rem 10px;
  }
}
#contact .contact__mail-message textarea {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
}
#contact .contact__mail-check {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #contact .contact__mail-check {
    margin-top: 2rem;
  }
}
#contact .contact__mail-check input[type=checkbox] {
  width: 25px;
  height: 25px;
}
#contact .contact__mail-check a {
  color: var(--accent-color);
  text-decoration: underline;
  display: inline-block;
  margin-left: 1rem;
}
#contact .contact__mail-btn {
  text-align: center;
  position: relative;
  max-width: 340px;
  margin: auto;
  margin-top: 2rem;
}
#contact .contact__mail-btn input[type=submit] {
  line-height: 1;
  padding: 1.5rem 1rem;
  background-color: var(--accent-color);
  width: 100%;
  max-width: 340px;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
}
#contact .contact__mail-btn::after {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--stxt-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  position: absolute;
  background-size: 80%;
  right: 5%;
  top: 20%;
}

@media screen and (max-width: 767px) {
  #request_info {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #request_info .content_title {
    margin-bottom: 4rem;
  }
  #request_info .content_title .inner h1 span img {
    max-width: 40%;
  }
}
#request_info .request_info__tel {
  margin-bottom: 4rem;
}
#request_info .request_info__tel h2 {
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#request_info .request_info__tel p {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__tel p {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #request_info .request_info__tel p a {
    display: block;
    margin-bottom: 1rem;
  }
}
#request_info .request_info__tel.t2 {
  margin-top: 6rem;
}
#request_info .request_info__tel-note {
  margin-top: 1.5rem;
}
#request_info .request_info__mail h2 {
  background-color: #333;
  line-height: 1;
  padding: 1rem;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#request_info .request_info__mail .inner > dl {
  background-color: #fff;
}
#request_info .request_info__mail .inner > dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  padding-right: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail .inner > dl > div {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 10px;
  }
}
#request_info .request_info__mail .inner > dl > div > p {
  position: absolute;
  color: red;
  bottom: 1rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail .inner > dl > div > p {
    position: static;
    padding: 0.5rem 1rem;
  }
}
#request_info .request_info__mail .inner > dl > div dt {
  width: 100%;
  background-color: var(--accent-color);
  padding: 1rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
#request_info .request_info__mail .inner > dl > div dd {
  width: 100%;
  padding: 1rem;
  padding-left: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail .inner > dl > div dd {
    padding: 0.5rem 1rem;
  }
}
#request_info .request_info__mail .inner > dl > div dd > dl > div {
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail .inner > dl > div dd > dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#request_info .request_info__mail .inner > dl > div dd > dl > div dt {
  padding: 0;
  background-color: #fff;
}
#request_info .request_info__mail .inner > dl > div dd > dl > div dd {
  padding: 0;
}
#request_info .request_info__mail .inner input,
#request_info .request_info__mail .inner textarea,
#request_info .request_info__mail .inner select {
  background-color: #efefef;
  border: none;
  padding: 1rem;
}
#request_info .request_info__mail .inner input[type=text],
#request_info .request_info__mail .inner input[type=tel],
#request_info .request_info__mail .inner input[type=email] {
  width: 100%;
  box-sizing: border-box;
}
#request_info .request_info__mail .inner input[type=text].w20,
#request_info .request_info__mail .inner input[type=tel].w20,
#request_info .request_info__mail .inner input[type=email].w20 {
  width: 20%;
}
#request_info .request_info__mail .inner input[type=text].w25,
#request_info .request_info__mail .inner input[type=tel].w25,
#request_info .request_info__mail .inner input[type=email].w25 {
  width: 25%;
}
#request_info .request_info__mail .inner input[type=text].w30,
#request_info .request_info__mail .inner input[type=tel].w30,
#request_info .request_info__mail .inner input[type=email].w30 {
  width: 30%;
}
#request_info .request_info__mail .inner input[type=text].w50,
#request_info .request_info__mail .inner input[type=tel].w50,
#request_info .request_info__mail .inner input[type=email].w50 {
  width: 50%;
}
#request_info .request_info__mail .inner input[type=text].w70,
#request_info .request_info__mail .inner input[type=tel].w70,
#request_info .request_info__mail .inner input[type=email].w70 {
  width: 70%;
}
#request_info .request_info__mail .inner input[type=radio] {
  vertical-align: top;
}
#request_info .request_info__mail .inner > span {
  padding-left: 0px !important;
  position: relative;
}
#request_info .request_info__mail .inner > span select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px;
}
#request_info .request_info__mail .inner > span::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
#request_info .request_info__mail-name dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#request_info .request_info__mail-name dd dl {
  width: 100%;
}
#request_info .request_info__mail-name dd dl div {
  grid-template-columns: 30% 1fr !important;
}
#request_info .request_info__mail-name dd dl div dt,
#request_info .request_info__mail-name dd dl div dd {
  width: 100%;
}
#request_info .request_info__mail-name dd dl div dd {
  grid-template-columns: 1fr;
}
#request_info .request_info__mail-address dd dl div {
  margin-bottom: 0.7rem !important;
}
#request_info .request_info__mail-address dd dl div dd p {
  font-size: 0.9rem;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail-address dd dl div dd p {
    font-size: 0.8rem;
  }
}
#request_info .request_info__mail-address dd dl div dd a {
  background-color: #333;
  line-height: 1;
  padding: 0.7rem 10px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail-address dd dl div dd a {
    padding: 0.4rem 10px;
  }
}
#request_info .request_info__mail-message textarea {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
}
#request_info .request_info__mail-check {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #request_info .request_info__mail-check {
    margin-top: 2rem;
  }
}
#request_info .request_info__mail-check input[type=checkbox] {
  width: 25px;
  height: 25px;
}
#request_info .request_info__mail-check a {
  color: var(--accent-color);
  text-decoration: underline;
  display: inline-block;
  margin-left: 1rem;
}
#request_info .request_info__mail-btn {
  text-align: center;
  position: relative;
  max-width: 340px;
  margin: auto;
  margin-top: 2rem;
}
#request_info .request_info__mail-btn input[type=submit] {
  line-height: 1;
  padding: 1.5rem 1rem;
  background-color: var(--accent-color);
  width: 100%;
  max-width: 340px;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
}
#request_info .request_info__mail-btn::after {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--stxt-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  position: absolute;
  background-size: 80%;
  right: 5%;
  top: 20%;
}

#club {
  font-family: "Noto Serif JP", sans-serif;
}
#club .club__bnr {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #club .club__bnr {
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #club .club__info {
    margin-top: 4rem;
  }
}
#club .club__info h2 {
  font-size: clamp(1.2rem, 0.918rem + 1.202vw, 2rem);
  font-weight: normal;
  margin-bottom: 4rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  #club .club__info h2 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
#club .club__info h3 {
  text-align: center;
  margin-bottom: 4rem;
  font-weight: normal;
  font-size: clamp(1.1rem, 0.924rem + 0.751vw, 1.6rem);
  letter-spacing: 10px;
}
@media screen and (max-width: 767px) {
  #club .club__info h3 {
    margin-bottom: 2rem;
  }
}
#club .club__info h3 span {
  background-color: var(--accent-color);
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
  letter-spacing: 2px;
  font-size: 1rem;
}
#club .club__info p {
  margin-bottom: 4rem;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  #club .club__info p {
    font-size: 0.8rem;
    margin-bottom: 2rem;
  }
}
#club .club__info-btn a {
  display: block;
  width: 100%;
}
#club .club__info-btn--app {
  background-color: var(--accent-color);
  padding: 3rem;
  padding-right: 5rem;
  position: relative;
  font-size: clamp(1.1rem, 0.924rem + 0.751vw, 1.6rem);
  text-align: center;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  #club .club__info-btn--app {
    padding: 2rem 1rem;
    padding-right: 3rem;
    font-size: 1rem;
  }
}
#club .club__info-btn--app::after {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--stxt-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  background-size: 70%;
  position: absolute;
  right: 5%;
  top: 30%;
}
@media screen and (max-width: 767px) {
  #club .club__info-btn--app::after {
    width: 40px;
    height: 40px;
  }
}
#club .club__info-btn--update {
  padding: 3rem;
  padding-right: 5rem;
  background-color: #4a4e5c;
  position: relative;
  font-size: clamp(1.1rem, 0.924rem + 0.751vw, 1.6rem);
  text-align: center;
  letter-spacing: 5px;
}
#club .club__info-btn--update::after {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--accent-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  background-size: 70%;
  position: absolute;
  right: 5%;
  top: 30%;
}
@media screen and (max-width: 767px) {
  #club .club__info-btn--update::after {
    width: 40px;
    height: 40px;
  }
}
#club .club__info-btn--cancell {
  padding: 3rem;
  padding-right: 5rem;
  text-align: center;
  border: 2px solid #4a4e5c;
  position: relative;
  font-size: clamp(1.1rem, 0.924rem + 0.751vw, 1.6rem);
  text-align: center;
  letter-spacing: 5px;
}
#club .club__info-btn--cancell::after {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--accent-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  background-size: 70%;
  position: absolute;
  right: 5%;
  top: 30%;
}
@media screen and (max-width: 767px) {
  #club .club__info-btn--cancell::after {
    width: 40px;
    height: 40px;
  }
}
#club .club__info-btn .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: flex-start;
  align-items: stretch;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #club .club__info-btn .row {
    gap: 20px;
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
#club .club__tel {
  margin-bottom: 4rem;
}
#club .club__tel h2 {
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#club .club__tel p {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #club .club__tel p {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #club .club__tel p a {
    display: block;
    margin-bottom: 1rem;
  }
}
#club .club__tel.t2 {
  margin-top: 6rem;
}
#club .club__tel-note {
  margin-top: 1.5rem;
}
#club .club__step {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #club .club__step {
    margin-bottom: 50px;
    margin-top: 70px;
  }
}
#club .club__step::after {
  content: "";
  display: block;
  width: 100%;
  height: 50;
  border-top: 1px solid #fff;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #club .club__step::after {
    top: 20px;
  }
}
#club .club__step .inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  #club .club__step .inner {
    gap: 0px;
  }
}
#club .club__step-item {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
#club .club__step-item span {
  border: 1px solid #fff;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-color);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #club .club__step-item span {
    width: 35px;
    height: 35px;
  }
}
#club .club__step-item span.current {
  background-color: #fff;
  color: var(--dark-color);
}
#club .club__step-item p {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  #club .club__step-item p {
    margin-top: 0.5rem;
    font-size: 0.6rem;
  }
}
#club .club__mail h2 {
  background-color: #333;
  line-height: 1;
  padding: 1rem;
  color: #fff;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}
#club .club__mail .inner > dl {
  background-color: #fff;
}
#club .club__mail .inner > dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  padding-right: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #club .club__mail .inner > dl > div {
    grid-template-columns: 1fr;
    padding-right: 0;
    gap: 10px;
  }
}
#club .club__mail .inner > dl > div > p {
  position: absolute;
  color: red;
  bottom: 1rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  #club .club__mail .inner > dl > div > p {
    position: static;
    padding: 0.5rem 1rem;
  }
}
#club .club__mail .inner > dl > div dt {
  width: 100%;
  background-color: var(--accent-color);
  padding: 1rem 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
#club .club__mail .inner > dl > div dd {
  width: 100%;
  padding: 1rem;
  padding-left: 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  #club .club__mail .inner > dl > div dd {
    padding: 0.5rem 1rem;
  }
}
#club .club__mail .inner > dl > div dd > dl > div {
  display: grid;
  grid-template-columns: 15% 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #club .club__mail .inner > dl > div dd > dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#club .club__mail .inner > dl > div dd > dl > div dt {
  padding: 0;
  background-color: #fff;
}
#club .club__mail .inner > dl > div dd > dl > div dd {
  padding: 0;
}
#club .club__mail .inner input,
#club .club__mail .inner textarea,
#club .club__mail .inner select {
  background-color: #efefef;
  border: none;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  #club .club__mail .inner input,
  #club .club__mail .inner textarea,
  #club .club__mail .inner select {
    padding: 0.5rem;
  }
}
#club .club__mail .inner input[type=text],
#club .club__mail .inner input[type=tel],
#club .club__mail .inner input[type=email] {
  width: 100%;
  box-sizing: border-box;
}
#club .club__mail .inner input[type=text].w20,
#club .club__mail .inner input[type=tel].w20,
#club .club__mail .inner input[type=email].w20 {
  width: 20%;
}
#club .club__mail .inner input[type=text].w25,
#club .club__mail .inner input[type=tel].w25,
#club .club__mail .inner input[type=email].w25 {
  width: 25%;
}
#club .club__mail .inner input[type=text].w30,
#club .club__mail .inner input[type=tel].w30,
#club .club__mail .inner input[type=email].w30 {
  width: 30%;
}
#club .club__mail .inner input[type=text].w50,
#club .club__mail .inner input[type=tel].w50,
#club .club__mail .inner input[type=email].w50 {
  width: 50%;
}
#club .club__mail .inner input[type=text].w70,
#club .club__mail .inner input[type=tel].w70,
#club .club__mail .inner input[type=email].w70 {
  width: 70%;
}
#club .club__mail .inner input[type=radio] {
  vertical-align: top;
}
#club .club__mail .inner select.w20 {
  width: 20%;
}
#club .club__mail .inner select.w25 {
  width: 25%;
}
#club .club__mail .inner select.w30 {
  width: 30%;
}
#club .club__mail .inner select.w40 {
  width: 40%;
}
#club .club__mail .inner select.w50 {
  width: 50%;
}
#club .club__mail .inner select.w70 {
  width: 70%;
}
#club .club__mail .inner > span {
  padding-left: 0px !important;
  position: relative;
}
#club .club__mail .inner > span select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 50px;
}
#club .club__mail .inner > span::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 45%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
#club .club__mail-name dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#club .club__mail-name dd dl {
  width: 100%;
}
#club .club__mail-name dd dl div {
  grid-template-columns: 30% 1fr !important;
}
#club .club__mail-name dd dl div dt,
#club .club__mail-name dd dl div dd {
  width: 100%;
}
#club .club__mail-name dd dl div dd {
  grid-template-columns: 1fr;
}
#club .club__mail-address dd dl div {
  margin-bottom: 0.7rem !important;
}
#club .club__mail-address dd dl div dd p {
  font-size: 0.9rem;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #club .club__mail-address dd dl div dd p {
    font-size: 0.8rem;
  }
}
#club .club__mail-address dd dl div dd a {
  background-color: #333;
  line-height: 1;
  padding: 0.7rem 10px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  #club .club__mail-address dd dl div dd a {
    padding: 0.4rem 10px;
  }
}
#club .club__mail-gender dd {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#club .club__mail-preferred dd div {
  margin-bottom: 0.5rem;
}
#club .club__mail-area dd div {
  margin-bottom: 0.5rem;
}
#club .club__mail-message textarea {
  width: 100%;
  height: 200px;
  box-sizing: border-box;
}
#club .club__mail-check {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #club .club__mail-check {
    margin-top: 2rem;
  }
}
#club .club__mail-check input[type=checkbox] {
  width: 25px;
  height: 25px;
}
#club .club__mail-check a {
  color: var(--accent-color);
  text-decoration: underline;
  display: inline-block;
  margin-left: 1rem;
}
#club .club__mail-btn {
  text-align: center;
  position: relative;
  max-width: 340px;
  margin: auto;
  margin-top: 2rem;
}
#club .club__mail-btn input[type=submit] {
  line-height: 1;
  padding: 1.5rem 1rem;
  background-color: var(--accent-color);
  width: 100%;
  max-width: 340px;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-family: "Noto Serif JP", sans-serif;
  color: #fff;
}
#club .club__mail-btn::after {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  content: "";
  display: block;
  background-color: var(--stxt-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/common/arrow_wh.webp);
  position: absolute;
  background-size: 80%;
  right: 5%;
  top: 20%;
}

#design {
  font-family: "Noto Serif JP", sans-serif;
  overflow: hidden;
}
#design .content_title .inner h1 span img {
  max-width: 60%;
}
#design .batch_common {
  position: relative;
}
#design .batch {
  position: absolute;
  display: block;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  #design .batch {
    width: 40px;
    height: 40px;
  }
}
#design .batch.batch_seismic {
  background-image: url(../../assets/img/contents/designe/batch_seismic.webp);
}
#design .batch.batch_awards {
  background-image: url(../../assets/img/contents/designe/batch_awards.webp);
  height: 125px;
}
#design .batch.sd {
  transform: scale(0.85) translateX(0);
}
#design .design__large {
  background-image: url(../../assets/img/contents/design/large_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 1182px;
  background-position: bottom 300px left 0;
  padding-top: 100px;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #design .design__large {
    padding-top: 0px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  #design .design__large .inner {
    max-width: 100%;
  }
}
#design .design__large .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: stretch;
  position: relative;
  height: 1000px;
}
@media screen and (max-width: 767px) {
  #design .design__large .inner .row {
    grid-template-columns: 1fr;
    height: auto;
    gap: 50px;
    margin-bottom: 2rem;
  }
}
#design .design__large-txt {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  #design .design__large-txt {
    position: static;
    max-width: 90%;
    margin: auto;
  }
}
#design .design__large-txt h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #design .design__large-txt h2 {
    margin-bottom: 2rem;
  }
  #design .design__large-txt h2 img {
    max-width: 60%;
  }
}
#design .design__large-txt p {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-weight: normal;
  line-height: 2.4;
  letter-spacing: 5px;
}
#design .design__large-img {
  width: 100%;
  position: relative;
  padding-top: 982px;
}
@media screen and (max-width: 767px) {
  #design .design__large-img {
    position: static;
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__large-img img {
  max-width: initial !important;
  height: auto;
  position: absolute;
  top: 0;
  left: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
#design .design__large-img p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__large-img_other {
  height: 1000px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #design .design__large-img_other {
    height: auto;
  }
}
#design .design__large-img_other span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #design .design__large-img_other span {
    display: block;
    position: static;
    margin-bottom: 1rem;
  }
}
#design .design__large-img_other span:nth-of-type(1) {
  top: -200px;
  left: -200px;
}
@media screen and (max-width: 767px) {
  #design .design__large-img_other span:nth-of-type(1) {
    max-width: 90%;
  }
}
#design .design__large-img_other span:nth-of-type(1) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__large-img_other span:nth-of-type(2) {
  top: 200px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #design .design__large-img_other span:nth-of-type(2) {
    max-width: 80%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
#design .design__large-img_other span:nth-of-type(2) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__large-img_other span:nth-of-type(3) {
  top: 400px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__large-img_other span:nth-of-type(3) {
    max-width: 90%;
  }
}
#design .design__large-img_other span:nth-of-type(3) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__achievements {
  background-image: url(../../assets/img/contents/design/achievements_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 680px;
  background-position: bottom 380px right 0;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-bottom: 320px;
}
@media screen and (max-width: 767px) {
  #design .design__achievements {
    margin-top: 100px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #design .design__achievements .inner {
    max-width: 100%;
  }
}
#design .design__achievements .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  #design .design__achievements .inner .row {
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
}
#design .design__achievements-txt {
  padding-top: 0px;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-txt {
    order: 1;
    max-width: 90%;
    margin: auto;
  }
}
#design .design__achievements-txt h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-txt h2 {
    margin-bottom: 2rem;
  }
  #design .design__achievements-txt h2 img {
    max-width: 70%;
  }
}
#design .design__achievements-txt p {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 2.4;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-txt .btn img {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  #design .design__achievements-img {
    order: 2;
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__achievements-img img {
  transform: scale(1.3) translateX(0px);
  transform-origin: bottom right;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-img img {
    transform: scale(1) translateX(0px);
  }
}
#design .design__achievements-img p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__achievements-other {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-other {
    height: auto;
  }
}
#design .design__achievements-other .inner {
  position: relative;
}
#design .design__achievements-other span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-other span {
    position: static;
    display: block;
    margin-bottom: 3rem;
  }
}
#design .design__achievements-other span:nth-of-type(1) {
  top: -50px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-other span:nth-of-type(1) {
    max-width: 80%;
    margin-left: auto;
  }
}
#design .design__achievements-other span:nth-of-type(1) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__achievements-other span:nth-of-type(2) {
  top: 250px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__achievements-other span:nth-of-type(2) {
    max-width: 90%;
    margin: auto;
  }
}
#design .design__achievements-other span:nth-of-type(2) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__rejion {
  background-image: url(../../assets/img/contents/design/rejion_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 680px;
  background-position: bottom 300px left 0;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #design .design__rejion {
    max-width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  #design .design__rejion .inner {
    max-width: 100%;
  }
}
#design .design__rejion .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  #design .design__rejion .inner .row {
    grid-template-columns: 1fr;
  }
}
#design .design__rejion-txt {
  padding-top: 0px;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-txt {
    max-width: 90%;
    margin: auto;
  }
}
#design .design__rejion-txt h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-txt h2 {
    margin-bottom: 2rem;
  }
  #design .design__rejion-txt h2 img {
    max-width: 70%;
  }
}
#design .design__rejion-txt p {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  margin-bottom: 2rem;
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-txt .btn a img {
    max-width: 60%;
  }
}
#design .design__rejion-img img {
  transform: scale(1.3) translateX(0px);
  transform-origin: bottom left;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-img img {
    transform: scale(1) translateX(0px);
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__rejion-img p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__rejion-other {
  width: 100%;
  height: 600px;
  margin-top: 100px;
}
#design .design__rejion-other .inner {
  position: relative;
}
#design .design__rejion-other span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-other span {
    display: block;
    position: static;
    margin-bottom: 3rem;
  }
}
#design .design__rejion-other span:nth-of-type(1) {
  top: 0px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-other span:nth-of-type(1) {
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__rejion-other span:nth-of-type(1) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__rejion-other span:nth-of-type(2) {
  top: 100px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #design .design__rejion-other span:nth-of-type(2) {
    max-width: 90%;
    margin: auto;
  }
}
#design .design__rejion-other span:nth-of-type(2) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__total {
  background-image: url(../../assets/img/contents/design/total_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 980px;
  background-position: top 570px right 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #design .design__total .inner {
    max-width: 100%;
  }
}
#design .design__total .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: stretch;
  position: relative;
  height: 1000px;
}
@media screen and (max-width: 767px) {
  #design .design__total .inner .row {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 4rem;
  }
}
#design .design__total-txt {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 300px;
}
@media screen and (max-width: 767px) {
  #design .design__total-txt {
    position: static;
    padding-top: 0;
    order: 1;
    max-width: 90%;
    margin: auto;
  }
}
#design .design__total-txt h2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  #design .design__total-txt h2 {
    margin-bottom: 2rem;
  }
  #design .design__total-txt h2 img {
    max-width: 50%;
  }
}
#design .design__total-txt p {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  line-height: 2.4;
}
#design .design__total-img {
  position: absolute;
  top: 0;
  left: -140px;
}
@media screen and (max-width: 767px) {
  #design .design__total-img {
    position: static;
    order: 2;
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__total-img p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__total-other {
  width: 100%;
  height: 800px;
}
#design .design__total-other .inner {
  position: relative;
}
#design .design__total-other span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #design .design__total-other span {
    position: static;
    display: block;
    margin-bottom: 3rem;
  }
}
#design .design__total-other span:nth-of-type(1) {
  top: -200px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #design .design__total-other span:nth-of-type(1) {
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__total-other span:nth-of-type(1) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__total-other span:nth-of-type(2) {
  top: 150px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__total-other span:nth-of-type(2) {
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__total-other span:nth-of-type(2) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__earthquake {
  background-image: url(../../assets/img/contents/design/earthquake_bg.webp);
  background-repeat: no-repeat;
  background-size: auto 2000px;
  background-position: top 570px left 0;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake .inner {
    max-width: 100%;
  }
}
#design .design__earthquake .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: stretch;
  position: relative;
  height: 1000px;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake .inner .row {
    grid-template-columns: 1fr;
    height: auto;
    margin-bottom: 4rem;
    gap: 40px;
  }
}
#design .design__earthquake-txt {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 300px;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-txt {
    width: 100%;
    position: static;
    padding-top: 0;
    max-width: 90%;
    margin: auto;
  }
}
#design .design__earthquake-txt h2 {
  margin-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-txt h2 {
    margin-bottom: 2rem;
  }
  #design .design__earthquake-txt h2 img {
    max-width: 60%;
  }
}
#design .design__earthquake-txt p {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#design .design__earthquake-img {
  position: absolute;
  top: 0;
  right: -140px;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-img {
    position: static;
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__earthquake-img p {
  text-align: right;
  padding-top: 0.5rem;
  max-width: 81%;
}
#design .design__earthquake-case {
  position: relative;
}
#design .design__earthquake-case h2 {
  background-color: #fff;
  line-height: 1;
  padding: 10px 30px;
  max-width: 260px;
  color: #1c184e;
  text-align: center;
  position: absolute;
  top: -300px;
  left: 0;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case h2 {
    position: static;
    margin-bottom: 2rem;
  }
}
#design .design__earthquake-case span {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case span {
    position: static;
    display: block;
    margin-bottom: 3rem;
  }
}
#design .design__earthquake-case span p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__earthquake-case.t1 {
  height: 1000px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t1 {
    height: auto;
  }
}
#design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(1) {
  top: -200px;
  left: -150px;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(1) {
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(2) {
  top: 200px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(2) {
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(2) p {
  text-align: right;
  padding-top: 0.5rem;
}
#design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(3) {
  top: 500px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t1 .design__earthquake-case--img span:nth-of-type(3) {
    max-width: 90%;
    margin-right: auto;
  }
}
#design .design__earthquake-case.t2 {
  height: 960px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t2 {
    height: auto;
  }
}
#design .design__earthquake-case.t2 h2 {
  position: static;
}
#design .design__earthquake-case.t2 .design__earthquake-case--img span:nth-of-type(1) {
  top: 100px;
  right: -150px;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t2 .design__earthquake-case--img span:nth-of-type(1) {
    max-width: 90%;
    margin-left: auto;
  }
}
#design .design__earthquake-case.t2 .design__earthquake-case--img span:nth-of-type(1) p {
  text-align: right;
  padding-top: 0.5rem;
  max-width: 80%;
}
#design .design__earthquake-case.t2 .design__earthquake-case--img span:nth-of-type(2) {
  top: 300px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #design .design__earthquake-case.t2 .design__earthquake-case--img span:nth-of-type(2) {
    max-width: 90%;
    margin-right: auto;
  }
}

#new_arrivals {
  padding-bottom: 100px;
}
#new_arrivals .new_arrivals__list {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#new_arrivals .new_arrivals__list__title {
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list__title {
    margin-bottom: 4rem;
  }
}
#new_arrivals .new_arrivals__list__title h2 {
  text-align: center;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  letter-spacing: 5px;
}
#new_arrivals .new_arrivals__list__title h2 img {
  margin: auto;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list__title h2 img {
    max-width: 80%;
    margin-bottom: 1rem;
  }
}
#new_arrivals .new_arrivals__list-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#new_arrivals .new_arrivals__list-col {
  width: 100%;
  background-color: #1c184e;
  padding: 3rem;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list-col {
    padding: 1.5rem;
  }
}
#new_arrivals .new_arrivals__list-col-new_icon {
  position: absolute;
  top: -40px;
  left: -40px;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list-col-new_icon {
    top: -30px;
    left: -10px;
  }
  #new_arrivals .new_arrivals__list-col-new_icon img {
    max-width: 50px;
    height: auto;
  }
}
#new_arrivals .new_arrivals__list-col-title {
  text-align: center;
  margin-bottom: 1rem;
}
#new_arrivals .new_arrivals__list-col-title h3 {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
}
#new_arrivals .new_arrivals__list-col-img img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__list-col-img img {
    height: 50vw;
  }
}
#new_arrivals .new_arrivals__list-col-address {
  margin-top: 1rem;
}
#new_arrivals .new_arrivals__list-col-btn {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
#new_arrivals .new_arrivals__list-col-btn a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  line-height: 1;
}
#new_arrivals .new_arrivals__list-col-btn a:nth-of-type(1) {
  background-color: #c59965;
}
#new_arrivals .new_arrivals__list-col-btn a:nth-of-type(2) {
  background-color: #ffffff;
  color: #31363b;
}
#new_arrivals .new_arrivals__contact {
  margin-top: 4rem;
}
#new_arrivals .new_arrivals__contact .inner {
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  justify-items: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  #new_arrivals .new_arrivals__contact .inner {
    grid-template-columns: 1fr;
  }
}
#new_arrivals .new_arrivals__contact-item {
  position: relative;
}
#new_arrivals .new_arrivals__contact-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
#new_arrivals .new_arrivals__contact-item:last-child::after {
  display: none;
}
#new_arrivals .new_arrivals__contact-item h2 {
  font-size: clamp(1rem, 0.93rem + 0.3vw, 1.2rem);
  margin-bottom: 1rem;
}
#new_arrivals .new_arrivals__contact-item p.tel {
  margin-bottom: 1.5rem;
}
#new_arrivals .new_arrivals__contact-item p.tel a {
  display: block;
  font-size: clamp(1.2rem, 0.918rem + 1.202vw, 2rem);
  color: var(--accent-color);
}
#new_arrivals .new_arrivals__contact-item p.tel span {
  display: block;
  font-size: clamp(0.6rem, 0.53rem + 0.3vw, 0.8rem);
}