@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;800;900&display=swap");
/* 共通 */
* {
  min-width: 0;
  min-height: 0;
}

/* 共通 */
body {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
ul,
li,
a,
div {
  color: #333333;
  letter-spacing: 26;
  line-height: 1;
  font-family: Noto Sans CJK JP, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, Yu Gothic, "メイリオ", Meiryo, "MS ゴシック", sans-serif;
  font-size: 16px;
  letter-spacing: 1.8px;
  font-weight: 500;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s;
  text-decoration: none;
}

.wrap {
  max-width: 80%;
  /* full-width 1400pxに対して、1000px maxを想定 */
  margin: 0 auto;
}
@media (max-width: 800px) {
  .wrap {
    max-width: 100%;
    padding: 0 3%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

div img {
  width: auto;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

span.sp {
  display: block;
}

/* header */
.header-group {
  width: 100%;
  z-index: 1;
}
.header-group.back {
  background-color: rgba(255, 255, 255, 0.65);
}
.header-group .header-wrap {
  width: 100%;
  justify-content: space-between;
  padding: 20px 30px;
  box-sizing: border-box;
  z-index: 1;
}
.header-group .header-wrap .header-logo a {
  height: 30px;
}
.header-group .header-wrap .header-menu {
  width: 450px;
}
@media (max-width: 1100px) {
  .header-group .header-wrap .header-menu {
    display: none;
  }
}
.header-group .header-wrap .header-menu ul {
  justify-content: space-between;
  align-items: center;
}
.header-group .header-wrap .header-menu ul .contact a {
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
  border-radius: 40px;
}

/*ハンバーガーメニュー*/
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media (max-width: 600px) {
  nav {
    right: -220px;
    width: 220px;
  }
}

.toggle_btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1100px) {
  .toggle_btn {
    display: block;
  }
}
.toggle_btn .toggle_line {
  width: 100%;
  height: 100%;
}
.toggle_btn .toggle_line span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle_btn .toggle_line span:nth-child(1) {
  top: 0;
}
.toggle_btn .toggle_line span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.toggle_btn .toggle_line span:nth-child(3) {
  bottom: 0px;
}

.toggle_btn.open span {
  background-color: #fff;
}
.toggle_btn.open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(-315deg);
  transform: translateY(50%) rotate(-315deg);
}
.toggle_btn.open span:nth-child(2) {
  opacity: 0;
}
.toggle_btn.open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(315deg);
  transform: translateY(50%) rotate(315deg);
}

.open nav {
  right: 0;
  opacity: 1;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

#mask {
  display: none;
  transition: all 0.5s;
}

/* top scroll */
.top_jump {
  visibility: hidden;
  width: 60px;
  height: 60px;
  background-color: #666666;
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  transition: 0.6s;
  opacity: 0;
}
.top_jump::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -15%) rotate(-45deg);
}

.view {
  visibility: visible;
  opacity: 1;
}

.top_jump a {
  display: block;
  height: 100%;
}

/* header */
/* main */
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .inner {
    padding: 0 3%;
    box-sizing: border-box;
  }
}

.headline {
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 50px;
  font-family: "acumin-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 600px) {
  .headline {
    font-size: 38px;
  }
}
.headline span {
  font-size: 14px;
  color: #00A99B;
}

.more-btn a {
  width: 300px;
  padding: 30px 0;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  margin: 0 auto;
  background: #6ccfc6;
  background: -moz-linear-gradient(left, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  background: -webkit-linear-gradient(left, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  background: linear-gradient(to right, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6ccfc6", endColorstr="#009fb8",GradientType=1 );
  position: relative;
}
.more-btn a:after {
  content: "";
  width: 30px;
  height: 6px;
  background-image: url(/wp-content/uploads/2023/08/logo-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.more-btn a:hover:after {
  right: 10px;
}

.contact-content.inner {
  max-width: 800px;
}
.contact-content .headline {
  text-align: center;
}
.contact-content .headline span {
  display: block;
  margin-top: 20px;
}
.contact-content .catch {
  margin-bottom: 80px;
  text-align: center;
  line-height: 1.625;
}
.contact-content .form-content .row {
  margin-bottom: 30px;
}
.contact-content .form-content .row .title {
  font-size: 12px;
  color: #00BCAE;
  margin-bottom: 20px;
}
.contact-content .form-content .row .form input, .contact-content .form-content .row .form textarea, .contact-content .form-content .row .form select {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  background-color: #EFEFEF;
  border: none;
}
.contact-content .form-content .approval {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  color: #00AFA2;
  font-weight: normal;
}
.contact-content .form-content .approval a {
  color: #00AFA2;
  font-weight: normal;
}
.contact-content .form-content .more-btn {
  width: 300px;
  margin: 0 auto;
}
.contact-content .form-content .more-btn:after {
  content: "";
  width: 30px;
  height: 6px;
  background-image: url(/wp-content/uploads/2023/08/logo-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.contact-content .form-content .more-btn input {
  width: 300px;
  padding: 30px 0;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  background: #6ccfc6;
  background: -moz-linear-gradient(left, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  background: -webkit-linear-gradient(left, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  background: linear-gradient(to right, #6ccfc6 0%, #00baad 60%, #009fb8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6ccfc6", endColorstr="#009fb8", GradientType=1);
  position: relative;
  border: none;
}
.contact-content .form-content .more-btn span {
  display: none;
}

/* footer */
footer {
  padding: 30px 0 40px 0;
  box-sizing: border-box;
  background-color: #111111;
}
footer .back {
  width: 35%;
  right: 0;
  bottom: 0;
  z-index: 0;
}
footer .back img {
  width: 100%;
}
@media (max-width: 600px) {
  footer .back {
    width: 80%;
    bottom: auto;
    left: 0;
    top: 0;
    right: auto;
  }
}
footer .top-cont {
  justify-content: space-between;
  margin-bottom: 150px;
  z-index: 1;
}
@media (max-width: 600px) {
  footer .top-cont {
    margin-bottom: 50px;
  }
}
footer .top-cont .left .logo {
  height: 50px;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  footer .top-cont .left .logo {
    height: 40px;
  }
}
footer .top-cont .left .info div {
  color: #fff;
  margin-bottom: 10px;
}
footer .top-cont .left .info div:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  footer .top-cont .right {
    margin-top: 30px;
  }
}
footer .top-cont .right .list {
  margin-bottom: 30px;
}
footer .top-cont .right .list .link {
  margin-right: 20px;
}
@media (max-width: 600px) {
  footer .top-cont .right .list .link {
    margin-right: 10px;
  }
}
footer .top-cont .right .list .link:last-child {
  margin-right: 0;
}
footer .top-cont .right .sns-list {
  justify-content: right;
}
footer .top-cont .right .sns-list .icon {
  height: 20px;
  margin-right: 20px;
}
footer .top-cont .right .sns-list .icon:last-child {
  margin-right: 0;
}
footer .top-cont .right .sns-list .icon a {
  height: 100%;
}
footer .list-bottom {
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
}
footer .list-bottom .link {
  margin-right: 20px;
}
footer .list-bottom .link:last-child {
  margin-right: 0;
}
footer .copyright {
  text-align: center;
  color: #fff;
}

/* Chrome, Safari */
::-webkit-input-placeholder {
  color: #C8C8C8;
}

/* Firefox */
::-moz-placeholder {
  color: #C8C8C8;
}

/* Firefox 18以前 */
:-moz-placeholder {
  color: #C8C8C8;
}

/* IE */
:-ms-input-placeholder {
  color: #C8C8C8;
}/*# sourceMappingURL=common.css.map */