@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');

/* Common */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}

body {
  background: #fff;
  font: 400 11px/1.8;
  font-family: "Noto Sans JP";
  color: #203467;
  letter-spacing: 3px;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  overflow: hidden !important;
}

p, ol, ul, dl, blockquote, .form-group {
  font-size: 15px;
  line-height: 1.7em;
}

.col-sm-6 {
  padding-left: 0;
  padding-right: 0;
}

.main section {
  opacity: 0;
  transition: all .5s ease;
}

.main section.show {
  opacity: 1;
  transform: none;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  font-family: "Noto Sans JP";
}

.navbar-custom {
  background: transparent;
  border: 0;
  border-radius: 0;
  z-index: 1000;
  letter-spacing: 3px;
  font-size: 11px;
  transition: background, padding 0.4s ease-in-out 0s;
  position: absolute;
}

.navbar-fixed-top {
  width: 100%;
  position: fixed;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 4;
}

.navbar-custom .dropdown-menu {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
}

.navbar-custom .open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-custom .dropdown-menu > li > a {
  border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
  padding: 11px 20px !important;
  letter-spacing: 2px;
  color: #999;
}

.navbar-custom .dropdown-menu > li > a:focus,
.navbar-custom .dropdown-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #999;
}

.navbar-custom .dropdown-toggle:after {
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -6px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 9px;
  content: "\f105";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-custom .dropdown-menu .dropdown-toggle:after {
  right: 9px;
}

#head_logo {
  margin: 0;
}

#head_logo a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 70px;
  color: #203467;
  font-feature-settings: "palt";
  height: 70px !important;
  margin: 0;
  padding: 0;
  position: relative;
}

#head_logo a span {
  display: inline-block;
  vertical-align: middle;
}

.navbar-brand {
  float: none;
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  float: left;
  height: 25px;
  width: auto;
}

.navbar a {
  transition: color 0.125s ease-in-out 0s;
}

.navbar-custom .navbar-brand {
  font-size: 24px;
}

.navbar-custom .nav li > a {
  font-size: 14px;
  font-weight: 600;
  line-height: 70px;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-custom .nav > li > a:focus,
.navbar-custom .nav > li > a:hover,
.navbar-custom .nav .open > a,
.navbar-custom .nav .open > a:focus,
.navbar-custom .nav .open > a:hover {
  background: none;
  color: #999;
}

.navbar-toggle {
  color: #fff;
  padding: 0;
  margin-top: 0;
  top: 10px;
}

.navbar-custom .navbar-toggle .icon-bar {
  background: #fff;
}

.navbar-right {
  font-weight: 900;
}

/* Header */
#home, #faq {
  position: relative;
  background: linear-gradient(
    135deg,
    #f7fbff 0%,
    #e6edf5 50%,
    #c2dfff 100%
  );
  background-size: cover;
  width: 100%;
  padding: 0;
}

.wave-circle {
  width: 45vw;
  height: 80vh;
  position: absolute;
  top: -25vh;
  left: -15vw;
  background: linear-gradient(to bottom right, #f0faff, #80c4ff, #3399ff, #003087);
  border-radius: 48% 69% 56% 53% / 47% 73% 43% 49%;
  animation: move 8s linear infinite;
  overflow: hidden;
  opacity: 0.2;
}

@keyframes move {
  50% {
    border-radius: 80% 20% 59% 41% / 72% 21% 79% 28%;
  }
  75% {
    border-radius: 100% 69% 100% 83% / 68% 99% 53% 93%;
  }
}

.wave-circle-large {
  width: 50vw;
  height: 90vh;
  position: absolute;
  bottom: -25vh;
  right: -15vw;
  background: linear-gradient(to bottom right, #f0faff, #80c4ff, #3399ff, #003087);
  border-radius: 52% 65% 60% 57% / 46% 74% 42% 50%;
  animation: move-large 9s linear infinite;
  overflow: hidden;
  opacity: 0.15;
}

@keyframes move-large {
  50% {
    border-radius: 75% 25% 62% 38% / 70% 25% 75% 30%;
  }
  75% {
    border-radius: 95% 65% 95% 80% / 65% 95% 55% 90%;
  }
}

/* Transition elements */
a, .btn {
  transition: all 0.125s ease-in-out 0s;
}

/* mainImg */
#mainImg {
  display: table;
  height: 100vh;
  text-align: left;
  position: relative;
  z-index: 3;
}

#mainImg_txt {
  display: table-cell;
  width: 100%;
  letter-spacing: 5px;
  vertical-align: middle;
  position: relative;
  z-index: 3;
}

#mainImg_txt h2 {
  font-size: 36px;
  font-weight: 600;
  font-feature-settings: "palt";
  margin: 0;
}

#mainImg_txt h2 img {
  display: block;
  max-width: 640px;
  margin: 0 0 15px 0;
}

#mainImg_txt h2 small {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #203467;
  line-height: 1.75em;
  margin-top: 1.75em;
}

#mainImg_txt .flex_list {
  max-width: 56%;
}

#mainImg_txt .flex_list > div {
  display: flex;
  width: 49%;
}

#mainImg_txt .flex_list > div > button {
  width: 100%;
}
.highlight {
 display: inline !important;
 background: linear-gradient(transparent 60%, rgba(255, 239, 107, 0.7) 60%);
 font-weight: bold;
 line-height: 1.7em;
}

.btn_line {
  background: #00B900;
  border-color: #00B900;
  color: #fff;
}

.btn_line:hover {
  color: #ddd;
}

.fa-line {
  font-size: 120%;
}

.mv_thumb_right, .mv_thumb_left {
  position: absolute;
  bottom: 0;
  z-index: 3;
}

.mv_thumb_right {
  right: 0;
}

.mv_thumb_left {
  left: 0;
}

.bgextend {
  display: inline-block;
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #203467;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

.bgappearTrigger, .bgLRextendTrigger {
  opacity: 0;
}

.main section {
  position: relative;
}

.main section .container {
  position: relative;
  z-index: 2;
}

.img_about {
  position: relative;
}

.img_about img {
  display: block;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.img_about .wave-circle {
  width: 420px;
  height: 420px;
  position: absolute;
  top: 10%;
  left: 0;
  background: linear-gradient(to bottom right, #f0faff, #80c4ff, #3399ff, #003087);
  border-radius: 48% 69% 56% 53% / 47% 73% 43% 49%;
  animation: move 8s linear infinite;
  overflow: hidden;
  opacity: 0.2;
}

.txt_about {
  display: inline-block;
  background: linear-gradient(-135deg, #f7fbff 0%, #e6edf5 50%, #c2dfff 100%);
  padding: 5%;
  border-radius: 7px;
}

.txt_about p:last-child {
  margin-bottom: 0;
}

.check_list {
  font-weight: 600;
  list-style-type: none;
  margin: 1em auto 1.3em auto;
}

.check_list li {
  background: #fff;
  width: 49%;
  text-align: center;
  line-height: 1.7em;
  border: 1px solid;
  padding: 2% 4%;
  margin-bottom: 2%;
  position: relative;
  overflow: hidden;
}

.check_list li:before {
  display: inline-block;
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
}

.check_list li:after {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background: #203467;
  top: -10px;
  left: -10px;
  position: absolute;
}

#detail {
	background: transparent linear-gradient(179deg, #5CB2E8 0%, #0741AF 100%) 0% 0% no-repeat padding-box;
	margin-top: 60px;
	padding: 45px 0;
}
#detail h2, #detail h2 small {
	display: block;
	font-weight: 600;
	color: #fff;
}
#detail h2 {
	margin: 0 auto 30px auto !important;
	padding: 0;
}
#detail h2 small {
	margin-bottom: 10px;
}
#detail button {
	margin: 0 auto !important;
}

#why p, #merit p {
  text-align: center;
}

#merit .merit_list {
  margin-bottom: 2em !important;
}

#merit .merit_list:last-child {
  margin-bottom: 0 !important;
}

#merit .merit_list li > span, #merit .merit_list li strong {
  display: block;
}

#merit .merit_list li {
  width: calc(100% / 3);
  text-align: center;
  margin: 0 auto 2em auto;
  line-height: 1.4em;
}

#merit .merit_list li > span {
  margin-bottom: 1.25em;
}

#merit .merit_list li strong {
	font-size: 140%;
	line-height: 1.5em;
  margin-top: 0.75em;
}

#merit .merit_list li img {
  display: block;
  margin: 0 auto;
  max-height: 182px;
  width: auto;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 6px solid #acebff;
}

#merit .merit_list li div > span {
  display: table;
  width: 100%;
}

#merit .merit_list li div > span > span {
  display: inline-block;
  background: #acebff;
  padding: 5px 30px;
  vertical-align: middle;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
}

#merit .merit_list li div > span > span:before {
  display: block;
  content: "";
  position: absolute;
  top: 80%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #acebff;
  z-index: -1;
}

#jirei {
  background: linear-gradient(
    135deg,
    #e8ecef 0%,
    #acebff 50%,
    #51cff8 100%
  );
}

#scroll_down a {
  display: block;
  color: #203467;
  position: relative;
  z-index: 3;
}

#scroll_down a span {
  display: block;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  right: calc(5% + 1em);
  bottom: 100px;
}

.c-scroll-icon {
  width: 21px;
  height: 100px;
  transform: translate3d(-50%, 0%, 0);
  position: absolute;
  right: 0;
  left: calc(21px / 2);
  bottom: 50px;
  margin: 0 auto;
  backface-visibility: hidden;
}

.c-scroll-icon .c-scroll-icon-line-mask {
  position: relative;
  overflow: hidden;
  width: 21px;
  height: 100px;
  margin: 0 auto;
}

.c-scroll-icon .c-scroll-icon-line {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 150px;
  border-left: 1px solid #203467;
  top: -150px;
  left: 10px;
  animation: scroll-line 3s infinite;
  transition: all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes scroll-line {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 185px, 0);
  }
  75% {
    transform: translate3d(0, 175px, 0);
  }
  100% {
    transform: translate3d(0, 280px, 0);
  }
}

.c-scroll-icon-triangle {
  position: relative;
  width: 20px;
  height: 30px;
  margin: -10px auto 0;
  animation: triangle-bounce 3s infinite;
}

.c-scroll-icon-triangle-mask {
  position: absolute;
}

.c-scroll-icon-triangle-mask.first {
  width: 40px;
  height: 5px;
  right: 0;
  overflow: hidden;
}

.c-scroll-icon-triangle-mask.right {
  width: 10px;
  height: 30px;
  overflow: hidden;
  right: 0;
}

.c-scroll-icon-triangle-mask.left {
  width: 10px;
  height: 30px;
  overflow: hidden;
  left: 1;
}

.c-scroll-icon-triangle-mask.last {
  width: 40px;
  height: 5px;
  overflow: hidden;
}

.c-scroll-icon-triangle-line {
  position: absolute;
}

.c-scroll-icon-triangle-line.first {
  border-bottom: 1px solid #203467;
  width: 30px;
  right: 0;
  animation: triangle-first 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.c-scroll-icon-triangle-line.right {
  border-left: 1px solid #203467;
  height: 44px;
  transform: rotate(-163deg);
  right: 5px;
  top: -6px;
  animation: triangle-right 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.c-scroll-icon-triangle-line.left {
  border-left: 1px solid #203467;
  height: 40px;
  transform: rotate(163deg);
  left: 5px;
  top: -3px;
  animation: triangle-left 3s infinite;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-scroll-icon-triangle-line.last {
  border-bottom: 1px solid #203467;
  width: 120px;
  left: 0;
  animation: triangle-last 3s infinite;
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.86);
}

@keyframes triangle-bounce {
  0% {
    transform: translate3d(0, -5px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: translate3d(0, -5px, 0);
  }
}

@keyframes triangle-first {
  0%, 20% {
    transform: translate3d(-40px, 0, 0);
  }
  30%, 80% {
    transform: translate3d(10px, 0, 0);
  }
  85%, 100% {
    transform: translate3d(30px, 0, 0);
  }
}

@keyframes triangle-right {
  0%, 25% {
    transform: rotate(-163deg) translate3d(0, 40px, 0);
  }
  40%, 84% {
    transform: rotate(-163deg) translate3d(0, 0, 0);
  }
  90%, 100% {
    transform: rotate(-163deg) translate3d(0, -37px, 0);
  }
}

@keyframes triangle-left {
  0%, 33% {
    transform: rotate(163deg) translate3d(0, -34px, 0);
  }
  50%, 88% {
    transform: rotate(163deg) translate3d(0, 0, 0);
  }
  95%, 100% {
    transform: rotate(163deg) translate3d(0, 38px, 0);
  }
}

@keyframes triangle-last {
  0%, 87.5% {
    transform: translate3d(-120px, 0, 0);
  }
  91% {
    transform: translate3d(-80px, 0, 0);
  }
  100% {
    transform: translate3d(45px, 0, 0);
  }
}

.navbar-custom {
  margin-bottom: 0;
}

/* Sections */
.main {
  position: relative;
  background-color: #fff;
  letter-spacing: 1px;
  z-index: 0;
}
.main section {
	position: relative;
	padding: 60px 0;
}
.main section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--color1), var(--color2), var(--color3), var(--color4));
  --color1: #79be57;
  --color2: #4ab1c8;
  --color3: #d53727;
  --color4: #d8cc30;
  animation: changeColors 8s infinite alternate ease-in-out;
}

@keyframes changeColors {
  0% {
    --color1: #79be57;
    --color2: #4ab1c8;
    --color3: #d53727;
    --color4: #d8cc30;
  }
  25% {
    --color1: #96a84a;
    --color2: #60a8b5;
    --color3: #c14a3a;
    --color4: #e0b84a;
  }
  50% {
    --color1: #b38f3c;
    --color2: #779fa2;
    --color3: #ac5d4c;
    --color4: #e8a467;
  }
  75% {
    --color1: #d9762e;
    --color2: #8d968f;
    --color3: #97705f;
    --color4: #f09084;
  }
  100% {
    --color1: #ff5733;
    --color2: #33ff57;
    --color3: #5733ff;
    --color4: #ff33a1;
  }
}
.main section h2 {
  font-size: 30px;
  font-weight: 600;
  font-feature-settings: "palt";
  text-align: center;
  letter-spacing: 5px;
  position: relative;
  margin: 3em auto 2em auto !important;
}
.main section h2 div {
	display: inline-block;
}
.main section h2 span {
  font-size: 300%;
  font-family: "Qwitcher Grypen", cursive;
  font-weight: 400;
  font-style: normal;
  color: rgba(34, 51, 103, 0.5);
  position: absolute;
  top: -1.2em;
  left: 0;
  right: 0;
  transform: rotate(-5deg);
  opacity: 0.35;
  z-index: -1;
}

.main section h3 {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 5px;
  line-height: 1.7em;
  margin: 4em auto 2em auto;
  position: relative;
}
.main section h3:before {
	display: block;
    content: '';
    background: #000;
    width: 1px;
    height: 1.5em;
    position: absolute;
    top: -1.75em;
    left: -1px;
    right: 0;
    margin: 0 auto;
}

.cta {
  width: 80%;
  margin: 0 auto;
}

.cta .flex_list > div {
  width: 48%;
}

.cta .flex_list > div button {
  width: 100%;
}

.cta_area {
  margin-bottom: 0;
  padding-bottom: 0 !important;
}

.main .cta_area h2 {
  margin-bottom: 15px !important;
}

.slide_wrap {
  display: flex;
  width: 100vw;
  min-width: max-content;
  height: 160px;
  overflow: hidden;
  margin: 45px auto 0 auto;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.slide_wrap ul {
  background: #ffffff;
  display: flex;
  align-items: center;
  list-style-type: none;
  min-width: max-content;
  margin: 0;
  padding: 0;
  animation: loop-slide 60s infinite linear 1s both;
}

.slide_wrap ul li {
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

.slide_wrap ul li span {
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 2.3em;
  position: absolute;
  bottom: 0;
  left: 0;
}

.slide_wrap ul li img {
  display: block;
  width: auto;
  height: 160px !important;
  object-fit: cover;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slide_wrap:hover ul {
  animation-play-state: paused;
}

.slider {
  padding: 0;
}

.slider .slider-item {
  width: 45vw;
  height: auto;
}

.slider .slider-item blockquote {
  background: #fff;
  color: #203467;
  text-align: center;
  border-radius: 5px;
  padding: 5%;
}

.slider .slider-item blockquote strong {
  display: block;
  font-size: 120%;
  margin-bottom: 10px;
}

.slider .slider-item blockquote small {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

blockquote .small:before, blockquote footer:before, blockquote small:before {
  display: none;
}

.slider .slick-slide {
  transform: scale(0.8);
  transition: all .3s;
  opacity: 0.3;
}

.slider .slick-center {
  transform: scale(1);
  opacity: 1;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 30px;
  width: 30px;
}

.slick-prev {
  left: 3%;
  transform: rotate(-135deg);
}

.slick-next {
  right: 3%;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
	margin: 0;
	padding: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  padding: 0;
  border: none;
}

.slick-dots .slick-active button {
  background: #203467;
}

/* FAQ Accordion */
#faq .container {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.accordion-area {
  list-style: none;
  width: 60%;
  margin: 30px auto 0 40%;
}

.accordion-area .accordion-inner {
  margin: 0 0 20px 0 !important;
}

.close {
  float: none;
  color: #777777 !important;
  border-color: #777777 !important;
  opacity: 1.0;
}

.title {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  background: #ffffff;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid;
  border-bottom: 3px solid;
  border-radius: 50px;
  box-sizing: border-box;
}

.title:hover {
  background: rgba(255, 255, 255, 0.45);
}

.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: rgba(35, 24, 21, 1);
}

.title::before {
  top: 48%;
  right: 5%;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  right: 5%;
  transform: rotate(90deg);
}

.title.close::before {
  transform: rotate(45deg);
  background-color: rgba(35, 24, 21, 0.85) !important;
}

.title.close::after {
  transform: rotate(-45deg);
  background-color: rgba(35, 24, 21, 0.85) !important;
}

.box {
  display: none;
  background: rgba(34, 51, 103, 0.075);
  margin: 1.5em 0 2em 0;
  padding: 3% 5%;
  border-radius: 7px;
}

.box p {
  font-size: 13px;
  text-align: left;
}

.box ul, .box dl {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.box dl dt {
  font-size: 120%;
  margin-bottom: 1em;
}

.box ul {
  list-style-position: inside;
}

button {
  display: block !important;
  background: none;
  width: 35%;
  margin: 2em auto 1em auto !important;
  text-align: center !important;
  position: relative;
  border: none;
}

button a {
  display: block;
  background: #fff;
  color: #203467;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 3.2em;
  border-radius: 30px;
  border: 3px solid #203467;
}

button a:after {
  content: '';
  width: 2em;
  height: 0.5em;
  border-bottom: solid 0.1em;
  border-right: solid 0.1em;
  transform: skew(45deg);
  position: absolute;
  right: 2em;
  top: 1.5em;
  transition: 0.5s ease-out;
}

button:hover a:after {
  right: -0.5em;
}

/* Footer */
.footer {
  background: linear-gradient(0deg, #f7fbff 0%, #e6edf5 50%, #c2dfff 100%);
  padding: 0 0 100px 0;
}

.footer .row {
  margin: 0;
}

.footer .copyright {
  clear: both;
  font-size: 14px;
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(34, 51, 103, 0.65);
  text-align: center;
  letter-spacing: 1px;
  margin: 20px auto 0 auto;
}

.flex_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  z-index: 1;
}

.bg-gray {
  background: #fafafa;
}

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
}

/* Overlay Button */
#olayBtn {
  position: fixed;
  width: 100%;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  z-index: 1000;
}

#olayBtn ul {
  overflow: hidden;
  margin: 0px !important;
  padding: 0px !important;
  visibility: visible !important;
}

#olayBtn ul li {
  display: table;
  width: calc(100% / 2);
  margin: 0;
  float: left;
}

#olayBtn ul li:last-of-type {
  margin: 0;
}

#olayBtn ul li:nth-child(1) {
  background: #00B900;
}

#olayBtn ul li:nth-child(2) {
  background: #203467;
}

#olayBtn ul li a {
  display: table-cell;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  letter-spacing: 1px;
  height: 60px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: none;
}

#olayBtn ul li a:hover, #olayBtn ul li a:active {
  background: #777777;
}

#olayBtn ul li a i.fa, #olayBtn ul li a i.fab, #olayBtn ul li a i.fas {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  width: auto;
  height: auto;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
#olayBtn ul li a .fa-line, #olayBtn ul li a .fa-comments {
  padding-right: 10px;
}

/* Typography */
a {
  color: #203467;
}

a:hover, a:focus {
  text-decoration: none;
  color: #aaa;
  outline: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: 400;
}

p, ol, ul, blockquote {
  margin: 0 0 20px;
}

blockquote {
  position: relative;
  border: 0;
  font-style: italic;
  font-size: 15px;
  padding: 0;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 3%;
  left: 5%;
  content: "\f10d";
  font-family: FontAwesome;
  color: rgba(34, 51, 103, 0.2);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

blockquote:after {
  display: inline-block;
  position: absolute;
  bottom: 3%;
  right: 5%;
  text-align: center;
  content: "\f10e";
  font-family: FontAwesome;
  color: rgba(34, 51, 103, 0.2);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

h1, h2, h3, h4, h5, h6, .navbar-custom .nav li > a {
  transform: rotate(.03deg);
}

/* Responsive Styles - Media Queries */
@media (max-width: 991px) {
  #mainImg_txt h2 {
    font-size: 48px;
  }

  .container .row {
    padding: 0 1em;
  }

  .col-sm-6 img {
    display: block;
    max-height: 300px;
  }
}

@media (max-width: 767px) {
  .container {width: 100%;}
  .navbar-brand img {
	width: 181px;
    height: auto;
    position: relative;
  }
  .navbar-collapse.in {
    background: rgba(255, 255, 255, 0.9);
    border-top: none;
    position: relative;
    overflow: hidden;
  }

  .navbar-custom .navbar-toggle .icon-bar {
    width: 30px;
    background: #000;
  }

  .navbar-custom .navbar-toggle .icon-bar:nth-child(3) {
    width: 85%;
    margin-left: 15%;
  }

  .navbar-custom .navbar-toggle .icon-bar:nth-child(4) {
    width: 70%;
    margin-left: 30%;
  }

  .navbar-custom .navbar-toggle .menu_txt {
    display: block;
    margin-top: 3px;
  }

  .navbar-toggle {
    width: max-content;
    color: #000 !important;
    margin: 0 !important;
    right: 15px;
    z-index: 999;
  }

  .navbar-fixed-top .navbar-collapse {
    max-height: fit-content;
  }

  #head_logo {
    margin-left: 15px;
  }

  #head_logo a {
    display: inline-block;
    vertical-align: top;
    height: 50px !important;
    line-height: 50px;
    font-size: 18px;
    letter-spacing: 3px;
  }

  .navbar-custom .navbar-nav {
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .navbar-custom .nav li > a {
    color: #203467;
  }

  .navbar-custom li > a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .navbar-custom li a {
    border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
  }

  .navbar-custom .dropdown-toggle:after {
    right: 7%;
    content: "\f105";
  }

  .navbar-custom .nav > .open > .dropdown-toggle:after {
    right: 7px;
    content: "\f106";
  }

  .only_sp {
    display: block !important;
    line-height: 0;
	}
	
	  #home {
    background-position: center !important;
    background-size: cover !important;
  }

  #mainImg {
    width: 100%;
    height: 100vh;
	}

  #mainImg_txt h2 {
    font-size: 36px;
    letter-spacing: 1px;
	}
	
		#mainImg_txt h2 img {
		max-width: 320px;
	}
	
	#mainImg .mv_thumb_right {
		right: -10%;
	}
	#mainImg .mv_thumb_right img {
		width: auto;
		height: 360px;
	}
		#mainImg_txt h2 .bgappear > div span {
		display: block;
		font-size: 24px;
		font-weight: 600;
		margin-top: 5px;
	}
	#mainImg_txt h2 small {
		font-size: 16px;
		margin-top: 0.5em;
	}
	#mainImg_txt .flex_list {
		max-width: 100%;
	}
	.flex_list {
		display: block;
	}
	.flex_list > div, .flex_list > li {
		width: 100%;
	}
	#mainImg_txt .flex_list > div {
    display: block;
		width: 80%;
		margin: 0 auto;
	}
	#mainImg_txt .flex_list > div {
		margin: 0;
	}
	  .main section .container {
    width: 90% !important;
  }

  .main section h2 {
		font-size: 24px;
		letter-spacing: 3px;
	}
	.main section h2 span {
    font-size: 240%;
		line-height: 0.6em;
	}
	.main section h2 br, .main section h3 br {
		display: none;
	}
.main .cta_area .container h2 br, #merit h2 br, #jirei h2 br, .main section h2 div {
		display: block !important;
	}
  .main section h3 {
		font-size: 20px;
		letter-spacing: 3px;
		margin-bottom: 1.5em;
  }

  p, ol, ul, dl, blockquote {
    font-size: 14px;
	}
	p br, ol li br, ul li br, dl dt br, dl dd br, blockquote br {
		display: none;
	}
	
	.img_about img, .img_about .wave-circle {
		width: 300px;
		height: 300px;
	}
	.txt_about {
		margin-top: 4em;
	}
	
	.check_list li {
		text-align: left;
		padding: 3% 5%;
		margin-bottom: 15px;
	}
	
	#why p, #merit p {
    text-align: left;
}
  #merit .merit_list li {
    font-size: 12px;
  }
	
	.cta, .cta .flex_list > div {
		width: 100% !important;
	}
	
	#merit .merit_list {
		display: flex;
	}
	#merit .merit_list li {
		width: 46%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 3em;
	}
	#merit .merit_list li img {
		 max-height: 160px;
	}
	#merit .merit_list li div > span > span {
		display: block;
		font-size: 14px;
		padding: 5px 20px;
	}
	#merit .merit_list li strong {
		margin-top: 1em;
	}
	#merit .merit_list li:nth-child(5), #merit .merit_list li:nth-child(6) {
		margin-bottom: 0;
	}
	#merit .merit_list li:last-child strong {
		font-size: 130%;
	}
	
	#jirei h2 {
		margin: 2em auto 1em auto !important;
	}
	#jirei h2 span {
		top: -0.75em;		
	}
	.slick-list {
		padding-bottom: 0 !important;
	}
	.slider .slider-item {
		width: 80vw;
	}
	.slider .slider-item blockquote strong {
		font-size: 100%;
	}
	.slider .slider-item blockquote {
		font-size: 13px;
	}
	blockquote:before, blockquote:after {
		font-size: 36px;
		color: rgba(34, 51, 103, 0.085);
	}
	
	#faq .container {
		width: 100% !important;
	}
	.accordion-area {
		width: 100%;
		margin: 0 auto;
		position: relative;
	}
	.accordion-inner {
		position: relative;
		z-index: 4;
	}
	.title {
		font-size: 14px;
		text-align: left;
		padding: 20px 40px 20px 20px;
		font-feature-settings: "palt";
	}
	.title:hover {
		background: #ffffff;
	}
	.close {
		opacity: 1.0 !important;
	}
	.box {
		background: rgba(34, 51, 103, 0.1);
	}
	.box dl dt {
		font-size: 100%;
	}
	#faq .mv_thumb_left {
		top: -8%;
        left: -1%;
	}
	#faq .mv_thumb_left img {
		height: 220px;
	}

  .footer .col-sm-6 img {
    float: none;
    margin: 2em auto 1em auto;
	}
	
		button {
		width: 80%;
		margin: 1em auto !important;
	}
	button a {
		line-height: 3.75em;
		border-radius: 45px;
	}
	button a:after {
		top: 1.75em;
	}

  #olayBtn ul li a i.fa, #olayBtn ul li a i.fab, #olayBtn ul li a i.fas, #olayBtn .fa-solid, #olayBtn .fas {
    display: block;
    height: 20px;
    font-size: 1.75rem;
  }

  #olayBtn ul li a {
    font-size: 14px;
  }

  #olayBtn .fa-line {
    font-size: 2.2rem !important;
	}
  #olayBtn ul li a .fa-line, #olayBtn ul li a .fa-comments {
	padding-right: 0;
  }
	.wave-circle {width: 100vw; height: 80vh; top: -35vh; left: -20vw;}
	.wave-circle-large {width: 120vw; height: 90vh; bottom: -35vh; right: -50vw;}
}

@media only screen and (max-width: 480px) {
  .fl_left, .fl_right {
    float: none;
    width: 100%;
  }

  .navbar-brand {
    padding-right: 0;
  }

  .navbar-toggle {
    padding: 0 10px;
    right: 0;
  }

  .navbar-custom .nav li > a {
    font-size: 14px;
  }

  .navbar-custom .navbar-brand {
    font-size: 18px;
  }

  #head_logo a {
    display: block;
    position: relative;
  }

  #head_logo a img {
    top: 0;
    margin: 10px 0;
  }

  #mainImg {
    height: 95vh;
  }

	#mainImg_txt h2 {
		font-size: 26px;
	}
	#mainImg_txt h2 .bgappear > div span {
		font-size: 20px;
	}

  #mainImg_txt h2 small {
    font-size: 14px;
  }

	#mainImg .mv_thumb_right {
		bottom: 0;
	}
	#mainImg .mv_thumb_right img {
		height: 300px;
	}
	
	#merit .merit_list li {
        width: 48%;
	}
	#merit .merit_list li div > span > span {
		width: 100%;
		padding: 8px 10px;
	}
	#merit .merit_list li:last-child strong {
        font-size: 110%;
	}
	.slick-prev, .slick-next {
		height: 20px;
		width: 20px;
		top: auto;
		bottom: 10px;
	}

  section, .parallax-bg {
    background-attachment: inherit !important;
	}
	#detail button {width: 100% !important;}
	
	.wave-circle {width: 90vw; height: 70vh; top: -35vh; left: -20vw;}
	.wave-circle-large {width: 120vw; height: 85vh; bottom: -35vh; right: -50vw;}
	
	#faq .mv_thumb_left img {height: 160px;}
}

@media only screen and (max-width: 390px) {
	.main section h2, .main section h3 {
		font-size: 18px;
	}
	#merit .merit_list li {
		width: 44%;
	}
	#merit .merit_list li strong {
		font-size: 130%;
	}
	#merit .merit_list li img {
		max-height: 140px;
	}
	#merit .merit_list li div > span > span {
		padding: 8px 15px;
	}
	blockquote:before, blockquote:after {
        font-size: 30px;
        color: rgba(34, 51, 103, 0.035);
	}
	#faq .mv_thumb_left img {
		height: 200px;
	}
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .navbar-toggle {
    display: none !important;
  }
}