@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: url(/img/french-stucco.png);
  color: #515151;
}

img {
  max-width: 100%;
  height: auto;
}

/*=======
ブレイクポイントとメディアクエリ
========*/
/*=======
（初期化の続き。リストの「・」等のスタイル解除）
========*/
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/*=================================
共通クラス
=================================*/
.section__title_box {
  text-align: center;
}

.util__title {
  font-family: "Kaisei Tokumin", serif;
  font-size: 50px;
  font-weight: 500;
  position: relative;
  color: #151184;
}
@media screen and (max-width: 849px) {
  .util__title {
    font-size: 28px;
  }
}
.util__title::before {
  position: absolute;
  content: "";
  height: 74px;
  width: 80px;
  background: url(/img/ashirai.png) no-repeat center center/contain;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.util__title::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 1px;
  background: #151184;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 850px) and (max-width: 1199px) {
  .util__title::after {
    width: 300px;
  }
}
@media screen and (max-width: 849px) {
  .util__title::after {
    width: 200px;
  }
}

.section__subtitle {
  font-size: 24px;
  padding-top: 10px;
  color: #151184;
  font-family: "Kaisei Tokumin", serif;
}
@media screen and (max-width: 849px) {
  .section__subtitle {
    font-size: 18px;
  }
}

/*=================================
header
=================================*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 100;
  background: transparent;
  font-family: "Kaisei Tokumin", serif;
  margin-left: auto;
  padding: 0 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.is-active {
  background: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  display: block;
  width: 100%;
  max-width: 146px;
  padding-top: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__logo.is-active {
  max-width: 80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*=================================
main_visual
=================================*/
.main__visual {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.main__visual__inner {
  width: 100%;
  position: relative;
}
.main__visual__inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(/img/MV2.png) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: fadeIn 3s forwards;
          animation: fadeIn 3s forwards;
}

.mission {
  padding: 100px 60px 60px 60px;
}
@media screen and (max-width: 849px) {
  .mission {
    padding: 50px 20px;
  }
}

.mission__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 849px) {
  .mission__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.mission__imagebox {
  width: 100%;
}

.mission__textbox {
  width: 100%;
}
@media screen and (max-width: 849px) {
  .mission__textbox {
    padding-top: 60px;
  }
}

.mission__textbox_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

.mission__text {
  padding: 30px;
}
@media screen and (max-width: 849px) {
  .mission__text {
    padding: 30px 0 0;
  }
}

/*=================================
teacher
=================================*/
.teacher {
  padding: 60px;
}
@media screen and (max-width: 849px) {
  .teacher {
    padding: 60px 20px;
  }
}

.teacher__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 849px) {
  .teacher__inner {
    display: block;
  }
}

.teacher__textbox {
  width: 50%;
}
@media screen and (max-width: 849px) {
  .teacher__textbox {
    width: 100%;
  }
}

.teacher__text {
  padding: 30px;
}
@media screen and (max-width: 849px) {
  .teacher__text {
    padding: 30px 0;
  }
}

.teacher__imagebox {
  width: 50%;
}
@media screen and (max-width: 849px) {
  .teacher__imagebox {
    width: 100%;
  }
}
.teacher__imagebox img {
  display: block;
  width: 100%;
}

.pag__button a {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 200px;
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  .pag__button a {
    padding: 0 20px 100px;
  }
}
.pag__button a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.reverse__button {
  width: 100%;
}

.reverse__button_inner {
  text-align: center;
}
.reverse__button_inner a {
  display: inline-block;
  padding: 20px 40px;
  background: #151184;
  color: #fff;
  font-size: 24px;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 849px) {
  .reverse__button_inner a {
    padding: 10px 20px;
    font-size: 18px;
  }
}
.reverse__button_inner a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*=================================
voice
=================================*/
.voice {
  padding: 60px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 849px) {
  .voice {
    padding: 60px 20px;
  }
}

.voice__intro {
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
}

.voice__intro_inner {
  padding: 30px;
  background: rgba(21, 17, 132, 0.1);
  border-radius: 15px;
}
@media screen and (max-width: 849px) {
  .voice__intro_inner {
    padding: 30px 15px;
  }
}

.voice__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 60px;
}
@media screen and (max-width: 849px) {
  .voice__box {
    display: block;
  }
  .voice__box:not(:first-child) {
    padding-top: 80px;
  }
}

.voice__box_text {
  width: 50%;
}
@media screen and (max-width: 849px) {
  .voice__box_text {
    width: 100%;
  }
}

.voice__box_text_img img {
  width: 100%;
}

.voice__box_text_text {
  padding: 15px;
}

.voice__box_video {
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width: 849px) {
  .voice__box_video {
    width: 100%;
    padding-left: 0;
  }
}

.voice__box_video_inner {
  position: relative;
  padding-top: 56.231884058%;
}
.voice__box_video_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=================================
service
=================================*/
.service {
  padding: 100px 0;
  background: rgba(255, 187, 11, 0.1019607843);
}
@media screen and (max-width: 849px) {
  .service {
    padding: 100px 20px;
  }
}

.service__toy_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 849px) {
  .service__toy_box {
    display: block;
    margin-top: 50px;
  }
}

.service__toy_image {
  width: 50%;
}
@media screen and (max-width: 849px) {
  .service__toy_image {
    width: 100%;
  }
}
.service__toy_image img {
  display: block;
  border-radius: 0 40px 40px 0;
  -webkit-box-shadow: 3px 5px 20px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 5px 20px 1px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 849px) {
  .service__toy_image img {
    border-radius: 20px;
  }
}

.service__toy_textbox {
  padding: 0 50px;
  width: 50%;
  max-width: 700px;
  margin-top: 20px;
}
@media screen and (max-width: 849px) {
  .service__toy_textbox {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
}

.service__toy_textbox_inner {
  width: 100%;
}

.service__util_text_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.service__util_text_contents:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 849px) {
  .service__util_text_contents:not(:first-child) {
    margin-top: 40px;
  }
}

.service__util_text_contents_image {
  width: 100%;
  max-width: 60px;
}
.service__util_text_contents_image img {
  display: block;
  opacity: 0.3;
}

.service__util_text_contents_tesxtbox {
  padding-left: 30px;
  width: 100%;
}

.service__util_text_contents_title {
  font-size: 16px;
  font-weight: 700;
  color: #151184;
  border-bottom: 1px solid rgba(21, 17, 132, 0.5);
  line-height: 1.2;
  padding-bottom: 5px;
}

.service__util_text_contents_text {
  margin-top: 10px;
}

.service__contents_title {
  color: #151184;
  text-align: center;
  font-size: 20px;
  padding: 10px 30px;
  background: rgba(21, 17, 132, 0.1);
  border-radius: 30px;
}
@media screen and (max-width: 849px) {
  .service__contents_title {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 5px 20px;
  }
}

.service__toy_text {
  margin-top: 30px;
}
.service__toy_text p {
  padding-left: 20px;
}

.service__astrology_title {
  display: inline-block;
  color: #151184;
  font-size: 24px;
  padding: 10px 30px;
  background: rgba(21, 17, 132, 0.1);
  border-radius: 30px;
}

.service__astrology_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 140px;
}
@media screen and (max-width: 849px) {
  .service__astrology_box {
    display: block;
  }
}

.service__astrology_textbox {
  padding: 0 50px;
  width: 50%;
  max-width: 700px;
  margin-top: 20px;
}
@media screen and (max-width: 849px) {
  .service__astrology_textbox {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
}

.service__astrology_textbox_inner {
  width: 100%;
}

.service__result {
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: inset 3px 5px 5px 1px rgba(0, 0, 0, 0.3);
          box-shadow: inset 3px 5px 5px 1px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}
@media screen and (max-width: 849px) {
  .service__result {
    margin-top: 30px;
    border-radius: 20px;
  }
}

.service__result_title {
  color: #fff;
  padding: 5px 15px;
  background: #151184;
  border-radius: 30px;
  display: inline-block;
}

.service__result_text {
  margin-top: 12px;
}

.service__astrology_image {
  width: 50%;
}
@media screen and (max-width: 849px) {
  .service__astrology_image {
    width: 100%;
  }
}
.service__astrology_image img {
  display: block;
  border-radius: 40px 0 0 40px;
  -webkit-box-shadow: 3px 5px 20px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 5px 20px 1px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 849px) {
  .service__astrology_image img {
    border-radius: 20px;
  }
}

.service__astrology_text {
  margin-top: 30px;
}
.service__astrology_text p {
  padding-left: 20px;
}

.service__astrology_link {
  margin-top: 30px;
}
@media screen and (max-width: 849px) {
  .service__astrology_link {
    text-align: center;
  }
}
.service__astrology_link p {
  font-size: 14px;
}

.service__astrology_harrel_link {
  margin-top: 10px;
}
.service__astrology_harrel_link a {
  display: block;
  width: 100%;
  max-width: 200px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  .service__astrology_harrel_link a {
    margin: 10px auto 0;
  }
}
.service__astrology_harrel_link a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service__astrology_harrel_link a img {
  display: block;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.service__astrology_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 849px) {
  .service__astrology_sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.service__astrology_sns_icon a {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service__astrology_sns_icon a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service__astrology_sns_icon:not(:first-child) {
  padding-left: 10px;
}

/*=================================
sample
=================================*/
.sample {
  padding: 100px 20px 150px;
  background: url(/img/g_back.webp) no-repeat center center/cover;
  background-attachment: fixed;
}

.sample__intro_inner {
  padding: 0 20px;
}
@media screen and (max-width: 849px) {
  .sample__intro_inner {
    padding: 0;
  }
}

.sample__intro {
  padding: 30px;
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 849px) {
  .sample__intro {
    display: block;
    padding: 20px;
  }
}

.sample__intro_title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  background: #151184;
  padding: 3px 20px;
  border-radius: 50px;
  margin: 0 auto;
  text-align: center;
}

.sample__intro_text {
  margin-top: 20px;
  text-align: left;
}

.sample__intro_img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}

.sample__video_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 40px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 849px) {
  .sample__video_inner {
    display: block;
  }
}

.sample__videobox {
  width: calc(33.3% - 16px);
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
@media screen and (max-width: 849px) {
  .sample__videobox {
    width: 100%;
  }
}
.sample__videobox:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 849px) {
  .sample__videobox:not(:first-child) {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 849px) {
  .sample__videobox {
    margin-top: 10px;
    padding: 10px;
  }
}
.sample__videobox a {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sample__videobox a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sample__video img {
  display: block;
}

.sample__video_title {
  margin-top: 20px;
}

.pwt01 {
  color: #fff;
  font-weight: bold;
  padding: 1px 20px;
  background: rgba(21, 17, 132, 0.5);
  display: inline-block;
  border-radius: 50px;
}

.pwt02 {
  margin-top: 5px;
}

/*=================================
gallery
=================================*/
.gallery {
  padding: 100px 0 150px;
  background: url(/img/g_back.webp) no-repeat center center/cover;
  background-attachment: fixed;
}

.gallery__intro {
  margin-top: 60px;
}
@media screen and (max-width: 849px) {
  .gallery__intro {
    padding: 0 20px;
  }
}

.gallery__intro_box {
  width: 100%;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
}
@media screen and (max-width: 849px) {
  .gallery__intro_box {
    padding: 20px;
    margin: 20px auto;
  }
}
.gallery__intro_box p {
  color: #151184;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 849px) {
  .gallery__intro_box p {
    text-align: left;
  }
}

.swiper {
  width: 100%;
  margin-top: 40px;
}

.swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
}

.swiper_image {
  padding: 20px;
}
.swiper_image img {
  border-radius: 20px;
}

.swiper_container {
  position: relative;
}

.swiper-pagination {
  bottom: -70px !important;
}

.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 50px;
}

.swiper-button-prev {
  margin-left: 20px;
}
@media screen and (max-width: 849px) {
  .swiper-button-prev {
    margin-left: 0px;
  }
}

.swiper-button-next {
  margin-right: 20px;
}
@media screen and (max-width: 849px) {
  .swiper-button-next {
    margin-right: 0;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
@media screen and (max-width: 849px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 38px;
    height: 38px;
  }
}

.swiper-button-prev::after {
  background-image: url(/img/gallery_prev.png);
}

.swiper-button-next::after {
  background-image: url(/img/gallery_next.png);
}

.swiper-pagination-bullet {
  background-color: #151184;
}

body .modaal-wrapper .modaal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  border: 5px solid #b20000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 849px) {
  body .modaal-wrapper .modaal-close {
    width: 50px;
    height: 50px;
  }
}
body .modaal-wrapper .modaal-close:hover {
  background-color: #f8f8f8;
}
body .modaal-wrapper .modaal-close::before, body .modaal-wrapper .modaal-close::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 5px;
  background-color: #b20000;
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 849px) {
  body .modaal-wrapper .modaal-close::before, body .modaal-wrapper .modaal-close::after {
    width: 30px;
    height: 3px;
  }
}
body .modaal-wrapper .modaal-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
body .modaal-wrapper .modaal-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 768px) {
  body .modaal-wrapper .modaal-close body .modaal-wrapper .modaal-close {
    width: 50px;
    height: 50px;
  }
  body .modaal-wrapper .modaal-close body .modaal-wrapper .modaal-close::before, body .modaal-wrapper .modaal-close body .modaal-wrapper .modaal-close::after {
    width: 22px;
    height: 2px;
  }
}

/*=================================
Contact
=================================*/
.contact {
  padding: 100px 20px;
}
@media screen and (max-width: 849px) {
  .contact {
    padding: 60px 20px;
  }
}

.contact__intro {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
}

.contact__intro_inner {
  padding: 40px 30px;
  background: rgba(21, 17, 132, 0.1);
  border-radius: 15px;
  text-align: center;
}
@media screen and (max-width: 849px) {
  .contact__intro_inner {
    padding: 30px 15px;
  }
}

.contact__intro_inner_title {
  color: #fff;
  display: inline-block;
  padding: 3px 20px;
  border-radius: 50px;
  background: #151184;
  font-weight: bold;
  font-size: 18px;
}

.contact__intro_inner_text {
  margin-top: 30px;
  text-align: left;
}
.contact__intro_inner_text p {
  font-weight: bold;
  color: #151184;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 849px) {
  .contact__intro_inner_text p {
    font-size: 16px;
  }
}
.contact__intro_inner_text span {
  color: #b20000;
  font-weight: bold;
}

.contact__intro_inner_price_title {
  margin-top: 50px;
  font-size: 22px;
  font-weight: bold;
  color: #151184;
  padding: 10px;
  border: 2px solid #151184;
  border-radius: 10px;
  background: rgba(21, 17, 132, 0.2);
}

.contact__intro_inner_price_text {
  margin-top: 20px;
  text-align: left;
}
.contact__intro_inner_price_text span {
  font-weight: bold;
  font-size: 18px;
  color: #151184;
  position: relative;
}
.contact__intro_inner_price_text span::before {
  position: absolute;
  content: "";
  width: 100%;
  border-bottom: 8px solid #fffb00;
  bottom: -5px;
  opacity: 0.4;
}

.contact__img a {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 30px;
  -webkit-animation: poyopoyo 2s ease-out infinite;
          animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__img a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  .contact__img {
    padding-top: 15px;
  }
}

@-webkit-keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
/*=================================
company
=================================*/
.company {
  padding: 100px 20px;
  background: rgba(255, 187, 11, 0.1019607843);
}

.company__inner {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}

.company__table_inner {
  margin-top: 60px;
  font-family: "Kaisei Tokumin", serif;
}

.company__table {
  width: 100%;
  max-width: 690px;
  border-top: solid 1px rgba(0, 0, 0, 0.25);
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 849px) {
  .company__table {
    background: transparent;
  }
}
.company__table tr {
  height: 83px;
  line-height: 83px;
}
.company__table th {
  width: 204px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
}
@media screen and (max-width: 849px) {
  .company__table th {
    width: 90px;
  }
}
.company__table td {
  border-bottom: solid 1px rgba(0, 0, 0, 0.25);
  padding: 15px;
  vertical-align: middle;
  line-height: 1.5;
}

.border {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
  padding-left: 40px;
  display: block;
}
@media screen and (max-width: 849px) {
  .border {
    padding-left: 30px;
  }
}

.company__map {
  margin-top: 40px;
}

.company__map_inner {
  aspect-ratio: 16/9;
  max-width: 690px;
}
.company__map_inner iframe {
  width: 100%;
  height: 100%;
}

.company__contact_button {
  text-align: center;
  margin-top: 40px;
}
.company__contact_button a {
  display: inline-block;
  width: 210px;
  height: 60px;
  background: #151184;
  color: #fff;
  border-radius: 30px;
  font-family: "Kaisei Tokumin", serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #151184;
  font-size: 20px;
  line-height: 57px;
}
.company__contact_button a:hover {
  color: #151184;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*=================================
footer
=================================*/
.footer {
  width: 100%;
  background: #151184;
  padding: 47px 40px 37px;
}
@media screen and (max-width: 849px) {
  .footer {
    padding: 30px 20px;
    text-align: center;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 849px) {
  .footer__contents {
    display: block;
  }
}

.footer__contents_logo img {
  display: block;
  width: 100%;
  max-width: 109px;
}
@media screen and (max-width: 849px) {
  .footer__contents_logo img {
    margin: 0 auto;
  }
}

.footer__contents_address {
  color: #fff;
  font-family: "Kaisei Tokumin", serif;
  padding-left: 20px;
}
@media screen and (max-width: 849px) {
  .footer__contents_address {
    padding-left: 0;
    margin-top: 20px;
  }
}

.footer__contents_address_company {
  font-size: 20px;
  font-weight: 600;
}

.footer__copy {
  margin-top: 25px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 849px) {
  .footer__copy {
    display: block;
  }
}

.footer__copy_privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 849px) {
  .footer__copy_privacy {
    display: block;
    text-align: center;
  }
}

.footer__copy_privacy_link a {
  padding: 0 24px 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 849px) {
  .footer__copy_privacy_link a {
    padding: 0;
  }
}
.footer__copy_privacy_link a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__copy_privacy_link:not(:first-child) {
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 849px) {
  .footer__copy_privacy_link:not(:first-child) {
    padding-left: 0;
    margin-top: 20px;
  }
}
.footer__copy_privacy_link:not(:first-child)::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 849px) {
  .footer__copy_privacy_link:not(:first-child)::before {
    display: none;
  }
}

.footer__copy_copyright {
  font-family: "Kaisei Tokumin", serif;
}
@media screen and (max-width: 849px) {
  .footer__copy_copyright {
    margin-top: 30px;
  }
}

/*=================================
to_top
=================================*/
.to_top {
  position: fixed;
  z-index: 120;
  bottom: 30px;
  right: 30px;
  width: 65px;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 849px) {
  .to_top {
    right: 30px;
  }
}
.to_top a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.to_top.bottom {
  bottom: 80px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*=================================
main__visual2
=================================*/
.main__visual2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/*=================================
detail
=================================*/
.detail {
  padding: 100px 20px;
}

.detail__textbox {
  padding: 60px 10px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 849px) {
  .detail__textbox {
    padding: 30px 0;
  }
}

.detail__title {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #151184;
  padding: 3px 20px;
  border-radius: 50px;
  font-size: 24px;
}
@media screen and (max-width: 849px) {
  .detail__title {
    font-size: 16px;
  }
}

.detail__text {
  margin-top: 30px;
  text-align: left;
}

.detail__taisetsu {
  margin: 50px auto 0;
  text-align: center;
}

.detail__taisetsu_title {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #151184;
  padding: 3px 20px;
  border-radius: 50px;
  font-size: 24px;
}
@media screen and (max-width: 849px) {
  .detail__taisetsu_title {
    font-size: 16px;
  }
}

.detail__taisetsu_box_inner {
  margin-top: 30px;
}
@media screen and (max-width: 849px) {
  .detail__taisetsu_box_inner {
    margin-top: 0;
  }
}

.detail__taisetsu_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 849px) {
  .detail__taisetsu_box {
    display: block;
    margin-top: 60px;
  }
}

.detail__taisetsu_box_img {
  width: 100%;
  max-width: 250px;
  -webkit-box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 849px) {
  .detail__taisetsu_box_img {
    max-width: 800px;
  }
}

.detail__taisetsu_box_text {
  text-align: left;
  padding-left: 25px;
}
@media screen and (max-width: 849px) {
  .detail__taisetsu_box_text {
    padding-left: 0;
    margin-top: 30px;
  }
}

.detail__taisetsu_box_text_title {
  display: inline-block;
  font-weight: bold;
  color: #151184;
  background: rgba(21, 17, 132, 0.1);
  padding: 3px 20px;
  border-radius: 50px;
}

.detail__taisetsu_box_text_text {
  margin-top: 10px;
  text-align: left;
}

.detail__gain {
  margin: 100px auto 0;
}

.detail__gain_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  text-align: center;
  background: rgba(21, 17, 132, 0.1);
  padding: 30px 20px 40px;
  border-radius: 15px;
}

.detail__gain_title {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #151184;
  padding: 3px 20px;
  border-radius: 50px;
  font-size: 24px;
}
@media screen and (max-width: 849px) {
  .detail__gain_title {
    font-size: 16px;
  }
}

.detail__gain_textbox {
  margin-top: 30px;
}
@media screen and (max-width: 849px) {
  .detail__gain_textbox {
    text-align: left;
  }
}

.detail__gain_textbox_title {
  font-size: 18px;
  font-weight: bold;
  color: #151184;
}
.detail__gain_textbox_title:not(:first-child) {
  margin-top: 20px;
}

/*=================================
privacy
=================================*/
.privacy {
  padding-top: 100px;
}
@media screen and (max-width: 849px) {
  .privacy {
    padding-top: 70px;
  }
}

.privacy__inner {
  padding: 100px 40px 120px;
}
@media screen and (max-width: 849px) {
  .privacy__inner {
    padding: 100px 20px 120px;
  }
}

.privacy__contents {
  margin-top: 60px;
}

.privacy__contents_dl {
  margin-top: 55px;
}

.privacy__contents_dt {
  font-size: 18px;
  color: #151184;
  font-weight: 700;
  border-bottom: 1px solid #151184;
  padding-bottom: 10px;
}
.privacy__contents_dt:not(:first-child) {
  margin-top: 55px;
}

.privacy__contents_dd {
  margin-top: 10px;
}

/*=================================
レスポンシブ
=================================*/
@media screen and (max-width: 849px) {
  .is-pc {
    display: none;
  }
}

@media (min-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 850px) and (max-width: 1199px) {
  .is-sp {
    display: none;
  }
}