@charset "UTF-8";
/*====================
{{パソコンを基本設計にする}}
 - 〜479px：SP縦
 - 480px〜599px：SP横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/
.faderight {
  opacity: 0;
  transform: translateX(6vw);
}

.faderight[data-scroll] {
  transition: 1s ease-in-out;
}

.faderight[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.faderight[data-scroll="out"] {
  opacity: 0;
  transform: translateX(6vw);
}

.fadeleft {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeleft[data-scroll] {
  transition: 1s ease-in-out;
}

.fadeleft[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.fadeleft[data-scroll="out"] {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeup {
  opacity: 0;
  transform: translateY(5vh);
}

.fadeup[data-scroll] {
  transition: 0.6s ease-in;
}

.fadeup[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

.fadeup[data-scroll="out"] {
  transform: translateY(5vh);
}

@keyframes updown {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-2vh);
  }
}

@keyframes bigsmall {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.1);
  }
}

.bigsmall {
  animation: bigsmall2 2s linear 1.6s infinite normal;
}

@keyframes rotate1 {
  0%,
  50%,
  100% {
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  25% {
    transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
  }
  75% {
    transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
  }
}

@keyframes open {
  30% {
    opacity: 1;
    transform: scale(1.5);
  }
  40%,
  60%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade_open {
  transform: scale(0);
  opacity: 0;
  animation: open 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}

@keyframes open_opacity {
  100% {
    opacity: 1;
  }
}

.open_opacity {
  opacity: 0;
  animation: open_opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes mergo {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  40% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mergo[data-scroll="in"] {
  animation: mergo 1.2s ease 0.5s 1 normal;
}

html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 599px) {
  html {
    font-size: 40%;
  }
}

body {
  font-size: 1.6em;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.contents_wrap {
  width: 100%;
  overflow: hidden;
}

.contents_wrap:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../../assets/images/lp/bg01.png") center no-repeat;
  background-size: cover;
}

/* ---------------------------------------- 
 - 共通
---------------------------------------- */
h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

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

img {
  -webkit-backface-visibility: hidden;
}

.imgw {
  display: block;
  width: 100%;
  height: auto;
}

.imgh {
  display: block;
  width: auto;
  height: 100%;
}

.pc {
  display: block;
}

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

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

.tab {
  display: none;
}

@media screen and (max-width: 960px) {
  .tab {
    display: block;
  }
}

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

.sp {
  display: none !important;
}

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

@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

.min-sp {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .min-sp {
    display: none;
  }
}

@media screen and (max-width: 290px) {
  .min-sp {
    display: block !important;
  }
}

.no_pc {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .no_pc {
    display: block !important;
  }
}

@media screen and (max-width: 599px) {
  .no_pc {
    display: block !important;
  }
}

.no_sp {
  display: block;
}

@media screen and (max-width: 960px) {
  .no_sp {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .no_sp {
    display: none !important;
  }
}

/* ---------------------------------------- 
 - 共通
---------------------------------------- */
.mov_wrap {
  position: relative;
  width: 90%;
  max-width: 1000px;
  border: solid 4px #d8f1e2;
  margin: 30px auto 0;
  z-index: 0;
}

@media screen and (max-width: 599px) {
  .mov_wrap {
    width: 96%;
    margin: 20px auto 0;
  }
}

.mov_wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

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

.btn_wrap1 {
  display: block;
  max-width: 800px;
  width: 95%;
  margin: 50px auto 0;
  animation: updown 2s linear 0s infinite normal;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .btn_wrap1 {
    width: 88%;
    margin: 30px auto 0;
  }
  .btn_wrap1 a {
    width: 100%;
  }
}

.base_btn {
  width: 500px;
  height: 80px;
  border-radius: 100px;
  background-color: #1cc534;
  color: #fff;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-shadow: 1px 3px 0px rgba(2, 2, 2, 0.5);
  animation: bigsmall 2s linear 1s infinite normal;
}

.base_btn.color-yellow {
  background-color: #f3fd38;
  color: #000;
}

@media screen and (max-width: 599px) {
  .base_btn {
    width: 82%;
    height: 60px;
  }
}

.title {
  padding: 60px 0;
}

@media screen and (max-width: 599px) {
  .title {
    padding: 40px 0 30px;
  }
}

.title__txt {
  margin: 0 auto;
  width: fit-content;
  padding: 10px 30px;
  background-color: #fff;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.title__txt span {
  color: #f45536;
}

@media screen and (max-width: 599px) {
  .title__txt {
    padding: 10px 15px;
    font-size: 3rem;
  }
}

.title__txt02 {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 1.4rem;
  margin: 20px auto 0;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  .title__txt02 {
    font-size: 2rem;
  }
}

.bg-yellow {
  background-image: url(../../assets/images/lp/bg02.png);
  background-repeat: repeat;
  background-size: auto;
  background-position: top;
  padding: 60px 0;
}

@media screen and (max-width: 599px) {
  .bg-yellow {
    padding: 30px 0;
  }
}

/* ---------------------------------------- 
 - 個別
---------------------------------------- */
@keyframes fadeout {
  100% {
    opacity: 0;
  }
}

#top_mov {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

@media screen and (max-width: 599px) {
  #top_mov {
    width: 140%;
    left: -20%;
  }
}

#top_mov.fadeout {
  animation: fadeout 0.5s ease 0s forwards;
}

.top {
  position: relative;
  padding-bottom: 50px;
}

.top.lp {
  padding-bottom: 80px;
}

@media screen and (max-width: 599px) {
  .top {
    padding-bottom: 30px;
  }
  .top.lp {
    padding-bottom: 20px;
  }
}

.top__logo {
  position: absolute;
  width: 146px;
  top: 20px;
  left: 5%;
}

@media screen and (max-width: 599px) {
  .top__logo {
    width: 15%;
  }
}

.top__bg01 {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 599px) {
  .top__bg01 {
    width: 140%;
    margin-left: -20%;
  }
}

.top__inner {
  margin: 100px auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 0;
}

.top__titImg01 {
  margin: 0 auto;
  max-width: 700px;
  width: 84%;
}

.top__img02, .top__img03, .top__img04, .top__img05, .top__img06, .top__img07, .top__img08 {
  position: absolute;
  width: 280px;
  z-index: -1;
}

@media screen and (max-width: 599px) {
  .top__img02, .top__img03, .top__img04, .top__img05, .top__img06, .top__img07, .top__img08 {
    width: 40%;
  }
}

.top__img02 {
  top: -90px;
  left: 70px;
}

@media screen and (max-width: 599px) {
  .top__img02 {
    top: -70px;
    left: -20px;
  }
}

.top__img03 {
  top: -90px;
  right: 70px;
}

@media screen and (max-width: 599px) {
  .top__img03 {
    top: -70px;
    right: -20px;
  }
}

.top__img04 {
  top: 85px;
  left: -10px;
}

@media screen and (max-width: 599px) {
  .top__img04 {
    left: -30px;
  }
}

.top__img05 {
  top: 85px;
  right: -10px;
}

@media screen and (max-width: 599px) {
  .top__img05 {
    right: -30px;
  }
}

.top__img06 {
  top: 270px;
  left: -10px;
}

@media screen and (max-width: 599px) {
  .top__img06 {
    top: 200px;
    left: -30px;
  }
}

.top__img07 {
  top: 270px;
  right: -10px;
}

@media screen and (max-width: 599px) {
  .top__img07 {
    top: 200px;
    right: -30px;
  }
}

.top__txt01 {
  text-align: center;
  margin: 40px auto 0;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
}

.top__txt01.lp {
  padding-top: 20px;
}

@media screen and (max-width: 599px) {
  .top__txt01 {
    font-size: 5rem;
  }
}

.top__txt02 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.6;
  margin: 30px auto 0;
  text-shadow: 0px 0px 5px RGBA(0, 0, 0, 0.8);
}

.top__txt02 .u-yellow {
  color: #f3fd38;
  font-size: 3rem;
}

@media screen and (max-width: 599px) {
  .top__txt02 {
    font-size: 2.7rem;
    line-height: 1.6;
    text-shadow: 0px 0px 5px RGBA(0, 0, 0, 0.9);
  }
  .top__txt02 .u-yellow {
    color: #f3fd38;
    font-size: 3rem;
  }
}

.top__link {
  margin: 30px auto 0;
}

.top__link.margin01 {
  margin: 50px auto 0;
}

@media screen and (max-width: 599px) {
  .top__link.margin01 {
    margin: 30px auto 0;
  }
}

.top__txt03 {
  text-align: center;
  line-height: 1.2;
  font-size: 5.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
  letter-spacing: 3px;
}

.top__txt04 {
  text-align: center;
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: bold;
  color: yellow;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
  letter-spacing: 3px;
}

.top__txt05 {
  width: 92%;
  max-width: 600px;
  padding: 30px 0;
  border-radius: 30px;
  text-align: center;
  color: #020202;
  font-size: 2rem;
  line-height: 1.6;
  margin: 30px auto 0;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .top__txt05 {
    border-radius: 20px;
    padding: 20px 0;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.top__txt06 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.6;
  margin: 70px auto 0;
  text-shadow: 0px 0px 5px RGBA(0, 0, 0, 0.8);
}

@media screen and (max-width: 599px) {
  .top__txt06 {
    margin: 30px auto 0;
    font-size: 2.7rem;
    line-height: 1.6;
  }
}

.anchor__tit {
  text-align: center;
  line-height: 1.2;
  font-size: 4.8rem;
  font-weight: bold;
  color: yellow;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
  letter-spacing: 3px;
}

.anchor__wrap {
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .anchor__wrap {
    margin-bottom: 30px;
  }
}

.anchor__link {
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  color: #020202;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  height: 66px;
  width: 92%;
  max-width: 600px;
  padding: 0;
  background-color: RGBA(255, 255, 255, 0.8);
  margin: 20px auto 0;
  text-align: center;
  border-radius: 50px;
  line-height: 1.3;
  z-index: 1;
  transition-duration: 300ms;
}

.anchor__link.font-s {
  font-size: 1.8rem;
}

@media screen and (max-width: 599px) {
  .anchor__link {
    font-size: 2.2rem;
    height: 55px;
  }
}

.anchor__link:hover {
  opacity: 0.8;
}

.anchor__link.font-s {
  font-size: 1.9rem;
}

.anchor__link:before {
  display: block;
  content: "";
  position: absolute;
  top: 24px;
  left: 25px;
  border-top: 20px solid RGBA(0, 0, 0, 0.6);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .anchor__link:before {
    top: 22px;
    left: 15px;
    border-top: 13px solid RGBA(0, 0, 0, 0.6);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
}

.about__tit {
  text-align: center;
  line-height: 1.4;
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #fff;
}

.about__tit span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 20px;
}

@media screen and (max-width: 599px) {
  .about__tit {
    margin-bottom: 20px;
  }
  .about__tit span {
    padding: 5px 10px;
  }
}

.about__wrap {
  max-width: 1150px;
  margin: 50px auto 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
}

.about__wrap:first-child {
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .about__wrap {
    z-index: 0;
    width: 96%;
    display: block;
    position: relative;
  }
}

.about__txtWrap {
  width: 50%;
  z-index: 10;
}

.about__txtWrap.left {
  margin-right: -15%;
}

.about__txtWrap.right {
  margin-left: -15%;
}

@media screen and (max-width: 599px) {
  .about__txtWrap {
    width: 100%;
    margin: 0 auto;
  }
  .about__txtWrap.left {
    margin-right: auto;
  }
  .about__txtWrap.right {
    margin-left: auto;
    margin: 0 0 0 auto;
    width: fit-content;
  }
}

.about__img01 {
  width: 65%;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .about__img01 {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -1;
  }
}

.about__img02 {
  width: 65%;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .about__img02 {
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
  }
}

.about__img03 {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

.about__txt01 {
  width: fit-content;
  padding: 15px 50px;
  background-color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 1px;
}

.about__txt01 span {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .about__txt01 {
    padding: 15px 10px;
  }
  .about__txt01 span {
    font-size: 2rem;
  }
}

.about__txt02 {
  margin: 20px 0 0;
  font-weight: bold;
  letter-spacing: 1px;
}

.about__txt02 span {
  margin-top: 8px;
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .about__txt02 {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

.about__txt03 {
  margin: 40px 0 0;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  font-size: 3.3rem;
  line-height: 1.6;
}

.about__txt03.u-margin0 {
  margin: 0;
}

@media screen and (max-width: 599px) {
  .about__txt03 {
    margin: 25px 0 0;
    font-size: 2.8rem;
    letter-spacing: 0;
  }
}

.about__wrap01 {
  margin: 200px auto 0;
  max-width: 1160px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .about__wrap01 {
    margin: 100px auto 0;
  }
}

.about__img04 {
  max-width: 654px;
  width: 82%;
  margin: -160px auto 0;
}

@media screen and (max-width: 599px) {
  .about__img04 {
    margin: -62px auto 0;
  }
}

.about__img05 {
  width: 92%;
  max-width: 1000px;
  margin: 40px auto 0;
}

@media screen and (max-width: 599px) {
  .about__img05 {
    margin: 30px auto 0;
  }
}

.about__txt04 {
  margin: 40px auto 0;
  width: fit-content;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 3px;
}

.about__txt04 span {
  color: #fb1818;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
  .about__txt04 {
    width: 92%;
    text-align: justify;
  }
}

@media screen and (max-width: 599px) {
  .about__txt04 {
    margin: 20px auto 0;
    letter-spacing: 1px;
  }
}

.about__txt05 {
  margin: 40px auto 0;
  text-align: center;
  line-height: 1.2;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
  letter-spacing: 3px;
}

@media screen and (max-width: 599px) {
  .about__txt05 {
    font-size: 5rem;
    margin: 20px auto 0;
  }
}

.service__wrap01 {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.service__card {
  width: 32%;
}

@media screen and (max-width: 599px) {
  .service__card {
    margin: 30px auto 0;
    width: 96%;
  }
  .service__card:first-child {
    margin: 0 auto;
  }
}

.service__txt01 {
  font-size: 2.4rem;
  letter-spacing: 2px;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  min-height: 66px;
}

@media screen and (max-width: 599px) {
  .service__txt01 {
    min-height: 0;
    font-size: 3rem;
    letter-spacing: 1px;
  }
}

.service__txt02 {
  margin: 15px auto 0;
  letter-spacing: 1px;
  width: 90%;
  text-align: justify;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .service__txt02 {
    font-size: 2.6rem;
  }
}

.service__img01 {
  margin: 20px auto 0;
  width: 96%;
  box-shadow: 0px 8px 8px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .service__img01 {
    margin: 10px auto 0;
  }
}

.plan__video {
  width: 100%;
  height: auto;
}

.plan__tit {
  margin: 0 auto;
  width: fit-content;
  padding: 10px 30px;
  background-color: #fff;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.plan__tit.tit02 {
  margin: 50px auto 0;
}

@media screen and (max-width: 599px) {
  .plan__tit.tit02 {
    margin: 30px auto 0;
  }
}

.plan__mov {
  max-width: 1160px;
  margin: 40px auto 0;
  border: solid 3px #000;
}

.plan__mov.no-topMargin {
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .plan__mov {
    border: unset;
    margin: 30px auto 0;
  }
  .plan__mov.no-topMargin {
    margin: 0 auto;
  }
}

.plan__txt01 {
  margin: 50px auto 0;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 1px;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .plan__txt01 {
    margin: 20px auto 0;
    font-size: 2.6rem;
    text-align: justify;
    letter-spacing: 0;
    line-height: 1.8;
    font-weight: 400;
    width: 90%;
  }
}

.plan__wrap01 {
  margin: 200px auto 0;
  max-width: 1160px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding-bottom: 30px;
}

.plan__wrap01.margin01 {
  margin: 100px auto 0;
}

.plan__wrap01.padding01 {
  margin: 120px auto 0;
  max-width: 900px;
  padding-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .plan__wrap01 {
    margin: 80px auto 0;
  }
  .plan__wrap01.margin01 {
    margin: 50px auto 0;
  }
  .plan__wrap01.padding01 {
    margin: 50px auto 0;
    padding-bottom: 20px;
  }
}

.plan__img01 {
  margin: -110px auto 0;
  text-align: center;
  line-height: 1.2;
  font-size: 5.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, -2px 2px 0px #000, 2px -2px 0px #000, 0px 2px 0px #000, 2px 0px 0px #000, 0px -2px 0px #000, -2px 0px 0px #000, 1px 2px 0px #000, 1px -2px 0px #000, -1px 2px 0px #000, -1px -2px 0px #000;
  letter-spacing: 3px;
}

.plan__img01.tit02 {
  font-size: 8rem;
  margin: -170px auto 0;
}

.plan__img01.tit03 {
  font-size: 8rem;
  margin: -75px auto 0;
}

.plan__img01.tit04 {
  margin: -170px auto 0;
}

.plan__img01.tit05 {
  margin: 50px auto 0;
}

@media screen and (max-width: 599px) {
  .plan__img01 {
    font-size: 3.6rem;
    margin: -62px auto 0;
  }
  .plan__img01.tit02 {
    font-size: 5rem;
    margin: -52px auto 0;
  }
  .plan__img01.tit03 {
    font-size: 6rem;
    margin: -32px auto 0;
  }
  .plan__img01.tit04 {
    margin: -62px auto 0;
  }
}

.plan__img02 {
  margin: 50px auto 0;
  width: 80%;
}

@media screen and (max-width: 599px) {
  .plan__img02 {
    width: 96%;
    margin: 30px auto 0;
  }
}

.plan__img03 {
  margin: 60px auto 0;
  width: 92%;
  max-width: 980px;
}

@media screen and (max-width: 599px) {
  .plan__img03 {
    width: 96%;
    margin: 30px auto 0;
  }
}

.plan__img04 {
  margin: 30px auto 0;
  width: 92%;
  max-width: 980px;
}

@media screen and (max-width: 599px) {
  .plan__img04 {
    width: 96%;
    margin: 20px auto 0;
  }
}

.plan__img05 {
  margin: 30px auto 0;
  width: 80%;
  max-width: 600px;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .plan__img05 {
    margin: 20px auto 0;
  }
}

.plan__img06 {
  margin: 30px auto 0;
  width: 80%;
  max-width: 400px;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .plan__img06 {
    margin: 20px auto 0;
  }
}

.plan__img07 {
  margin: 30px auto 0;
  width: 80%;
  max-width: 700px;
  border: solid 4px #fff;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .plan__img07 {
    margin: 20px auto 0;
  }
}

.plan__txt02 {
  margin: 40px auto 0;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 599px) {
  .plan__txt02 {
    margin: 30px auto 0;
  }
}

.plan__txt03 {
  color: #ff0000;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
  margin: 30px auto 0;
  line-height: 1.2;
}

@media screen and (max-width: 599px) {
  .plan__txt03 {
    width: 90%;
    margin: 20px auto 0;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.plan__txt04 {
  margin: 40px auto 0;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .plan__txt04 {
    margin: 20px auto 0;
    font-size: 2.6rem;
    font-weight: bold;
    text-align: justify;
    letter-spacing: 1px;
    line-height: 1.6;
    width: 90%;
  }
}

.plan__txt05 {
  font-size: 3.3rem;
  text-align: center;
  margin: 30px auto 0;
  line-height: 1.8;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .plan__txt05 {
    margin: 20px auto 0;
    font-size: 2.6rem;
  }
}

.plan__txt06 {
  font-size: 3.6rem;
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.6;
  font-weight: bold;
  width: fit-content;
  padding: 10px 40px;
  box-shadow: 0px 0px 8px RGBA(0, 0, 0, 0.8);
}

@media screen and (max-width: 599px) {
  .plan__txt06 {
    margin: 20px auto 0;
    font-size: 2.6rem;
    box-shadow: 0px 0px 4px RGBA(0, 0, 0, 0.6);
  }
}

.plan__txt07 {
  margin: 40px auto 0;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .plan__txt07 {
    margin: 20px auto 0;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.6;
    width: 90%;
  }
}

.plan__table {
  margin: 40px auto 0;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  max-width: 900px;
  width: 96%;
}

@media screen and (max-width: 599px) {
  .plan__table {
    margin: 30px auto 0;
  }
}

.plan__row {
  border-bottom: solid 1px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}

.plan__col {
  width: 100%;
  padding: 15px 10px;
  border-right: solid 1px #000;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.plan__col.u-w40 {
  width: 40%;
}

.plan__col.u-w60 {
  width: 60%;
}

@media screen and (max-width: 599px) {
  .plan__col {
    padding: 8px 10px;
  }
}

.plan__data {
  font-size: 4.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}

.plan__data .txt01 {
  font-size: 3rem;
}

.plan__data .txt02 {
  font-size: 2.7rem;
}

.plan__data .u-red {
  color: crimson;
}

.plan__table02 {
  margin: 40px auto 0;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  max-width: 960px;
  width: 96%;
}

@media screen and (max-width: 599px) {
  .plan__table02 {
    margin: 30px auto 0;
  }
}

.plan__table_row {
  border-bottom: solid 1px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}

.plan__table_col {
  padding: 15px 10px;
  border-right: solid 1px #000;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.plan__table_col.plan {
  width: calc(45% - 20px);
}

.plan__table_col.time {
  width: calc(15% - 20px);
}

.plan__table_col.price {
  width: calc(40% - 20px);
}

@media screen and (max-width: 599px) {
  .plan__table_col {
    padding: 8px 5px;
  }
  .plan__table_col.plan {
    width: calc(35% - 10px);
  }
  .plan__table_col.time {
    width: calc(25% - 10px);
  }
  .plan__table_col.price {
    width: calc(40% - 10px);
  }
}

.plan__table_txt01 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 599px) {
  .plan__table_txt01 {
    font-size: 2.4rem;
  }
}

.plan__table_txt02 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.plan__table_txt03 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.plan__table_txt03 span {
  font-size: 4.2rem;
}

@media screen and (max-width: 599px) {
  .plan__table_txt03 {
    font-size: 2.4rem;
  }
  .plan__table_txt03 span {
    font-size: 3rem;
  }
}

.plan__table_txt04 {
  width: fit-content;
  padding: 4px 20px;
  background-color: #f45535;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .plan__table_txt04 {
    font-size: 2.2rem;
    padding: 4px 10px;
  }
}

.plan__table_txt05 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.plan__table_txt05 span {
  font-size: 5rem;
  color: #f45535;
}

@media screen and (max-width: 599px) {
  .plan__table_txt05 {
    font-size: 2.2rem;
    margin: 4px auto 0;
    line-height: 1.2;
  }
  .plan__table_txt05 span {
    font-size: 3.2rem;
  }
}

.plan__table_txt06 {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}
.tax_m {
  width: 96%;
}

@media screen and (max-width: 599px) {
  .plan__table_txt06 {
    font-size: 1.8rem;
  }
  .tax_m {
    width: 98%;
  }
}

.place__tit {
  text-align: center;
  line-height: 1.4;
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.place__tit span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 20px;
}

@media screen and (max-width: 599px) {
  .place__tit span {
    padding: 5px 10px;
  }
}

.place__wrap {
  width: 92%;
  max-width: 1150px;
  margin: 50px auto 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .place__wrap {
    margin: 30px auto 0;
    z-index: 0;
    width: 96%;
    display: block;
    position: relative;
  }
  .place__wrap:first-child {
    margin: 0 auto;
  }
}

.place__txtWrap {
  width: 50%;
  z-index: 10;
}

.place__txtWrap.left {
  margin-right: -15%;
}

.place__txtWrap.right {
  margin-left: -15%;
}

@media screen and (max-width: 599px) {
  .place__txtWrap {
    width: 100%;
    margin: 0 auto;
  }
  .place__txtWrap.left {
    margin-right: auto;
  }
  .place__txtWrap.right {
    margin-left: auto;
  }
}

.place__img01 {
  width: 65%;
  box-shadow: 0px 8px 4px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .place__img01 {
    width: 90%;
    margin: 20px auto 0;
  }
}

.place__txt01 {
  width: fit-content;
  padding: 15px 50px;
  background-color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 2px;
  box-shadow: 0px 0px 8px RGBA(0, 0, 0, 0.8);
}

.place__txt01.right {
  margin: 0 0 0 auto;
}

.place__txt01 span {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .place__txt01 {
    background-color: unset;
    width: 92%;
    margin: 20px auto 0;
    padding: 10px 4%;
    box-shadow: unset;
  }
  .place__txt01.right {
    margin: 20px auto 0;
  }
  .place__txt01 span {
    margin-top: 10px;
    font-size: 2.6rem;
  }
}

.time__wrap01 {
  margin: 0 auto 0;
  max-width: 1160px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding-bottom: 90px;
}

@media screen and (max-width: 599px) {
  .time__wrap01 {
    padding-bottom: 30px;
  }
}

.time__img01 {
  margin: 40px auto 0;
  width: 80%;
}

@media screen and (max-width: 599px) {
  .time__img01 {
    margin: 20px auto 0;
    width: 96%;
  }
}

.time__tit {
  margin: 40px auto 0;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 599px) {
  .time__tit {
    margin: 30px auto 0;
    line-height: 1.4;
  }
}

.time__txt01 {
  color: #ff0000;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 1px;
  margin: 40px auto 0;
}

.time__txt01.margin01 {
  margin: 0 auto;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .time__txt01 {
    width: 90%;
    margin: 20px auto 0;
    font-size: 2rem;
    line-height: 1.6;
  }
}

.time__img02 {
  margin: 20px auto 0;
  width: 70%;
}

@media screen and (max-width: 599px) {
  .time__img02 {
    margin: 20px auto 0;
    width: 96%;
  }
}

.option.bg-yellow {
  padding: 10px 0 60px;
}

@media screen and (max-width: 599px) {
  .option.bg-yellow {
    padding: 10px 0 30px;
  }
}

.option__wrap01 {
  margin: 50px auto 0;
  max-width: 1160px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.option__wrap01.wrap01 {
  width: 80%;
}

.option__wrap01.wrap01 .option__card {
  width: 47%;
  margin: 0 1.5% 30px;
}

.option__wrap01.wrap01 .option__card:last-child {
  margin: 0 0.5%;
}

@media screen and (max-width: 599px) {
  .option__wrap01.wrap01 {
    width: 100%;
  }
  .option__wrap01.wrap01 .option__card {
    width: 48%;
    margin: 0 0.5% 40px;
  }
}

.option__card {
  width: 32%;
  margin: 0 0.5% 40px;
}

@media screen and (max-width: 599px) {
  .option__card {
    width: 48%;
    margin: 0 0.5% 30px;
  }
  .option__card:last-child {
    margin: 0 0.5%;
  }
}

.option__txt01 {
  margin-bottom: -10px;
  position: absolute;
  width: 100%;
  top: -10px;
  z-index: 10;
}

.option__txt01 p {
  display: block;
  background-color: #fff;
  width: fit-content;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 5px 10px;
}

.option__img01 {
  position: relative;
  z-index: 0;
  box-shadow: 0px 8px 8px RGBA(0, 0, 0, 0.3);
  margin: -10px auto 0;
}

.option__txt02 {
  color: #f45536;
  font-size: 5rem;
  text-align: center;
  font-weight: bold;
  margin: 5px auto 0;
}

.option__txt03 {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin: 5px auto 0;
}

.option__txt03 .tax {
  display: block;
  font-size: 2rem;
  margin: 10px auto 0;
}

.option__txt04 {
  text-align: center;
  font-weight: bold;
  color: #ff0000;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  .option__txt04 {
    line-height: 1.4;
    font-size: 2rem;
  }
}

.option__txt05 {
  background-color: #fff;
  box-shadow: 0px 0px 8px RGBA(0, 0, 0, 0.3);
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
  margin: 20px auto 0;
  width: fit-content;
  padding: 10px 30px;
  line-height: 1.2;
}

@media screen and (max-width: 599px) {
  .option__txt05 {
    margin: 0px auto 0;
    padding: 10px 10px;
  }
}

.lesson__img01 {
  max-width: 610px;
  width: 80%;
  margin: 0 auto;
}

.lesson__txt01 {
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 30px auto 0;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .lesson__txt01 {
    font-size: 3rem;
  }
}

.lesson__txt02 {
  margin: 40px auto 0;
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .lesson__txt02 {
    font-size: 2.4rem;
    margin: 20px auto 0;
  }
}

.lesson__wrap01 {
  max-width: 1000px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .lesson__wrap01 {
    display: block;
    margin: 30px auto 0;
  }
}

.lesson__img02 {
  width: 50%;
}

@media screen and (max-width: 599px) {
  .lesson__img02 {
    width: 80%;
    margin: 0 auto;
  }
}

.lesson__txt03 {
  width: 45%;
  margin: 0 0 0 5%;
  font-size: 2rem;
  line-height: 2;
}

.lesson__txt03 .tit {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto 30px;
}

@media screen and (max-width: 599px) {
  .lesson__txt03 {
    font-size: 2.4rem;
    width: 90%;
    line-height: 1.8;
    margin: 20px auto 0;
    text-align: justify;
  }
  .lesson__txt03 .tit {
    margin: 0 auto 10px;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .flow.bg-yellow {
    padding: 30px 0 10px;
  }
}

.flow__wrap01 {
  max-width: 1160px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 599px) {
  .flow__wrap01 {
    display: block;
  }
}

.flow__card {
  width: 28%;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .flow__card {
    width: 70%;
    margin: 0 auto 20px;
  }
}

.flow__bar {
  position: absolute;
  background-color: #3294e2;
  width: 60%;
  height: 50px;
  top: 40%;
  left: 20%;
  z-index: -1;
}

@media screen and (max-width: 599px) {
  .flow__bar {
    width: 10%;
    height: 500px;
    top: 20px;
    left: 45%;
  }
}

.license__img01 {
  max-width: 394px;
  width: 80%;
  margin: 0 auto;
}

.license__txt01 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  margin: 30px auto 0;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .license__txt01 {
    width: 90%;
    text-align: justify;
    margin: 20px auto 0;
    font-size: 2.6rem;
    line-height: 1.8;
    font-weight: 400;
  }
}

.Instagram__wrap01 {
  margin: 0 auto;
  max-width: 1160px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 30px 0;
}

@media screen and (max-width: 599px) {
  .Instagram__wrap01 {
    padding: 15px 0;
  }
}

.Instagram__wrap02 {
  width: 90%;
  margin: 0 auto;
}

.blog__wrap01 {
  margin: 0 auto;
  max-width: 1160px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 30px 0;
}

@media screen and (max-width: 599px) {
  .blog__wrap01 {
    padding: 15px 0;
  }
}

.blog__wrap02 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.blog__blogCard {
  display: block;
  width: calc(50% - 5px);
  margin: 10px 0 0;
}

.blog__blogCard:nth-child(n + 3) {
  margin: 10px 0 0;
}

.blog__blogCard:nth-child(2n + 2) {
  margin: 10px 0 0 10px;
}

.blog__blogCardImg {
  position: relative;
  width: 100%;
  height: 325px;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 599px) {
  .blog__blogCardImg {
    height: 140px;
  }
}

.blog__blogCardImg img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  transition-duration: 300ms;
}

.blog__blogCardImg img:hover {
  transform: scale(1.06);
}

.blog__blogCardTitle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 20px);
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  z-index: 1;
}

.voice__wrap01 {
  margin: 0 auto;
  max-width: 700px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 30px;
}

@media screen and (max-width: 599px) {
  .voice__wrap01 {
    padding: 10px 10px;
    width: calc(96% - 20px);
  }
}

.voice__row {
  padding: 20px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  border-bottom: solid 3px #d2d2d2;
}

.voice__row:last-child {
  border-bottom: unset;
}

@media screen and (max-width: 599px) {
  .voice__row {
    display: block;
    border-bottom: solid 1px #d2d2d2;
  }
}

.voice__img01 {
  width: 186px;
}

@media screen and (max-width: 599px) {
  .voice__img01 {
    width: 100%;
    margin: 0 auto;
  }
}

.voice__txtWrap {
  width: calc(100% - 200px);
  margin-left: 14px;
}

@media screen and (max-width: 599px) {
  .voice__txtWrap {
    width: 96%;
    margin-left: 0;
    margin: 15px auto 0;
  }
}

.voice__txt01 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .voice__txt01 {
    font-size: 3rem;
    text-align: center;
  }
}

.voice__txt02 {
  text-align: justify;
  margin-top: 10px;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .voice__txt02 {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

.message__wrap01 {
  margin: 0 auto;
  max-width: 700px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 30px;
  font-size: 2rem;
  line-height: 2;
}

.message__wrap01 span {
  color: #fb1818;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width: 599px) {
  .message__wrap01 {
    padding: 30px 10px;
    width: calc(96% - 20px);
    font-size: 2.6rem;
  }
  .message__wrap01 span {
    font-size: 2.8rem;
  }
}

.faq__wrap01 {
  margin: 0 auto;
  max-width: 700px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 30px;
}

@media screen and (max-width: 599px) {
  .faq__wrap01 {
    padding: 10px 10px;
    width: calc(96% - 20px);
  }
}

.faq__row {
  padding: 20px 0;
  margin: 0 auto;
  border-bottom: solid 3px #d2d2d2;
}

.faq__row:last-child {
  border-bottom: unset;
}

@media screen and (max-width: 599px) {
  .faq__row {
    display: block;
    width: 96%;
    border-bottom: solid 1px #d2d2d2;
  }
}

.faq__txt01 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1070bb;
}

@media screen and (max-width: 599px) {
  .faq__txt01 {
    font-size: 3rem;
  }
}

.faq__txt02 {
  text-align: justify;
  margin-top: 10px;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .faq__txt02 {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

.access__wrap {
  width: 92%;
  max-width: 1000px;
  border: solid 2px #000;
  background-color: #fff;
  padding: 40px 0;
  margin: 0 auto;
}

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

.access__txt01 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  line-height: 2.2;
  letter-spacing: 1px;
}

@media screen and (max-width: 599px) {
  .access__txt01 {
    font-size: 2.6rem;
    line-height: 1.8;
  }
}

.access__map {
  margin: 30px auto 0;
  border: solid 2px #000;
  width: 90%;
  height: 400px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) {
  .access__map {
    margin: 20px auto 0;
    border: unset;
    height: 200px;
    width: 100%;
  }
}

.form__wrap {
  margin: 0 auto;
  max-width: 800px;
  width: 96%;
  background-color: #fff;
  border: solid 3px #000;
  padding: 50px 0;
}

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

.form__row {
  width: 92%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  margin: 30px auto 0;
}

.form__row:first-child {
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .form__row {
    display: block;
    margin: 20px auto 0;
  }
}

.form__txt {
  padding-top: 6px;
  width: 30%;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: bold;
}

.form__txt .red {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 1px 10px 3px;
  font-size: 1.3rem;
  color: #fff;
  background-color: red;
  text-align: center;
  margin-left: 5px;
}

@media screen and (max-width: 599px) {
  .form__txt .red {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .form__txt {
    width: 100%;
    font-size: 2.6rem;
    margin: 0 auto 10px;
  }
}

.form__input {
  width: 70%;
}

@media screen and (max-width: 599px) {
  .form__input {
    width: 100%;
  }
}

.form__input input,
.form__input select,
.form__input textarea {
  border: solid 1px #000;
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 4px;
}

@media screen and (max-width: 599px) {
  .form__input input,
  .form__input select,
  .form__input textarea {
    font-size: 16px;
  }
}

.form__input #form_mail {
  width: 70%;
}

@media screen and (max-width: 599px) {
  .form__input #form_mail {
    width: calc(100% - 20px);
  }
}

.form__input #form_count {
  width: 80%;
}

@media screen and (max-width: 599px) {
  .form__input #form_count {
    width: calc(100% - 20px);
  }
}

.form__input #form_name,
.form__input #form_tell {
  width: 40%;
}

@media screen and (max-width: 599px) {
  .form__input #form_name,
  .form__input #form_tell {
    width: calc(80% - 20px);
  }
}

.form__input #form_jet {
  width: 20%;
}

.form__input #form_content {
  width: calc(100% - 22px);
  height: 200px;
  resize: none;
}

.form__input select {
  display: inline-block;
}

.form__input label {
  display: inline-block;
  width: 100%;
  font-size: 2rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 599px) {
  .form__input label {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.form__txt03 {
  display: inline-block;
  width: fit-content;
  margin: 5px 10px 0 5px;
  font-size: 2rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .form__txt03 {
    font-size: 2.4rem;
  }
}

.form__txt02 {
  color: #020202;
  margin-top: 5px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .form__txt02 {
    font-size: 1.9rem;
  }
}

.form__btn {
  margin: 30px auto 0;
  width: 500px;
  height: 80px;
  border-radius: 100px;
  background-color: #1cc534;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-shadow: 1px 3px 0px rgba(2, 2, 2, 0.5);
}

@media screen and (max-width: 599px) {
  .form__btn {
    width: 82%;
    height: 60px;
  }
}

.form #form_response {
  margin: 20px auto 0;
  color: red;
  font-size: 2rem;
  text-align: center;
}

.footer_wrap {
  display: block;
  display: -webkit-flex;
  position: fixed;
  bottom: 0;
  opacity: 1;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  width: 500px;
  height: 78px;
  background-color: #fff;
  border-left: solid 2px #000;
  border-top: solid 2px #000;
  text-align: center;
  transition-duration: 300ms;
  padding-top: 12px;
  z-index: 100;
}

.footer_wrap.none {
  bottom: -90px;
  opacity: 0;
}

@media screen and (max-width: 960px) {
  .footer_wrap {
    width: 100%;
    left: 0;
    right: unset;
  }
}

@media screen and (max-width: 599px) {
  .footer_wrap {
    display: block;
    display: -webkit-flex;
    position: fixed;
    bottom: 0;
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    height: 78px;
    background-color: #fff;
    border-left: unset;
    border-top: solid 2px #000;
    text-align: center;
    transition-duration: 300ms;
    padding-top: 12px;
    z-index: 100;
  }
  .footer_wrap.none {
    bottom: -90px;
    opacity: 0;
  }
}

.footer_txt {
  width: 48%;
  color: #1070bb;
  background-color: #ffd500;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  padding-top: 5px;
  border-radius: 10px;
  height: 45px;
  box-shadow: 1px 2px 0px RGBA(0, 0, 0, 0.3);
}

@media screen and (max-width: 599px) {
  .footer_txt {
    font-size: 1.8rem;
  }
}

.footer_tel {
  margin: 0 auto;
  font-size: 1.7rem;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  /* 縦方向中央揃え（Safari用） */
  align-items: center;
  /* 縦方向中央揃え */
  -webkit-justify-content: center;
  /* 横方向中央揃え（Safari用） */
  justify-content: center;
  /* 横方向中央揃え */
}

.footer_tel .material-icons {
  font-size: 2.3rem;
  margin-right: 5px;
}

@media screen and (max-width: 599px) {
  .footer_tel {
    font-size: 2.6rem;
  }
  .footer_tel .material-icons {
    font-size: 3rem;
    margin-right: 5px;
  }
}

.footer_btn {
  width: 50%;
  height: 50px;
  border-radius: 10px;
  background-color: #1cc534;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
  box-shadow: 1px 2px 0px RGBA(0, 0, 0, 0.3);
  line-height: 1.2;
}

.footer_btn.color-yellow {
  background-color: #f3fd38;
  color: #000;
}

@media screen and (max-width: 599px) {
  .footer_btn {
    font-size: 2.6rem;
  }
}

.footer_txt02 {
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .footer_txt02 {
    font-size: 2.4rem;
  }
}

/********* footer **********/
.footer {
  background-image: url(../../assets/images/lp/bg02.png);
  background-repeat: repeat;
  background-size: auto;
  background-position: top;
  text-align: center;
  padding: 40px 0;
  color: #000;
}

.footer a {
  color: #000;
}

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

.footer__txt01 {
  margin: 0 auto 0;
  text-align: center;
  line-height: 1.3;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, -1px 1px 0px #000, 1px -1px 0px #000, 0px 1px 0px #000, 1px 0px 0px #000, 0px -1px 0px #000, -1px 0px 0px #000, 1px 1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000, -1px -1px 0px #000;
  letter-spacing: 3px;
}

.footer__txt01 span {
  font-size: 3.5rem;
}

.footer__txt01.no-top {
  margin: 0 auto 0;
}

.footer__txt02 {
  text-align: center;
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin: 30px auto 0;
}

@media screen and (max-width: 599px) {
  .footer__txt02 {
    margin: 20px auto 0;
  }
}
