@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif, "Montserrat", sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

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

img {
  max-width: 100%;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --primary-font:"游ゴシック体",YuGothic,游ゴシック Medium,Yu Gothic Medium,游ゴシック,Yu Gothic,Meiryo,sans-serif;
  --cormorant-infant-font:"Cormorant Infant", serif;
  --yu-mincho-font: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --primary:#333333;
  --primary-light:#BBBBBB;
  --primary-dark:#1E0405;
  --secondary:#999;
  --secondary-dark:#605858;
  --primary-background-color:#231815;
  --accent-color: #8B7246;
  --border-primary:#DDDDDD;
  --border-primary-light:#e5e5e5;
  --border-second: #CCCCCC;
  --white: #FFFFFF;
  --black: #000;
  --hover-button-light: #F5F5F5;
  --background-red: rgba(218, 49, 12, 0.05);
  --red:#DA310C;
  --blue:#0070BF;
  --green: #6FBA2C;
  --orange: #ED6104;
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
html, body {
  overflow: hidden;
}
body {
  width: 100%;
  height: auto;
  letter-spacing: 0.2px;
  color: #003F88;
  background: #F7F5F0;
}

.wrapper {
  overflow: hidden;
  width: 100vw;
  height: auto;
  min-width: 819px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    min-width: 320px;
  }
}

.scrollbar-track {
  background: transparent !important;
}
@media screen and (max-width: 768px) {
  .scrollbar-track {
    width: 4px !important;
  }
  .scrollbar-track .scrollbar-thumb {
    width: 4px;
  }
}

.l-content {
  width: 100%;
  max-width: 1206px;
  margin: 0 auto;
}
@media screen and (max-width: 1205px) {
  .l-content {
    max-width: calc(100% - 60px);
  }
}
@media screen and (max-width: 768px) {
  .l-content {
    max-width: calc(100% - 60px);
  }
}

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

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

@media screen and (max-width: 1200px) and (min-width: 769px) {
  .ntb {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .ntb2 {
    display: none !important;
  }
}
.c-loading {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background: #FFFFFF;
  pointer-events: none;
  z-index: 9999;
}
.c-loading__logo {
  opacity: 0;
  display: flex;
}
.c-loading__logo span {
  display: inline-block;
  position: relative;
  opacity: 0.2;
}
.c-loading__logo span img {
  width: auto;
  position: relative;
  z-index: 9;
}
.c-loading__logo span:nth-child(1) {
  margin-right: 6px;
}
.c-loading__logo span:nth-child(2) {
  margin-right: 8px;
}
.c-loading__logo span:nth-child(3) {
  margin-right: 3px;
}
.c-loading__logo span:nth-child(4) {
  margin-right: 2px;
}
.c-loading__logo span:nth-child(5) {
  margin-right: 0px;
}
.c-loading__logo span.color::before {
  content: "";
  background: #FFD900;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  border-radius: 10px;
  opacity: 0;
  transition: ease-in-out 0.4s;
}
.c-loading.fade-in {
  transition: ease-in-out 0.7s;
}
.c-loading.fade-in .c-loading__logo {
  opacity: 1;
}
.c-loading.fade-in .c-loading__logo span {
  transition: ease-in-out 0.5s;
}
.c-loading.fade-in .c-loading__logo span:nth-child(1) {
  transition-delay: 0.2s;
  opacity: 1;
}
.c-loading.fade-in .c-loading__logo span:nth-child(2) {
  opacity: 1;
  transition-delay: 0.4s;
}
.c-loading.fade-in .c-loading__logo span:nth-child(3) {
  opacity: 1;
  transition-delay: 0.6s;
}
.c-loading.fade-in .c-loading__logo span:nth-child(4) {
  opacity: 1;
  transition-delay: 0.8s;
}
.c-loading.fade-in .c-loading__logo span:nth-child(5) {
  opacity: 1;
  transition-delay: 1s;
}
.c-loading.fade-in .c-loading__logo span.color::before {
  opacity: 1;
  transition-delay: 1.2s;
}
.c-loading.completed {
  background: unset;
  z-index: 222;
  opacity: 0;
}
.c-loading.off {
  transition: ease-in-out 0.2s;
  background: unset;
  z-index: 222;
  opacity: 0;
}
.c-loading.off .c-loading__logo {
  opacity: 0 !important;
}

/*------------------------------------------------------------
    Sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
    Header
------------------------------------------------------------*/
.c-header {
  position: absolute;
  left: 45px;
  top: 40px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .c-header {
    left: 25px;
    top: 30px;
  }
}
.c-header .logo {
  width: auto;
  height: auto;
}
.c-header .logo a {
  display: inline-block;
  transform: scale(1);
}
@media screen and (max-width: 768px) {
  .c-header .logo a img {
    width: 90px;
    height: auto;
  }
}
.c-header .logo a:hover {
  animation-name: pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes pop {
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*------------------------------------------------------------
    Footer
------------------------------------------------------------*/
.c-footer {
  padding: 60px 0px 40px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding: 50px 0px;
    background: #fff;
  }
}
.c-footer .l-content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-footer .l-content {
    text-align: center;
  }
}
.c-footer .logo a {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-footer .logo a {
    text-align: center;
    display: block;
  }
  .c-footer .logo a img {
    width: 160px;
    height: auto;
  }
}
.c-footer .nav {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-footer .nav {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .c-footer .nav > * {
    width: 100%;
  }
}
.c-footer .nav .logo {
  padding-right: 40px;
  border-right: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .c-footer .nav .logo {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: unset;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .nav .link {
    max-width: 182px;
    text-align: left;
  }
}
.c-footer .nav .link a {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-footer .nav .link a {
    margin-left: 0;
  }
}
.c-footer a {
  width: auto;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-footer a {
    font-size: 11px;
    margin-top: 20px;
  }
}
.c-footer a img {
  height: auto;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .c-footer a img {
    width: 14px;
  }
}
.c-footer a:hover {
  opacity: 0.5;
}
.c-footer__copyright {
  text-align: center;
  margin-top: 80px;
}
.c-footer__copyright small {
  font-size: 12px;
  color: #003F88;
  text-align: center;
}

.c-footer .icon-top {
  position: relative;
  width: auto;
  display: inline-block;
  font-size: 16px;
  margin-top: 0;
  letter-spacing: 0.7px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-footer .icon-top {
    top: auto;
    bottom: -10px;
    right: -12px;
  }
  .c-footer .icon-top img {
    width: 38px;
  }
}
.c-footer .icon-top:hover {
  opacity: 0.6;
}

/*------------------------------------------------------------
    btn
------------------------------------------------------------*/
.c-btn01 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  height: 44px;
  width: 100%;
  max-width: 220px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #003F88;
  position: relative;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2705882353);
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    font-size: 11px;
    height: 30px;
    max-width: 160px;
  }
}
.c-btn01::after {
  content: "";
  background: url(../images/ic_arrow1.png) center no-repeat;
  background-size: 8px auto;
  width: 8px;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 0px;
}
@media screen and (max-width: 768px) {
  .c-btn01::after {
    background: url(../images/ic_arrow1.png) center no-repeat;
    background-size: 6px auto;
    width: 6px;
    right: 15px;
  }
}
.c-btn01:hover {
  opacity: 0.65;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title01 {
  font-size: 28px;
  font-weight: 700;
  border-bottom: 3px solid #003E92;
  display: inline-block;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .c-title01 {
    font-size: 18px;
    border-bottom: 2px solid #003E92;
    padding-bottom: 5px;
  }
}
.c-title02 {
  position: absolute;
  writing-mode: vertical-rl;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #7F9FC3;
  letter-spacing: -0.05em;
  text-transform: capitalize;
}

/*------------------------------------------------------------
   Table
------------------------------------------------------------*/
/*------------------------------------------------------------
   Select, input,...
------------------------------------------------------------*/
/*------------------------------------------------------------
   Breadcrumb
------------------------------------------------------------*/
/*------------------------------------------------------------
  List
------------------------------------------------------------*/
/*------------------------------------------------------------
  Nav
------------------------------------------------------------*/
/*------------------------------------------------------------
  paginate
------------------------------------------------------------*/
/*------------------------------------------------------------
   Others
------------------------------------------------------------*/
.is-noti {
  display: none !important;
}

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeLeft {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(-50px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeRight {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(50px); /* 下に30pxの位置から */
  transition: opacity 0.6s, transform 0.6s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フォントカラー(初期値) */
.js-color {
  color: blue; /* 最初は青色 */
  font-size: 15px; /* 最初は15px */
  transition: color 0.6s, font-size 0.6s; /* 色の変化を0.8秒かける */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.2s; /* フェード開始を0.5秒遅らせる */
}

.js-fadeLeft.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0.2s; /* フェード開始を0.5秒遅らせる */
}

.js-fadeRight.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0.2s; /* フェード開始を0.5秒遅らせる */
}

/* フォントカラー変更(スクロールした後) */
.js-color.is-inview {
  color: green; /* 表示領域に入ったら色を変える */
  font-size: 25px; /* 表示領域に入ったら25px */
  transition-delay: 0.2s; /* 開始を0.5秒遅らせる */
}

.c-video {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-video {
    padding: 0px 30px;
    box-sizing: border-box;
  }
}
.c-video .js-modal-video {
  position: relative;
  z-index: 1;
  width: 476px;
  height: auto;
  cursor: pointer;
  border: 5px solid #003f88;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .c-video .js-modal-video {
    max-width: 430px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) and (max-width: 1023px) {
  .c-video .js-modal-video {
    max-width: 380px;
  }
}
@media screen and (max-width: 768px) {
  .c-video .js-modal-video {
    width: auto;
    border: 3px solid #003f88;
    max-width: 400px;
  }
  .c-video .js-modal-video img {
    width: 100%;
    height: auto;
  }
}
.c-video .js-modal-video::after {
  content: "";
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  background: rgba(0, 60, 139, 0.15);
  position: absolute;
  z-index: -1;
  left: 10px;
  top: 10px;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-video .js-modal-video::after {
    display: none;
  }
}
.c-video .js-modal-video::before {
  content: "";
  background: url(../images/view2-video1-ic1.png) no-repeat;
  background-size: 100%;
  width: 70px;
  height: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-video .js-modal-video::before {
    width: 46px;
    height: 46px;
  }
}
.c-video .js-modal-video:hover::after {
  background: rgba(0, 60, 139, 0.5);
}
.c-video .js-modal-video:hover::before {
  opacity: 1;
}

.c-mainvisual01 {
  width: 100%;
  /* background: linear-gradient(to bottom, rgb(144, 190, 218) 0%, rgb(136, 183, 213) 100%); */
  background: url(../images/mainvisual-bg-yellow.jpg) repeat;
  overflow: hidden;
  position: relative;
}
.c-mainvisual01 .bg {
  width: 100%;
  height: 100%;
  text-align: left;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .bg {
    height: auto;
    top: auto;
    bottom: -5%;
  }
}
.c-mainvisual01 .bg img {
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .bg img {
    max-width: 100%;
    width: 100%;
    height: auto;
    left: 0;
    transform: translateX(0%);
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .c-mainvisual01 .bg img {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.c-mainvisual01 .title {
  position: absolute;
  z-index: 1;
  left: calc(50% - 415px);
  top: 13vh;
}
@media screen and (max-width: 980px) {
  .c-mainvisual01 .title {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .title {
    left: 30px;
    /* top: 13vh; */
  }
}
.c-mainvisual01 .title img {
  width: 320px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .title img {
    width: 200px;
  }
}
.c-mainvisual01 .icon {
  position: absolute;
  z-index: 1;
  left: calc(50% - 430px);
  bottom: 0;
}
@media screen and (max-width: 980px) {
  .c-mainvisual01 .icon {
    left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .icon {
    left: 14vw;
  }
}
.c-mainvisual01 .icon img {
  width: 318px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .icon img {
    width: 191px;
  }
}
.c-mainvisual01 .c-scroll {
  position: absolute;
  z-index: 1;
  left: 40px;
  bottom: 45px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .c-scroll {
    left: 20px;
    bottom: 20px;
  }
}
.c-mainvisual01 .c-scroll p {
  font-family: "Montserrat", sans-serif;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .c-scroll p {
    font-size: 11px;
    color: #003F88;
  }
}
.c-mainvisual01 .c-scroll .arrow {
  text-align: center;
  width: 100%;
  position: relative;
  bottom: -10px;
  animation: 3s fuwafuwa infinite;
}
@media screen and (max-width: 768px) {
  .c-mainvisual01 .c-scroll .arrow {
    bottom: -8px;
    animation: 3s fuwafuwa2 infinite;
  }
  .c-mainvisual01 .c-scroll .arrow img {
    width: 8px;
    height: auto;
  }
}

.animation1 .c-header {
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 1.1s;
  animation-fill-mode: backwards;
  animation-name: fadeIn;
}
.animation1 .c-mainvisual01 .title {
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  animation-name: fadeInRight;
}
.animation1 .c-mainvisual01 .icon {
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 1s;
  animation-fill-mode: backwards;
  animation-name: fadeInUp;
}

@keyframes fuwafuwa2 {
  0%, 100% {
    bottom: -8px;
  }
  50% {
    bottom: -16px;
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    bottom: -10px;
  }
  50% {
    bottom: -25px;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translate(0px, 300px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translate(-300px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-top-sec01 {
  width: 100%;
  z-index: 9;
  position: fixed;
  background: #fff;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 700ms ease;
  transform: translatez(0);
}
.p-top-sec01 .c-view {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0px;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view {
    height: 100% !important;
    max-height: calc(100vh + 60px);
    transition: ease-in-out 0.2s;
  }
}
.p-top-sec01 .c-view::before {
  content: "";
  background: url(../images/sec01-bg1.png) no-repeat left;
  background-size: auto 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view::before {
    background: url(../images/sec01-bg1_sp.png) no-repeat left top;
    background-size: 223px auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .p-top-sec01 .c-view::before {
    background: url(../images/sec01-bg1_sp.png) no-repeat right top;
    background-size: 223px auto;
  }
}
.p-top-sec01 .c-view::after {
  content: "";
  /* background: linear-gradient(to bottom, rgba(0, 63, 136, 0.2) 0%, rgba(141, 141, 141, 0.2) 100%); */
  background: linear-gradient(to bottom, rgba(251, 229, 154, 0.2) 0%, rgba(133, 227, 253, 0.2) 100%);
  background-size: auto 100%;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.p-top-sec01 .c-view .effect1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top-sec01 .c-view .effect2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top-sec01 .c-view .effect3 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top-sec01 .c-view .effect4 {
  opacity: 0;
  transition: opacity 0.6s;
}
.p-top-sec01 .c-view .img > * {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: calc(50% + 300px);
  opacity: 0;
  transition: opacity 0.6s;
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .img > * {
    left: auto;
    right: 0px;
  }
}
.p-top-sec01 .c-view .img > * img {
  height: 550px;
  width: auto !important;
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .img > * img {
    height: 500px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1023px) {
  .p-top-sec01 .c-view .img > * img {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .img > * {
    left: auto;
    right: 7px;
  }
  .p-top-sec01 .c-view .img > * img {
    width: auto;
    height: 261px;
  }
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .title {
    position: relative;
  }
}
.p-top-sec01 .c-view .title .title1 {
  position: absolute;
  z-index: 9;
  bottom: 0;
  bottom: 200px;
  left: calc(50% - 600px);
}
.p-top-sec01 .c-view .title .title1.t1 {
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .title .title1 {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .title .title1 {
    left: 30px;
    bottom: 107px;
  }
  .p-top-sec01 .c-view .title .title1 img {
    width: 184px;
    height: auto;
  }
}
.p-top-sec01 .c-view .title .c-title1 {
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .title .c-title1 {
    height: auto !important;
  }
}
.p-top-sec01 .c-view .title .c-title1 h2 {
  position: absolute;
  z-index: 9;
  font-size: 20px;
  color: #003f88;
  font-weight: 700;
  display: inline-block;
  top: 75px;
  left: calc(50% - 603px);
  width: auto;
  border-bottom: 3px solid #003f88;
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .title .c-title1 h2 {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .title .c-title1 h2 {
    left: 30px;
    top: 35px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top-sec01 .c-view .title .c-title1 h2 {
    top: 15px;
  }
}
.p-top-sec01 .c-view .title .c-title1 h3 {
  left: calc(50% - 603px);
  position: absolute;
  z-index: 9;
  font-size: 25px;
  color: #003f88;
  font-weight: 800;
  line-height: 1.7;
  top: calc(50% - 45px);
}
@media screen and (max-width: 1200px) {
  .p-top-sec01 .c-view .title .c-title1 h3 {
    left: 30px;
    top: calc(50% + 22px);
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .title .c-title1 h3 {
    left: 30px;
    top: calc(50% + 26px);
    transform: translateY(-50%) translateX(-50px);
    transition-delay: 0.2s;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top-sec01 .c-view .title .c-title1 h3 {
    top: calc(50% + 16px);
    font-size: 16px;
  }
}
.p-top-sec01 .c-view .title .c-title1 .img1 {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 160px;
}
.p-top-sec01 .c-view .icon > * {
  position: absolute;
  z-index: 9;
  bottom: 40px;
  left: calc(50% - 400px);
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .icon > * {
    left: 20px;
    bottom: 15px;
  }
  .p-top-sec01 .c-view .icon > * img {
    width: 80px;
    height: auto;
  }
}
.p-top-sec01 .c-view .content {
  width: 100%;
}
.p-top-sec01 .c-view .content > * {
  pointer-events: none;
}
.p-top-sec01 .c-view .content .card1 {
  display: block;
  text-align: center;
  position: absolute;
  z-index: 9999999;
  width: 100%;
  bottom: 0;
}
.p-top-sec01 .c-view .content .card1 .c-video {
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .p-top-sec01 .c-view .content .card1 .c-video {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .card1 .c-video {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 768px) and (max-width: 427px) {
  .p-top-sec01 .c-view .content .card1 .c-video {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) and (max-width: 427px) and (max-width: 413px) {
  .p-top-sec01 .c-view .content .card1 .c-video {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top-sec01 .c-view .content .card1 .c-video {
    margin-bottom: 45px;
  }
}
.p-top-sec01 .c-view .content .card1 .btn {
  width: 100%;
  height: auto;
  text-align: center;
}
.p-top-sec01 .c-view .content .card1 .btn .c-btn01 {
  margin: 0 auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .card1 .btn .c-btn01 {
    margin-bottom: 35px;
  }
}
.p-top-sec01 .c-view .content .card1 .box {
  padding-top: 0;
}
.p-top-sec01 .c-view .content .card1 .box .txt {
  width: 100%;
}
.p-top-sec01 .c-view .content .card1 .box .txt p {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 2.72;
  color: #003f88;
  font-family: "Noto Sans JP", sans-serif;
  transform: translate(0px, 0px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .card1 .box .txt p {
    font-size: 16px;
    line-height: 2.375;
  }
}
.p-top-sec01 .c-view .content .card1 .box .logo {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 130px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .card1 .box .logo {
    margin-top: 60px;
    margin-bottom: 100px;
  }
  .p-top-sec01 .c-view .content .card1 .box .logo img {
    width: 111px;
    height: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top-sec01 .c-view .content .card1 .box .logo {
    margin-top: 30px;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .card1 .txt {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 25px;
  }
  .p-top-sec01 .c-view .content .card1 .txt img {
    width: 187px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-view .content .content1 .box .txt {
    margin-bottom: 0;
    padding-left: 0;
  }
  .p-top-sec01 .c-view .content .content1 .txt {
    margin-bottom: 100px;
  }
}
.p-top-sec01 .c-view.end .title5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01 .c-view.end .icon .ic5 {
  opacity: 1;
}
.p-top-sec01 .c-view.end .img .img5 {
  opacity: 1;
}
.p-top-sec01 .c-view.end .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01 .c-view .progress-bar {
  width: 100%;
  height: 5px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 99999999999;
  overflow: hidden;
}
.p-top-sec01 .c-view .progress-bar span {
  display: block;
  background: #5D7CA1;
  width: 0%;
  height: 5px;
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-top-sec01 .c-blocka {
  height: 0vh;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-blocka {
    height: 0vh;
  }
}
.p-top-sec01 .c-block {
  position: relative;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  align-content: flex-end;
  transition: opacity 0.6s, transform 0.6s;
}
.p-top-sec01 .c-block.js-section {
  height: 1000px !important;
}
@media screen and (min-width: 769px) {
  .p-top-sec01 .c-block.js-section {
    height: 1500px !important;
  }
}
.p-top-sec01 .c-block.v1 {
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
}
@media screen and (min-width: 769px) {
  .p-top-sec01 .c-block.v1 {
    height: 1500px !important;
  }
  .p-top-sec01 .c-block.v1 .sec01 {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block.v1 {
    align-content: flex-start;
    padding-top: 150px;
  }
}
@media screen and (min-width: 769px) {
  .p-top-sec01 .c-block.v5 {
    height: calc(1500px + 100vh) !important;
    padding-bottom: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block.v5 {
    height: calc(1000px + 100vh) !important;
    padding-bottom: 100vh;
  }
}
.p-top-sec01 .c-block .content {
  width: 100%;
  opacity: 1;
}
.p-top-sec01 .c-block .content.out {
  transition: ease-in-out 0.3s;
  opacity: 0 !important;
}
.p-top-sec01 .c-block .content p {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 2.72;
  color: #003f88;
  font-family: "Noto Sans JP", sans-serif;
  transform: translate(0px, 0px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block .content p {
    font-size: 16px;
    line-height: 2.375;
  }
}
.p-top-sec01 .c-block .logo {
  opacity: 1;
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 130px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block .logo {
    margin-top: 60px;
    margin-bottom: 50px;
  }
  .p-top-sec01 .c-block .logo img {
    width: 111px;
    height: auto;
  }
}
.p-top-sec01 .c-block .c-title1 {
  width: 100%;
}
.p-top-sec01 .c-block .c-title1 h2 {
  position: relative;
  z-index: 9;
  font-size: 14px;
  color: #003f88;
  font-weight: 700;
  display: inline-block;
  left: 30px;
  width: auto;
  border-bottom: 2px solid #003f88;
  margin-bottom: 35px;
  box-sizing: border-box;
  max-width: calc(100% - 30px);
}
.p-top-sec01 .c-block .c-title1 h3 {
  left: 30px;
  position: relative;
  z-index: 9;
  font-size: 18px;
  color: #003f88;
  font-weight: 800;
  line-height: 1.7;
  margin-bottom: 50px;
  box-sizing: border-box;
  max-width: calc(100% - 30px);
}
.p-top-sec01 .c-block .txt {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 60px 0px;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block .txt {
    text-align: left;
    padding-left: 30px;
    margin: 50px 0px 30px;
  }
  .p-top-sec01 .c-block .txt.sp {
    margin-bottom: 0;
    padding-top: 60px;
  }
  .p-top-sec01 .c-block .txt img {
    width: 184px;
    height: auto;
  }
}
.p-top-sec01 .c-block .btn {
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block .btn {
    margin-bottom: 45px;
  }
}
.p-top-sec01 .c-block .btn .c-btn01 {
  margin: 0 auto;
}
.p-top-sec01 .c-block .js-hide {
  opacity: 1;
  transition: opacity 0.6s;
}
.p-top-sec01 .c-block .js-hide.opacity {
  opacity: 0 !important;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .p-top-sec01 .c-block .js-hide.opacity {
    opacity: 1 !important;
  }
}
.p-top-sec01 .c-block .js-effect {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top-sec01 .c-block .js-effect.active {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view1.e1 .content .content1 {
  pointer-events: visible;
}
.p-top-sec01.view1.e1 .content .content1 .effect1 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view1.e2 .content .content1 {
  pointer-events: visible;
}
.p-top-sec01.view1.e2 .content .content1 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view1.e2 .content .content1 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view1.e3 .content .content1 {
  pointer-events: visible;
}
.p-top-sec01.view1.e3 .content .content1 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view1.e3 .content .content1 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view1.e3 .content .content1 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view1 .effect4 {
  opacity: 1;
}
.p-top-sec01.view1 .progress-bar .v1 {
  opacity: 1;
}
.p-top-sec01.view1 .c-view {
  z-index: 1;
}
.p-top-sec01.view1 .title1 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view1 .icon .ic1 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view1 .img .img1 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view1 .content .content1 {
  z-index: 8;
}
.p-top-sec01.view2 .progress-bar .v2 {
  opacity: 1;
}
.p-top-sec01.view2 .c-view {
  z-index: 99999;
}
.p-top-sec01.view2.e1 .content .content2 {
  pointer-events: visible;
}
.p-top-sec01.view2.e1 .content .content2 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view2.e2 .content .content2 {
  pointer-events: visible;
}
.p-top-sec01.view2.e2 .content .content2 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view2.e2 .content .content2 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view2.e3 .content .content2 {
  pointer-events: visible;
}
.p-top-sec01.view2.e3 .content .content2 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view2.e3 .content .content2 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view2.e3 .content .content2 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view2 .c-block.v1 {
  opacity: 0;
}
.p-top-sec01.view2 .title2 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-top-sec01.view2 .title2 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.p-top-sec01.view2 .icon .ic2 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view2 .img .img2 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view3 .progress-bar .v3 {
  opacity: 1;
}
.p-top-sec01.view3 .c-view {
  z-index: 99999;
}
.p-top-sec01.view3 .c-view .content .content2 .effect2 {
  transform: translateY(0);
}
.p-top-sec01.view3 .c-view .content .content2 .effect1 {
  transform: translateX(0);
}
.p-top-sec01.view3 .c-view .content .content2 .effect3 {
  transform: translateY(0);
}
.p-top-sec01.view3.e1 .content .content3 {
  pointer-events: visible;
}
.p-top-sec01.view3.e1 .content .content3 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view3.e2 .content .content3 {
  pointer-events: visible;
}
.p-top-sec01.view3.e2 .content .content3 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view3.e2 .content .content3 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view3.e3 .content .content3 {
  pointer-events: visible;
}
.p-top-sec01.view3.e3 .content .content3 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view3.e3 .content .content3 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view3.e3 .content .content3 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view3 .title3 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-top-sec01.view3 .title3 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.p-top-sec01.view3 .icon .ic3 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view3 .img .img3 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view4 .progress-bar .v4 {
  opacity: 1;
}
.p-top-sec01.view4 .c-view {
  z-index: 99999;
}
.p-top-sec01.view4 .c-view .content .content3 .effect2 {
  transform: translateY(0);
}
.p-top-sec01.view4 .c-view .content .content3 .effect1 {
  transform: translateX(0);
}
.p-top-sec01.view4 .c-view .content .content3 .effect3 {
  transform: translateY(0);
}
.p-top-sec01.view4.e1 .content .content4 {
  pointer-events: visible;
}
.p-top-sec01.view4.e1 .content .content4 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view4.e2 .content .content4 {
  pointer-events: visible;
}
.p-top-sec01.view4.e2 .content .content4 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view4.e2 .content .content4 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view4.e3 .content .content4 {
  pointer-events: visible;
}
.p-top-sec01.view4.e3 .content .content4 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view4.e3 .content .content4 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view4.e3 .content .content4 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view4 .title4 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-top-sec01.view4 .title4 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.p-top-sec01.view4 .icon .ic4 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view4 .img .img4 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view5 .progress-bar .v5 {
  opacity: 1;
}
.p-top-sec01.view5 .c-view {
  z-index: 99999;
}
.p-top-sec01.view5 .c-view .content .content4 .effect2 {
  transform: translateY(0);
}
.p-top-sec01.view5 .c-view .content .content4 .effect1 {
  transform: translateX(0);
}
.p-top-sec01.view5 .c-view .content .content4 .effect3 {
  transform: translateY(0);
}
.p-top-sec01.view5.e1 .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.view5.e1 .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view5.e2 .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.view5.e2 .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view5.e2 .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view5.e3 .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.view5.e3 .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view5.e3 .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.view5.e3 .content .content5 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.view5 .title5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-top-sec01.view5 .title5 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.p-top-sec01.view5 .icon .ic5 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.view5 .img .img5 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.end .progress-bar .v5 {
  opacity: 1;
}
.p-top-sec01.end .c-view {
  z-index: 99999;
}
.p-top-sec01.end .c-view .content .content4 .effect2 {
  transform: translateY(0);
}
.p-top-sec01.end .c-view .content .content4 .effect1 {
  transform: translateX(0);
}
.p-top-sec01.end .c-view .content .content4 .effect3 {
  transform: translateY(0);
}
.p-top-sec01.end .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.end .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.end .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.end .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.end .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.end .content .content5 {
  pointer-events: visible;
}
.p-top-sec01.end .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.end .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top-sec01.end .content .content5 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top-sec01.end .title5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .p-top-sec01.end .title5 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}
.p-top-sec01.end .icon .ic5 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec01.end .img .img5 {
  opacity: 1;
  transition-delay: 0s;
}
.p-top-sec02 {
  width: 100%;
  background: #f0f3f8;
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 {
    padding: 40px 0 50px;
  }
}
.p-top-sec02 .block1 {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  margin-top: 95px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 {
    margin-top: 40px;
  }
}
.p-top-sec02 .block1 .card1 {
  width: 100%;
  height: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 {
    flex-wrap: wrap;
  }
}
.p-top-sec02 .block1 .card1 .img {
  width: 340px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .img {
    width: 100%;
    text-align: center;
  }
}
.p-top-sec02 .block1 .card1 .content {
  width: calc(100% - 340px);
  height: auto;
  box-sizing: border-box;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content {
    width: 100%;
    padding-left: 0;
  }
}
.p-top-sec02 .block1 .card1 .content .card2 {
  width: 100%;
  height: auto;
  padding: 30px 45px;
  border: 3px solid #003f88;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .card2 {
    padding: 30px;
    border: 2px solid #003f88;
    margin-bottom: 40px;
  }
}
.p-top-sec02 .block1 .card1 .content .card2::after {
  content: "";
  background: url(../images/ic_arrow4.png) no-repeat;
  background-color: #f0f3f8;
  background-size: 32px auto;
  width: 32px;
  height: 34px;
  position: absolute;
  bottom: -34px;
  left: 60px;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .card2::after {
    background: url(../images/ic_arrow4_sp.png) no-repeat;
    background-color: #f0f3f8;
    background-size: 25px auto;
    width: 25px;
    height: 32px;
    bottom: -30px;
    left: calc(50% - 10px);
  }
}
.p-top-sec02 .block1 .card1 .content .card2 p {
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .card2 p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .txt {
    margin-top: 35px;
  }
}
.p-top-sec02 .block1 .card1 .content .txt h3 {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .txt h3 {
    font-size: 18px;
  }
}
.p-top-sec02 .block1 .card1 .content .txt p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-top-sec02 .block1 .card1 .content .txt p {
    margin-top: 15px;
    font-size: 12px;
  }
}
.p-top-sec03 {
  width: 100%;
  background: #d6e0eb;
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 {
    padding: 40px 0 50px;
  }
}
.p-top-sec03 .block1 {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  margin-top: 95px;
  background: #fff;
  border-radius: 23px;
  position: relative;
  padding: 70px 90px;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 {
    margin-top: 40px;
    padding: 50px 30px;
  }
}
.p-top-sec03 .block1 .card1 {
  display: flex;
  height: auto;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 .card1 {
    flex-wrap: wrap;
  }
}
.p-top-sec03 .block1 .card1 .img {
  width: 245px;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 .card1 .img {
    width: 100%;
    text-align: center;
    padding: 15px 0px 40px;
  }
  .p-top-sec03 .block1 .card1 .img img {
    width: 160px;
  }
}
.p-top-sec03 .block1 .card1 .content {
  width: calc(100% - 245px);
  height: auto;
  padding-left: 75px;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 .card1 .content {
    width: 100%;
    padding-left: 0;
  }
}
.p-top-sec03 .block1 .card1 .content h4 {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 .card1 .content h4 {
    font-size: 18px;
  }
}
.p-top-sec03 .block1 .card1 .content .txt2 {
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  text-align: justify;
  padding: 30px 0px 35px;
  border-bottom: 1px #033F88 solid;
}
@media screen and (max-width: 768px) {
  .p-top-sec03 .block1 .card1 .content .txt2 {
    padding: 25px 0px 35px;
    font-size: 12px;
  }
}
.p-top-sec03 .block1 .card1 .content h5 {
  font-size: 14px;
  font-weight: 700;
  margin-top: 35px;
}
.p-top-sec03 .block1 .card1 .content .txt3 {
  font-size: 11px;
  font-weight: 500;
  margin-top: 20px;
}
.p-top-sec04 {
  width: 100%;
  background: #f0f3f8;
  padding: 70px 50px 100px;
}
@media screen and (max-width: 768px) {
  .p-top-sec04 {
    padding: 40px 0px 50px;
  }
}
.p-top-sec04 .block1 {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  margin-top: 95px;
  background: #fff;
  border-radius: 23px;
  position: relative;
  padding: 70px 90px;
}
@media screen and (max-width: 768px) {
  .p-top-sec04 .block1 {
    margin-top: 45px;
    padding: 0;
    background: transparent;
  }
  .p-top-sec04 .block1 .c-video {
    padding: 0;
  }
}
.p-top-sec04 .block1 .js-modal-video {
  border: 0px solid black;
}
.p-top-sec04 .block1 .js-modal-video::after {
  display: none;
}
.p-top-sec04 .block1 p {
  width: 100%;
  max-width: 476px;
  padding-top: 30px;
  font-size: 12px;
  line-height: 1.7;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-sec04 .block1 p {
    font-size: 11px;
  }
}
.p-top-sec05 {
  width: 100%;
  background: #d6e0eb;
  text-align: center;
  padding: 65px 0px;
}
@media screen and (max-width: 768px) {
  .p-top-sec05 {
    padding: 50px 0xp 60px;
  }
}
.p-top-sec05 .title2 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-top-sec05 .title2 {
    font-size: 14px;
  }
}
.p-top-sec05 .btn {
  margin-top: 30px;
}
.p-top-sec05 .btn a {
  margin: 0px 15px;
  transition: ease-in 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-sec05 .btn a {
    margin: 0px 10px;
  }
  .p-top-sec05 .btn a img {
    width: 35px;
  }
}
.p-top-sec05 .btn a:hover {
  opacity: 0.6;
}
.p-top .c-block.js-section .c-view {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 0px;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view {
    height: 100% !important;
    max-height: calc(100vh + 60px);
    transition: ease-in-out 0.2s;
  }
}
.p-top .c-block.js-section .c-view::before {
  content: "";
  background: url(../images/sec01-bg1.png) no-repeat left;
  background-size: auto 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 50%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view::before {
    background: url(../images/sec01-bg1_sp.png) no-repeat left top;
    background-size: 223px auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .p-top .c-block.js-section .c-view::before {
    background: url(../images/sec01-bg1_sp.png) no-repeat right top;
    background-size: 223px auto;
  }
}
.p-top .c-block.js-section .c-view::after {
  content: "";
  /* background: linear-gradient(to bottom, rgba(0, 63, 136, 0.2) 0%, rgba(141, 141, 141, 0.2) 100%); */
  background: linear-gradient(to bottom, rgba(251, 229, 154, 0.2) 0%, rgba(133, 227, 253, 0.2) 100%);
  background-size: auto 100%;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view::after {
    background: #E6ECF3;
  }
}
.p-top .c-block.js-section .c-view .effect1 {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top .c-block.js-section .c-view .effect2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top .c-block.js-section .c-view .effect3 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s, transform 0.6s;
}
.p-top .c-block.js-section .c-view .effect4 {
  opacity: 0;
  transition: opacity 0.6s;
}
.p-top .c-block.js-section .c-view .img > * {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: calc(50% + 300px);
  opacity: 0;
  transition: opacity 0.6s;
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .img > * {
    left: auto;
    right: 0px;
  }
}
.p-top .c-block.js-section .c-view .img > * img {
  height: 550px;
  width: auto !important;
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .img > * img {
    height: 500px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1023px) {
  .p-top .c-block.js-section .c-view .img > * img {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .img > * {
    left: auto;
    right: 7px;
  }
  .p-top .c-block.js-section .c-view .img > * img {
    width: auto;
    height: 261px;
  }
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .title {
    position: relative;
  }
}
.p-top .c-block.js-section .c-view .title .title1 {
  position: absolute;
  z-index: 9;
  bottom: 0;
  bottom: 200px;
  left: calc(50% - 600px);
}
.p-top .c-block.js-section .c-view .title .title1.t1 {
  position: fixed;
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .title .title1 {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .title .title1 {
    left: 30px;
    bottom: 107px;
  }
  .p-top .c-block.js-section .c-view .title .title1 img {
    width: 184px;
    height: auto;
  }
}
.p-top .c-block.js-section .c-view .title .c-title1 {
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .title .c-title1 {
    height: auto !important;
  }
}
.p-top .c-block.js-section .c-view .title .c-title1 h2 {
  position: absolute;
  z-index: 9;
  font-size: 20px;
  color: #003f88;
  font-weight: 700;
  display: inline-block;
  top: 75px;
  left: calc(50% - 603px);
  width: auto;
  border-bottom: 3px solid #003f88;
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h2 {
    left: 30px;
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h2 {
    left: 30px;
    top: 35px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h2 {
    top: 15px;
  }
}
.p-top .c-block.js-section .c-view .title .c-title1 h3 {
  left: calc(50% - 603px);
  position: absolute;
  z-index: 9;
  font-size: 25px;
  color: #003f88;
  font-weight: 800;
  line-height: 1.7;
  top: calc(50% - 45px);
}
@media screen and (max-width: 1200px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h3 {
    left: 30px;
    top: calc(50% + 0px);
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h3 {
    left: 30px;
    top: calc(50% + 26px);
    transform: translateY(-50%) translateX(-50px);
    transition-delay: 0.2s;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top .c-block.js-section .c-view .title .c-title1 h3 {
    top: calc(50% + 16px);
    font-size: 16px;
  }
}
.p-top .c-block.js-section .c-view .title .c-title1 .img1 {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 160px;
}
.p-top .c-block.js-section .c-view .icon > * {
  position: absolute;
  z-index: 9;
  bottom: 40px;
  left: calc(50% - 400px);
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .icon > * {
    left: 20px;
    bottom: 15px;
  }
  .p-top .c-block.js-section .c-view .icon > * img {
    width: 80px;
    height: auto;
  }
}
.p-top .c-block.js-section .c-view .content {
  width: 100%;
}
.p-top .c-block.js-section .c-view .content > * {
  pointer-events: none;
}
.p-top .c-block.js-section .c-view .content .card1 {
  display: block;
  text-align: center;
  position: absolute;
  z-index: 9999999;
  width: 100%;
  bottom: 0;
}
.p-top .c-block.js-section .c-view .content .card1 .c-video {
  margin-bottom: 70px;
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  .p-top .c-block.js-section .c-view .content .card1 .c-video {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .card1 .c-video {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 768px) and (max-width: 428px) {
  .p-top .c-block.js-section .c-view .content .card1 .c-video {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top .c-block.js-section .c-view .content .card1 .c-video {
    margin-bottom: 45px;
  }
}
.p-top .c-block.js-section .c-view .content .card1 .btn {
  width: 100%;
  height: auto;
  text-align: center;
}
.p-top .c-block.js-section .c-view .content .card1 .btn .c-btn01 {
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .p-top .c-block.js-section .c-view .content .card1 .btn .c-btn01 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .card1 .btn .c-btn01 {
    margin-bottom: 35px;
  }
}
.p-top .c-block.js-section .c-view .content .card1 .box {
  padding-top: 0;
}
.p-top .c-block.js-section .c-view .content .card1 .box .txt {
  width: 100%;
}
.p-top .c-block.js-section .c-view .content .card1 .box .txt p {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 2.72;
  color: #003f88;
  font-family: "Noto Sans JP", sans-serif;
  transform: translate(0px, 0px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .card1 .box .txt p {
    font-size: 16px;
    line-height: 2.375;
  }
}
.p-top .c-block.js-section .c-view .content .card1 .box .logo {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 130px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .card1 .box .logo {
    margin-top: 60px;
    margin-bottom: 100px;
  }
  .p-top .c-block.js-section .c-view .content .card1 .box .logo img {
    width: 111px;
    height: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .p-top .c-block.js-section .c-view .content .card1 .box .logo {
    margin-top: 30px;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .card1 .txt {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 25px;
  }
  .p-top .c-block.js-section .c-view .content .card1 .txt img {
    width: 187px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section .c-view .content .content1 .box .txt {
    margin-bottom: 0;
    padding-left: 0;
  }
  .p-top .c-block.js-section .c-view .content .content1 .txt {
    margin-bottom: 100px;
  }
}
.p-top .c-block.js-section.active .title1 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.p-top .c-block.js-section.active .content .content1 {
  z-index: 99999;
}
.p-top .c-block.js-section.active .content .content1 .txt.effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section.active .content .content1 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.p-top .c-block.js-section.active .c-view .content .card1 {
  pointer-events: visible;
}
.p-top .c-block.js-section.active .c-view .content .card1 .delay1 {
  transition-delay: 0.4s;
}
.p-top .c-block.js-section.active .c-view .content .card1 .delay2 {
  transition-delay: 0.6s;
}
.p-top .c-block.js-section.active .c-view .content .card1 .delay3 {
  transition-delay: 0.8s;
}
.p-top .c-block.js-section.active .c-view .content .card1 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top .c-block.js-section.active .c-view .content .card1 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.p-top .c-block.js-section.active .c-view .content .card1 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.p-top .c-block.js-section.active .c-view .content .card1 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.p-top .c-block.js-section.active .c-title1 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .p-top .c-block.js-section.active .c-title1 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.p-top .c-block.js-section.active .icon > div {
  opacity: 1;
  transition-delay: 0s;
}
.p-top .c-block.js-section.active .img > div {
  opacity: 1;
  transition-delay: 0s;
}

.c-modal {
  position: fixed;
  z-index: 999999999999999;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.c-modal .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(203, 216, 232) 0%, rgb(231, 231, 231) 100%);
  background-size: auto 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-modal .modal-overlay {
    background: #fff;
  }
}
.c-modal .modal-wrapper {
  position: absolute;
  z-index: 9999;
  left: 50%;
  top: 50%;
  text-align: center;
  transition: all 0.3s 0.12s;
  transform: translateY(-45%) translateX(-50%);
  opacity: 0;
}
.c-modal.is-visible {
  visibility: visible;
}
.c-modal.is-visible .modal-wrapper {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}
.c-modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
.c-modal.is-visible .close {
  opacity: 1;
  transition-delay: 0.2s;
}

.close {
  position: fixed;
  z-index: 99999;
  max-width: 870px;
  top: 80px;
  left: calc(50% - 400px);
  cursor: pointer;
  transition: ease-in-out 0.3s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .close {
    top: 15px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
  }
}
.close:hover {
  opacity: 0.5;
}

.c-dialog {
  width: 100%;
  height: calc(100% - 10px);
  max-width: 870px;
  max-height: 100%;
}
@media screen and (max-width: 820px) {
  .c-dialog {
    height: auto;
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .c-dialog {
    border-radius: 0px;
  }
}
.c-dialog::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}
.c-dialog::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.c-dialog .block {
  width: 100%;
  height: auto;
  padding: 60px;
  text-align: left;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 30px;
  background: #fff;
  margin: 50px 0;
  overflow: hidden;
}
@media screen and (max-width: 819px) {
  .c-dialog .block {
    height: 100%;
    padding: 100px 40px;
    margin: 0px;
    border-radius: 0;
  }
}
.c-dialog .block .block1 {
  max-width: 570px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .block1 .img1 {
    width: 65px;
    height: auto;
  }
}
.c-dialog .block .block1.v2 {
  border-top: 2px solid #003f88;
  margin-top: 50px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .block1.v2 {
    margin-top: 70px;
  }
}
.c-dialog .block .block1 .img2 {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.c-dialog .block .block1 .img2 span {
  text-align: left;
  position: absolute;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .block1 .img2 {
    margin-top: 40px;
  }
  .c-dialog .block .block1 .img2 .w1 {
    width: 100%;
    max-width: 283px;
  }
  .c-dialog .block .block1 .img2 .w2 {
    width: 100%;
    max-width: 240px;
  }
  .c-dialog .block .block1 .img2 .w2 {
    width: 100%;
    max-width: 291px;
  }
}
.c-dialog .block h2 {
  font-size: 28px;
  color: #003f88;
  font-weight: 700;
  padding: 0px 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-dialog .block h2 {
    font-size: 20px;
    margin-top: 30px;
    padding: 0;
  }
}
.c-dialog .block p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #003f88;
  padding: 0px 10px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-dialog .block p {
    font-size: 14px;
    margin-top: 30px;
    padding: 0;
  }
}
.c-dialog .block .link01 {
  width: auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #003f88;
  text-decoration: underline;
  padding-right: 30px;
  position: relative;
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .link01 {
    font-size: 12px;
    padding-right: 18px;
  }
}
.c-dialog .block .link01::after {
  content: "";
  background: url(../images/link01.png) center no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 100%;
  position: absolute;
  z-index: 9;
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .link01::after {
    background: url(../images/link01.png) center no-repeat;
    background-size: 12px auto;
    width: 12px;
  }
}
.c-dialog .block .link01:hover {
  opacity: 0.5;
}
.c-dialog .block .block2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9;
  margin-top: 50px;
}
.c-dialog .block .block2::before, .c-dialog .block .block2::after {
  content: "";
  height: 100%;
  width: 200px;
  background: #fff;
  position: absolute;
  left: -200px;
  top: 0;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .block2::before, .c-dialog .block .block2::after {
    display: none;
  }
}
.c-dialog .block .block2::after {
  left: auto;
  right: -200px;
}
.c-dialog .block .c-slide1 {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .c-slide1 {
    max-width: 200px;
  }
}
.c-dialog .block .c-slide1 .swiper-wrapper {
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .c-slide1 .swiper-wrapper {
    z-index: 99;
  }
}
.c-dialog .block .c-slide1 .swiper-wrapper .swiper-slide {
  text-align: center;
  z-index: 1;
}
.c-dialog .block .c-slide1 .swiper-wrapper .swiper-slide p {
  width: 100%;
  height: auto;
  text-align: center;
  color: #003f88;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .c-slide1 .swiper-wrapper .swiper-slide p {
    opacity: 0;
    font-size: 14px;
  }
}
.c-dialog .block .c-slide1 .swiper-wrapper .swiper-slide-active p {
  opacity: 1;
  transition: ease-in 0.2s;
}
.c-dialog .block .c-slide1 .swiper-button-next,
.c-dialog .block .c-slide1 .swiper-button-prev {
  background: url(../images/ic_arrow2.png) no-repeat;
  background-size: 74px;
  z-index: 99999999999;
  width: 74px;
  height: 74px;
  top: calc(50% - 37px);
  right: -37px;
}
.c-dialog .block .c-slide1 .swiper-button-next:after,
.c-dialog .block .c-slide1 .swiper-button-prev:after {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .c-slide1 .swiper-button-next,
  .c-dialog .block .c-slide1 .swiper-button-prev {
    background: url(../images/ic_arrow2.png) no-repeat;
    background-size: 50px;
    height: 50px;
    width: 50px;
    top: calc(50% - 25px);
    right: -30px;
  }
}
.c-dialog .block .c-slide1 .swiper-button-prev {
  background: url(../images/ic_arrow3.png) no-repeat;
  background-size: 74px;
  left: -37px;
}
@media screen and (max-width: 768px) {
  .c-dialog .block .c-slide1 .swiper-button-prev {
    background: url(../images/ic_arrow3.png) no-repeat;
    background-size: 50px;
    left: -30px;
  }
}
.c-dialog .block .c-slide1 .swiper-button-disabled {
  opacity: 0;
}

.fp-viewing-1 .p-top-sec01, .fp-viewing-2 .p-top-sec01, .fp-viewing-3 .p-top-sec01, .fp-viewing-4 .p-top-sec01, .fp-viewing-5 .p-top-sec01 {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
.fp-viewing-1 .p-top-sec01 .c-view .content .content1 {
  pointer-events: visible;
}
.fp-viewing-1 .p-top-sec01 .c-view .content .content1 .delay1 {
  transition-delay: 0.4s;
}
.fp-viewing-1 .p-top-sec01 .c-view .content .content1 .delay2 {
  transition-delay: 0.6s;
}
.fp-viewing-1 .p-top-sec01 .c-view .content .content1 .delay3 {
  transition-delay: 0.8s;
}
.fp-viewing-1 .p-top-sec01 .c-view .content .content1 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-1 .p-top-sec01 .title1 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
.fp-viewing-1 .p-top-sec01 .icon .ic1 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-1 .p-top-sec01 .img .img1 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-1 .p-top-sec01 .content .content1 {
  z-index: 99999;
}
.fp-viewing-1 .p-top-sec01 .content .content1 .txt.effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fp-viewing-1 .p-top-sec01 .content .content1 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 {
  pointer-events: visible;
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .delay1 {
  transition-delay: 0.4s;
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .delay2 {
  transition-delay: 0.6s;
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .delay3 {
  transition-delay: 0.8s;
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.fp-viewing-2 .p-top-sec01 .c-view .content .content2 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-2 .p-top-sec01 .title2 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fp-viewing-2 .p-top-sec01 .title2 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.fp-viewing-2 .p-top-sec01 .icon .ic2 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-2 .p-top-sec01 .img .img2 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 {
  pointer-events: visible;
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .delay1 {
  transition-delay: 0.4s;
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .delay2 {
  transition-delay: 0.6s;
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .delay3 {
  transition-delay: 0.8s;
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.fp-viewing-3 .p-top-sec01 .c-view .content .content3 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-3 .p-top-sec01 .title3 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fp-viewing-3 .p-top-sec01 .title3 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.fp-viewing-3 .p-top-sec01 .icon .ic3 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-3 .p-top-sec01 .img .img3 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 {
  pointer-events: visible;
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .delay1 {
  transition-delay: 0.4s;
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .delay2 {
  transition-delay: 0.6s;
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .delay3 {
  transition-delay: 0.8s;
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.fp-viewing-4 .p-top-sec01 .c-view .content .content4 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-4 .p-top-sec01 .title4 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fp-viewing-4 .p-top-sec01 .title4 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.fp-viewing-4 .p-top-sec01 .icon .ic4 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-4 .p-top-sec01 .img .img4 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 {
  pointer-events: visible;
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .delay1 {
  transition-delay: 0.4s;
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .delay2 {
  transition-delay: 0.6s;
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .delay3 {
  transition-delay: 0.8s;
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .effect2 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .effect1 {
  opacity: 1;
  transform: translateX(0);
}
.fp-viewing-5 .p-top-sec01 .c-view .content .content5 .effect3 {
  opacity: 1;
  transform: translateY(0);
}
.fp-viewing-5 .p-top-sec01 .title5 .effect1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .fp-viewing-5 .p-top-sec01 .title5 h3.effect1 {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
    transition-delay: 0.2s;
  }
}
.fp-viewing-5 .p-top-sec01 .icon .ic5 {
  opacity: 1;
  transition-delay: 0s;
}
.fp-viewing-5 .p-top-sec01 .img .img5 {
  opacity: 1;
  transition-delay: 0s;
}/*# sourceMappingURL=style.css.map */