@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

body {
  font-size: 16px;
  color: #222;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  background: #fff;
  letter-spacing: .1rem;
}

.body {
  display: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

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

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Serif JP", serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type="text"],
input[type="email"],
input[type="submit"],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #ccc;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.header {
  background: rgba(27, 27, 27, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  line-height: 1;
}

.header .logo {
  max-width: 90px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .header .logo {
    max-width: 50px;
    margin-right: 5px;
  }
}

.header .logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.header .logo a:hover {
  opacity: .6;
}

.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-right {
  width: calc(100% - 130px);
}

@media screen and (max-width: 767px) {
  .header .header-right {
    width: calc(100% - 55px);
  }
}

.header .header-right .site-name {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .header .header-right .site-name {
    margin-bottom: 0;
    font-size: 3.3vw;
    line-height: 1.5;
    width: 100%;
  }
}

.header .header-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header-right ul li a {
  color: #fff;
  font-size: 15px;
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
}

@media screen and (max-width: 900px) {
  .header .header-right ul li a {
    font-size: 12px;
  }
}

.header .header-right ul li a.active {
  color: #FFE500;
}

.header .header-right ul li a:hover {
  color: #FFE500;
}

.drawer-icon {
  position: fixed;
  top: 23px;
  right: 20px;
  z-index: 1300;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 1px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #1b1310;
  z-index: 250;
  display: none;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-icon-nav ul li {
  margin-bottom: 40px;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.drawer-icon-nav ul li a.animation {
  -webkit-animation: floatUp 1s ease-in-out forwards;
          animation: floatUp 1s ease-in-out forwards;
}

.drawer-icon-nav ul li a.active {
  color: #FFE500;
}

.drawer-icon-nav ul li:nth-child(2) a {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(3) a {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  /* 0.5秒の遅延 */
}

.drawer-icon-nav ul li:nth-child(4) a {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  /* 0.5秒の遅延 */
}

@-webkit-keyframes floatUp {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes floatUp {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.header-sns {
  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;
  margin: 0 auto;
  margin-top: 80px;
  max-width: 250px;
}

.header-sns .sns-item {
  margin-right: 0px;
  width: 50%;
  text-align: center;
  -webkit-animation: floatUp 1s ease-in-out forwards;
          animation: floatUp 1s ease-in-out forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  /* 0.5秒の遅延 */
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.header-sns .sns-item:last-child {
  margin-right: 0;
}

.header-sns .sns-item:first-child a {
  font-size: 24px;
}

.header-sns .sns-item a {
  color: #fff;
  font-size: 16px;
  line-height: 0;
}

.mv {
  position: relative;
}

.mv .contents {
  position: absolute;
  top: 30%;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1000px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .mv .contents {
    padding: 0 20px;
  }
}

.mv .main-text {
  max-width: 600px;
  margin-left: auto;
  color: #fff;
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1.7;
}

@media screen and (max-width: 900px) {
  .mv .main-text {
    font-size: 24px;
  }
}

.mv .main-text .big {
  font-size: 180%;
}

.mv .btn {
  max-width: 600px;
  margin-left: auto;
  margin-top: 30px;
}

@media screen and (max-width: 900px) {
  .mv .btn {
    margin-top: 20px;
  }
}

.mv .btn .section-btn {
  text-align: left;
}

.mv .btn .section-btn a {
  letter-spacing: .2rem;
}

#contact {
  position: relative;
  top: -110px;
}

@media screen and (max-width: 767px) {
  #contact {
    top: -60px;
  }
}

.section {
  padding: 120px 0 120px;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}

.section-title .section-main-text {
  font-size: 40px;
  letter-spacing: .14em;
}

@media screen and (max-width: 767px) {
  .section-title .section-main-text {
    font-size: 26px;
  }
}

.section-title .section-sub-text {
  font-size: 22px;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .section-title .section-sub-text {
    font-size: 16px;
  }
}

.section-title2 {
  margin: 0 auto;
  font-size: 30px;
  text-align: center;
  max-width: 800px;
  background: -webkit-gradient(linear, left top, right top, from(#FDF0CC), color-stop(20%, #FFFDEC), color-stop(80%, #FFFDEC), to(#FDF0CC));
  background: linear-gradient(to right, #FDF0CC 0%, #FFFDEC 20%, #FFFDEC 80%, #FDF0CC 100%);
  padding: 30px 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section-title2 {
    font-size: 5vw;
    margin-bottom: 20px;
    padding: 20px 15px;
  }
}

.section-title3 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 32px;
  letter-spacing: .14em;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .section-title3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

.topAbout ul {
  position: relative;
  z-index: 2;
}

.topAbout .inner {
  position: relative;
}

.topAbout .inner .circle1 {
  position: absolute;
  top: 30%;
  left: 0;
  max-width: 200px;
}

@media screen and (max-width: 767px) {
  .topAbout .inner .circle1 {
    max-width: 60px;
  }
}

.topAbout .inner .circle2 {
  position: absolute;
  top: 3%;
  right: 0;
  max-width: 350px;
}

@media screen and (max-width: 767px) {
  .topAbout .inner .circle2 {
    max-width: 80px;
  }
}

.topAbout .inner .circle3 {
  position: absolute;
  top: 40%;
  right: -5%;
  max-width: 193px;
}

@media screen and (max-width: 767px) {
  .topAbout .inner .circle3 {
    max-width: 50px;
  }
}

.topAbout ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .topAbout ul {
    margin-bottom: 30px;
  }
}

.topAbout ul li {
  width: 31%;
}

.topAbout ul li:nth-child(1) {
  padding-top: 160px;
}

.topAbout ul li:nth-child(2) {
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .topAbout ul li {
    width: 32%;
  }
  .topAbout ul li:nth-child(1) {
    padding-top: 40px;
  }
  .topAbout ul li:nth-child(2) {
    padding-top: 20px;
  }
}

.topAbout .img {
  max-width: 380px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 767px) {
  .topAbout .img {
    margin: 0 auto 30px;
    width: 50%;
  }
}

.topAbout .contents {
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .topAbout .contents {
    text-align: left;
  }
}

.topAbout .contents .text1 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .topAbout .contents .text1 {
    font-size: 14px;
  }
}

.topAbout .contents .text1 span {
  font-size: 140%;
}

.topAbout .contents .text2 {
  font-size: 12px;
  margin: 30px 0;
}

.topAbout .contents .text3 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .topAbout .contents .text3 {
    font-size: 14px;
  }
}

.topAbout2 {
  background: url(../img/topAbout2-bg.jpg) no-repeat center center/cover;
}

.topAbout2 .text {
  font-size: 16px;
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .topAbout2 .text {
    font-size: 14px;
    text-align: left;
  }
}

.topAbout2 .text span {
  font-size: 140%;
}

.topAbout2 .box {
  background: #fff;
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  .topAbout2 .box {
    padding: 30px 20px;
  }
}

.star-bg {
  position: relative;
}

.star-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/star-bg2.jpg") no-repeat center center/cover;
  opacity: 0.7;
  /* 透過度を設定 */
  z-index: -1;
  /* コンテンツの背後に配置 */
}

.trial {
  position: relative;
  z-index: 1;
}

.trial .text {
  font-size: 16px;
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .trial .text {
    font-size: 14px;
    text-align: left;
  }
}

.trial .text span {
  font-size: 140%;
}

.trial .box {
  background: #fff;
  padding: 60px 20px 80px;
}

@media screen and (max-width: 767px) {
  .trial .box {
    padding: 30px 20px 40px;
  }
}

.trial .text3 {
  font-size: 20px;
  text-align: center;
  line-height: 2.2;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .trial .text3 {
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
  }
}

.trial .btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .trial .btn {
    margin-top: 20px;
  }
}

.section-btn {
  text-align: center;
}

.section-btn a {
  display: inline-block;
  background: #BB973A;
  color: #ffff;
  border: 1px solid #BB973A;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 20px;
  padding: 20px 50px;
}

@media screen and (max-width: 767px) {
  .section-btn a {
    padding: 15px 2vw;
    display: block;
    text-align: center;
    font-size: 3.8vw;
    white-space: nowrap;
  }
}

.section-btn a:hover {
  background: #fff;
  color: #BB973A;
}

.voice {
  position: relative;
  z-index: 1;
}

.voice .section-title {
  color: #fff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.9);
}

.voice ul li {
  background: #fff;
  margin-bottom: 50px;
  padding: 50px;
}

.voice ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .voice ul li {
    margin-bottom: 20px;
    padding: 20px;
  }
}

.voice ul li .heading {
  background: -webkit-gradient(linear, left top, right top, from(#EEE9DD), color-stop(20%, #FFFDF6), color-stop(80%, #FFFDF6), to(#EEE9DD));
  background: linear-gradient(to right, #EEE9DD 0%, #FFFDF6 20%, #FFFDF6 80%, #EEE9DD 100%);
  padding: 30px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .voice ul li .heading {
    margin-bottom: 20px;
    font-size: 16px;
    padding: 20px;
    text-align: left;
  }
}

.voice ul li .bottom {
  font-size: 16px;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .voice ul li .bottom {
    font-size: 14px;
  }
}

.voice ul li .bottom span {
  font-size: 140%;
  color: #A9209B;
  line-height: 1.5;
}

.explanation {
  background: url(../img/explanation-bg2.jpg) no-repeat bottom center/cover;
}

.explanation .inner {
  position: relative;
}

.explanation .inner .c1 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 356px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .explanation .inner .c1 {
    max-width: 70px;
  }
}

.explanation .inner .c2 {
  position: absolute;
  top: 30%;
  left: 0;
  max-width: 207px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .explanation .inner .c2 {
    max-width: 50px;
  }
}

.explanation .inner .c3 {
  position: absolute;
  top: 50%;
  right: -5%;
  max-width: 193px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .explanation .inner .c3 {
    max-width: 50px;
  }
}

.explanation .inner .c4 {
  position: absolute;
  top: 88%;
  left: 5%;
  max-width: 285px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .explanation .inner .c4 {
    max-width: 65px;
  }
}

.explanation .inner .row {
  position: relative;
  z-index: 2;
}

.explanation .row {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .explanation .row {
    margin-bottom: 40px;
  }
}

.explanation .row:last-child {
  margin-bottom: 0;
}

.explanation .movie {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.explanation .movie .movie-wrap {
  padding-top: 56.65%;
  position: relative;
}

.explanation .movie .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.explanation .movie-text {
  font-size: 16px;
  margin-top: 30px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .explanation .movie-text {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
  }
}

.explanation .movie-text a {
  color: #222;
  -webkit-transition: .3s;
  transition: .3s;
  word-break: break-all;
  display: inline;
}

.explanation .movie-text a:hover {
  opacity: .6;
}

.explanation .img {
  max-width: 450px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .explanation .img {
    width: 60%;
  }
}

.explanation .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .explanation .btn {
    margin-top: 30px;
  }
}

.flow {
  background: url(../img/flow-bg4.png) no-repeat top left/cover;
}

.flow .section-title3.color-purple {
  color: #8A6485;
}

.flow .flow-wrap {
  max-width: 900px;
  margin: 0 auto 150px;
  letter-spacing: 0;
}

.flow .flow-wrap .purple-arrow {
  max-width: 120px;
  margin: 35px auto;
}

@media screen and (max-width: 767px) {
  .flow .flow-wrap .purple-arrow {
    max-width: 80px;
    margin: 10px auto 15px;
  }
}

.flow .flow-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .flow .flow-wrap .item {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.flow .flow-wrap .item:nth-child(1) .num-wrap {
  top: 53%;
  left: 45%;
}

.flow .flow-wrap .item:nth-child(5) .num-wrap {
  top: 53%;
  left: 50%;
}

.flow .flow-wrap .item:nth-child(7) .num-wrap {
  top: 53%;
  left: 45%;
}

.flow .flow-wrap .item:nth-child(9) .num-wrap {
  top: 53%;
  left: 48%;
}

.flow .flow-wrap .contents {
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .flow .flow-wrap .contents {
    font-size: 14px;
    padding-top: 8px;
  }
}

.flow .flow-wrap .num {
  width: 80px;
  height: 80px;
  min-width: 80px;
  margin-right: 20px;
  background: #F6EFF5;
  position: relative;
}

@media screen and (max-width: 767px) {
  .flow .flow-wrap .num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 10px;
  }
}

.flow .flow-wrap .num .num-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Herr Von Muellerhoff", cursive;
  font-size: 60px;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .flow .flow-wrap .num .num-wrap {
    font-size: 30px;
  }
}

.top-contact {
  /*タブ切り替え全体のスタイル*/
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}

.top-contact .tabs {
  margin-top: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.top-contact .tab_item {
  width: calc(50% - 20px * 1/2);
  margin-right: 0;
  height: 80px;
  color: #fff;
  line-height: 80px;
  font-size: 24px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .top-contact .tab_item {
    font-size: 18px;
    height: initial;
    line-height: 1.3;
    width: calc(50% - 10px * 1/2);
    padding: 10px 0;
  }
}

.top-contact input[name="tab_item"] {
  display: none;
}

.top-contact .tab_item1 {
  background: #8A6485;
  color: #fff;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .top-contact .tab_item1 {
    margin-right: 10px;
  }
}

.top-contact .tab_item2 {
  background: #5D74B9;
  color: #fff;
  margin-right: 0;
}

.top-contact .tab_content {
  display: none;
  padding: 40px;
  clear: both;
  overflow: hidden;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .top-contact .tab_content {
    padding: 30px 20px;
  }
}

.top-contact .tab_content1 {
  border: 4px solid #8A6485;
}

.top-contact .tab_content2 {
  border: 4px solid #5D74B9;
}

.top-contact #all:checked ~ #all_content,
.top-contact #programming:checked ~ #programming_content,
.top-contact #design:checked ~ #design_content {
  display: block;
}

.top-contact .title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.top-contact .row-textarea {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.top-contact .row-textarea textarea {
  resize: none;
  height: 200px;
}

@media screen and (min-width: 768px) {
  .top-contact .row-textarea .dt {
    padding-top: 10px;
  }
}

.top-contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 20px;
}

.top-contact .row .dt {
  width: 120px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-contact .row .dt .text {
  font-size: 16px;
  white-space: nowrap;
}

.top-contact .row .dd {
  width: calc(100% - 130px);
}

.top-contact .row .dd input {
  width: 100%;
  padding: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.top-contact .row .dd .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-contact .row .dd .flex .item {
  width: 42%;
}

.top-contact .row .dd .flex .item2 {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-contact .row .dd .flex .item2 .text2 {
  width: 80px;
}

.top-contact .row .dd .flex .item2 .inner-input {
  width: calc(100% - 90px);
}

.top-contact .checkbox {
  text-align: center;
  margin-bottom: 40px;
}

.top-contact .required {
  font-size: 12px;
  color: #fff;
  background: #FF2A2A;
  padding: 5px 10px;
  border-radius: 8px;
  line-height: 1;
}

.top-contact .submit {
  text-align: center;
}

.top-contact input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  background: #BB973A;
  color: #fff !important;
  border: 1px solid #BB973A;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 20px;
  padding: 20px 50px;
  max-width: 495px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .top-contact input[type="submit"] {
    padding: 15px 2vw;
    display: block;
    text-align: center;
    font-size: 20px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 600px) {
  .top-contact input[type="submit"] {
    font-size: 3.8vw;
  }
}

.top-contact input[type="submit"]:hover {
  background: #fff;
  color: #BB973A !important;
}

@media screen and (max-width: 767px) {
  .top-contact .title {
    font-size: 5.5vw;
    margin-bottom: 30px;
    white-space: nowrap;
  }
  .top-contact .row {
    display: block;
  }
  .top-contact .row .dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .top-contact .row .dd {
    width: 100%;
  }
  .top-contact .row .dd .flex .item2 .text2 {
    width: 100%;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-contact .row .dd .flex {
    display: block;
  }
  .top-contact .row .dd .flex .item {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
  .top-contact .row .dd .flex .item2 {
    margin-bottom: 0;
  }
  .top-contact .row .dd .flex .item2 .inner-input {
    width: 100%;
  }
}

.attention {
  color: #7d7d7d;
  font-size: 16px;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .attention {
    font-size: 14px;
  }
}

.yubin-dd input {
  max-width: 50%;
}

.message .main-img {
  max-width: 273px;
  margin: 0 auto;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .message .main-img {
    width: 50%;
    margin-bottom: 30px;
  }
}

.message .text1 {
  font-size: 16px;
  line-height: 2.2;
  text-align: center;
  max-width: 575px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .message .text1 {
    font-size: 14px;
    text-align: left;
  }
}

.message .text1 span {
  font-weight: 700;
  font-size: 120%;
}

.message .text2 {
  max-width: 575px;
  margin: 40px auto;
  line-height: 2.2;
  font-size: 26px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .message .text2 {
    margin: 20px auto;
    text-align: left;
    font-size: 17px;
  }
}

.message .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .message .btn {
    margin-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .mailmaga {
    padding-top: 0;
  }
}

.mailmaga .lead {
  text-align: center;
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .mailmaga .lead {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

html,
body {
  overflow-x: hidden;
}

.msh-form {
  max-width: 650px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .msh-table tbody th {
    width: 100%;
  }
  .msh-table tbody td {
    width: 100%;
  }
  .msh-table tbody tr {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.footer {
  padding: 40px 0;
  background: url(../img/footer-bg2.png) no-repeat center center/cover;
}

.footer .heading .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .footer .heading .flex {
    margin-bottom: 40px;
  }
}

.footer .heading .logo {
  max-width: 90px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .footer .heading .logo {
    max-width: 50px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  .footer .heading .logo {
    max-width: 100px;
    margin-right: 0;
  }
}

.footer .heading .logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer .heading .logo a:hover {
  opacity: .6;
}

.footer .heading ul {
  width: calc(100% - 130px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .heading ul li a {
  color: #fff;
  font-size: 17px;
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
}

@media screen and (max-width: 900px) {
  .footer .heading ul li a {
    font-size: 12px;
  }
}

.footer .heading ul li a.active {
  pointer-events: none;
  color: #FFE500;
}

.footer .heading ul li a:hover {
  color: #FFE500;
}

.footer .bottom ul {
  max-width: 500px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.footer .bottom ul li a {
  color: #fff;
  font-size: 12px;
  -webkit-transition: .3s;
  transition: .3s;
  display: block;
}

@media screen and (max-width: 900px) {
  .footer .bottom ul li a {
    font-size: 12px;
  }
}

.footer .bottom ul li a.active {
  pointer-events: none;
  color: #FFE500;
}

.footer .bottom ul li a:hover {
  color: #FFE500;
}

.footer .bottom ul li a.note {
  font-size: 16px;
  line-height: .8;
}

@media screen and (max-width: 767px) {
  .footer .bottom ul li a.note {
    font-size: 14px;
    line-height: 1;
  }
}

.copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .footer .heading .flex {
    display: block;
  }
  .footer .heading .logo {
    margin: 0 auto 20px;
  }
  .footer .heading ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    display: block;
  }
  .footer .heading ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .footer .heading ul li a {
    text-align: center;
    font-size: 14px !important;
  }
  .bottom ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    display: block;
  }
  .bottom ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .bottom ul li a {
    text-align: center;
    font-size: 14px !important;
  }
  .bottom ul li a.note {
    font-size: 18px !important;
  }
}

.side-fixed {
  position: fixed;
  z-index: 6;
  right: 0;
  top: 50%;
}

@media screen and (max-width: 767px) {
  .side-fixed {
    top: initial;
    right: initial;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.side-fixed a {
  color: #fff;
  background: #BB973A;
  padding: 30px 10px;
  display: block;
  font-size: 20px;
  border: 1px solid #BB973A;
  -webkit-transition: .5s;
  transition: .5s;
  letter-spacing: .8rem;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .side-fixed a {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    -webkit-transform: translateY(-50%) translateX(110%);
            transform: translateY(-50%) translateX(110%);
  }
  .side-fixed a.active {
    -webkit-transform: translateY(-50%) translateX(0%);
            transform: translateY(-50%) translateX(0%);
  }
}

@media screen and (max-width: 767px) {
  .side-fixed a {
    text-align: center;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    font-size: 16px;
    padding: 8px 0;
  }
  .side-fixed a.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.side-fixed a:hover {
  color: #BB973A;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

.mv .img2 {
  position: relative;
}

.mv .img2::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0%;
  height: 100%;
  width: 90%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(27, 27, 27, 0.65)), to(rgba(129, 129, 129, 0)));
  background: linear-gradient(to left, rgba(27, 27, 27, 0.65), rgba(129, 129, 129, 0));
}

@media screen and (max-width: 900px) {
  .mv .img2::after {
    width: 100%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(27, 27, 27, 0.65)), to(rgba(129, 129, 129, 0.1)));
    background: linear-gradient(to left, rgba(27, 27, 27, 0.65), rgba(129, 129, 129, 0.1));
  }
}

@media screen and (max-width: 767px) {
  .mv .img {
    position: relative;
  }
  .mv .img::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0%;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(27, 27, 27, 0.65)), to(rgba(129, 129, 129, 0.1)));
    background: linear-gradient(to left, rgba(27, 27, 27, 0.65), rgba(129, 129, 129, 0.1));
  }
}

@media screen and (max-width: 767px) {
  .mv .main-text {
    font-size: 6vw;
    white-space: nowrap;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
  }
  .mv .contents {
    top: 25%;
  }
  body {
    padding-bottom: 71px;
  }
}

.topAbout ul li:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(1) {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(1).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.topAbout ul li:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(3) {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(3).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.topAbout ul li:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout ul li:nth-child(2) {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout ul li:nth-child(2).animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.topAbout .section-title {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout .section-title {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout .section-title.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.topAbout .img {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout .img {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout .img.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.topAbout .contents {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout .contents {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout .contents.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.topAbout2 .box {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .topAbout2 .box {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.topAbout2 .box.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.trial .box {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .trial .box {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.trial .box.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.voice .section-title {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .voice .section-title {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.voice .section-title.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.voice ul li {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .voice ul li {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.voice ul li.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.section-title2 {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .section-title2 {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.section-title2.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.explanation .movie,
.explanation .movie-text,
.explanation .img,
.explanation .movie-text,
.explanation .btn,
.section-title3,
.flow .flow-wrap .item,
.top-contact .tabs,
.purple-arrow,
.message .main-img,
.message .text1,
.message .text2,
.message .btn,
.mailmaga .lead,
.msh-form {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .explanation .movie,
  .explanation .movie-text,
  .explanation .img,
  .explanation .movie-text,
  .explanation .btn,
  .section-title3,
  .flow .flow-wrap .item,
  .top-contact .tabs,
  .purple-arrow,
  .message .main-img,
  .message .text1,
  .message .text2,
  .message .btn,
  .mailmaga .lead,
  .msh-form {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.explanation .movie.animate,
.explanation .movie-text.animate,
.explanation .img.animate,
.explanation .movie-text.animate,
.explanation .btn.animate,
.section-title3.animate,
.flow .flow-wrap .item.animate,
.top-contact .tabs.animate,
.purple-arrow.animate,
.message .main-img.animate,
.message .text1.animate,
.message .text2.animate,
.message .btn.animate,
.mailmaga .lead.animate,
.msh-form.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

@media screen and (min-width: 768px) {
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}

@media screen and (max-width: 767px) {
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: fadeOut2 1.5s 2.5s forwards;
  animation: fadeOut2 2s 3s forwards;
}

@-webkit-keyframes fadeOut2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 2s 0.5s forwards;
  animation: logo_fade 2s 0.5s forwards;
  width: 275px;
}

@media screen and (max-width: 767px) {
  .loading__logo {
    width: 150px;
  }
}

@-webkit-keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

.checkbox a {
  color: #222;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.checkbox a:hover {
  opacity: .6;
}

.checkbox .required {
  display: inline-block;
}

.checkbox .wpcf7-list-item-label {
  padding-left: 28px;
  position: relative;
}

.checkbox .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #222;
}

.checkbox .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-140deg);
          transform: translateY(-50%) rotate(-140deg);
  left: 8px;
  width: 5px;
  height: 22px;
  border-left: 4px solid #222;
  border-top: 4px solid #222;
  opacity: 0;
}

.checkbox input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  left: -1000%;
}

.logo a {
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .checkbox .wpcf7-list-item-label {
    font-size: 14px;
  }
}

.common-heading {
  padding: 200px 0 100px;
  background: #222;
  color: #fff;
  font-size: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .common-heading {
    padding: 120px 0 60px;
    font-size: 5vw;
  }
}

.thanks h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .thanks h2 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.thanks p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .thanks p {
    font-size: 14px;
    text-align: left;
  }
}

.thanks .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .thanks .btn {
    margin-top: 30px;
  }
}

.low {
  letter-spacing: 0;
}

.low .row {
  border-bottom: 1px solid #BB973A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .low .row {
    display: block;
    font-size: 14px;
    padding: 10px;
  }
}

.low .row .dt {
  width: 300px;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .low .row .dt {
    width: 100%;
    padding: 5px;
    text-align: center;
  }
}

.low .row .dd {
  width: calc(100% - 300px);
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .low .row .dd {
    width: 100%;
    padding: 5px;
  }
}

.low .attention {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .low .attention {
    margin-top: 20px;
    font-size: 14px;
  }
}

.privacy {
  line-height: 1.7;
}

.privacy .lead {
  margin-bottom: 60px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .privacy .lead {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.privacy p {
  margin-bottom: 60px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .privacy p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.privacy .row {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .privacy .row {
    margin-bottom: 30px;
  }
}

.privacy h2 {
  font-size: 24px;
  border-bottom: 1px solid #BB973A;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.profile .text1 {
  max-width: initial;
}

.profile .sns {
  margin-top: 80px;
}

.profile .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.profile .sns ul li {
  margin-right: 20px;
}

.profile .sns ul li:last-child {
  margin-right: 0;
}

.profile .sns ul li a {
  color: #222;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 16px;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .profile .sns ul li a {
    font-size: 14px;
  }
}

.profile .sns ul li a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .profile .sns {
    margin-top: 50px;
  }
}

.about-page1 .lead1 {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about-page1 .lead1 {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.about-page1 .lead2 {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about-page1 .lead2 {
    font-size: 14px;
  }
}

.about-page1 .lead2 span {
  font-weight: bold;
  display: block;
  font-size: 120%;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .about-page1 .lead2 {
    margin-bottom: 30px;
  }
}

.about-page1 .txt1 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .about-page1 .txt1 {
    font-size: 14px;
  }
}

.about-page1 .box {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .about-page1 .box {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.about-page1 .box.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.about-page1 .box .title {
  background: -webkit-gradient(linear, left top, right top, from(#EEE9DD), color-stop(20%, #FFFDF6), color-stop(80%, #FFFDF6), to(#EEE9DD));
  background: linear-gradient(to right, #EEE9DD 0%, #FFFDF6 20%, #FFFDF6 80%, #EEE9DD 100%);
  padding: 20px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .about-page1 .box .title {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.about-page1 .btn {
  position: relative;
  z-index: 2;
}

.contact-page1 {
  max-width: 800px;
  margin: 0 auto;
}

.flow .flow-wrap {
  margin-bottom: 0;
}

.contact2 {
  background: #F9F4EE;
}

@media screen and (min-width: 768px) {
  .section-main-text-ja {
    font-size: 32px !important;
  }
}

@media screen and (max-width: 767px) {
  .section-main-text-ja {
    font-size: 24px !important;
  }
}

.power .img1 {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .power .img1 {
    margin-bottom: 30px;
  }
}

.power .img2 {
  max-width: 558px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .power .img2 {
    margin-top: 30px;
    width: 70%;
  }
}

.power .text {
  font-size: 16px;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .power .text {
    font-size: 14px;
    text-align: left;
  }
}

.power .text span {
  font-size: 140%;
}

.power .box {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 767px) {
  .power .box {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.power .box.animate {
  -webkit-animation: fadeInUp .5s ease-in-out forwards;
          animation: fadeInUp .5s ease-in-out forwards;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.wpcf7-spinner {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .iframe-wrap {
    padding-top: 57%;
    position: relative;
    width: 100%;
  }
  .iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 78px;
  }
}

#page-top a {
  padding: 11px 8px 10px;
  display: block;
  background-color: #BB973A;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  line-height: 13px;
  text-align: center;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  z-index: 100;
  letter-spacing: 1px;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #page-top a {
    width: 40px;
    height: 40px;
    font-size: 10px;
    padding-top: 6px;
  }
}

.header .header-right .site-name a {
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .header-right .site-name a:hover {
  opacity: .6;
}
