@charset "UTF-8";
/*---------------------------------------

responsive

---------------------------------------*/
.sponly {
  display: block;
}
@media (min-width: 600px) {
  .sponly {
    display: none;
  }
}

.pconly {
  display: none;
}
@media (min-width: 768px) {
  .pconly {
    display: block;
  }
}

/*---------------------------------------

color

---------------------------------------*/
/*---------------------------------------

base

---------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
  color: #333333;
  background: #4EB2FF;
}

.blank {
  min-height: 100vh;
}

/*---------------------------------------

all

---------------------------------------*/
.bold {
  font-weight: 700;
}

.ul {
  border-bottom: 2px solid currentColor;
}

hr {
  max-width: 48px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  hr {
    max-width: 70px;
  }
}

.hr1 {
  border: 1px solid #ffffff;
}

.hr2 {
  border: 1px solid #1A4288;
}

header {
  color: white;
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 9999;
}
header::after {
  position: absolute;
  content: "";
  background: linear-gradient(to top, rgba(1, 6, 21, 0) 0%, rgba(1, 6, 21, 0.1647058824) 50%, rgba(0, 5, 20, 0.2) 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: -1;
}
@media (min-width: 768px) {
  header::after {
    height: 100px;
  }
}

.nav-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .nav-container {
    padding: 0 0 0 16px;
  }
}

.logo {
  display: flex;
}
.logo img {
  display: block;
  max-width: 160px;
  height: auto;
}
@media (min-width: 768px) {
  .logo img {
    max-width: 320px;
  }
}

/*---------------------------------------

mainview

---------------------------------------*/
.mainview {
  background: #ffffff;
}

.mainview,
.mainview__inner,
.message,
.overview,
.container {
  overflow: hidden;
}

.mainview__wrapper {
  position: relative;
}

.scroll {
  color: #ffffff;
  font-size: 13px;
  position: absolute;
  bottom: 15%;
  left: 94%;
  transform: translateX(-50%) translateY(-50%);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 9999;
}
@media (min-width: 768px) {
  .scroll {
    writing-mode: horizontal-tb;
    bottom: 8%;
    left: 50%;
    transform: scale(1, 1) rotate(0deg);
  }
}

.scroll::after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: 130%;
  transform: translateX(-50%);
  width: 0.5px;
  height: 56px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .scroll::after {
    right: 50%;
    bottom: -320%;
    height: 40px;
  }
}

.scroll::after {
  -webkit-animation: scroll-sp 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll-sp 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@media (min-width: 768px) {
  .scroll::after {
    -webkit-animation: scroll-pc 2s cubic-bezier(1, 0, 0, 1) infinite;
            animation: scroll-pc 2s cubic-bezier(1, 0, 0, 1) infinite;
  }
}

@-webkit-keyframes scroll-sp {
  0% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}

@keyframes scroll-sp {
  0% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}
@-webkit-keyframes scroll-pc {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
@keyframes scroll-pc {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
.mainview__inner {
  position: relative;
  height: 90vh; /* SP用の高さ調整 */
  height: 90svh; /* SP用の高さ調整 */
  opacity: 0.01;
  -webkit-animation: load 1.5s 0.8s ease-out forwards;
          animation: load 1.5s 0.8s ease-out forwards;
  border-bottom-left-radius: 900px 480px;
  border-bottom-right-radius: 900px 480px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .mainview__inner {
    border-bottom-left-radius: 900px 200px;
    border-bottom-right-radius: 900px 200px;
  }
}
.mainview__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 144, 255, 0) 0%, rgba(0, 71, 126, 0.1254901961) 64%, #003762 100%);
}
.mainview__inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/fallback-image.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mainview__inner #video {
  width: 100%;
  height: 100vh;
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .mainview__inner #video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1000;
    overflow: hidden;
  }
}

@-webkit-keyframes load {
  100% {
    opacity: 1;
  }
}

@keyframes load {
  100% {
    opacity: 1;
  }
}
.mainview__box {
  position: relative;
  top: 42%;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .mainview__box {
    top: 66%;
  }
}

.mainview__box > div p {
  color: #fff;
  text-shadow: 0 6px 3px rgba(0, 0, 0, 0.1254901961);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 40px;
  font-size: 2.7em;
  line-height: 1.65;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .mainview__box > div p {
    text-shadow: 0 6px 3px rgba(0, 0, 0, 0.1254901961);
    font-size: 4em;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .mainview__box > div p {
    font-size: 5em;
    margin: 0;
  }
}

.maincopy_1 {
  padding: 0 24px;
}
@media (min-width: 768px) {
  .maincopy_1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
.maincopy_1 h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
}

.box01 {
  background: #fff;
  border-bottom-left-radius: 900px 200px;
  border-bottom-right-radius: 900px 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .box01 {
    padding-bottom: 200px;
  }
}

/*---------------------------------------

fv-cta

---------------------------------------*/
.mainview__cta__button,
.mainview__cta__button2 {
  background: #fff;
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  border-left: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-left: 11px solid #0090FF;
  margin: 0 0 1em 0;
  box-shadow: 0px 3px 2px 0px rgba(26, 66, 136, 0.1882352941);
}
.mainview__cta__button img,
.mainview__cta__button2 img {
  max-width: 360px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainview__cta__button2 {
  border-left: 11px solid rgba(0, 145, 255, 0.7960784314);
}

.mainview__cta__link {
  color: #1A4288;
  background: #ffffff;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  padding: 1em;
  border-radius: 10px;
  letter-spacing: 0.08em;
  transition: 0.325s ease-in-out;
  border-left: 8px solid #0090FF;
}
@media (min-width: 1024px) {
  .mainview__cta__link {
    max-width: 360px;
    font-size: 20px;
  }
}
@media (hover: hover) {
  .mainview__cta__link:hover {
    opacity: 0.8;
    letter-spacing: 0.1em;
  }
}

.mainview__text {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  width: 200px;
  padding: 0 16px;
  line-height: 1.2;
}
.mainview__text::after {
  position: absolute;
  top: 50%;
  right: 2%;
}
.mainview__text span {
  font-weight: normal;
  font-size: 14px;
}

.fa-chevron-down {
  color: #0090FF;
}
.fa-chevron-down:hover {
  color: #1A4288;
  transition: 1s;
}

/*---------------------------------------

flow

---------------------------------------*/
.flow {
  position: relative;
  padding: 40px 16px;
  background: url(../img/bg_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .flow {
    padding: 120px 0;
  }
}
.flow h2.flow__title {
  padding: 64px 0 0;
  position: relative;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5em;
  z-index: 9999;
}
@media (min-width: 768px) {
  .flow h2.flow__title {
    padding: 120px 0 0;
    font-size: 28px;
    line-height: 1.75;
  }
}
@media (min-width: 1024px) {
  .flow h2.flow__title {
    font-size: 32px;
  }
}
.flow h2.flow__title span {
  z-index: 2;
}
.flow h2.flow__title::before {
  content: attr(data-en);
  position: absolute;
  top: 32px;
  left: 0%;
  color: rgba(255, 255, 255, 0.1019607843);
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  z-index: 3;
}
@media (min-width: 768px) {
  .flow h2.flow__title::before {
    font-size: 88px;
    line-height: 1;
    top: 0;
    left: 0%;
  }
}
@media (min-width: 1024px) {
  .flow h2.flow__title::before {
    font-size: 130px;
    top: 0;
    left: 0%;
  }
}
@media (min-width: 1280px) {
  .flow h2.flow__title::before {
    line-height: 1.75;
  }
}

.flow__wrapper {
  margin: 64px auto;
  z-index: 9999;
}
@media (min-width: 768px) {
  .flow__wrapper {
    margin: 64px auto;
  }
}
.flow__wrapper p {
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 1024px) {
  .flow__wrapper p {
    margin-bottom: 2em;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}
.flow__wrapper p.center {
  text-align: center;
}

.flow__flexbox {
  display: flex;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(51, 51, 51, 0.25);
  width: 100%;
  margin: 1em 0 0;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .flow__flexbox {
    margin: 1em;
    width: calc(50% - 2em);
    flex-direction: column;
  }
}
.flow__flexbox h3.flow__item-title {
  font-size: 18px;
  font-weight: bold;
  color: #1A4288;
  margin: 20px 0 8px;
}
@media (min-width: 768px) {
  .flow__flexbox h3.flow__item-title {
    margin: 20px 0;
    font-size: 30px;
    text-align: center;
  }
}
.flow__flexbox p {
  font-size: 14px;
  flex-grow: 1;
  text-align: left;
}
@media (min-width: 768px) {
  .flow__flexbox p {
    font-size: 16px;
    padding: 0 20px;
  }
}

.flow__flex {
  padding: 32px 20px;
}
@media (min-width: 768px) {
  .flow__flex {
    padding: 0 20px;
  }
}

.flow__inner {
  position: relative;
}

.flow__flexbox-outer {
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .flow__flexbox-outer {
    display: flex;
    flex-direction: row;
    max-width: 1080px;
    margin: 0 auto;
  }
}
@media (min-width: 1280px) {
  .flow__flexbox-outer {
    max-width: 1280px;
  }
}

.flow__flexbox-title {
  color: #1A4288;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding: 2em 0.3em;
  font-size: 32px;
}
@media (min-width: 1024px) {
  .flow__flexbox-title {
    padding: 1em 0 0.2em;
    font-size: 50px;
  }
}

.double-circle-1 {
  position: relative;
  width: 32px;
  height: 32px;
  background: #0090ff;
  border-radius: 50%;
  box-sizing: border-box;
  border: 8px solid #b7e0ff;
  margin: 64px 0;
}
@media (min-width: 768px) {
  .double-circle-1 {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }
}
.double-circle-1::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 120px;
  border-top: 2px dotted #0090ff;
  z-index: 9999;
  content: "";
  position: absolute;
  height: 56px;
  width: 2px;
  border-right: 2px dotted #0090ff;
  z-index: 9999;
  top: -250%;
  left: 44.5%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .double-circle-1::after {
    height: 2px;
    width: 125px;
  }
}
@media (min-width: 768px) {
  .double-circle-1::after {
    top: 41%;
    left: 200%;
  }
}
.double-circle-1::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 120px;
  border-top: 2px dotted #0090ff;
  z-index: 9999;
  content: "";
  position: absolute;
  top: 365%;
  right: 32.5%;
  height: 60px;
  width: 2px;
  border-left: 2px dotted #0090ff;
  transform: translateY(-50%);
  z-index: 9999;
}
@media (min-width: 768px) {
  .double-circle-1::before {
    height: 2px;
    width: 125px;
  }
}
@media (min-width: 768px) {
  .double-circle-1::before {
    top: 41%;
    right: 200%;
  }
}

/* 最初の円の後に線を表示しない pc*/
@media (min-width: 768px) {
  .flow__flexbox:nth-child(1) .double-circle-1::before {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .flow__flexbox:nth-child(4) .double-circle-1::after {
    display: none !important;
  }
}

/* 最初の円の後に線を表示しない sp*/
.flow__flexbox:nth-child(1) .double-circle-1::after {
  display: none !important;
}
@media (min-width: 768px) {
  .flow__flexbox:nth-child(1) .double-circle-1::after {
    display: block !important;
  }
}

.flow__flexbox:nth-child(4) .double-circle-1::before {
  display: none !important;
}
@media (min-width: 768px) {
  .flow__flexbox:nth-child(4) .double-circle-1::before {
    display: block !important;
  }
}

.flow__btn {
  margin: 16px;
  padding: 0;
  text-align: center;
  background: #f2f9ff;
  width: 95%;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  font-size: 110%;
  border-radius: 10px;
}

.flow__btn a:link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.flow__btn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: 0.3s ease-in-out;
}

.btn1 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: #1A4288;
  text-decoration: none;
  text-align: center;
  background: #FFDC00;
  margin: 20px 0;
  max-width: 680px;
}
.btn1::after {
  position: absolute;
  content: "";
  background: url(../img/arow-right.svg);
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 35%;
  right: 8%;
  z-index: 9999;
}

.size {
  width: 95%;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  font-size: 110%;
  border-radius: 10px;
}

/*---------------------------------------

cta

---------------------------------------*/
.cta__button {
  text-align: center;
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  .cta__button {
    margin: 0 0 2em 0;
  }
}
.cta__button p {
  color: #1A4288;
  background: #FFDC00;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  letter-spacing: 0.08em;
  transition: 0.325s ease-in-out;
  position: relative;
}
.cta__button p::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  left: 0;
  color: #1A4288;
  transform: translateY(-50%);
  background-image: url(../img/paper.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.cta__link {
  color: #1A4288;
  background: #FFDC00;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 1em;
  border-radius: 10px;
  letter-spacing: 0.08em;
  transition: 0.325s ease-in-out;
}
@media (min-width: 1024px) {
  .cta__link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .cta__link:hover {
    opacity: 0.8;
    letter-spacing: 0.1em;
  }
}

/*---------------------------------------

attention

---------------------------------------*/
.attention {
  color: #ffffff;
  text-align: center;
  padding: 16px 10px;
}
@media (min-width: 768px) {
  .attention {
    padding: 25px;
  }
}

.attention__text {
  line-height: 1.5;
  display: inline-block;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 10px 0;
  letter-spacing: 0.08em;
  font-size: 14px;
}
@media (min-width: 768px) {
  .attention__text {
    padding: 10px;
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.attention__text.-xxl {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .attention__text.-xxl {
    font-size: 24px;
  }
}
.attention__text.-xl {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .attention__text.-xl {
    font-size: 24px;
  }
}

/*---------------------------------------

footer

---------------------------------------*/
.footer {
  position: relative;
  padding: 1em 2em;
  font-size: 12px;
  background: #fff;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.footer-inner {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .footer-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
  }
}
.footer__copyright {
  margin-top: 0;
  font-size: 12px;
  font-weight: bold;
  color: #eee;
  text-align: center;
}
.footer__link {
  font-size: 12px;
  font-weight: bold;
  color: #1A4288;
}
.footer__link img {
  width: 100%;
  max-width: 160px;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .footer__link img {
    max-width: 320px;
    margin: 0;
  }
}

/*---------------------------------------

message

---------------------------------------*/
.message {
  padding: 0 16px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .message {
    padding: 0 16px 0;
  }
}

.message__inner {
  max-width: 960px;
  margin: 0 auto;
}
.message__inner h2.message__title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0 0 1.5em;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  .message__inner h2.message__title {
    padding: 120px 0 0;
    font-size: 28px;
    line-height: 1.75;
    margin: 0 0 2em;
  }
}
@media (min-width: 1024px) {
  .message__inner h2.message__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .message__inner h2.message__title.mincho {
    font-size: 36px;
  }
}
.message__inner h2.message__title img {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .message__inner h2.message__title img {
    max-width: 480px;
  }
}
.message__inner h2.message__title::before {
  content: "Message";
  margin: 0 auto;
  font-size: 70px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  color: rgba(0, 144, 255, 0.062745098);
  line-height: 1;
}
@media (min-width: 768px) {
  .message__inner h2.message__title::before {
    top: 10%;
    font-size: 130px;
  }
}
.message__inner p {
  letter-spacing: 0.05em;
  margin-bottom: 2em;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .message__inner p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}
.message__inner p.center {
  text-align: center;
}

/*---------------------------------------

overview

---------------------------------------*/
.overview {
  padding: 40px 0 0;
  background: linear-gradient(to bottom, #4EB2FF 0%, #0090ff 50%, #0090ff 100%);
}
@media (min-width: 768px) {
  .overview {
    padding: 120px 0 0;
  }
}
.overview h2.overview__title {
  position: relative;
  padding: 120px 0 0;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5em;
  z-index: 1;
}
@media (min-width: 768px) {
  .overview h2.overview__title {
    font-size: 28px;
    line-height: 1.75;
  }
}
@media (min-width: 1024px) {
  .overview h2.overview__title {
    font-size: 32px;
  }
}
.overview h2.overview__title span {
  z-index: 2;
}
.overview h2.overview__title::before {
  content: attr(data-en);
  position: absolute;
  top: 32px;
  left: 0%;
  color: rgba(255, 255, 255, 0.1019607843);
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .overview h2.overview__title::before {
    font-size: 88px;
    line-height: 1;
    top: 8px;
    left: 0%;
  }
}
@media (min-width: 1024px) {
  .overview h2.overview__title::before {
    font-size: 130px;
    top: -24px;
    left: 0%;
  }
}
@media (min-width: 1280px) {
  .overview h2.overview__title::before {
    line-height: 1.75;
  }
}

.overview__inner {
  max-width: 960px;
  padding: 0 16px 80px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .overview__inner {
    padding: 0 16px 120px;
  }
}
.overview__inner p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 3em 0 2em;
  text-align: center;
}
@media (min-width: 768px) {
  .overview__inner p {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .overview__inner p {
    letter-spacing: 1px;
  }
}
.overview__inner p.center {
  text-align: center;
}

.overview__inner-table {
  margin: 0 auto;
  color: #ffffff;
  width: 320px;
}
@media (min-width: 768px) {
  .overview__inner-table {
    width: 740px;
  }
}

.overview__inner-table th,
.overview__inner-table td {
  font-size: 16px;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .overview__inner-table th,
.overview__inner-table td {
    font-size: 16px;
    width: 30%;
    padding: 32px 0;
    display: flex;
    border: none;
  }
}

.overview__inner-table th {
  display: flex;
}
@media (min-width: 768px) {
  .overview__inner-table th {
    padding-left: 16px;
  }
}

.overview__inner-table td {
  font-size: 14px;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .overview__inner-table td {
    font-size: 16px;
    padding-top: 24px;
  }
}

@media (min-width: 768px) {
  td.number {
    padding-left: 56px;
  }
}

.overview__inner-table tr {
  border-bottom: 2px dotted rgba(255, 255, 255, 0.3137254902);
}
@media (min-width: 768px) {
  .overview__inner-table tr {
    display: flex;
  }
}

.overview__list {
  display: flex;
}

li.overview__item {
  width: 33.33%;
}
li.overview__item img {
  width: 100%;
}

.flex {
  display: flex;
}

/*---------------------------------------

job

---------------------------------------*/
.job {
  background: #ffffff;
}
@media (min-width: 768px) {
  .job {
    padding: 120px 0 0;
  }
}
.job h2.job__title {
  padding: 120px 0 0;
  position: relative;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #333333;
  margin: 0 0 0.5em;
  z-index: 1;
}
@media (min-width: 768px) {
  .job h2.job__title {
    font-size: 28px;
    line-height: 1.75;
  }
}
@media (min-width: 1024px) {
  .job h2.job__title {
    font-size: 32px;
  }
}
.job h2.job__title span {
  z-index: 2;
}
.job h2.job__title::before {
  content: attr(data-en);
  position: absolute;
  top: 32px;
  left: 0%;
  color: #f2f9ff;
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .job h2.job__title::before {
    font-size: 88px;
    line-height: 1;
    top: 8px;
    left: 0%;
  }
}
@media (min-width: 1024px) {
  .job h2.job__title::before {
    font-size: 130px;
    top: -24px;
    left: 0%;
  }
}
@media (min-width: 1280px) {
  .job h2.job__title::before {
    line-height: 1.75;
  }
}

.job__inner {
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .job__inner {
    padding: 94px 0;
  }
}
@media (min-width: 1024px) {
  .job__inner {
    padding: 94px 0;
  }
}
.job__inner p {
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 2em;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  .job__inner p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}
.job__inner p.center {
  text-align: center;
}

.tab_btn {
  display: flex;
  margin-top: 40px;
}

.job__box {
  padding: 24px 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .job__box {
    padding: 120px 0 24px;
  }
}
@media (min-width: 1024px) {
  .job__box {
    max-width: 1080px;
    padding: 120px 0 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .job__box {
    max-width: 1280px;
  }
}
.job__box img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (min-width: 768px) {
  .job__box img {
    height: 500px;
    border-radius: 24px;
  }
}
@media (min-width: 1024px) {
  .job__box img {
    width: auto;
    border-radius: 24px;
  }
}

.job__inner-table {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .job__inner-table {
    margin-left: 96px;
  }
}

.job__inner-table th,
.job__inner-table td {
  font-size: 16px;
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .job__inner-table th,
.job__inner-table td {
    display: inline-flex;
    border: none;
  }
}

.job__inner-table th {
  width: 20%;
  padding: 24px 0 16px;
}
@media (min-width: 768px) {
  .job__inner-table th {
    width: 20%;
    padding-left: 16px;
  }
}

.job__inner-table td {
  font-size: 14px;
  padding-top: 0;
  line-height: 1.75;
  width: 100%;
  padding: 0 0 24px;
}
@media (min-width: 768px) {
  .job__inner-table td {
    font-size: 16px;
    width: 70%;
    padding-top: 24px;
  }
}

@media (min-width: 768px) {
  td.number {
    padding-left: 56px;
  }
}

.job__inner-table tr {
  border-bottom: 2px dotted rgba(0, 144, 255, 0.4392156863);
}

.job_menu {
  display: flex;
  justify-content: center;
}

.job_menu-item {
  z-index: 2;
  position: relative;
  width: 160px;
  background: #E4EAEF;
  line-height: 36px;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  border-top: solid 8px rgba(0, 145, 255, 0.2156862745);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
  color: #1A4288;
  padding: 16px 0;
  box-shadow: inset 0px -3px 11px 0px rgba(26, 67, 137, 0.1490196078);
  margin-top: 56px;
  padding-top: -56px;
}
@media (min-width: 768px) {
  .job_menu-item {
    font-size: 24px;
    width: 240px;
    margin-top: 100px;
    padding-top: -100px;
  }
}
@media (min-width: 1024px) {
  .job_menu-item {
    width: 320px;
  }
}

.job_menu-item.is-active {
  background: #f2f9ff;
  color: #1A4288;
  font-weight: bold;
  border-top: solid 8px #0090FF;
  box-shadow: none;
  margin: 0 8px;
  margin-top: 56px;
  padding-top: -56px;
}
@media (min-width: 768px) {
  .job_menu-item.is-active {
    margin-top: 100px;
    padding-top: -100px;
  }
}

input:checked + .job_menu-item {
  font-size: 18px;
  color: #1A4288;
  font-weight: bold;
  border-top: solid 8px #0090FF;
}
@media (min-width: 768px) {
  input:checked + .job_menu-item {
    font-size: 24px;
  }
}

input[name=job_menu-item] {
  display: none;
}

.job_content {
  position: relative;
  display: none;
  z-index: 1;
  clear: both;
  border-radius: 8px;
  padding: 15px 20px;
  top: 0;
  background: #f2f9ff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media (min-width: 768px) {
  .job_content {
    padding: 0 90px 90px;
  }
}

.job_content.is-visible {
  opacity: 1;
  visibility: visible;
}

#job_a:checked ~ #job_a_content,
#job_b:checked ~ #job_b_content {
  display: block;
}

.job__item {
  width: 33.3333333333%;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  text-align: center;
}

.job__btn {
  padding: 0 0 40px;
  text-align: center;
  background: #f2f9ff;
}
@media (min-width: 768px) {
  .job__btn {
    padding: 40px 0 80px;
  }
}

.job a:link {
  max-width: 360px;
  margin: 0 auto;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.job a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: 0.3s ease-in-out;
}

/*---------------------------------------

treatment

---------------------------------------*/
.treatment {
  padding: 0 25px;
  background: #ffffff;
}
@media (min-width: 768px) {
  .treatment {
    padding: 0;
  }
}
.treatment h2.treatment__title {
  font-size: 24px;
  color: #333333;
  margin: 0 0 0.5em;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (min-width: 768px) {
  .treatment h2.treatment__title {
    padding: 120px 0 0;
    font-size: 28px;
    line-height: 1.75;
    margin: 0 0 0.5em;
  }
}
@media (min-width: 1024px) {
  .treatment h2.treatment__title {
    font-size: 32px;
  }
}
.treatment h2.treatment__title::before {
  content: attr(data-en);
  position: absolute;
  top: -88%;
  left: 0%;
  color: #f2f9ff;
  font-size: 56px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .treatment h2.treatment__title::before {
    font-size: 88px;
    text-align: left;
    line-height: 1;
    top: 8px;
    left: 0%;
  }
}
@media (min-width: 1024px) {
  .treatment h2.treatment__title::before {
    font-size: 130px;
    top: -24px;
    left: 0%;
  }
}
@media (min-width: 1280px) {
  .treatment h2.treatment__title::before {
    line-height: 1.75;
  }
}
.treatment h3.treatment__item-title {
  font-size: 18px;
  font-weight: bold;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .treatment h3.treatment__item-title {
    font-size: 25px;
  }
}

.treatment__inner {
  padding: 0 0 94px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .treatment__inner {
    margin: 64px auto 0;
  }
}
.treatment__inner p {
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) {
  .treatment__inner p {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .treatment__inner p {
    margin-bottom: 2em;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
}

.treatment__list {
  margin: 0 auto;
  list-style: none;
  border: none;
}
@media (min-width: 768px) {
  .treatment__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
}

.treatment__list-item {
  padding: 40px;
  transition: box-shadow 0.3s;
  text-align: center;
  border-top: 1px solid rgba(0, 144, 255, 0.3019607843);
}
@media (min-width: 768px) {
  .treatment__list-item {
    width: 24%;
    border-right: 1px solid rgba(0, 144, 255, 0.3019607843);
    border-top: 0;
    border-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .treatment__list-item {
    max-width: 320px;
  }
}
.treatment__list-item img {
  max-width: 130px;
}
@media (min-width: 768px) {
  .treatment__list-item img {
    max-width: 160px;
  }
}

img.treatment__list-item1 {
  max-width: 100%;
  max-width: 140px;
  padding-left: 16px;
}
@media (min-width: 768px) {
  img.treatment__list-item1 {
    max-width: 160px;
    padding: 8px 0 0 8px;
  }
}

.treatment__list-item:first-child {
  border-style: none;
}
@media (min-width: 768px) {
  .treatment__list-item:first-child {
    border-right: 1px solid rgba(0, 144, 255, 0.3019607843);
  }
}

@media (min-width: 768px) {
  .treatment__list-item:last-child {
    border-style: none;
  }
}

/*---------------------------------------

contact

---------------------------------------*/
.contact {
  padding: 0 16px;
  background: linear-gradient(to bottom, #4EB2FF 0%, #0090ff 100%);
}
@media (min-width: 768px) {
  .contact {
    padding: 0;
  }
}

.contact__inner {
  color: #ffffff;
  padding: 80px 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact__inner {
    padding: 120px 0;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
  }
}
.contact__inner h3.contact__title {
  display: none;
}
@media (min-width: 1024px) {
  .contact__inner h3.contact__title {
    display: block;
    font-size: 24px;
    margin: 0 auto;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 700;
    position: relative;
    text-align: center;
    font-size: 28px;
    line-height: 1.75;
    margin: 0 0 2em;
    font-size: 40px;
    margin-right: 80px;
  }
}
.contact__inner p {
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__inner p {
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .contact__inner p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
    text-align: left;
    padding: 0;
  }
}
.contact__inner p.center {
  text-align: center;
}

.contact__inner-box {
  text-align: left;
}
@media (min-width: 1024px) {
  .contact__inner-box {
    display: flex;
    justify-content: space-around;
    border-left: 1px solid rgba(255, 255, 255, 0.5019607843);
  }
}

.contact__inner-box-info {
  color: #fff;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact__inner-box-info {
    margin-left: 56px;
  }
}
@media (min-width: 768px) {
  .contact__inner-box-info p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .contact__inner-box-btn {
    margin-left: 80px;
  }
}

@media (min-width: 768px) {
  p.info__text {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  p.info__text {
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
  }
}

p.info__tel {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  padding: 8px 0;
}
@media (min-width: 768px) {
  p.info__tel {
    line-height: 1.2;
    font-size: 40px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  p.info__tel {
    font-size: 50px;
    padding-left: 45px;
  }
}
p.info__tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background-image: url(../img/tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  p.info__tel::before {
    top: 50%;
    left: 25%;
  }
}
@media (min-width: 1024px) {
  p.info__tel::before {
    top: 50%;
    left: 0;
  }
}

@media (min-width: 768px) {
  p.info__time {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.scroll-space {
  box-sizing: border-box;
  padding-top: 300px;
  height: 1600px;
  color: #fff;
  overflow: hidden;
}

.floating {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  text-align: center;
  margin: 0;
  padding: 16px 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .floating {
    display: none;
  }
}

.floating__btn {
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .floating__btn {
    display: none;
  }
}

.floating__btn a:link {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 3px 3px 0px rgba(26, 66, 136, 0.1882352941);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.floating__btn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: 0.3s ease-in-out;
}

.btn1 {
  display: inline-block;
  font-weight: bold;
  color: #1A4288;
  text-decoration: none;
  text-align: center;
  background: #FFDC00;
  margin: 20px 0;
  max-width: 680px;
}

.size {
  width: 260px;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  font-size: 110%;
  border-radius: 10px;
}

a.link {
  padding-top: 240px;
}
/*# sourceMappingURL=style.css.map */