@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, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {scroll-behavior: smooth;}

a {color: #000;}
a:hover{ opacity:0.5;transition: all 0.5s; }
ul,ol,li {list-style: none;}
img {width: 100%;}

.pc-element {
  display: block;
}
.sp-element {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-element {
    display: block;
  }
  .pc-element {
    display: none;
  }
  }

/*font*/
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/NotoSansJP-Regular.woff") format('woff');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/NotoSansJP-Medium.woff") format('woff');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/NotoSansJP-Bold.woff") format('woff');
}
@font-face {
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Avenir-Medium.woff") format('woff');
}
@font-face {
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Avenir-Heavy.woff") format('woff');
}

body {
  font-family: "Avenir", "Noto Sans Japanese", sans-serif;
  font-weight: 400;
}

/* --- body全体の読み込みフェード --- */
body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* --- ヘッダー フェードイン（上から） --- */
#header {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.loaded #header {
  opacity: 1;
  transform: translateY(0);
}

/* --- 共通フェードイン初期状態 --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* --- 読み込み時にdelay付き要素を順番にフェードイン --- */
body.loaded .fade-in.delay-1 {
  animation: fadeInUp 0.6s ease forwards 0s;
}
body.loaded .fade-in.delay-2 {
  animation: fadeInUp 0.6s ease forwards 0.2s;
}
body.loaded .fade-in.delay-3 {
  animation: fadeInUp 0.6s ease forwards 0.4s;
}
body.loaded .fade-in.delay-4 {
  animation: fadeInUp 0.6s ease forwards 0.6s;
}
body.loaded .fade-in.delay-5 {
  animation: fadeInUp 0.6s ease forwards 0.8s;
}

/* --- スクロールでshowクラス付与された要素のフェードイン --- */
.fade-in.show {
  animation: fadeInUp 0.6s ease forwards;
}

/* --- アニメーションキー --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*header*/

header {
  width: 100%;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #fff;
  top:0;
  z-index: 10;
  border-bottom: 1px solid #d6d6d6;
}
header h1 {
  width: 170px;
}

header h1 img {
  padding-top: 6px;
}
header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
header li a {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0 50px 0 0;
  display: inline-block;
}

.c-txt.line {
  padding-bottom: 5px;
  position: relative;
  opacity: unset;
}

.c-txt.line:hover {
  color: #00968E;
}
.c-txt.line::before {
  background: #00968E;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.c-txt.line:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

header li.contact-btn a {
  background-color: #00968E;
  padding: 12px 30px;
  color: #fff;
  text-align: center;
  margin: 0;
  border-radius: 50px;
}
#menu-toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
header {
  width: 100%;
  padding: 8px 20px;
}
header h1 {
  width: 135px;
}
.menu-container {
  position: relative;
  display: flex;
  align-items: center;
}
.menu-button-container {
  display: flex;
  height: 20px;
  width: 20px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button {
  background: #00968E;
  position: relative;
  display: block;
  top: 0px;
  margin-top: 7px;
  height: 2px;
  width: 20px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  background: #00968E;
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  height: 2px;
  width: 20px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::after {
  background: #00968E;
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  height: 2px;
  width: 20px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu {
  height: calc(100vh - 60px);
  position: absolute;
  top: calc(100% + 20px);
  right: -20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  width: 70vw;
  padding: 20px;
  margin: 0;
  list-style-type: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
.menu li {
  margin-bottom: 20px;
}

.menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
  margin: 0;
}

.menu a:hover {
  background-color: #ddd;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  transform: rotate(45deg);
  top: 0px;
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  transform: rotate(-45deg);
  top: 0px;
}

#menu-toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}
header li.contact-btn a {
  padding: 17px 50px;
}
}

/*お問い合わせ*/
.contact-contents {
  position: relative;
  padding: 0 30px;
}
.contact-contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #E8F7F6;
  z-index: -1;
}
.contact-inner {
  max-width:1100px;
  margin: -100px auto 0;
  position: relative;
  display: block;
  border: 1px solid #00968E;
  border-radius: 30px;
  background-color: #fff;
  z-index: 2;
  padding: 70px;
  text-align: center;
}
.contact-inner h3 {
  font-size: 50px;
}
.contact-inner p {
  margin: 50px 0;
  font-size: 16px;
  line-height: 2;
}
.contact-inner a {
  margin: 0 auto;
}
.contact-inner::before {
  content: "";
  background-image: url(/assets/images/common/contact_left.png);
  background-size: 120px;
  position: absolute;
  bottom: 70px;
  left: 130px;
  width: 140px;
  height: 185px;
}
.contact-inner::after {
  content: "";
  background-image: url(/assets/images/common/contact_right.png);
  background-size: 130px;
  position: absolute;
  bottom: 40px;
  right: 120px;
  width: 150px;
  height: 250px;
}
@media screen and (max-width: 768px) {
.contact-contents {
  position: relative;
  padding: 0 20px;
}
.contact-contents::after {
  height: 40%;
}
.contact-inner {
  max-width: unset;
  margin: 70px auto 0;
  padding: 30px;
}

.contact-inner h3 {
    font-size: 36px;
}
.contact-inner p {
  margin: 50px 0;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
  .contact-inner::before,
  .contact-inner::after {
    display: none;
  }
}

/*viewボタン*/
a.view-btn {
  position: relative;
  display: inline-flex;
  font-family: "Avenir", sans-serif;
  font-weight: bold;
  width: 245px;
  border-radius: 75px;
  text-align: center;
  background-color: #00968E;
  color: #fff;
  font-size: 18px;
  line-height: 75px;
  overflow: hidden;
  letter-spacing: 1px;
}
a.view-btn span { 
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  margin: 0 auto;
  padding: 0 30px 0 0;
}
a.view-btn:before {
  content: "→";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
a.view-btn:after {
  content: "⚫︎";
  position: absolute;
  right: 40px;
  top: 50%;
  font-size: 18px;
  transform: translateY(-50%);
  opacity: 1;
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
a.view-btn:hover {
  opacity: 1;
  background-color: #007F70;
}
a.view-btn:hover span {
  transform: translateX(30px);
}
a.view-btn:hover:before {
  left: 40px;
  opacity: 1;
}
a.view-btn:hover:after {
  right: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  a.view-btn {
    width: 50vw;
    height: 60px;
    border-radius: 70px;
    font-size: 16px;
    line-height: 60px;
    letter-spacing: 1px;
  }
}

/*footer*/
footer {
  background-color: #E8F7F6;
}
.fielding-footer {
  max-width: 1160px;
  padding: 0 30px;
  margin: 0 auto;
}
.fielding-footer-inner {
  padding: 100px 0 0;
  display: flex;
  justify-content: space-between;
}
.fielding-footer-inner h2 {
  width: 300px;
}
.fielding-footer-inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.fielding-footer-inner ul li {
  margin: 0 35px;
  font-size: 16px;
  font-weight: 500;
}
.fielding-footer-inner ul li:nth-child(2),
.fielding-footer-inner ul li:last-child {
  margin: 0 0 0 35px;
}
.fielding-footer-inner ul.fielding-footer-detail {
 display: block; 
 margin: 20px 0 0;
}
.fielding-footer-inner ul.fielding-footer-detail li {
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 10px;
  position: relative;
}
.fielding-footer-inner ul.fielding-footer-detail li::before {
  content: "ー";
  position: relative;
  width: 10px;
  margin: 0 5px 0 0;
}
.fielding-footer-privacy {
  margin: 50px auto 0;
  padding: 50px 0 70px;
  border-top: 1px solid #00968E;
  display: flex;
}
.fielding-footer-privacy li {
  font-size: 13px;
  margin: 0 35px 0 0;
}
.fielding-footer-privacy li:last-child {
  margin-left: auto;
  margin-right: 0;
  color: #9CD6D3;
  font-family: "Avenir", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
.fielding-footer {
  max-width: calc(100% - 40px);
  padding: 0;
  margin: 0 auto;
}
.fielding-footer-inner {
  padding: 70px 0 0;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.fielding-footer-inner h2 {
  width: 200px;
}
.fielding-footer-inner ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 30px 0 0;
}
.fielding-footer-inner ul li {
  width: 100%;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 700;;
}
.fielding-footer-inner ul li:nth-child(2),
.fielding-footer-inner ul li:last-child {
  margin: 0 0 30px;
}
  .fielding-footer-inner ul.fielding-footer-detail {
   display: flex;
   justify-content: flex-start; 
   margin: 10px 0 0;
  }
  .fielding-footer-inner ul.fielding-footer-detail li {
    width: auto;
    font-size: 13px;
    font-weight: 400;
    margin: 0 20px 0 0;
    position: relative;
  }
  .fielding-footer-inner ul.fielding-footer-detail li::before {
    content: "ー";
    margin: 0 3px 0 0;
    font-size: 11px;
  }
  .fielding-footer-privacy {
    margin: 0 auto;
    padding: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fielding-footer-privacy li {
    font-size: 13px;
    margin: 0 30px 0 0;
  }
  .fielding-footer-privacy li:nth-child(2) {
    margin: 0;
  }
  .fielding-footer-privacy li:last-child {
    margin:30px auto 0;
    text-align: center;
  }
}

/*HD共通フッター*/
.hd-footer {
  background-color: #fff;
  padding: 50px 30px;
  text-align: center;
}
.hd-footer h2 {
  width: 240px;
  margin: 0 auto 50px;
}
.hd-footer ul.hd-footer-group {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.hd-footer ul.hd-footer-group li {
  font-size: 16px;
  font-weight: 500;
  margin: 0 35px;
}
.hd-footer ul.hd-footer-policy {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  padding: 30px 0 0;
  max-width: 1100px;
  border-top: 1px solid #D9D9D9;
}
.hd-footer ul.hd-footer-policy li {
  font-size: 13px;
  font-weight: 400;
  margin: 0 35px;
}
@media screen and (max-width: 768px) {
.hd-footer {
  padding: 50px 20px 30px;
}
.hd-footer h2 {
  width: 200px;
  margin: 0 auto 30px;
}
.hd-footer ul.hd-footer-group li {
  font-size: 13px;
  font-weight: 700;
  margin: 0 3%;
}
.hd-footer ul.hd-footer-policy {
  margin: 20px auto 0;
  padding: 20px 0 0;
  max-width: 100%;
  flex-wrap: wrap;
}
.hd-footer ul.hd-footer-policy li {
  width: 100%;
  text-align: center;
  margin: 0 0 15px;
}
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #00968E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
.pagetop {
  height: 50px;
  width: 50px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
}