@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2rem;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  text-align: center;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-style: normal;
}

.antonio {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* ボタンが拡大縮小を繰り返す（鼓動する）動き*/
.pulse-btn {
  --scale-min: 1;
  --scale-max: 1.08;
  --dur: 1.2s;

  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 0.8em;
  border: 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  animation: pulse var(--dur) ease-in-out infinite;

  &:hover {
    transform: scale(var(--scale-max));
    animation-play-state: paused;
  }

  &:focus-visible {
    outline: 3px solid rgba(45, 108, 223, 0.5);
    outline-offset: 2px;
  }
}

/* prefers-reduced-motion でアニメ無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .pulse-btn {
    animation: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(var(--scale-min));
  }
  50% {
    transform: scale(var(--scale-max));
  }
  100% {
    transform: scale(var(--scale-min));
  }
}
/* ボタンが拡大縮小を繰り返す（鼓動する）動き end*/
.site_nav .nav_wrap {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.site_nav .nav_wrap .nev_flex .header_logo {
  width: 15%;
}

.site_nav .nav_wrap nav {
  font-weight: bold;
}

.site_nav .nav_wrap h1 {
  width: 22%;
  margin: 0 auto;
}

.main_visual {
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.main_visual .wrap {
  max-width: 80vw;
  margin: 0 auto;
}
.main_visual .wrap h2 {
  font-size: 330%;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.main_visual h2 span {
  font-size: 80%;
}

.main_visual h2 {
  font-size: 2rem;
  color: #0d479a;
  text-align: center;
}

.about {
  background-color: #0d479a;
}
.about .wrap {
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
}
.about .wrap p {
  width: 47%;
  margin: 0 auto;
  margin-top: -4rem;
}
.about .wrap h3 {
  font-size: 210%;
  color: #fff;
  line-height: 1.5;
}
.about .wrap h3 span {
  font-size: 110%;
}

.about .wrap::before {
  position: absolute;
  content: "";
  top: 20%;
  left: 16%;
  width: 11%;
  height: 71%;
  background-image: url(../img/deco_left.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.about .wrap::after {
  position: absolute;
  content: "";
  top: 20%;
  left: 73%;
  width: 8%;
  height: 55%;
  background-image: url(../img/deco_right.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact .wrap {
  max-width: 60vw;
  padding: 5rem 0;
  margin: 0 auto;
}
.contact .wrap .contact_flex {
  display: flex;
  align-items: center;
  gap: 2em;
  border: #000 solid 1px;
  padding: 2rem;
}
.contact .wrap p {
  flex: 0 1 calc((100% - 2em) / 2);
  box-sizing: border-box;
}

.news {
  background-color: #f2f2f2;
}
.news .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.news .wrap h3 {
  font-size: 400%;
  color: #0d479a;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 3rem;
}
.news .wrap h3 span {
  font-size: 30%;
  display: block;
}
.news .wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news .wrap ul li {
  border-top: #000 solid 1px;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  box-sizing: border-box;
  text-align: left;
}
.news .wrap ul li span {
  font-size: 75%;
  padding-right: 1rem;
  letter-spacing: 0.1rem;
}
.news .wrap ul li:last-child {
  border-bottom: #000 solid 1px;
}

.contents .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 6rem 0;
}
.contents .wrap figure {
  width: 80%;
  margin: 0 auto;
}
.contents .wrap p {
  font-size: 120%;
}
.drop {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease;
}

.drop.active {
  opacity: 1;
  animation: popThenBounce 2s ease forwards, bounceLoop 2s ease 0.8s infinite;
}

/* 出現時のぽよん＋その後揺れ */
@keyframes popThenBounce {
  0% {
    transform: scale(0.6, 0.6);
  } /* 初期サイズ */
  15% {
    transform: scale(1.1, 0.85);
  } /* ぽよんと跳ねる（横を少し小さく） */
  30% {
    transform: scale(0.95, 1.05);
  } /* 跳ね戻り */
  45% {
    transform: scale(1.02, 0.97);
  } /* さらに揺れ */
  60% {
    transform: scale(0.98, 1.03);
  }
  75% {
    transform: scale(1.01, 0.99);
  }
  100% {
    transform: scale(1, 1);
  } /* 最終サイズに落ち着く */
}

/* ループ用の揺れ（横揺れ控えめ） */
@keyframes bounceLoop {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1.02, 0.98);
  } /* 横を小さめに */
  50% {
    transform: scale(0.98, 1.02);
  }
  75% {
    transform: scale(1.01, 0.99);
  }
  100% {
    transform: scale(1, 1);
  }
}

.contents .wrap h3 {
  font-size: 250%;
  color: #0d479a;
  line-height: 1.4;
  margin: 2rem 0;
}
.contents .wrap h3 span {
  font-size: 90%;
}
.contents .place_box {
  padding: 1rem 0;
}
.contents .place_box:nth-child(odd) {
  background-color: #ecf7f8;
}
.contents .place_box:nth-child(even) {
  background-color: transparent;
}
.contents .place_box .wrap {
  max-width: 70vw;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  gap: 2em;
}
.contents .place_box .wrap figure {
  flex: 0 1 calc((100% + 115em) / 2);
  box-sizing: border-box;
}
.contents .place_box .wrap .place_box_con {
  text-align: left;
}
.contents .place_box .wrap .place_box_con h4 {
  font-size: 250%;
  color: #0d479a;
  border-bottom: #0099ff solid 2px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: -3%;
}
.contents .place_box .wrap .place_box_con h4 span {
  font-size: 45%;
  font-weight: bold;
}
.contents .place_box .wrap .place_box_con h5 {
  font-size: 120%;
  color: #0d479a;
  margin-bottom: 1rem;
}
.contents .place_box .wrap .place_box_con p {
  font-size: 100%;
}

.bad {
  background-color: #f2f2f2;
}
.bad .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.bad .wrap h3 {
  font-size: 300%;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.bad .wrap h3 span {
  color: #0d479a;
}
.bad .wrap p {
  margin-bottom: 3rem;
  font-size: 120%;
}

.safe .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding-top: 5rem;
}
.safe .wrap p {
  color: #0d479a;
  font-size: 200%;
  font-weight: bold;
  line-height: 1.3;
  margin: 2rem 0;
}
.safe .wrap div {
  width: 45%;
  margin: 0 auto;
}

.tsuyomi {
  background: #0d479a;
}
.tsuyomi .wrap {
  max-width: 65vw;
  margin: 0 auto;
  padding: 3rem 0;
}
.tsuyomi .wrap h3 {
  color: #fff;
  font-size: 350%;
  line-height: 1.3;
  margin-bottom: 3rem;
}
.tsuyomi .wrap h3 .small {
  font-size: 50%;
}
.tsuyomi .wrap h3 .yellow {
  color: yellow;
}
.tsuyomi .wrap .tsuyomi_box {
  border: #fff solid 1px;
  padding: 2rem;
  display: flex;
  gap: 2em;
  align-items: center;
  margin-bottom: 3rem;
}
.tsuyomi .wrap .tsuyomi_box figure {
  flex: 0 1 calc((100% - 31em) / 2);
  box-sizing: content-box;
}
.tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl {
  text-align: left;
  flex: 1;
}
.tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl h4 {
  color: yellow;
  font-size: 150%;
}
.tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl p {
  color: #fff;
}

.please {
  background-image: url(../img/bg_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.please .wrap {
  padding: 7rem 8rem;
  background-color: rgba(255, 255, 255, 0.57);
  text-align: center;
}
.please .wrap h4 {
  font-size: 400%;
}
.please .wrap p {
  font-size: 130%;
  font-weight: bold;
}

.works {
  background-color: #f2f2f2;
}
.works .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.works .wrap h3 {
  font-size: 400%;
  color: #0d479a;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 3rem;
}
.works .wrap h3 span {
  font-size: 30%;
  display: block;
}
.works .wrap .button {
  width: 50%;
  margin: 0 auto;
}

.nintei .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.nintei .wrap h3 {
  font-size: 150%;
  color: #0d479a;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 3rem;
}

.certificate-section {
  max-width: 60vw;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}

.certificate-section .certificate-title {
  font-size: 150%;
  color: #0d479a;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 3rem;
}

.certificate-section .swiper {
  width: 100%;
  padding-bottom: 30px;
}

.certificate-section .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.certificate-section .swiper .swiper-slide img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain; /* 横幅はみ出さず、縦横比を維持 */
}

.certificate-section .swiper .swiper-button-next,
.certificate-section .swiper .swiper-button-prev {
  color: #1a3a80;
}

.cooling {
  background-color: #f2f2f2;
}
.cooling .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.cooling .wrap h3 {
  font-size: 150%;
  margin-bottom: 2rem;
  border-bottom: #000 solid 1px;
}
.cooling .wrap h3 p {
  font-size: 30%;
}

.form {
  background-color: #0d479a;
}
.form .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.form .wrap h3 {
  font-size: 400%;
  color: #fff;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 3rem;
}
.form .wrap h3 span {
  font-size: 30%;
  display: block;
}
.form .wrap p {
  color: #fff;
}
.form .wrap figure {
  margin: 0 auto;
  border: #fff solid 1px;
  padding: 1.5rem 15rem;
  margin-top: 1rem;
}

.company-info {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
.company-info .wrap {
  max-width: 50vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.company-info .wrap h3 {
  font-size: 400%;
  color: #0d479a;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 3rem;
}
.company-info .wrap h3 span {
  font-size: 30%;
  display: block;
}
.company-info .info-row {
  display: flex;
  border-bottom: 2px solid #0d479a;
  align-items: center;
}
.company-info .info-row:last-child {
  border-bottom: none;
}
.company-info .info-row .info-title {
  flex: 0 0 20%;
  text-align: left;
}
.company-info .info-row .info-data {
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
}

footer {
  padding: 2rem 0;
  border-top: 1px solid #f2f2f2;
}
footer .footer_logo {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
footer p {
  font-size: 60%;
  letter-spacing: 0.1rem;
}

/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
/*タブレットのみ*/
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_pc {
    display: none;
  }
  .site_nav .nav_wrap h1 {
    width: 30%;
  }
  .main_visual .wrap {
    max-width: 90vw;
  }
  .main_visual .wrap h2 {
    font-size: 415%;
  }
  .about .wrap p {
    width: 70%;
  }
  .about .wrap h3 {
    font-size: 290%;
  }
  .about .wrap:after {
    position: absolute;
    content: "";
    top: 28%;
    left: 80%;
    width: 11%;
    height: 55%;
  }
  .about .wrap:before {
    position: absolute;
    content: "";
    top: 25%;
    left: 7%;
    width: 12%;
    height: 71%;
  }
  .contact .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .news .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .news .wrap h3 {
    font-size: 600%;
  }
  .news .wrap ul li span {
    font-size: 150%;
  }
  .news .wrap ul li p {
    font-size: 200%;
  }
  .contents .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .contents .wrap h3 {
    font-size: 380%;
  }
  .contents .wrap p {
    font-size: 200%;
  }
  .contents .place_box .wrap {
    max-width: 90vw;
  }
  .contents .place_box .wrap .place_box_con h4 {
    font-size: 400%;
  }
  .contents .place_box .wrap .place_box_con h5 {
    font-size: 220%;
  }
  .contents .place_box .wrap .place_box_con p {
    font-size: 180%;
  }
  .contents .place_box .wrap figure {
    flex: 0 1 calc((100% + 240em) / 2);
  }
  .bad .wrap {
    max-width: 90vw;
  }
  .bad .wrap h3 {
    font-size: 500%;
  }
  .bad .wrap p {
    font-size: 200%;
  }
  .safe .wrap {
    max-width: 90vw;
    padding-top: 2rem;
  }
  .safe .wrap p {
    font-size: 315%;
  }
  .tsuyomi .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .tsuyomi .wrap h3 {
    font-size: 500%;
  }
  .tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl p {
    font-size: 200%;
  }
  .tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl h4 {
    font-size: 300%;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .please {
    height: 30vh;
  }
  .please .wrap {
    padding: 5rem 8rem;
  }
  .please .wrap h4 {
    font-size: 600%;
  }
  .please .wrap p {
    font-size: 200%;
  }
  .works .wrap {
    max-width: 90vw;
    padding: 3rem;
  }
  .works .wrap h3 {
    font-size: 600%;
  }
  .certificate-section {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .certificate-section .certificate-title {
    font-size: 300%;
  }
  .cooling .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .cooling .wrap h3 {
    font-size: 300%;
  }
  .cooling .wrap p {
    font-size: 200%;
  }
  .form .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .form .wrap h3 {
    font-size: 600%;
  }
  .form .wrap p {
    font-size: 200%;
  }
  .company-info .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .company-info .wrap h3 {
    font-size: 600%;
  }
  .company-info .info-row .info-title {
    font-size: 150%;
  }
  .company-info .info-row .info-data {
    font-size: 150%;
  }
  footer .footer_logo {
    width: 35%;
  }
  footer p {
    font-size: 125%;
  }
}
/*SPのみ*/
@media (max-width: 768px) {
  html,
  body {
    font-size: 4vw;
  }
  .anchor-target {
    scroll-margin-top: 4.5rem;
  }
  .site_nav .nav_wrap h1 {
    width: 50%;
  }
  .main_visual .wrap {
    max-width: 95vw;
  }
  .main_visual h2 span {
    font-size: 65%;
  }
  .main_visual .wrap h2 {
    font-size: 215%;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .main_visual {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .about .wrap {
    max-width: 95vw;
    padding: 1rem 0;
  }
  .about .wrap p {
    width: 95%;
    margin-top: -2rem;
  }
  .about .wrap h3 {
    font-size: 120%;
  }
  .about .wrap::after {
    display: none;
  }
  .about .wrap::before {
    display: none;
  }
  .contact .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .contact .wrap .contact_flex {
    display: block;
    padding: 1rem;
  }
  .contact .wrap p {
    width: 90%;
    margin: 0 auto;
  }
  .news .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .news .wrap ul li {
    display: block;
    text-align: left;
    padding: 0.5rem 0;
  }
  .news .wrap h3 {
    margin-bottom: 2rem;
  }
  .contents .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .contents .wrap figure {
    width: 100%;
  }
  .contents .wrap h3 {
    font-size: 220%;
    margin: 1rem 0;
  }
  .contents .wrap h3 span {
    font-size: 63%;
  }
  .contents .wrap p {
    font-size: 110%;
  }
  .contents .place_box .wrap {
    max-width: 90vw;
    padding: 0rem 0;
    display: block;
  }
  .contents .place_box .wrap .place_box_con h4 {
    margin-top: unset;
  }
  .contents .place_box .wrap .place_box_con h5 {
    font-size: 145%;
    line-height: 1.5;
  }
  .bad .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .bad .wrap h3 {
    font-size: 220%;
    line-height: 1.3;
  }
  .bad .wrap p {
    margin-bottom: 1rem;
    font-size: 110%;
  }
  .safe .wrap {
    max-width: 90vw;
    margin: 0 auto;
    padding-top: 1rem;
  }
  .safe .wrap p {
    font-size: 175%;
    margin: 1rem 0;
  }
  .safe .wrap div {
    width: 55%;
  }
  .tsuyomi .wrap {
    max-width: 90vw;
    padding: 1rem 0;
  }
  .tsuyomi .wrap h3 {
    font-size: 245%;
    margin-bottom: 1rem;
  }
  .tsuyomi .wrap .tsuyomi_box {
    padding: 1.5rem;
    display: block;
    margin-bottom: 1.5rem;
  }
  .tsuyomi .wrap .tsuyomi_box figure {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
  .tsuyomi .wrap .tsuyomi_box .tsuyomi_ttl h4 {
    font-size: 150%;
    line-height: 1.3;
    margin: 0.5rem 0;
  }
  .please {
    height: unset;
  }
  .please .wrap {
    padding: 1rem 1.5rem;
  }
  .please .wrap h4 {
    font-size: 215%;
  }
  .please .wrap p {
    font-size: 110%;
  }
  .works .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .works .wrap .button {
    width: 100%;
  }
  .certificate-section {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .certificate-section .swiper {
    padding-bottom: unset;
  }
  .certificate-section .certificate-title {
    margin-bottom: 1rem;
  }
  .cooling .wrap {
    max-width: 90vw;
    padding: 1rem 0;
  }
  .cooling .wrap h3 {
    font-size: 130%;
    margin-bottom: 1rem;
  }
  .cooling .wrap p {
    font-size: 85%;
  }
  .form .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .form .wrap h3 {
    margin-bottom: 2rem;
  }
  .company-info .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .company-info .info-row {
    display: block;
  }
  .company-info .info-row .info-data {
    padding: 1rem 0;
  }
  .company-info .info-row .info-title {
    padding-top: 0.5rem;
  }

  .certificate-section .swiper .swiper-slide img {
    width: 80%;
  }
  footer .footer_logo {
    width: 60%;
    margin-bottom: unset;
  }
  footer {
    padding: 1rem 0;
  }
  .info-row {
    flex-direction: column;
  }
  .info-row .info-title {
    flex: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .form .wrap figure {
    padding: 1rem 1rem;
  }
} /*# sourceMappingURL=style.css.map */
