@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
/*===================
変数
===================*/
/*===================
メディアクエリ
===================*/
/*===================
reset
===================*/
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/*===========================
base
===========================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  background: #F3F3F3;
  color: #3E3E3E;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.6;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/*===================
共通クラス
===================*/
@media screen and (min-width: 768px) {
  .section {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 60px;
  }
}

.section-title-black-center {
  font-size: 3.6rem;
  font-weight: 600;
  color: #3E3E3E;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title-black-center {
    font-size: 3rem;
  }
}

.section-title-white-center {
  font-size: 3.6rem;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title-white-center {
    font-size: 3rem;
  }
}

.section-title-black {
  font-size: 3.6rem;
  font-weight: 600;
  color: #3E3E3E;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title-black {
    font-size: 3rem;
  }
}

.section-title-white {
  font-size: 3.6rem;
  font-weight: 600;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title-white {
    font-size: 3rem;
  }
}

.link-button-conversion {
  font-weight: 700;
  background: #FFAA3B;
  color: #FFFFFF;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .link-button-conversion {
    padding: 10px 50px;
    font-size: 1.8rem;
    letter-spacing: 0.025em;
  }
  .link-button-conversion:hover {
    background: #F18900;
  }
}
@media screen and (max-width: 767px) {
  .link-button-conversion {
    padding: 11px 32px;
  }
}

.link-button-conversion1 {
  font-weight: 700;
  background: #B2B2B2;
  color: #FFFFFF;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(62, 62, 62, 0.2);
  transition: all 0.3s ease 0s;
}
.link-button-conversion1.-active {
  background: #FFAA3B;
}
.link-button-conversion1.-active:hover {
  background: #F18900;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .link-button-conversion1 {
    padding: 11px 50px;
    font-size: 1.8rem;
    letter-spacing: 0.025em;
  }
}
@media screen and (max-width: 767px) {
  .link-button-conversion1 {
    padding: 16px 50px;
  }
}

.link-button-white {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: #FFFFFF;
  color: #3E3E3E;
  display: inline-block;
  border: 1px solid #707070;
  letter-spacing: 0.2em;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .link-button-white {
    font-size: 2rem;
    padding: 15px 77px;
  }
}
@media screen and (max-width: 767px) {
  .link-button-white {
    font-size: 1.8rem;
    padding: 12px 97px;
  }
}
.link-button-white:hover {
  background: #3E3E3E;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.link-button-black {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background: #3E3E3E;
  color: #FFFFFF;
  display: inline-block;
  border: 1px solid #FFFFFF;
  letter-spacing: 0.2em;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .link-button-black {
    font-size: 2rem;
    padding: 15px 77px;
  }
}
@media screen and (max-width: 767px) {
  .link-button-black {
    font-size: 1.8rem;
    padding: 11px 97px;
  }
}
.link-button-black:hover {
  background: #FFFFFF;
  color: #3E3E3E;
  border: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/*===================
header
===================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    text-align: center;
    background: rgba(255, 255, 255, 0.1019607843);
    height: 83px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    background: #FFFFFF;
    height: 68px;
  }
}

@media screen and (max-width: 767px) {
  .header-inner {
    display: flex;
    align-items: center;
    height: inherit;
    padding: 0 16px;
  }
}

.sp-title {
  font-size: 2.3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #3E3E3E;
}

.sp-nav_toggle {
  position: absolute;
  top: 24px;
  right: 14px;
  z-index: 300;
  transition: all 0.4s ease 0s;
}
.sp-nav_toggle.is-active {
  transform: translateX(-300px);
}
.sp-nav_toggle.is-active .sp-nav_bar1 {
  top: 8px;
  transform: rotate(45deg);
  background: #FFFFFF;
}
.sp-nav_toggle.is-active .sp-nav_bar2 {
  opacity: 0;
}
.sp-nav_toggle.is-active .sp-nav_bar3 {
  top: 8px;
  transform: rotate(-45deg);
  background: #FFFFFF;
}

.sp-nav_bars {
  width: 26px;
  height: 20px;
  position: relative;
}

.sp-nav_bar1,
.sp-nav_bar2,
.sp-nav_bar3 {
  width: 26px;
  height: 5px;
  border-radius: 5px;
  background: #3E3E3E;
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.4s ease 0s;
}

.sp-nav_bar1 {
  top: 0;
}

.sp-nav_bar2 {
  top: 8px;
}

.sp-nav_bar3 {
  top: 16px;
}

@media screen and (min-width: 768px) {
  .header-nav_items {
    align-items: center;
    display: flex;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .header-nav_item + .header-nav_item {
    margin-left: 40px;
  }
}
.header-nav_item a {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .header-nav_item a {
    font-size: 1.6rem;
    padding: 28px 0;
    letter-spacing: -0.025em;
  }
  .header-nav_item a::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 125%;
    height: 1px;
    background: #3E3E3E;
    opacity: 0;
    transition: all 0.3s ease 0s;
  }
}
.header-nav_item a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 301;
    padding-top: 157px;
    width: 300px;
    height: 100%;
    background: #FFFFFF;
    text-align: center;
    transform: translateX(105%);
    transition: transform 0.4s ease 0s;
  }
  .header-nav.is-active {
    transform: translateX(0);
  }
  .header-nav_items {
    display: block;
    background: #FFFFFF;
  }
  .header-nav_item + .header-nav_item {
    margin-top: 25px;
  }
  .header-nav_item a {
    font-size: 1.8rem;
  }
}
.sp-background {
  background: rgba(62, 62, 62, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 299;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease 0s;
}
.sp-background.is-active {
  opacity: 1;
}

/*===================
top
===================*/
.top {
  position: relative;
}
@media screen and (min-width: 768px) {
  .top {
    background: url(../img/mv@2x.png) no-repeat center center/cover;
    height: 648px;
  }
}
@media screen and (max-width: 767px) {
  .top {
    background: url(../img/mv@2x.png) no-repeat center left -210px/cover;
    height: 667px;
  }
}

@media screen and (min-width: 768px) {
  .top-inner {
    padding-top: 228px;
  }
}
@media screen and (max-width: 767px) {
  .top-inner {
    padding-top: 221px;
  }
}

.top-content {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .top-content {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .top-content {
    max-width: 343px;
  }
}

.top-content_head {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-content_head {
    font-size: 3.2rem;
    line-height: 1.5;
    letter-spacing: 0.001em;
  }
}
@media screen and (max-width: 767px) {
  .top-content_head {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

.top-content_text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .top-content_text {
    font-size: 1.8rem;
    line-height: 1.5555555556;
    margin-top: 27px;
    letter-spacing: 0.025em;
  }
}
@media screen and (max-width: 767px) {
  .top-content_text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .top-content_button {
    margin-top: 39px;
  }
}
@media screen and (max-width: 767px) {
  .top-content_button {
    margin-top: 28px;
    text-align: center;
  }
}

/*===================
news
===================*/
@media screen and (min-width: 768px) {
  .news {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .news {
    margin: -39px 16px 0 16px;
    position: relative;
    z-index: 2;
  }
}

.news-inner {
  background: #FFFFFF;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}
@media screen and (min-width: 768px) {
  .news-inner {
    padding: 54px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .news-inner {
    padding: 35px 0 39px;
  }
}

@media screen and (min-width: 768px) {
  .news-items {
    margin-top: 52px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .news-items {
    margin-top: 33px;
  }
}

.news-item {
  border-top: 1px solid #CECDCD;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding: 39px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-item {
    padding: 14px 0 11px 16px;
  }
}
.news-item:last-child {
  border-bottom: 1px solid #CECDCD;
}
.news-item:hover {
  background-color: rgba(73, 115, 255, 0.1);
}
.news-item_body {
  letter-spacing: 0.025em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-item_body {
    display: flex;
    align-items: center;
  }
}
.news-item_body::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/news-arrow-1@2x.png) no-repeat center center/14px 24px;
  width: 43px;
  height: 46px;
}

.news-item_meta {
  display: flex;
}

.news-item_data {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .news-item_data {
    width: 138px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .news-item_data {
    width: 100px;
    font-size: 1.4rem;
  }
}

.news-item_lable {
  border: 2px solid #3B69FF;
  border-radius: 50px;
  text-align: center;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .news-item_lable {
    height: 29px;
    width: 121px;
    font-size: 1.4rem;
    padding: 1px;
  }
}
@media screen and (max-width: 767px) {
  .news-item_lable {
    font-size: 1.2rem;
    width: 81px;
    height: 20px;
    line-height: 20px;
  }
}

@media screen and (min-width: 768px) {
  .news-item_text {
    margin: 0 83px 0 40px;
    line-height: 1.5555555556;
    font-size: 1.8rem;
    width: calc(100% - 343px);
  }
}
@media screen and (max-width: 767px) {
  .news-item_text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    width: 100%;
    padding-right: 48px;
    margin-top: 6px;
    letter-spacing: 0;
  }
}

.news-button {
  margin-top: 39px;
  text-align: center;
}
/*===================
service
===================*/
.service {
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #3E3E3E;
  height: 400px;
  width: 100%;
  z-index: 0;
}

.service-inner {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .service-title {
    padding-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .service-title {
    padding-top: 34px;
  }
}

.service-items {
  max-width: 960px;
  background: #FFFFFF;
  box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}
@media screen and (min-width: 768px) {
  .service-items {
    padding: 71px 45px 60px;
    margin: 53px auto 0;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .service-items {
    margin: 35px auto 0;
    padding: 52px 16px 36px;
  }
}

.service-item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-item {
    flex: 0 1 33.3%;
  }
  .service-item + .service-item {
    margin-left: 9.38%;
    padding-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .service-item {
    width: 100%;
  }
  .service-item + .service-item {
    margin-top: 52px;
  }
}
.service-item:not(:first-child) .service-item_lead {
  margin-top: 24px;
}

.service-item_image img {
  width: 50px;
}

.service-item_lead {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .service-item_lead {
    margin-top: 15px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .service-item_lead {
    margin-top: 16px;
    line-height: 1.2;
  }
}

.service-item_text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .service-item_text {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .service-item_text {
    margin-top: 14px;
  }
}

/*===================
results
===================*/
.results {
  background: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .results {
    max-width: calc(50vw + 600px);
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .results-inner {
    padding: 54px 0 60px 60px;
    max-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  .results-inner {
    padding: 35px 0 40px 16px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-title {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .swiper {
    margin-top: 53px;
    max-width: 1180px;
    padding-bottom: 63px;
  }
}
@media screen and (max-width: 767px) {
  .swiper {
    margin-top: 34px;
    padding-bottom: 47px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-slide {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    max-width: 274px;
  }
}

.swiper-slide_image img {
  width: 100%;
  height: auto;
}

.swiper-content {
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .swiper-content {
    padding: 11px 15px 21px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-content {
    padding: 8px 12px 10px;
  }
}

.swiper-content_lead {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .swiper-content_lead {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-content_lead {
    font-size: 1.4rem;
  }
}

.swiper-content_text {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .swiper-content_text {
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-content_text {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}

.swiper-pagination {
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    text-align: left;
  }
}

.swiper-pagination-bullet {
  background: #FFFFFF;
  width: 12px;
  height: 12px;
  opacity: 1;
  transition: all 0.2s ease 0s;
}

.swiper-pagination-clickable .swiper-pagination-bullet:hover {
  width: 20px;
  height: 20px;
  border: 1px solid #FFFFFF;
  background: transparent;
  position: relative;
}
.swiper-pagination-clickable .swiper-pagination-bullet:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  border: 1px solid #FFFFFF;
  background: transparent;
  position: relative;
  top: 5px;
}
.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 50%;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0 0 19px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:first-child,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .results-button {
    margin-top: 37px;
  }
}
@media screen and (max-width: 767px) {
  .results-button {
    margin-top: 22px;
    text-align: center;
    padding-right: 16px;
  }
}

/*===================
price
===================*/
@media screen and (min-width: 768px) {
  .price {
    margin-top: 115px;
  }
}
@media screen and (max-width: 767px) {
  .price {
    margin-top: 35px;
  }
}

.price-inner {
  max-width: 960px;
}

.price-table {
  width: 100%;
  border: 1px solid #707070;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .price-table {
    margin-top: 51px;
  }
}
@media screen and (max-width: 767px) {
  .price-table {
    margin-top: 34px;
  }
}

.price-column:not(:last-child) th {
  border-bottom: 1px solid #FFFFFF;
}
.price-column th,
.price-column td {
  font-family: "Montserrat", sans-serif;
  border: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .price-column th,
.price-column td {
    font-size: 2.4rem;
    font-weight: 600;
    height: 59px;
    line-height: 59px;
  }
}
@media screen and (max-width: 767px) {
  .price-column th,
.price-column td {
    font-size: 1.9rem;
    font-weight: 500;
    height: 54px;
    line-height: 54px;
  }
}
.price-column th {
  background: #3E3E3E;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .price-column th {
    width: 262px;
  }
}
@media screen and (max-width: 767px) {
  .price-column th {
    width: 29%;
  }
}
.price-column td {
  width: calc(100% - 262px);
  background: #FFFFFF;
  color: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .price-column td {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .price-column td {
    padding-left: 20px;
    letter-spacing: 0.04em;
  }
}

.price-attention {
  font-size: 1.2rem;
  margin-top: 6px;
}

/*===================
background
===================*/
.background {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .background {
    padding-bottom: 60px;
  }
}
.background::after {
  content: "";
  position: absolute;
  left: 0;
  background: #3E3E3E;
}
@media screen and (min-width: 768px) {
  .background::after {
    top: 148px;
    width: 76.56%;
    bottom: 130px;
  }
}
@media screen and (max-width: 767px) {
  .background::after {
    top: 60px;
    width: 100%;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .background::after {
    top: 104px;
    width: 76.56%;
    bottom: -50px;
  }
}

/*===================
comments
===================*/
.comments {
  position: relative;
  z-index: 1;
  margin-top: 116px;
}
@media screen and (max-width: 767px) {
  .comments {
    margin-top: 55px;
  }
}

@media screen and (min-width: 768px) {
  .comments-inner {
    display: flex;
    align-items: center;
  }
}

.comments-content {
  flex: 0 0 55.5%;
  background: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .comments-content {
    padding: 10% 5%;
  }
}
@media screen and (max-width: 767px) {
  .comments-content {
    padding: 35px 20px 38px;
  }
}

@media screen and (min-width: 768px) {
  .comments-items {
    margin-top: 4.17%;
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .comments-items {
    margin-top: 30px;
  }
}

.comments-item {
  display: flex;
}
@media screen and (min-width: 768px) {
  .comments-item + .comments-item {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .comments-item + .comments-item {
    margin-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  .comments-item_image {
    padding-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .comments-item_image img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .comments-item_image img {
    width: 60px;
    height: 60px;
  }
}

@media screen and (min-width: 768px) {
  .comments-item_text {
    margin-left: 32px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .comments-item_text {
    margin-left: 20px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.comments-image {
  flex: 0 1 100%;
}
.comments-image img {
  max-width: 100%;
  height: auto;
}

/*===================
qa
===================*/
.qa {
  position: relative;
  z-index: 1;
  width: 100%;
  background: url(../img/qa-bg@2x.png) no-repeat top center/cover;
  background-attachment: fixed;
}

@media screen and (min-width: 768px) {
  .qa-title {
    padding-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .qa-title {
    padding-top: 35px;
  }
}

.qa-items {
  max-width: 612px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .qa-items {
    padding: 54px 0 123px;
    margin-left: auto;
    width: 51%;
  }
}
@media screen and (max-width: 767px) {
  .qa-items {
    padding: 34px 0 60px;
    width: 100%;
  }
}

.qa-item {
  background: #FFFFFF;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .qa-item + .qa-item {
    margin-top: 31px;
  }
}
@media screen and (max-width: 767px) {
  .qa-item + .qa-item {
    margin-top: 24px;
  }
}

.qa-item_box {
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .qa-item_box {
    padding: 16px 18px 15px 16px;
  }
}

.qa-item_box-q {
  font-weight: 700;
  line-height: 1.5;
  padding-left: 40px;
  font-family: "Montserrat", sans-serif;
  position: relative;
  letter-spacing: 0.025em;
}
.qa-item_box-q::before {
  content: "Q";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-weight: 600;
  background: #3B69FF;
  border-radius: 50%;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  text-align: center;
}

.qa-item_bars {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 767px) {
  .qa-item_bars {
    width: 14px;
    height: 14px;
  }
}
.qa-item_bars.is-open .qa-item_bar2 {
  transform: rotate(90deg);
}

.qa-item_bar1,
.qa-item_bar2 {
  background: #3B69FF;
}

.qa-item_bar1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .qa-item_bar1 {
    width: 14px;
  }
}

.qa-item_bar2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 15px;
  width: 3px;
  transition: transform 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .qa-item_bar2 {
    height: 14px;
  }
}

.qa-item_box-a {
  background: rgba(59, 105, 255, 0.2);
  margin-top: 16px;
  border-radius: 4px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-item_box-a {
    padding: 11px 16px 12px;
  }
}
@media screen and (max-width: 767px) {
  .qa-item_box-a {
    padding: 8px 12px;
  }
}

.qa-item_text {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .qa-item_text {
    font-size: 1.4rem;
  }
}

/*===================
access
===================*/
.access {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .access {
    margin-top: 115px;
  }
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 36px;
  }
}

@media screen and (min-width: 768px) {
  .access-inner {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .access-content {
    width: 374px;
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .access-content {
    width: 100%;
  }
}

.access-address {
  color: #FFFFFF;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .access-address {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .access-address {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 768px) {
  .access-button {
    width: 314px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .access-button {
    margin-top: 19px;
  }
}
.access-button a {
  text-align: center;
  height: 64px;
  line-height: 64px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .access-button a {
    width: 314px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) {
  .access-button a {
    width: 100%;
    height: 54px;
    line-height: 54px;
    letter-spacing: 0.1em;
  }
}

.access-iframe {
  position: relative;
  width: 100%;
  max-width: 726px;
  box-shadow: 0 0 10px rgba(62, 62, 62, 0.2);
}
@media screen and (min-width: 768px) {
  .access-iframe {
    margin-left: 8.77%;
  }
}
@media screen and (max-width: 767px) {
  .access-iframe {
    margin-top: 19px;
  }
}
.access-iframe::after {
  content: "";
  display: block;
  padding-top: 71.63%;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*===================
contact
===================*/
.contact {
  background: url(../img/contact-bg@2x.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 125px;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-inner {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-inner {
    padding: 40px 16px;
  }
}

.contact-form {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 26px;
}

.contact-form_header {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .contact-form_header {
    background: url(../img/contact1.png) no-repeat top center/100%;
    padding: 55px 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-form_header {
    background: url(../img/sp/Image.png) no-repeat top center/cover;
    padding: 35px 16px 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-form_header {
    padding: 32px 0;
  }
}

.contact-form_text {
  color: #FFFFFF;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .contact-form_text {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contact-form_text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.contact-form_body {
  background: #FFFFFF;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 768px) {
  .contact-form_body {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .contact-form_body {
    padding: 35px 12px 40px;
  }
}

form {
  width: 100%;
}
@media screen and (min-width: 768px) {
  form {
    padding: 0 12.5%;
  }
}

@media screen and (min-width: 768px) {
  .form-content_item {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .form-content_item + .form-content_item {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_item + .form-content_item {
    margin-top: 27px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_item:nth-child(6) {
    margin-top: 22px;
  }
}

.form-content_label {
  flex: 0 0 188px;
}

.form-content_label-text {
  font-weight: bold;
}
.form-content_label-text span {
  display: inline-block;
  background: #FF4646;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form-content_label-text span {
    margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_label-text span {
    margin-left: 20px;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #707070;
  color: inherit;
  font-family: inherit;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  select {
    font-size: inherit;
    padding: 12px 37px 12px 11px;
  }
}
@media screen and (max-width: 767px) {
  select {
    font-size: 1.4rem;
    width: 100%;
    padding: 11px;
  }
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  background: #FFFFFF;
  width: 100%;
  border: 0;
  padding: 8px;
  border: 1px solid #707070;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  textarea {
    font-size: inherit;
    min-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  textarea {
    font-size: 1.4rem;
    min-height: 160px;
  }
}
textarea:hover {
  border: 1px solid #3B69FF;
  box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
}
textarea:focus-visible {
  border: 1px solid #3B69FF;
  box-shadow: 0 0 8px rgba(73, 115, 255, 0.5);
  outline: 0;
}

.form-content_input {
  flex: 0 1 100%;
}
.form-content_input [type=text],
.form-content_input [type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  background: #FFFFFF;
  width: 100%;
  border: 0;
}
@media screen and (min-width: 768px) {
  .form-content_input [type=text],
.form-content_input [type=email] {
    font-size: inherit;
    padding: 9px 12px 5px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_input [type=text],
.form-content_input [type=email] {
    font-size: 1.4rem;
    padding: 7px 5px 2px 0;
  }
}
.form-content_input [type=text],
.form-content_input [type=email] {
  border-bottom: 1px solid #707070;
  transition: all 0.3s ease 0s;
}
.form-content_input [type=text]:hover,
.form-content_input [type=email]:hover {
  border-bottom: 1px solid #3B69FF;
  box-shadow: 0 5px 4px rgba(73, 115, 255, 0.5);
}
.form-content_input [type=text]:focus-visible,
.form-content_input [type=email]:focus-visible {
  border-bottom: 1px solid #3B69FF;
  box-shadow: 0 5px 4px rgba(73, 115, 255, 0.5);
  outline: 0;
}
.form-content_input input:-webkit-autofill {
  box-shadow: 0 0 0px 999px #fff inset;
}

.form-content_select {
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-content_select {
    width: 178px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_select {
    margin-top: 10px;
  }
}
.form-content_select::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #3E3E3E;
  border-left: 2px solid #3E3E3E;
  transform: rotate(-45deg);
  pointer-events: none;
  right: 16px;
}
@media screen and (min-width: 768px) {
  .form-content_select::after {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_select::after {
    top: 13px;
  }
}

.form-content_input-select {
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.form-content_input-select:hover {
  box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
}
.form-content_input-select:focus-visible {
  box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
  outline: 0;
}

.form-content_radio {
  position: relative;
  cursor: pointer;
}
.form-content_radio + .form-content_radio {
  margin-left: 38px;
}
@media screen and (max-width: 767px) {
  .form-content_radio {
    margin-top: 6px;
  }
}

.form-content_radio-wrap {
  display: inline-flex;
}

.form-content_input-radio {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.form-content_input-radio:checked + .form-content_radio-part::after {
  opacity: 1;
}
.form-content_input-radio:hover + .form-content_radio-part::before {
  border-color: #3B69FF;
  box-shadow: 0 0 6px rgba(73, 115, 255, 0.2);
}
.form-content_input-radio:focus-visible + .form-content_radio-part::before {
  background: rgba(73, 115, 255, 0.2);
  border-color: #3B69FF;
}
.form-content_input-radio:active + .form-content_radio-part::before {
  background: rgba(73, 115, 255, 0.2);
  border-color: #3B69FF;
}

.form-content_radio-part {
  display: inline-block;
  padding-left: 21px;
  transition: all 0.3s ease 0s;
}
.form-content_radio-part::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #707070;
  background: #FFFFFF;
}
.form-content_radio-part::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #3B69FF;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
.form-content_radio-part:focus-visible {
  outline: 0;
}

.item-textarea {
  display: block;
}
@media screen and (max-width: 767px) {
  .item-textarea {
    margin-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .form-content_textarea {
    margin-top: 1px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_textarea {
    margin-top: 11px;
  }
}

@media screen and (min-width: 768px) {
  .form-content_check-section {
    margin-top: 29px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_check-section {
    margin-top: 22px;
  }
}

.form-content_check {
  position: relative;
  cursor: pointer;
}

.form-content_input-check {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.form-content_input-check:checked + .form-content_check-part::after {
  opacity: 1;
}
.form-content_input-check:hover + .form-content_check-part::before {
  border: 1px solid #3B69FF;
  box-shadow: 0 0 5px rgba(73, 115, 255, 0.2);
}
.form-content_input-check:focus-visible + .form-content_check-part::before {
  border: 1px solid #3B69FF;
  box-shadow: 0 0 5px rgba(73, 115, 255, 0.2);
  outline: 0;
}
.form-content_input-check:active + .form-content_check-part::before {
  border: 1px solid #3B69FF;
  background: rgba(73, 115, 255, 0.2);
}

.form-content_check-part {
  padding-left: 38px;
  transition: all 0.3s ease 0s;
}
.form-content_check-part::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #707070;
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .form-content_check-part::before {
    width: 19px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_check-part::before {
    width: 16px;
    height: 16px;
  }
}
.form-content_check-part::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 7px;
  border-right: 2px solid #3B69FF;
  border-bottom: 2px solid #3B69FF;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .form-content_check-part::after {
    width: 6px;
    height: 13px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_check-part::after {
    width: 4px;
    height: 13px;
  }
}

.form-content_check-link {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-content_check-link {
    font-size: 1.8rem;
  }
}
.form-content_check-link + span {
  display: inline-block;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-content_check-link + span {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .form-content_button {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .form-content_button {
    margin-top: 29px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .link-button-conversion1 {
    padding: 11px 51px;
  }
}

.form-message {
  text-align: center;
  font-weight: 700;
  display: none;
}
.form-message.error {
  color: #FF4646;
}

/*===================
footer
===================*/
.footer {
  background: #3E3E3E;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 45px 40px 56px;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .footer-inner {
    text-align: center;
    padding: 47px 0 54px;
  }
}

.footer-sns_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-sns_list {
    justify-content: center;
  }
}

.footer-sns {
  opacity: 0.6;
  color: #FFFFFF;
  font-size: 4rem;
  transition: opacity 0.3s ease 0s;
}
.footer-sns:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .footer-sns + .footer-sns {
    margin-left: 28px;
  }
}
@media screen and (max-width: 767px) {
  .footer-sns + .footer-sns {
    margin-left: 45px;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav {
    margin-top: 23px;
  }
}

.footer-nav-list {
  color: #FFFFFF;
  letter-spacing: 0.025em;
  transition: opacity 0.3s ease 0s;
}
.footer-nav-list:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .footer-nav-list + .footer-nav-list {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    font-size: 1.4rem;
  }
  .footer-nav-list + .footer-nav-list {
    margin-top: 18px;
  }
}

.footer-title {
  color: #E3E3E3;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  transition: color 0.3s ease 0s;
}
.footer-title:hover {
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer-title {
    font-size: 4rem;
    padding-top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .footer-title {
    font-size: 3.2rem;
    margin-top: 30px;
  }
}

.copylight {
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .copylight {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .copylight {
    margin-top: 4px;
  }
}

.to-top {
  position: fixed;
  z-index: 100;
  display: none;
  transition: transform 0.4s ease 0s;
}
@media screen and (min-width: 768px) {
  .to-top {
    bottom: 40px;
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .to-top {
    bottom: 14px;
    right: 16px;
  }
}
.to-top img {
  width: 50px;
}
.to-top:hover {
  transform: scale(1.1);
}