@charset "UTF-8";
body,
div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em, strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

/*変数設定用*/
/*変数設定用*/
@font-face {
  font-family: "SourceHanSans-Bold";
  src: url("./../fonts/SourceHanSans-Bold.otf");
}
@font-face {
  font-family: "Arial";
  src: url("./../fonts/Arial.ttf");
}
@font-face {
  font-family: "Hiragino";
  src: url("./../fonts/hiragino.otf");
}
@font-face {
  font-family: "futura";
  src: url("./../fonts/futura-bold.ttf");
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

a {
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

li {
  list-style: none;
}

a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-size: 62.5%;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  overflow-x: hidden;
  letter-spacing: 0.1em;
  position: relative;
}

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

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

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.wrap {
  width: 118rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: calc(100% - 4rem);
  }
}

.container {
  width: 108rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 4rem);
  }
}

.lazy {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.lazy.on {
  opacity: 1;
}

.lazy_bottom {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.lazy_bottom.on {
  -webkit-transform: none;
  transform: none;
}

.lazy_right {
  -webkit-transform: translateX(3rem);
  transform: translateX(3rem);
}
.lazy_right.on {
  -webkit-transform: none;
  transform: none;
}

.lazy_left {
  -webkit-transform: translateX(-3rem);
  transform: translateX(-3rem);
}
.lazy_left.on {
  -webkit-transform: none;
  transform: none;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 5rem;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header {
    padding: 1.4rem 2rem;
  }
}
header:before {
  position: absolute;
  height: 16.8rem;
  width: 48rem;
  content: "";
  background: url("./../img/img_head_bg.png");
  background-size: cover;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  header:before {
    width: 76vw;
    background: url("./../img/img_head_bg_sp.png");
    background-size: cover;
    height: 26.5vw;
  }
}
header .head__Logo {
  position: relative;
}
@media screen and (max-width: 767px) {
  header .head__Logo {
    width: 12rem;
  }
}
header .head__Btn {
  margin-right: 7.3rem;
  line-height: 1;
  display: inline-block;
  background: #58B5CB;
  color: #fff;
  border-radius: 10rem;
  padding: 1.7rem 6rem 1.7rem 2.8rem;
  font-size: 1.3rem;
  font-weight: bold;
  background-image: url("./../img/icon_arrow_white.svg");
  background-repeat: no-repeat;
  background-size: 2.4rem;
  background-position: center right 2.6rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 767px) {
  header .head__Btn {
    display: none;
  }
}

.navToggle {
  display: block;
  position: fixed;
  right: 5rem;
  top: 2.8rem;
  width: 4.2rem;
  height: 2.6rem;
  cursor: pointer;
  z-index: 3000;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .navToggle {
    right: 2rem;
    top: 1.4rem;
  }
}
.navToggle span {
  display: block;
  position: absolute;
  width: 4.2rem;
  height: 0.3rem;
  background: #B2DCE3;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.navToggle span:nth-child(1) {
  top: 0;
}
.navToggle span:nth-child(2) {
  top: 1.2rem;
}
.navToggle span:nth-child(3) {
  bottom: 0;
  background: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #B2DCE3;
  letter-spacing: 0.05em;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.navToggle.-open span:nth-child(1) {
  top: 1.8rem;
  -webkit-transform: rotate(-36deg);
  -moz-transform: rotate(-36deg);
  transform: rotate(-36deg);
  background: #fff;
}
.navToggle.-open span:nth-child(2) {
  top: 1.8rem;
  -webkit-transform: rotate(36deg);
  -moz-transform: rotate(36deg);
  transform: rotate(36deg);
  background: #fff;
}
.navToggle.-open span:nth-child(3) {
  opacity: 0;
}

.menu-content {
  width: 53.1rem;
  height: 100%;
  padding: 2.5rem 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  transition: all 0.7s;
  transform: translateX(100%);
  background: url("../img/img_menu_bg.jpg");
  background-size: cover;
  z-index: 2000;
}
@media screen and (max-width: 767px) {
  .menu-content {
    background: url("../img/img_menu_bg_sp.jpg");
    background-size: cover;
    width: 100%;
    padding: 1.4rem 0;
  }
}
.menu-content.-open {
  transform: translateX(0);
}
.menu-content__Inner {
  max-width: 27.2rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .menu-content__Inner {
    max-width: calc(100% - 4rem);
  }
}
.menu-content__Ttl {
  text-align: center;
  margin: 0 auto 11.5rem;
}
@media screen and (max-width: 767px) {
  .menu-content__Ttl {
    text-align: left;
    margin: 0 auto 12.7rem;
  }
}
.menu-content__Wrap {
  padding-left: 5.6rem;
}
@media screen and (max-width: 767px) {
  .menu-content__Wrap {
    padding-left: 8.8rem;
  }
}
.menu-content__Subttl {
  margin-bottom: 1rem;
}
.menu-content__Subttl a {
  line-height: 1;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}
.menu-content__List {
  border-left: 0.1rem solid #fff;
  margin-left: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 0.7rem 0 0.7rem 2.2rem;
}
.menu-content__List.-last {
  margin-bottom: 5.6rem;
}
.menu-content__Item {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .menu-content__Item {
    margin-bottom: 1.3rem;
  }
}
.menu-content__Item a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.menu-content__Item:last-child {
  margin-bottom: 0;
}
.menu-content__Btn {
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 0 1.4rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5rem;
  font-family: "SourceHanSans-Bold";
  line-height: 1.14em;
  color: #58B5CB;
}
@media screen and (max-width: 767px) {
  .menu-content__Btn {
    width: 27.2rem;
    margin: 0 auto 2.5rem;
  }
}

.cont__ttl {
  text-align: center;
  font-size: 7.4rem;
  font-family: "Arial";
  line-height: 1;
}
.cont__ttl span {
  display: block;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-weight: bold;
  margin-top: 1.5rem;
  line-height: 1;
}
.cont__ttl.-white {
  color: #fff;
}

.contact {
  background: url("./../img/img_contact_bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact {
    background: url("./../img/img_contact_bg_sp.png");
    background-size: cover;
  }
}
.contact:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
.contact__Inner {
  position: relative;
  padding: 3.5rem 0 11.1rem;
}
@media screen and (max-width: 767px) {
  .contact__Inner {
    padding: 5.7rem 0 5rem;
  }
}
.contact__Inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8.5vw;
  content: "";
  background: url(./../img/img_contact_bg_before.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contact__Inner:before {
    background: url(./../img/img_contact_bg_before_sp.png);
    background-size: cover;
    height: 15.5vw;
  }
}
.contact__Inner:after {
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 8.5vw;
  content: "";
  background: url(./../img/img_contact_bg_after.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .contact__Inner:after {
    background: url(./../img/img_contact_bg_after_sp.png);
    background-size: cover;
    width: 100%;
    height: 10vw;
  }
}
.contact__Txt {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 2.8rem auto 2.3rem;
  line-height: 1.71em;
}
@media screen and (max-width: 767px) {
  .contact__Txt {
    margin: 4rem auto;
  }
}
.contact__Flex {
  display: flex;
  justify-content: space-between;
  max-width: 79.6rem;
  margin: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .contact__Flex {
    max-width: 27.7rem;
    display: block;
  }
}
.contact__Btn {
  width: 38.3rem;
  line-height: 1;
  display: block;
  border-radius: 10rem;
  padding: 2.5rem 0;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__Btn {
    width: 27.7rem;
    height: 6.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.23em;
  }
}
.contact__Btn span {
  display: inline-block;
  padding-right: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__Btn span {
    padding-right: 3.5rem;
  }
}
.contact__Btn span:before {
  width: 2.1rem;
  height: 0.7rem;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.35rem);
}
.contact__Btn.-blue {
  background: #58B5CB;
  color: #fff;
}
.contact__Btn.-blue span:before {
  background-image: url("./../img/icon_arrow_white.svg");
}
.contact__Btn.-white {
  color: #58B5CB;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact__Btn.-white {
    margin-bottom: 2.5rem;
  }
}
.contact__Btn.-white span:before {
  background-image: url("./../img/icon_arrow_blue.svg");
}

footer {
  background: #DEDEDE;
  padding: 3rem 0 1.2rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 1.6rem 0 1.8rem;
  }
}
footer .foot__Flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .foot__Flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  footer .foot__Logo {
    text-align: center;
  }
}
footer .foot__Links {
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .foot__Links {
    display: block;
  }
}
footer .foot__Links-Box {
  margin-right: 8rem;
}
@media screen and (max-width: 767px) {
  footer .foot__Links-Box {
    margin-right: 0;
  }
}
footer .foot__Links-Box.-last {
  margin-right: 0;
}
footer .foot__Links-Ttl {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  footer .foot__Links-Ttl {
    margin-top: 4.8rem;
    padding-left: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  footer .foot__Links-Ttl.-first {
    margin-top: 2.8rem;
  }
}
footer .foot__Links-Ttl a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
footer .foot__Links-List {
  padding-left: 1.1rem;
  margin-left: 0.8rem;
  border-left: 0.1rem solid #000;
}
@media screen and (max-width: 767px) {
  footer .foot__Links-List {
    border-left: none;
    border-top: 0.1rem solid #000;
    padding-left: 1.3rem;
    margin-left: 0;
    padding-top: 2.2rem;
    margin-top: 2.2rem;
  }
}
footer .foot__Links-Item {
  line-height: 1;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  footer .foot__Links-Item {
    margin-bottom: 2.8rem;
  }
}
footer .foot__Links-Item:last-child {
  margin-bottom: 0;
}
footer .foot__Links-Item a {
  line-height: 1;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
}
footer .copy {
  margin-top: 5rem;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .copy {
    margin-top: 6.4rem;
  }
}

.mv {
  position: relative;
}
.mv:after {
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 8.5vw;
  content: "";
  background: url(./../img/img_mv_bg_after.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .mv:after {
    background: url(./../img/img_mv_bg_after_sp.png);
    background-size: cover;
    height: 12.5vw;
  }
}
.mv__Box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .mv__Box {
    width: calc(100% - 4rem);
    left: 2rem;
  }
}
.mv__Box-Catch {
  font-family: "Hiragino";
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.7em;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__Box-Catch {
    letter-spacing: 0.4em;
  }
}
.mv__Box-Ttl {
  text-align: center;
  font-family: "Hiragino";
  font-size: 3.7rem;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 3rem;
}
.mv__Box-Ttl .-cross {
  margin: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .mv__Box-Ttl .-cross {
    display: block;
    margin: 1.7rem auto;
  }
}
.mv__Box-Ttl .-blue {
  font-size: 2.9rem;
  background: #58B5CB;
  padding: 1.7rem 3.4rem;
  letter-spacing: 0.4em;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv__Box-Ttl .-blue {
    font-size: 2rem;
    padding: 1.7rem 2rem;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .mv__Box-Ttl .-blue.-last {
    padding: 1.7rem 3.6rem;
  }
}
.mv__Box-Name {
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv__Box-Name {
    font-size: 2.7rem;
    justify-content: space-between;
  }
}
.mv__Box-Name span {
  margin-left: 2.8rem;
  border-top: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
  font-family: "futura";
  font-style: italic;
  font-weight: normal;
  font-size: 3.3rem;
  letter-spacing: 0.6em;
  padding: 0 3rem;
}
@media screen and (max-width: 767px) {
  .mv__Box-Name span {
    margin-left: 1.4rem;
    font-size: 1.4rem;
    padding: 0.4rem 4rem 0.4rem 3rem;
  }
}

.about {
  background: url("./../img/img_about_bg.png");
  padding: 5rem 0 5.8rem;
}
@media screen and (max-width: 767px) {
  .about {
    background: url("./../img/img_about_bg_sp.png");
    background-size: 100%;
    background-position: top 25rem center;
    background-repeat: no-repeat;
    padding: 3.2rem 0 3.6rem;
  }
}
.about__Flex {
  display: flex;
  justify-content: space-between;
}
.about__Fl {
  width: 54rem;
}
.about__Fl .cont__ttl {
  text-align: left;
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .about__Fl .cont__ttl {
    margin-bottom: 2rem;
  }
}
.about__Txt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6875em;
  margin-bottom: 3.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about__Txt {
    margin-top: 6.3rem;
    font-size: 1.4rem;
    line-height: 2.42em;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
  }
}
.about__Anchor {
  font-size: 1.7rem;
  font-weight: bold;
  display: block;
  max-width: 37.5rem;
  padding: 1.3rem;
  line-height: 1;
  position: relative;
  border-bottom: 0.1rem solid #fff;
  color: #fff;
}
.about__Anchor:before {
  width: 2.1rem;
  height: 0.7rem;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 0.35rem);
  background-image: url(./../img/icon_arrow_white.svg);
}
.about__Fr {
  width: 49.8rem;
}
.about__Fr img {
  width: 40.5rem;
}

.profile {
  padding: 10rem 0 7.6rem;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 6.5rem 0 5.7rem;
  }
}
.profile__Flex {
  margin-top: 5.6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .profile__Flex {
    margin-top: 4rem;
    display: block;
  }
}
.profile__Fl {
  width: 47rem;
}
@media screen and (max-width: 767px) {
  .profile__Fl {
    width: 100%;
    margin-bottom: 4.5rem;
  }
}
.profile__Fr {
  width: 57rem;
}
@media screen and (max-width: 767px) {
  .profile__Fr {
    width: 100%;
  }
}
.profile__Subttl {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  line-height: 1;
}
.profile__Subttl span {
  line-height: 1;
  color: #fff;
  font-size: 1.5rem;
  background: #58B5CB;
  padding: 1.2rem 1.7rem;
  margin-right: 1.3rem;
  display: inline-block;
}
.profile__Txt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6875em;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .profile__Txt {
    font-size: 1.5rem;
    line-height: 1.733em;
    letter-spacing: -0.01em;
  }
}
.profile__Sns {
  border: 0.2rem solid #58B5CB;
  padding: 1.2rem 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .profile__Sns {
    display: block;
    padding: 2.8rem 2rem;
  }
}
.profile__Sns-Txt {
  font-size: 1.6rem;
  color: #58B5CB;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .profile__Sns-Txt {
    text-align: center;
    margin-bottom: 1.7rem;
  }
}
.profile__Sns a {
  margin-left: 1.3rem;
}
.profile__Sns a:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .profile__Sns-Box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.voice {
  background: #58B5CB;
  padding: 7rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 7.7rem 0 5.2rem;
  }
}
.voice__List {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 7.3rem auto 0;
  width: 70.6rem;
}
@media screen and (max-width: 767px) {
  .voice__List {
    display: block;
    margin: 6.6rem auto 0;
    width: 100%;
  }
}
.voice__Item {
  width: 48%;
  max-width: 31.9rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .voice__Item {
    width: calc(100% - 1.6rem);
    margin: 0 auto 4rem;
  }
}
.voice__Item:nth-child(2n) {
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .voice__Item:nth-child(2n) {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .voice__Item:last-child {
    margin-bottom: 0;
    transition-delay: 0s;
  }
}
.voice__Txt {
  margin-top: 3rem;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.285em;
}

.contact-Wrap {
  padding: 21rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .contact-Wrap {
    padding: 11.2rem 0 0;
  }
}
.contact-Wrap .cont__ttl {
  text-align: left;
}
.contact-Wrap__Txt {
  margin-top: 8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6875em;
}
@media screen and (max-width: 767px) {
  .contact-Wrap__Txt {
    margin-top: 4rem;
    line-height: 1.75em;
  }
}
.contact-Wrap .form {
  border-top: 0.1rem solid #DEDEDE;
  margin-top: 3.4rem;
  padding-top: 5.9rem;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form {
    margin-top: 5rem;
    padding-top: 5rem;
  }
}
.contact-Wrap .form table {
  width: 56.8rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form table {
    width: 100%;
  }
}
.contact-Wrap .form table th {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 4rem;
  width: 22.2rem;
  vertical-align: top;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form table th {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
.contact-Wrap .form table td {
  padding-bottom: 4rem;
  font-size: 1.6rem;
  width: 34.6rem;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form table td {
    display: block;
    width: 100%;
  }
}
.contact-Wrap .form table td input[type=text],
.contact-Wrap .form table td input[type=email] {
  width: 34.6rem;
  background: #fff;
  font-size: 1.6rem;
  padding: 1.7rem 2rem;
  border: 0.1rem solid #222;
  font-weight: normal;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form table td input[type=text],
.contact-Wrap .form table td input[type=email] {
    width: 100%;
  }
}
.contact-Wrap .form table td textarea {
  max-height: 14.1rem;
  background: #fff;
  font-size: 1.6rem;
  padding: 1.7rem 2rem;
  border: 0.1rem solid #222;
  box-sizing: border-box;
  width: 34.6rem;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form table td textarea {
    width: 100%;
  }
}
.contact-Wrap .form .sendbutton {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .form .sendbutton {
    margin-bottom: 1.6rem;
  }
}
.contact-Wrap .form .sendbutton input[type=submit] {
  width: 27.3rem;
  display: inline-block;
  text-align: center;
  padding: 1.4rem;
  border-radius: 10rem;
  background: #58B5CB;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.contact-Wrap .wpcf7-response-output {
  margin-top: 50px !important;
  text-align: center !important;
  border: none !important;
  font-size: 1.6rem !important;
}
@media screen and (max-width: 767px) {
  .contact-Wrap .wpcf7-response-output {
    font-size: 1.2rem !important;
    padding: 0 !important;
    margin: 3rem auto 5rem !important;
  }
}

.service {
  padding: 21rem 0 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 11.2rem 0 0;
  }
}
.service .cont__ttl {
  text-align: left;
}
.service__Txt {
  margin-top: 3.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6875em;
}
@media screen and (max-width: 767px) {
  .service__Txt {
    line-height: 1.75em;
  }
}

.strong {
  padding-top: 13rem;
}
@media screen and (max-width: 767px) {
  .strong {
    padding-top: 6.4rem;
  }
}
.strong__Ttl {
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 1rem;
  width: 53.2rem;
  position: relative;
  margin-bottom: 9.7rem;
}
@media screen and (max-width: 767px) {
  .strong__Ttl {
    font-size: 2.5rem;
    width: 100%;
    margin-bottom: 5.2rem;
  }
}
.strong__Ttl:before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 50vw;
  height: 0.2rem;
  background: #58B5CB;
}
@media screen and (max-width: 767px) {
  .strong__Ttl:before {
    width: 100vw;
  }
}
.strong__Flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .strong__Flex {
    display: block;
    margin: 0 auto 4.3rem;
  }
}
.strong__Flex.-reverse {
  flex-direction: row-reverse;
}
.strong__Thum {
  width: 39.8rem;
}
@media screen and (max-width: 767px) {
  .strong__Thum {
    width: 100%;
  }
}
.strong__Detail {
  width: 59rem;
}
@media screen and (max-width: 767px) {
  .strong__Detail {
    width: 100%;
  }
}
.strong__Detail-Subttl {
  font-size: 2.6rem;
  color: #58B5CB;
  font-weight: bold;
  line-height: 1.15em;
  padding-left: 8.4rem;
  position: relative;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .strong__Detail-Subttl {
    font-size: 2rem;
    margin-top: 4rem;
  }
}
.strong__Detail-Subttl span {
  position: absolute;
  left: 0;
  top: calc(50% - 1.5rem);
  font-size: 7rem;
  font-family: "Arial";
  color: #000;
}
@media screen and (max-width: 767px) {
  .strong__Detail-Subttl span {
    top: calc(50% - 0.125em);
  }
}
.strong__Detail-Txt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.685em;
}
@media screen and (max-width: 767px) {
  .strong__Detail-Txt {
    letter-spacing: -0.01em;
  }
}

.space {
  padding-top: 14.4rem;
}
@media screen and (max-width: 767px) {
  .space {
    padding-top: 6.6rem;
  }
}
.space__Ttl {
  text-align: center;
  font-size: 3rem;
  padding-bottom: 3.5rem;
  font-weight: bold;
  position: relative;
  line-height: 1;
  margin-bottom: 4.2rem;
}
.space__Ttl:before {
  position: absolute;
  left: calc(50% - 7.1rem);
  bottom: 0;
  width: 14.2rem;
  height: 0.2rem;
  content: "";
  background: #58B5CB;
}
.space__Txt {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 2.125em;
  margin-bottom: 4.3rem;
}
.space__List {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .space__List {
    display: block;
  }
}
.space__Item {
  width: 31.9rem;
}
@media screen and (max-width: 767px) {
  .space__Item {
    width: calc(100% - 1.6rem);
    margin: 0 auto 4rem;
  }
}
@media screen and (max-width: 767px) {
  .space__Item:last-child {
    margin-bottom: 0;
  }
}
.space__Thum {
  margin-bottom: 2.6rem;
}
.space__Area {
  font-size: 1.4rem;
  color: #fff;
  background: #58B5CB;
  line-height: 1;
  padding: 0.6rem 2.4rem;
  display: inline-block;
  margin-bottom: 1.4rem;
}
.space__Subttl {
  font-size: 1.8rem;
  font-weight: bold;
}

.price {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 8rem;
  }
}
.price__Wrap {
  display: flex;
  justify-content: space-between;
  width: 73.8rem;
  margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
  .price__Wrap {
    display: block;
    width: 100%;
  }
}
.price__Box {
  width: 33rem;
}
@media screen and (max-width: 767px) {
  .price__Box {
    width: 100%;
    margin-bottom: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .price__Box:last-child {
    margin-bottom: 0;
  }
}
.price__Dl {
  background: #F4F4F4;
}
.price__Dt {
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #58B5CB;
  padding: 1.4rem 0;
}
.price__Dd {
  font-size: 4.4rem;
  font-weight: bold;
  font-family: "Arial";
  line-height: 1;
  padding: 3.5rem 0;
  text-align: center;
}
.price__Dd span {
  font-size: 1.9rem;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
.price__Comment {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.25em;
}

.faq {
  padding-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 7.2rem;
    margin-bottom: 6.5rem;
  }
}
.faq__Dl {
  padding: 4.6rem 0;
  border-bottom: 0.2rem solid #B7B7B7;
}
@media screen and (max-width: 767px) {
  .faq__Dl {
    padding: 3.8rem 0;
    border-bottom: 0.1rem solid #B7B7B7;
  }
}
.faq__Dt {
  font-size: 2rem;
  padding-left: 6.4rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__Dt {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.42;
    padding-left: 5.8rem;
    padding-right: 3rem;
  }
}
.faq__Dt:before {
  position: absolute;
  left: 0;
  top: -0.2em;
  font-size: 5.7rem;
  font-weight: bold;
  font-family: "Arial";
  color: #00C2D2;
  content: "Q";
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq__Dt:before {
    top: calc(50% - 0.5em);
  }
}
.faq__Dt:after {
  position: absolute;
  right: 0;
  top: calc(50% - 1.05rem);
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  background: url("./../img/icon_plus.svg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .faq__Dt:after {
    top: calc(50% - 0.75rem);
    width: 1.5rem;
    height: 1.5rem;
  }
}
.faq__Dt.op:after {
  top: calc(50% - 0.1rem);
  width: 2.1rem;
  height: 0.2rem;
  background: url("./../img/icon_mynus.svg");
  background-size: cover;
}
.faq__Dd {
  margin-top: 2.3rem;
  padding-left: 6.4rem;
  width: calc(100% - 6.4rem);
  display: none;
}
@media screen and (max-width: 767px) {
  .faq__Dd {
    padding-left: 0;
    width: 100%;
  }
}
.faq__Dd-Gray {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.71em;
  min-height: 10rem;
  background: #F4F4F4;
  padding: 2.2rem 9rem;
  border-radius: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__Dd-Gray {
    padding: 3rem 2.5rem 3rem 7rem;
    font-size: 1.2rem;
  }
}
.faq__Dd-Gray:before {
  position: absolute;
  left: 2.8rem;
  line-height: 1;
  top: 0.375em;
  font-size: 5.7rem;
  font-weight: bold;
  font-family: "Arial";
  color: #000;
  content: "A";
}
@media screen and (max-width: 767px) {
  .faq__Dd-Gray:before {
    font-size: 4.5rem;
    top: 2.8rem;
  }
}