/*!
Theme Name: eunoias
*/

/********************
* header
*********************/
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-20);
}

.header-title {
  display: flex;
  align-items: center;
}

.header-logo {
  max-width: 60px;
  width: 13%;
}

.header-copy {
  margin-left: 10px;
}

.header-title h1 {
  font-size: var(--fz-40);
  color: var(--main-green);
  font-weight: 700;
}

.header-title p {
  font-size: var(--fz-16);
  color: var(--black1);
  font-weight: normal;
}

.header-contact {
  font-size: var(--fz-52);
  color: var(--main-green);
  font-weight: 700;
}

.pc-header-menu {
  height: 40px;
  background-color: var(--main-green);
  display: flex;
  align-items: center;
  margin-top: 20px;
  position: relative;
}

.pc-header-menu::before {
  content: "";
  background-image: url(img/turf-back.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  top: -8px;
  width: 100%;
  height: 10px;
}

.pc-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-header-nav .menu-list {
  display: flex;
  color: #fff;
}

.pc-header-nav li + li {
  margin-left: var(--sp-30);
  border-left: 1px solid #fff;
  padding-left: var(--sp-30);
}

.sp-header-menu {
  display: none;
}

.sp-header-menu .container-l {
  max-height: 100px;
}

.sp-menu-btn {
  position: fixed;
  right: 20px;
  top: 20px;
  cursor: pointer;
  background-color: var(--main-green);
  width: 50px;
  height: 50px;
  z-index: 20;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  width: 28px;
  height: 20px;
  z-index: 20;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  /* background-color: var(--main-green); */
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  transform: translateX(40%)
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(100% );
}

.sp-header-menu .sp-header-nav {
  position: fixed;
  color: #fff;
  z-index: 11;
  top: 0;
  right: 0;
  background-color: rgba(31, 128, 31, 0.8);
  text-align: center;
  width: 100%;
  height: 100vh;
  padding: 50px 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.sp-header-menu .sp-header-nav.active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.sp-header-menu .sp-header-nav ul {
  padding-top: var(--sp-4);
}
.sp-header-menu .sp-header-nav li {
  padding: 1.5em 1em;
}
.sp-header-menu .sp-header-nav li:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
.sp-header-menu .sp-header-nav li.entry-btn {
  padding: 1.1em 1em;
  max-width: 513px;
}
.sp-header-menu .sp-header-nav li.entry-btn::after {
  margin-left: 2rem;
}
.sp-header-nav-logo {
  max-width: 417.16px;
  width: 65%;
  position: absolute;
  top: 2%;
  left: 2%;
}

.sp-tel {
  font-size: var(--fz-30);
  font-weight: bold;
}

/***********************
* mv-top
***********************/
.mv {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 40vw;
  /* height: 50vh; */
  max-height: 600px;
}

.mv .main-copy {
  color: #fff;
  font-size: 45px;
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.mv-top .swiper-slide {
  /* aspect-ratio: 3 / 2; */
  overflow: hidden;
}

.mv-top .slide01 {
  background-image: url(img/mv-01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-top .slide02 {
  background-image: url(img/mv-02.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-top .slide03 {
  background-image: url(img/mv-03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-top .slide04 {
  background-image: url(img/mv-04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mv-top .slide05 {
  background-image: url(img/mv-05.jpg);
  background-repeat: no-repeat;
  background-position: 12%;
  background-size: cover;
}

/*********************************
* news
*********************************/
#news {
  padding-bottom: 0;
}

.news-widget {
  max-height: 300px;
  padding: var(--sp-30);
  background-color: var(--sub-green);
  border-radius: 10px;
}

.news-widget h2 {
  text-align: center;
  margin-bottom: 20px;
}

.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.news-date {
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
}

.news-content {
  margin-left: 10px;
  flex: 1;
  line-height: 1.6;
}

.news-widget a {
  color: #1E90FF;
  text-decoration: underline
}

/***********************
* reason
*************************/
h2.bottom-line {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

h2.bottom-line::before {
  content: "";
  position: absolute;
  background-image: url(img/turf-bottom.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  min-width: 300px;
  width: 100%;
  max-height: 12px;
  height: 100vh;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.reason-wrapper {
  margin-top: var(--sp-50);
}

.reason-wrapper h3 {
  padding: 0;
  display: flex;
}

.reason-wrapper h3.sp {
  display: none;
}

.reason-wrapper .group {
  display: flex;
  margin-top: var(--sp-50);
}

.reason-wrapper .left {
  max-width: 500px;
  width: 50%;
}

.reason-wrapper .right {
  width: 50%;
  margin-left: var(--sp-30);
}

.reason-wrapper span {
  display: inline-block;
  font-size: var(--fz-14);
  font-weight: bold;
  color: #fff;
  background-color: var(--main-orange);
  border-radius: 20px;
  padding: 10px 5px 10px 15px;
  vertical-align: middle;
  margin-right: var(--sp-20);
  text-align: center;
}

.reason-wrapper p {
  margin-top: var(--sp-20);
}

/********************
* example
********************/
#example {
  background-color: var(--sub-green);
  position: relative;
}

#example::before {
  content: "";
  background-image: url(img/turf-back-02.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  top: -8px;
  width: 100%;
  height: 10px;
}

#example h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#example h2::before {
  content: "";
  position: absolute;
  background-image: url(img/turf-bottom.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  min-width: 300px;
  width: 100%;
  max-height: 12px;
  height: 100vh;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.example-wrapper {
  margin-top: var(--sp-50);
}

.example-wrapper .group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 30px;
}

.example-wrapper .item {
  max-width: 300px;
  width: 100%;
}

.example-wrapper .item p {
  text-align: center;
  padding-top: var(--sp-20);
}

/*****************************
* promise
*****************************/
#promise .group {
  display: flex;
  gap: 50px;
}

#promise .promise-contents {
  border: 5px solid var(--main-orange);
  border-radius: 10px;
  padding: var(--sp-50);
}

#promise .item {
  background-color: rgba(249, 122, 0, 0.1);
  width: 50%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#promise img {
  display: block;
  max-width: 205px;
  margin: 0 auto;
}

#promise h2 {
  color: var(--main-orange);
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--sp-50);
}

#promise h3 {
  color: var(--main-orange);
  padding: 0.5em;
}

#promise .item .bottom {
  padding: 0 1em;
}

#promise .item .bottom02 p {
  padding-top: 0;
  text-indent: -1em;
  padding-left: 1em;
}


/******************************
* movie
******************************/
#movie {
  padding-top: 0;
}

#movie h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

#movie h2::before {
  content: "";
  position: absolute;
  background-image: url(img/turf-bottom.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  min-width: 300px;
  width: 100%;
  max-height: 12px;
  height: 100vh;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

#movie .swiper2 {
  margin-top: var(--sp-50);
}

#movie .youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}

/********************
* contact-section
***********************/
#contact {
  background-color: var(--main-green);
  position: relative;
}

#contact::before {
  content: "";
  background-image: url(img/turf-back.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  top: -8px;
  width: 100%;
  height: 10px;
}

#contact p.top {
  color: #fff;
  text-align: center;
  font-size: var(--fz-24);
  font-weight: bold;
}

#contact p.bottom {
  font-size: var(--fz-22);
  text-align: center;
  color: #fff;
}

#contact .tel {
  display: block;
  font-size: var(--fz-80);
  color: #fff;
  margin-top: var(--sp-30);
  text-align: center;
}

/***********************
* footer
**************************/
footer {
  background-color: var(--black1);
  color: #fff;
  padding-top: var(--sec-pt);
}

footer .group {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

footer .left li + li {
  padding-top: 0.5em;
}

footer .right p {
  text-align: right;
}

footer .bottom {
  padding-top: var(--sp-70);
  text-align: center;
  padding-bottom: 5px;
}

#go-to-top {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 100;
}

.go-to-top {
  display: block;
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: 50px;
  height: 50px;
  border: 4px solid var(--main-green);
  border-radius: 50%;
  background-color: #fff;
}

.go-to-top i {
  color: var(--main-green);
  font-size: 50px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 35px;
}

/*****************
* reCAPTCHA非表示
*****************/
.recaptcha {
  padding: 2em 0 0;
  font-size: 12px;
  max-width: 650px;
  margin: 0 auto;
}

.recaptcha a {
  color: #6dbcbf;
}

.grecaptcha-badge { 
	visibility: hidden; 
}