@charset "UTF-8";
html {
  font-size: 62.5%;
  line-height: 2;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 2rem;
  color: #373A45;
  font-family: "inter", "游ゴシック体", "YuGothic", "Hiragino Mincho Pro", Arial, "メイリオ", "Meiryo", sans-serif;
}

a {
  cursor: pointer;
}

/*--------------------------------
 CSSリセット
---------------------------------*/
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

img {
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

li, a {
  list-style-type: none;
  text-decoration: none;
  color: #333;
}

input:not([type=checkbox]),
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
input[type=checkbox],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header-wrapper {
  width: 100%;
  position: fixed;
  background-color: #D9D9D9;
  z-index: 100;
}

#header {
  max-width: 1200px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 960px) {
  #header {
    height: 80px;
    padding: 0 30px;
  }
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#header .header-inner .logo {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 80px;
}
#header .header-inner img {
  height: 80px;
}
@media screen and (max-width: 960px) {
  #header .header-inner img {
    height: 60px;
    vertical-align: middle;
  }
}
#header .header-inner h1 {
  line-height: 80px;
  font-family: "Cherry Bomb One", cursive;
}
#header .header-inner h1 a {
  color: #FFF;
  font-size: 4rem;
}
@media screen and (max-width: 960px) {
  #header .header-inner h1 a {
    font-size: 3rem;
  }
}
#header .header-inner .global-nav {
  display: flex;
}
#header .header-inner .global-nav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  #header .header-inner .global-nav ul {
    width: 100%;
    height: 100%;
    opacity: 0;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: -1000px;
    left: 0;
    background-color: #FFF;
    border-top: 1px solid #333;
  }
}
#header .header-inner .global-nav ul.active {
  opacity: 1;
  top: 80px;
}
#header .header-inner .global-nav ul a {
  color: #333333;
}
@media screen and (max-width: 960px) {
  #header .header-inner .global-nav ul a {
    border-bottom: 1px solid #333;
    display: block;
    text-align: center;
    font-weight: bold;
  }
}
#header .header-inner .global-nav ul a:hover {
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  #header .header-inner .global-nav ul a:hover {
    background-color: #D9D9D9;
  }
}
#header .header-inner .global-nav .menu__btn {
  width: 32px;
  height: 32px;
  position: relative;
  padding-right: 20px;
  display: block;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  #header .header-inner .global-nav .menu__btn {
    opacity: 1;
  }
}
#header .header-inner .global-nav .menu__btn span {
  background: #333;
  display: block;
  width: 26px;
  height: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1s;
}
#header .header-inner .global-nav .menu__btn span:nth-of-type(1) {
  top: 0;
}
#header .header-inner .global-nav .menu__btn span:nth-of-type(2) {
  top: 8px;
}
#header .header-inner .global-nav .menu__btn span:nth-of-type(3) {
  top: 16px;
}
#header .header-inner .global-nav .menu__btn-title {
  position: absolute;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  line-height: 1;
  bottom: 0;
}
#header .header-inner .global-nav .menu__btn.active span:nth-of-type(1) {
  top: 5px;
  left: 3px;
  transform: rotate(45deg);
}
#header .header-inner .global-nav .menu__btn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .header-inner .global-nav .menu__btn.active span:nth-of-type(3) {
  left: 3px;
  top: 5px;
  transform: rotate(-45deg);
}

#main {
  padding-top: 300px;
}
@media screen and (max-width: 960px) {
  #main {
    padding-top: 150px;
  }
}
#main .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
#main .section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  #main .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}
#main .section-title span {
  font-size: 4rem;
}
@media screen and (max-width: 960px) {
  #main .section-title span {
    font-size: 2.5rem;
  }
}
#main .main-section-title {
  position: sticky;
  top: 200px;
}

.hero {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 250px;
}
@media screen and (max-width: 960px) {
  .hero {
    justify-content: space-around;
    margin-bottom: 100px;
  }
}
.hero .hero-title {
  writing-mode: vertical-lr;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 960px) {
  .hero .hero-title {
    font-size: 2rem;
  }
}
.hero img {
  width: 300px;
}
@media screen and (max-width: 960px) {
  .hero img {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .hero img {
    width: 100px;
  }
}

.main-visual-list {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 200px;
  margin-bottom: 300px;
}
@media screen and (max-width: 960px) {
  .main-visual-list {
    gap: 80px;
    margin-bottom: 150px;
  }
}
.main-visual-item {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #000;
  background: #FFF;
  height: 350px;
  position: sticky;
  top: 300px;
}
@media screen and (max-width: 960px) {
  .main-visual-item {
    gap: 20px;
    padding: 0 20px;
    height: 250px;
  }
}
.main-visual-item:nth-of-type(2) {
  flex-direction: row-reverse;
  top: 350px;
}
.main-visual-item:nth-of-type(3) {
  top: 400px;
}
.main-visual-item img {
  width: 250px;
}
@media screen and (max-width: 960px) {
  .main-visual-item img {
    width: 150px;
  }
}
.main-visual-item p {
  width: 350px;
}
@media screen and (max-width: 960px) {
  .main-visual-item p {
    font-size: 1.6rem;
  }
}
.main-visual .dc {
  opacity: 0;
}

.top-service-list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 300px;
}
@media screen and (max-width: 960px) {
  .top-service-list {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding-bottom: 150px;
  }
}
.top-service-list__item {
  width: calc(33.3333333333% - 50px);
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 960px) {
  .top-service-list__item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.top-service-list__item::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid #333333;
  border-radius: 0 50px 0 50px;
  background-color: #D9D9D9;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .top-service-list__item::before {
    top: -10px;
    left: 10px;
    border-radius: 0 25px 0 25px;
  }
}
.top-service-list__item .top-service-list__img {
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .top-service-list__item .top-service-list__img {
    width: 150px;
    margin-bottom: 0;
  }
}
.top-service-list__item img {
  width: 100%;
}
.top-service-list__card {
  height: 100%;
  border: 1px solid #333333;
  border-radius: 0 50px 0 50px;
  background-color: #FFF;
  padding: 50px;
  transition: all 0.5s;
}
@media screen and (max-width: 960px) {
  .top-service-list__card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border-radius: 0 25px 0 25px;
  }
}
.top-service-list__card:hover {
  border-radius: 0 50px 0 50px;
  transform: translate(20px, -20px);
}
@media screen and (max-width: 960px) {
  .top-service-list__card:hover {
    border-radius: 0 25px 0 25px;
    transform: translate(10px, -10px);
  }
}
@media screen and (max-width: 960px) {
  .top-service-list__card p {
    font-size: 1.6rem;
    width: 50%;
  }
}

.top-question-list {
  max-width: 1000px;
  margin: 0 auto;
}
.top-question-list__item {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 960px) {
  .top-question-list__item {
    gap: 30px;
    font-size: 1.6rem;
  }
}
.top-question-list__item:nth-of-type(2) {
  margin-top: 200px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  .top-question-list__item:nth-of-type(2) {
    margin-top: 50px;
  }
}
.top-question-list__img img {
  width: 100%;
}

.contact-link {
  text-align: center;
  margin: 150px 0 200px;
}
@media screen and (max-width: 960px) {
  .contact-link {
    margin: 100px 0 50px;
  }
}
.contact-link__btn {
  display: inline-block;
  color: #333333;
  border: 2px solid #333333;
  width: 400px;
  height: 80px;
  border-radius: 40px;
  text-align: center;
  line-height: 80px;
  font-weight: bold;
  position: relative;
  transition: all 0.5s;
}
@media screen and (max-width: 960px) {
  .contact-link__btn {
    width: 300px;
    font-size: 1.6rem;
    height: 60px;
    line-height: 60px;
  }
}
.contact-link__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg) translateY(-50%);
}
.contact-link__btn:hover {
  background-color: #D9D9D9;
}

#footer {
  height: 40vh;
  background-color: #D9D9D9;
  text-align: center;
  position: relative;
}
#footer .footer-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#footer .footer-info p {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
#footer .footer-info span {
  font-size: 3rem;
}
@media screen and (max-width: 960px) {
  #footer .footer-info span {
    font-size: 2rem;
  }
}
#footer .footer-info .sns-icon a {
  color: #333333;
}
#footer .footer-info .sns-icon i {
  font-size: 4rem;
}
#footer .footer-info .sns-icon i:first-of-type {
  margin-right: 20px;
}
#footer img {
  width: 100%;
}
#footer .footer-img1 {
  position: absolute;
  width: 100px;
  bottom: 50px;
  left: 100px;
}
@media screen and (max-width: 960px) {
  #footer .footer-img1 {
    width: 60px;
    left: 50px;
  }
}
#footer .footer-img2 {
  position: absolute;
  width: 100px;
  top: 50px;
  right: 100px;
}
@media screen and (max-width: 960px) {
  #footer .footer-img2 {
    width: 60px;
    top: 30px;
    right: 50px;
  }
}
#footer small {
  font-size: 1.4rem;
  position: absolute;
  bottom: 20px;
  transform: translateX(-50%);
}

.service-list__item {
  display: flex;
  align-items: center;
  gap: 10%;
  margin-bottom: 30px;
  height: 300px;
}
.service-list__img {
  flex: 0 1 200px;
}
@media screen and (max-width: 960px) {
  .service-list__img {
    flex: 1 1 150px;
  }
}
.service-list__img img {
  width: 100%;
}
.service-list__description {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .service-list__description {
    font-size: 1.6rem;
  }
}

.question-table {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .question-table {
    display: block;
  }
}
.question-table .question-menu {
  flex: 0 1 400px;
}
@media screen and (max-width: 768px) {
  .question-table .question-menu {
    display: flex;
  }
}
.question-table .question-menu a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: #D9D9D9;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .question-table .question-menu a {
    border-right: 1px solid #FFF;
    font-size: 1.8rem;
  }
}
.question-table .question-menu a.current {
  background: #5b677c;
  color: #FFF;
}
@media screen and (max-width: 960px) {
  .question-table #question-contents dl {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.question-table #question-contents dl dt {
  height: 70px;
  line-height: 70px;
  background: #5b677c;
  color: #FFF;
  padding: 0 20px;
}
.question-table #question-contents dl dd {
  color: #000;
  padding: 5px 10px;
}
@media screen and (max-width: 960px) {
  .question-table #question-contents dl dd {
    padding: 5px;
  }
}

.contact-img {
  width: 250px;
  position: absolute;
  top: 250px;
  left: 60%;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .contact-img {
    width: 150px;
    top: 200px;
    left: 10px;
  }
}
.contact-img img {
  width: 100%;
}

input:not([type=checkbox]), select {
  line-height: 1;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  padding: 0 10px;
  height: 48px;
}

textarea {
  line-height: 1;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  padding: 0 10px;
  padding: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  textarea {
    margin-bottom: 30px;
  }
}

.contact-description {
  max-width: 800px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 960px) {
  .contact-description {
    font-size: 1.6rem;
  }
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__name {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact-form__name {
    display: block;
    -moz-text-align-last: left;
         text-align-last: left;
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}
.contact-form__name p {
  flex: 0 1 250px;
  text-align: right;
  font-weight: bold;
}
.contact-form__name p .validation {
  margin-left: 5px;
  color: rgb(246, 92, 92);
}

.privacyPolicy {
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .privacyPolicy {
    font-size: 1.6rem;
  }
}
.privacyPolicy-box {
  height: 280px;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 5px;
}
.privacyPolicy-title {
  text-align: center;
}
.privacyPolicy-textarea {
  height: 200px;
  overflow-y: scroll;
  line-height: 2.5rem;
  padding: 5px;
  border: 1px solid #333;
}
.privacyPolicy-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 960px) {
  .privacyPolicy-checkbox {
    margin-top: 5px;
  }
}/*# sourceMappingURL=style.css.map */