@charset "UTF-8";
/*///////////////////////////////////////////////////
//
//            ▼ ベース設定 ▼
//
///////////////////////////////////////////////////*/
body {
  -webkit-text-size-adjust: 100%;
}

html {
  color: #000;
  font-size: 4vw;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;*/
  /*font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;*/
  /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /*font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;*/
  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 420px) {
  html {
    font-size: 18px;
  }
}
a {
  color: #000;
  display: block;
}

#wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

section,
.section {
  width: 100%;
  height: auto;
  position: relative;
}

.l_container {
  width: 100%;
  padding: 0 1rem;
}

.container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1rem;
}

.m_container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1rem;
}

.s_container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 1rem;
}

.is_pc {
  display: none;
}

.is_hidden_tab {
  display: none;
}

.objectCover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover;object-position: 50% 50%;";
}

.objectContain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  font-family: "object-fit: contain;object-position: 50% 50%;";
}

.point_reader {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.inertia {
  -webkit-overflow-scrolling: touch;
}

.preload * {
  transition: none;
}

/*///////////////////////////////////////////////////
//
//            ▼ アニメーション ▼
//
///////////////////////////////////////////////////*/
.mask {
  position: relative;
}
.mask::before {
  position: absolute;
  top: 0%;
  left: 0%;
  content: "";
  width: 100%;
  height: 100%;
  background: #004c94;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  transition: 0.6s 0.4s;
}
.mask.active::before {
  left: -190%;
}
.mask::after {
  position: absolute;
  top: 0%;
  left: 0%;
  content: "";
  width: 100%;
  height: 100%;
  background: #004c94;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
  transition: 0.6s 0.4s;
}
.mask.active::after {
  left: 190%;
}

.fadein {
  transition-duration: 0.6s;
  transform: translate(0, 50px);
  opacity: 0;
}
.fadein.active {
  transform: translate(0, 0);
  opacity: 1;
}

@keyframes anim01 {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-25%) rotate(20deg);
  }
  100% {
    transform: translateY(0) rotate(-10deg);
  }
}
@keyframes anim02 {
  0% {
    transform: translateY(0) rotate(10deg);
  }
  50% {
    transform: translateY(-25%) rotate(-20deg);
  }
  100% {
    transform: translateY(0) rotate(10deg);
  }
}
@keyframes anim03 {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-25%) rotate(40deg);
  }
  100% {
    transform: translateY(0) rotate(-10deg);
  }
}
.anim01,
.anim02,
.anim03 {
  display: block;
}

.anim01 {
  animation: 2.6s anim01 infinite ease-in-out;
}

.anim02 {
  animation: 2.6s anim02 infinite ease-in-out;
}

.anim03 {
  animation: 4s anim03 infinite ease-in-out;
}

/*///////////////////////////////////////////////////
//
//            ▼ 共通 ▼
//
///////////////////////////////////////////////////*/
.center_txt {
  text-align: center;
}

.en {
  font-family: "Roboto", sans-serif;
}

.section_title {
  font-size: 3.5rem;
  font-weight: bold;
}

.section_subtitle {
  font-size: 1.625rem;
  font-weight: bold;
}

.center_txt {
  text-align: center;
}

h3,
h4,
p,
span,
li,
a,
span {
  color: #004c94;
  letter-spacing: 0.05rem;
}

.rellax_inner {
  display: block;
}

/*///////////////////////////////////////////////////
//
//            ▼ 共通ボタン ▼
//
///////////////////////////////////////////////////*/
.btn {
  font-weight: bold;
  font-size: 0.9333rem;
  margin: 0 auto;
  color: #004c94;
  width: 17.6rem;
  border: solid 1px #004c94;
  padding: 1rem 0;
  position: relative;
  letter-spacing: 0.05rem;
}
.btn .arrow_right {
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  transition: 0.8s;
}

/*///////////////////////////////////////////////////
//
//            ▼ ナビ ▼
//
///////////////////////////////////////////////////*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50000;
  background: #fff;
}
header .header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.5rem;
}
header .logo {
  line-height: 1;
  width: 10rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}
header .logo a {
  width: 100%;
}
header .logo a img {
  display: block;
  width: 100%;
  height: auto;
}
header nav {
  position: fixed;
  top: 3.5rem;
  right: -100%;
  width: 100%;
  height: calc(100% - 3rem);
  background: #fff;
  transition: 0.3s;
}
header nav.active {
  right: 0;
}
header nav ul li {
  background: rgba(0, 76, 148, 0.05);
}
header nav ul li:not(:first-of-type) {
  margin: 1rem 0 0;
}
header nav ul li a {
  color: #fff;
  width: 100%;
  padding: 1rem 2rem;
}
header nav ul li a span {
  font-size: 1.2rem;
  font-weight: bold;
}

.menu_open {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: #fff;
}
.menu_open span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #004c94;
  width: 40%;
  height: 2px;
  transition: 0.3s;
}
.menu_open span:nth-of-type(1) {
  transform: translate(-50%, -50%) translateY(6px);
}
.menu_open span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}
.menu_open span:nth-of-type(3) {
  transform: translate(-50%, -50%) translateY(-6px);
}
.menu_open.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu_open.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_open.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*///////////////////////////////////////////////////
//
//            ▼ フッター ▼
//
///////////////////////////////////////////////////*/
footer {
  padding: 3.2rem 0 2rem;
}
footer .copyright p {
  font-size: 0.733rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ01 ▼
//
///////////////////////////////////////////////////*/
.top01 {
  margin: 4rem 0 0;
}
.top01 .txt01 {
  position: absolute;
  bottom: -4rem;
  left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.top01 .txt01 span {
  font-size: 30.67vw;
  font-weight: bold;
  color: #6dad19;
  opacity: 0.1;
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.top01 .mv {
  margin-left: auto;
  padding: 0 1rem 2.933rem 0;
  position: relative;
}
.top01 .mv figure {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 78.67%;
  object-fit: cover;
}
.top01 .mv .txt02 {
  position: absolute;
  top: calc(100% - 2.5rem);
  left: 17%;
}
.top01 .mv .txt02 span {
  font-size: 8vw;
  font-weight: 900;
  opacity: 0.2;
  line-height: 1;
  white-space: nowrap;
  display: block;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ02 ▼
//
///////////////////////////////////////////////////*/
.top02 {
  padding: 5.73rem 0 0;
}
.top02 .top02_in {
  position: relative;
  z-index: 1;
}
.top02 .top02_in h2 {
  position: relative;
  margin: 0 auto;
  width: 16.1333rem;
  height: 4.2667rem;
  z-index: 1;
}
.top02 .top02_in .box {
  position: relative;
  padding: 3rem 0 0;
  text-align: center;
  z-index: 1;
}
.top02 .top02_in .box p {
  font-weight: 500;
  font-size: 0.9333rem;
}
.top02 .top02_in .box p:not(:first-of-type) {
  margin: 1em 0 0;
}
.top02 .top02_in .box p:nth-of-type(2) {
  font-size: 0.8rem;
}
.top02 .top02_in .box p:nth-of-type(3) {
  line-height: 1.4;
}
.top02 .top02_in .box p span {
  font-size: 1.2rem;
  font-weight: bold;
}
.top02 .top02_in .top02_img01 {
  position: absolute;
  top: 25%;
  right: 0%;
  width: 10.0667rem;
  height: 13.8667rem;
}
.top02 .top02_img02 {
  position: absolute;
  top: 92%;
  left: 0%;
  width: 6.5rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ03 ▼
//
///////////////////////////////////////////////////*/
.top03 {
  padding: 7rem 0 0;
}
.top03 .top03_in {
  position: relative;
}
.top03 .top03_in h2 {
  position: absolute;
  top: -3%;
  left: -3.2%;
  width: 19rem;
  height: 4.2667rem;
  z-index: 1;
}
.top03 .top03_in .box .item01 {
  position: relative;
}
.top03 .top03_in .box .item01 figure {
  position: relative;
}
.top03 .top03_in .box .item01 figure::before {
  position: absolute;
  content: "";
  background: rgba(225, 241, 250, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top03 .top03_in .box .item01 figure::after {
  position: absolute;
  content: "FOR\aWHAT?";
  bottom: -1%;
  left: 0;
  line-height: 0.917;
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: 0.05rem;
  opacity: 0.1;
  color: #004c94;
}
.top03 .top03_in .box .item02 {
  padding: 1.667rem 0 0 0;
}
.top03 .top03_in .box .item02 p {
  font-weight: 500;
}
.top03 .top03_in .box .item02 p:not(:first-of-type) {
  margin: 1rem 0 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ04 ▼
//
///////////////////////////////////////////////////*/
.top04 {
  padding: 4.5rem 0 0;
}
.top04 .top04_img02 {
  position: absolute;
  bottom: -13%;
  left: -10%;
  width: 13rem;
  height: 14.5rem;
}
.top04 .top04_img01 {
  position: absolute;
  width: 5rem;
  height: 9rem;
  top: 0.5%;
  right: 7%;
}
.top04 .top04_outer {
  position: relative;
  z-index: 2;
}
.top04 .top04_outer .top04_in {
  position: relative;
}
.top04 .top04_outer .top04_in h2 {
  width: 16.88rem;
  height: 2rem;
  margin: 0 auto;
}
.top04 .top04_outer .top04_in .box {
  margin: 3.3rem 0 0;
  border: #e7e7e7 solid 1px;
}
.top04 .top04_outer .top04_in .box .item01 h3,
.top04 .top04_outer .top04_in .box .item01 p,
.top04 .top04_outer .top04_in .box .item01 span,
.top04 .top04_outer .top04_in .box .item02 h3,
.top04 .top04_outer .top04_in .box .item02 p,
.top04 .top04_outer .top04_in .box .item02 span {
  color: #333333;
  letter-spacing: 0.08rem;
}
.top04 .top04_outer .top04_in .box .item01 h3,
.top04 .top04_outer .top04_in .box .item02 h3 {
  font-size: 1rem;
  font-weight: bold;
}
.top04 .top04_outer .top04_in .box .item01 p,
.top04 .top04_outer .top04_in .box .item02 p {
  font-size: 0.667rem;
}
.top04 .top04_outer .top04_in .box .item01 span,
.top04 .top04_outer .top04_in .box .item02 span {
  font-weight: bold;
}
.top04 .top04_outer .top04_in .box .item01 .time,
.top04 .top04_outer .top04_in .box .item02 .time {
  font-size: 0.9333rem;
}
.top04 .top04_outer .top04_in .box .item01 .percent,
.top04 .top04_outer .top04_in .box .item02 .percent {
  font-size: 1.0667rem;
}
.top04 .top04_outer .top04_in .box .item01 {
  display: flex;
  text-align: center;
}
.top04 .top04_outer .top04_in .box .item01 p {
  padding: 0.1rem 0 0;
}
.top04 .top04_outer .top04_in .box .item01 .item01_left {
  width: 35.652%;
  padding: 2.2rem 0;
}
.top04 .top04_outer .top04_in .box .item01 .item01_left p {
  line-height: 1.55;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right {
  width: 64.348%;
  border-left: #e7e7e7 solid 1px;
  line-height: 1;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right p {
  padding: 0.6rem 0 0;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner {
  display: flex;
  flex-wrap: wrap;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner01 {
  width: 100%;
  padding: 0.7rem 0;
  border-bottom: #e7e7e7 solid 1px;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner02 {
  padding: 1.6rem 0 1.133rem;
  width: 35.7%;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner03 {
  padding: 0.6rem 0 1.2rem;
  width: 64.3%;
  border-left: #e7e7e7 solid 1px;
  background: #333333;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner03 h3,
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner03 p,
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner03 span {
  color: #fff;
}
.top04 .top04_outer .top04_in .box .item01 .item01_right .inner .inner03 h3 {
  line-height: 1.3;
  font-weight: 900;
}
.top04 .top04_outer .top04_in .box .item02 {
  border-top: #e7e7e7 solid 1px;
  padding: 1.2rem 0;
  text-align: center;
  line-height: 1;
}
.top04 .top04_outer .top04_in .box .item02 p + p {
  margin: 0.6rem 0 0;
}
.top04 .top04_outer .top04_in .txt {
  padding: 2.3rem 0 0;
  text-align: center;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ05 ▼
//
///////////////////////////////////////////////////*/
.top05 {
  padding: 6.2rem 0 0;
}
.top05 h2 {
  width: 15.867rem;
  height: 12.6rem;
  margin: 0 auto;
}
.top05 .box {
  padding: 2.667rem 0 0;
  position: relative;
  z-index: 2;
}
.top05 .box .item_left {
  background: url(../images/top/top05_img01_sp.jpg) center center/cover no-repeat;
}
.top05 .box .item_right {
  background: url(../images/top/top05_img02_sp.jpg) center center/cover no-repeat;
}
.top05 .box .item {
  position: relative;
  padding: 2rem 1rem;
}
.top05 .box .item .inner {
  position: relative;
  width: 100%;
  z-index: 2;
  padding: 2rem;
  margin: 0 auto;
}
.top05 .box .item .inner h3 {
  width: 16.267rem;
  height: 1.7333rem;
  margin: 0 auto;
}
.top05 .box .item .inner p {
  margin: 1.6rem 0 0;
  font-size: 0.8667rem;
  font-weight: 400;
  max-width: 492px;
}
.top05 .box .item .inner::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.top05 .txt {
  text-align: center;
  margin: 2.667rem 0 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ06 ▼
//
///////////////////////////////////////////////////*/
.top06 {
  padding: 5.5rem 0 0;
}
.top06 .top06_img {
  position: absolute;
  top: -4%;
  left: 2%;
  width: 5rem;
  height: 7rem;
}
.top06 .txt {
  position: absolute;
  top: -40%;
  right: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: -1;
}
.top06 .txt span {
  font-size: 30.67vw;
  font-weight: bold;
  color: #6dad19;
  opacity: 0.3;
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.top06 .box a {
  position: relative;
}
.top06 .box a figure img {
  max-height: 25rem;
}
.top06 .box a .bg_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
  height: calc(100% - 2.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
}
.top06 .box a .bg_wrap.bg_wrap01 {
  background: url(../images/top/bg01.svg) center center/cover no-repeat;
}
.top06 .box a .bg_wrap.bg_wrap02 {
  background: url(../images/top/bg02.svg) center center/cover no-repeat;
}
.top06 .box a .bg_wrap.bg_wrap03 {
  background: url(../images/top/bg03.svg) center center/cover no-repeat;
}
.top06 .box a .inner {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top06 .box a .inner h3 {
  font-size: 1.066rem;
  font-weight: 500;
  text-align: center;
}
.top06 .box a .inner .btn {
  text-align: center;
  margin-top: 1.75rem;
}
.top06 .box a .inner .btn::before {
  left: 13.8125rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ トップ07 ▼
//
///////////////////////////////////////////////////*/
.top07 {
  padding: 10.933rem 0 0;
}
.top07 .txt {
  position: absolute;
  top: -40%;
  left: -1%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: -1;
}
.top07 .txt span {
  font-size: 30.67vw;
  font-weight: bold;
  color: #6dad19;
  opacity: 0.5;
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.top07 .box {
  background: url(../images/top/top07_img01_sp.jpg) center center/cover no-repeat;
  text-align: center;
  position: relative;
  z-index: 2;
}
.top07 .box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 86.97%;
  background: rgba(255, 255, 255, 0.8);
}
.top07 .box .item {
  position: relative;
  z-index: 2;
  padding: 4.3rem 0 3.8rem;
  margin: 0 auto;
}
.top07 .box .item h3 {
  font-weight: bold;
  text-align: center;
}
.top07 .box .item h4 {
  font-size: 1.0667rem;
  margin: 2rem 0 1.8rem;
  white-space: nowrap;
  font-weight: 400;
}
.top07 .top07_img {
  position: absolute;
  bottom: -35%;
  left: 36%;
  width: 12.5625rem;
  height: 13.375rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ cta ▼
//
///////////////////////////////////////////////////*/
.cta01 {
  padding: 5.9rem 0 0;
}
.cta01 .box .cta_inner {
  padding: 3.2rem 0 3.3rem;
  background: linear-gradient(90deg, #6eb92b, #0073bc);
  text-align: center;
}
.cta01 .box .cta_inner h2 {
  color: #fff;
  font-size: 1.4rem;
}
.cta01 .box .cta_inner .txt {
  color: #fff;
  font-size: 0.8667rem;
  margin: 1.9rem 0 0;
  font-weight: 400;
}
.cta01 .box .cta_inner .btn_cta {
  color: #fff;
  margin: 2.1333rem auto 0;
  border: solid 1px #fff;
  position: relative;
  overflow: hidden;
}
.cta01 .box .cta_inner .btn_cta span {
  color: #fff;
}
.cta01 .box .cta_inner .btn_cta .arrow_right {
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  transition: 0.3s;
}

/*///////////////////////////////////////////////////
//
//            ▼ 下層共通 ▼
//
///////////////////////////////////////////////////*/
@keyframes marquee {
  0% {
    transform: translate(-40%, 0%);
  }
  100% {
    transform: translate(-60%, 0%);
  }
}
.box_mv {
  margin: 4rem 0 0 auto;
  padding: 2.667rem 0 0;
}
.box_mv .item_mv_left {
  padding: 0 0 0 1rem;
}
.box_mv .item_mv_left h1 {
  font-size: 1.0667rem;
  font-weight: bold;
  margin: 0.4rem 0 0;
  letter-spacing: 0.05rem;
  color: #004c94;
}
.box_mv .item_mv_left .breadcrumbs {
  margin: 2.6rem 0 0;
}
.box_mv .item_mv_left .breadcrumbs ol {
  display: flex;
}
.box_mv .item_mv_left .breadcrumbs ol li {
  padding: 0 1.4375rem 0 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: #004c94;
  position: relative;
}
.box_mv .item_mv_left .breadcrumbs ol li:not(:last-of-type) {
  padding: 0 0.8rem 0 0;
  opacity: 0.4;
}
.box_mv .item_mv_left .breadcrumbs ol li:not(:last-of-type)::after {
  position: absolute;
  top: 55%;
  right: 0%;
  transform: translate(50%, -50%);
  width: 0.3rem;
  height: 0.5875rem;
  pointer-events: none;
  content: "";
  background: url(../images/common/chevron-right.png) center center/contain no-repeat;
}
.box_mv .item_mv_left .breadcrumbs ol li:not(:first-of-type) {
  padding-left: 0.8rem;
}
.box_mv .item_mv_right {
  margin: 2.55rem 0 0;
  width: 100%;
}

.lower_box01 {
  padding: 4rem 0 0;
}
.lower_box01 .lower_item {
  position: relative;
  overflow: hidden;
}
.lower_box01 .lower_item .lower_item_left figure {
  width: 100%;
}
.lower_box01 .lower_item .lower_item_right {
  padding: 1rem 1rem 6.4rem;
}
.lower_box01 .lower_item .lower_item_right .lower_inner p {
  margin: 1rem 0 0;
  font-size: 0.9333rem;
  font-weight: 500;
}
.lower_box01 .lower_item .txt_wrap {
  position: absolute;
  bottom: 0;
  display: flex;
}
.lower_box01 .lower_item .txt_wrap.anim01 {
  animation: marquee 30s linear infinite;
}
.lower_box01 .lower_item .txt_wrap.anim02 {
  animation: marquee 70s linear infinite;
}
.lower_box01 .lower_item .txt_wrap.anim03 {
  animation: marquee 50s linear infinite;
}
.lower_box01 .lower_item .txt_wrap.anim04 {
  animation: marquee 20s linear infinite;
}
.lower_box01 .lower_item .txt_wrap .txt {
  white-space: nowrap;
  line-height: 0.69;
  font-size: 6.6667rem;
  font-weight: bold;
  opacity: 0.05;
}
.lower_box01 .lower_item .txt_wrap span {
  margin-right: 3rem;
}

.lower_box02 {
  position: relative;
}
.lower_box02::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
}
.lower_box02 .item {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0;
  text-align: center;
  margin: 0 auto;
}
.lower_box02 p {
  font-weight: 500;
  font-size: 0.9333rem;
}
.lower_box02 .txt {
  position: absolute;
  left: 0%;
  font-weight: bold;
  opacity: 0.1;
  line-height: 0.875;
  bottom: -2.7%;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング01 ▼
//
///////////////////////////////////////////////////*/
.consulting01 .sub_title figure {
  max-width: 15.8rem;
  width: 100%;
}
.consulting01 .txt {
  margin: 3.2rem auto 0;
  max-width: 9.6rem;
  height: 20.4667rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング02 ▼
//
///////////////////////////////////////////////////*/
.consulting02 .lower_box01 {
  margin-top: 0;
}
.consulting02 .lower_box01 .lower_item:first-of-type .txt {
  left: 19%;
}
.consulting02 .lower_box01 .lower_item:nth-of-type(2) .txt {
  left: -32%;
}
.consulting02 .lower_box01 .lower_item:nth-of-type(3) .lower_item_right h2 {
  width: 1.4667rem;
}
.consulting02 .lower_box01 .lower_item:nth-of-type(3) .txt {
  right: 11%;
}
.consulting02 .lower_box01 .lower_item:nth-of-type(4) .txt {
  right: 7%;
}
.consulting02 .lower_box01 .lower_item .lower_inner h2 {
  width: 3.0667rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング03 ▼
//
///////////////////////////////////////////////////*/
.consulting03 {
  background: url("../images/consulting/consulting03_img01_sp.jpg") center center/cover no-repeat;
}
.consulting03 .item h3 {
  font-size: 1.7rem;
  font-size: bold;
}
.consulting03 .item p {
  margin: 1.6rem 0 0;
}
.consulting03 .txt {
  font-size: 4.2667rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ コンサルティング01 ▼
//
///////////////////////////////////////////////////*/
.web01 .sub_title figure {
  max-width: 5.1333rem;
  width: 100%;
}

/*///////////////////////////////////////////////////
//
//            ▼ ウェブ02 ▼
//
///////////////////////////////////////////////////*/
.web02 .lower_box01 {
  margin-top: 0;
}
.web02 .lower_box01 .lower_item:first-of-type .lower_inner h2 {
  width: 13.7233rem;
}
.web02 .lower_box01 .lower_item:first-of-type .txt {
  left: -10%;
  bottom: -2%;
}
.web02 .lower_box01 .lower_item:nth-of-type(2) .lower_inner h2 {
  width: 10.6rem;
}
.web02 .lower_box01 .lower_item:nth-of-type(2) .txt {
  left: 15%;
  bottom: -3%;
}
.web02 .lower_box01 .lower_item:nth-of-type(3) .lower_item_right h2 {
  width: 13.7333rem;
}
.web02 .lower_box01 .lower_item:nth-of-type(3) .txt {
  right: -42%;
  bottom: -2%;
}
.web02 .lower_box01 .lower_item:nth-of-type(4) .lower_item_right h2 {
  width: 12.2667rem;
}
.web02 .lower_box01 .lower_item:nth-of-type(4) .txt {
  right: -10%;
}
.web02 .lower_box01 .lower_item:nth-of-type(5) .lower_item_right h2 {
  width: 10.7333rem;
}
.web02 .lower_box01 .lower_item:nth-of-type(5) .txt {
  right: 20%;
}

/*///////////////////////////////////////////////////
//
//            ▼ ウェブ03 ▼
//
///////////////////////////////////////////////////*/
.web03 {
  background: url("../images/web/web03_img01_sp.jpg") center center/cover no-repeat;
}
.web03 .item {
  padding: 5.66rem 0 6.7333rem;
}
.web03 .txt {
  font-size: 3.7333rem;
  bottom: -1.7%;
}

/*///////////////////////////////////////////////////
//
//            ▼ SNS02 ▼
//
///////////////////////////////////////////////////*/
.sns02 .lower_box01 {
  margin-top: 0;
}
.sns02 .lower_box01 .lower_item:first-of-type .lower_inner h2 {
  width: 10.7333rem;
}
.sns02 .lower_box01 .lower_item:first-of-type .txt {
  left: 20%;
  bottom: -3%;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .lower_inner h2 {
  width: 4.5333rem;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .inner {
  display: flex;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.005rem;
  color: #004c94;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9333rem;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .inner .inner_left {
  width: 5.9333rem;
  flex-shrink: 0;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .inner .inner_center {
  flex-shrink: 0;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .inner .inner_right {
  flex-shrink: 1;
}
.sns02 .lower_box01 .lower_item:nth-of-type(2) .txt {
  left: 0%;
  bottom: -3%;
}

/*///////////////////////////////////////////////////
//
//            ▼ SNS03 ▼
//
///////////////////////////////////////////////////*/
.sns03 {
  background: url("../images/sns/sns03_img01_sp.jpg") center center/cover no-repeat;
}
.sns03 .item {
  padding: 5.66rem 0 6.7333rem;
}
.sns03 .txt {
  font-size: 3.7333rem;
  bottom: -1.7%;
}

/*///////////////////////////////////////////////////
//
//            ▼ アバウト01 ▼
//
///////////////////////////////////////////////////*/
.about01 .sub_title figure {
  max-width: 8.333rem;
  width: 100%;
}

/*///////////////////////////////////////////////////
//
//            ▼ アバウト02 ▼
//
///////////////////////////////////////////////////*/
.about02 {
  padding: 4.8rem 0 0;
}
.about02 h2 {
  margin: 0 auto;
  width: 7.4667rem;
}
.about02 .box {
  padding: 2.667rem 0 0;
}
.about02 .box .item01 h3 {
  margin: 0 auto;
  width: 16.7333rem;
}
.about02 .box .item02 {
  padding: 2.3rem 0 0;
  font-size: 0.9333rem;
  font-weight: 500;
}

/*///////////////////////////////////////////////////
//
//            ▼ アバウト03 ▼
//
///////////////////////////////////////////////////*/
.about03 {
  padding: 4.8rem 0 17.8rem;
}
.about03 h2 {
  width: 6rem;
  margin: 0 auto;
  padding: 0 0 2.3rem;
}
.about03 .about03_in .box + .box {
  margin: 12rem 0 0;
}
.about03 .about03_in .box01 {
  background: url(../images/about/about03_img02_sp.jpg) center center/cover no-repeat;
}
.about03 .about03_in .box02 {
  background: url(../images/about/about03_img03_sp.jpg) center center/cover no-repeat;
}
.about03 .about03_in .box {
  padding: 11.9333rem 0 0;
  height: 14.6667rem;
}
.about03 .about03_in .box .item h3 {
  font-size: 1.4667rem;
  font-weight: bold;
  padding: 0.7rem 1rem 0.4rem 1rem;
  display: inline-block;
  background: #fff;
}
.about03 .about03_in .box .item p {
  font-weight: 500;
  font-size: 0.933rem;
  padding: 0 1rem;
}
.about03 .about03_in .box .txt {
  position: absolute;
  font-size: 6.6667rem;
  font-weight: bold;
  color: #004c94;
  opacity: 0.04;
  line-height: 1;
}
.about03 .about03_in .box .txt01 {
  white-space: nowrap;
  top: -48%;
  left: -7%;
}
.about03 .about03_in .box .txt02 {
  white-space: nowrap;
  bottom: -104%;
  left: 15%;
}

/*///////////////////////////////////////////////////
//
//            ▼ アバウト04 ▼
//
///////////////////////////////////////////////////*/
.about04 {
  padding: 6rem 0;
  background: rgba(0, 76, 148, 0.15);
}
.about04 .sub_title {
  display: block;
  margin: 0 auto;
  width: 8.2667rem;
}
.about04 h2 {
  font-size: 0.933rem;
  font-weight: bold;
  text-align: center;
  color: #004c94;
}
.about04 .box {
  padding: 2.667rem 0 0;
}
.about04 .box .item01 figure {
  width: 100%;
  height: 100%;
}
.about04 .box .item02 {
  padding: 2.0667rem 1rem 0;
  position: relative;
}
.about04 .box .item02 h3 {
  width: 21.8777rem;
  margin: 0 auto;
}
.about04 .box .item02 .txt {
  position: relative;
  padding: 1.2rem 0 0;
  font-size: 0.9333rem;
  font-weight: 500;
}
.about04 .box .item02 .txt p + p {
  margin: 0.7rem 0 0;
}
.about04 .box .item02 .txt p:last-of-type {
  font-weight: bold;
}
.about04 .txt02 {
  position: absolute;
  font-size: 6.667rem;
  line-height: 1;
  font-weight: bold;
  opacity: 0.04;
  bottom: -1.5%;
  right: -4%;
  color: #004c94;
  white-space: nowrap;
}

/*///////////////////////////////////////////////////
//
//            ▼ アバウト05 ▼
//
///////////////////////////////////////////////////*/
.about05 {
  padding: 6rem 0 0;
}
.about05 .sub_title {
  display: block;
  margin: 0 auto;
  width: 8.6rem;
}
.about05 h2 {
  font-size: 0.933rem;
  font-weight: bold;
  text-align: center;
  color: #004c94;
}
.about05 .box {
  padding: 2.2rem 1rem 0;
}
.about05 .box .item01 {
  position: relative;
}
.about05 .box .item01 table tr {
  font-size: 0.9333rem;
  color: #004c94;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.about05 .box .item01 table tr th {
  text-align: start;
  display: block;
  font-weight: bold;
  margin: 1rem 0 0;
}
.about05 .box .item01 table tr:first-of-type th {
  margin: 0;
}
.about05 .box .item01 table tr td {
  display: block;
}
.about05 .box .item01 .txt {
  position: absolute;
  font-size: 2.1333rem;
  line-height: 1;
  font-weight: bold;
  opacity: 0.05;
  top: 42%;
  left: 100%;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  color: #004c94;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.about05 .box .item02 {
  position: relative;
}

/*///////////////////////////////////////////////////
//
//            ▼ 問い合わせ01 ▼
//
///////////////////////////////////////////////////*/
.contact01 .sub_title figure {
  width: 11.6667rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ 問い合わせ02 ▼
//
///////////////////////////////////////////////////*/
.contact02 {
  padding: 5.8rem 1rem 0;
  margin: 0 auto;
}
.contact02 span {
  color: red;
}
.contact02 h2 {
  width: 15.6rem;
  margin: 0 auto;
}
.contact02 p {
  color: #333333;
  padding: 2.6667rem 0 0;
  font-weight: 500;
  font-size: 0.9333rem;
}
.contact02 .box {
  padding: 2.1rem 0 0;
}
.contact02 .box .item {
  padding: 1.8rem 0 0;
  font-weight: bold;
  font-size: 0.9333rem;
  color: #333333;
}
.contact02 .box .item:first-of-type {
  padding: 0;
}
.contact02 .box .item input,
.contact02 .box .item textarea {
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: #efefef solid 1px;
  background: #f7fbff;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}
.contact02 .box .item input::placeholder,
.contact02 .box .item textarea::placeholder {
  color: #bababa;
}
.contact02 .box .item textarea {
  min-height: 9.86667rem;
}
.contact02 .box .privacy {
  text-align: center;
  padding: 2.2rem 0 0;
  position: relative;
}
.contact02 .box .privacy .inner {
  padding: 0 0.8rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact02 .box .privacy input[type=checkbox] {
  opacity: 0;
  width: auto;
  margin-top: 0;
  padding-left: 2rem;
  transform: translateX(0.9rem);
}
.contact02 .box .privacy input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.contact02 .box .privacy label {
  padding: 0 0 0 2rem;
  position: relative;
  cursor: pointer;
}
.contact02 .box .privacy label::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 0%;
  border: 2px solid #333333;
  width: 1.375rem;
  height: 1.375rem;
  transform: translateY(-50%);
  top: 50%;
  left: -1.5%;
}
.contact02 .box .privacy label::after {
  content: "";
  position: absolute;
  background: url(../images/contact/contact03_img02.png) center center/cover no-repeat;
  opacity: 0;
  height: 1.0256rem;
  width: 1.375rem;
  top: 8%;
  left: 0%;
  transition: 0.3s;
}
.contact02 .box .submit {
  text-align: center;
  padding: 2rem 0 0;
}
.contact02 .box .submit .btn {
  background: #fff;
  color: #004c94;
  cursor: pointer;
}
.contact02 .box .submit .btn span {
  color: #004c94;
}

/*///////////////////////////////////////////////////
//
//            ▼ 問い合わせ03 ▼
//
///////////////////////////////////////////////////*/
.contact03 {
  padding: 5.5rem 1rem 0;
  margin: 0 auto;
}
.contact03 h2 {
  width: 17.4667rem;
  margin: 0 auto;
}
.contact03 .privacypolicy01 {
  width: 100%;
  margin: 2.7rem auto 0;
  padding: 2.6667rem 1.5rem;
  border: 1px solid #004c94;
  background: #f7fbff;
  border-radius: 4px;
  max-height: 34.1333rem;
  overflow: scroll;
}
.contact03 .privacypolicy01 h3 {
  font-size: 1.0667rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
  color: #333333;
}
.contact03 .privacypolicy01 p {
  font-weight: 500;
  color: #333333;
}
.contact03 .privacypolicy01 ol {
  margin: 1rem 0 1rem 2rem;
}
.contact03 .privacypolicy01 ol li {
  font-weight: 500;
  list-style: decimal;
  margin: 0.5rem 0;
  color: #333333;
}
.contact03 .privacypolicy01 ul {
  margin: 1rem 0 1rem 2rem;
}
.contact03 .privacypolicy01 ul li {
  font-weight: 500;
  list-style: disc;
}
.contact03 .privacypolicy01 ul li ol {
  margin: 0rem 0 1.5rem 2rem;
}
.contact03 .privacypolicy01 ul li ol li {
  font-weight: 500;
  list-style: decimal;
}
.contact03 .privacypolicy01 .right {
  text-align: right;
}

/*///////////////////////////////////////////////////
//
//            ▼ サンクス01 ▼
//
///////////////////////////////////////////////////*/
.thanks01 .sub_title figure {
  width: 10.1333rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ サンクス02 ▼
//
///////////////////////////////////////////////////*/
.thanks02 {
  text-align: center;
  margin: 0 auto;
  padding: 4rem 0 0;
}
.thanks02 a {
  display: inline-block;
  padding: 4rem 0 0;
}

/*///////////////////////////////////////////////////
//
//            ▼ 投稿エリア ▼
//
///////////////////////////////////////////////////*/
.post_area {
  letter-spacing: 0.15rem;
}
.post_area p {
  margin: 1.5rem 0;
}
.post_area h2 {
  font-size: 1.5rem;
  margin: 3rem 0 2rem;
}
.post_area h3 {
  font-size: 1.3rem;
  margin: 2rem 0;
}
.post_area h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0;
}
.post_area h5 {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.post_area h6 {
  font-size: 1rem;
  margin: 1rem 0;
}
.post_area ul {
  margin: 1rem 0 1rem 1.5rem;
}
.post_area ul.blocks-gallery-grid {
  margin: 2rem 0 0;
}
.post_area ul li {
  list-style: disc;
}
.post_area ol {
  margin: 1rem 0 1rem 1.5rem;
}
.post_area ol li {
  list-style: decimal;
}
.post_area strong {
  font-weight: bold;
}
.post_area blockquote {
  background: #eee;
  padding: 1rem;
  position: relative;
}
.post_area blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "“";
  font-size: 2rem;
}
.post_area blockquote cite {
  font-size: 0.8rem;
  color: #999;
}
.post_area a {
  display: inline;
  color: #aaa;
}
.post_area img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto 1.5rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ プライバシーポリシー ▼
//
///////////////////////////////////////////////////*/
.privacypolicy01 .box {
  margin: 0 auto;
}
.privacypolicy01 .box h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 2rem;
}
.privacypolicy01 .box h2 {
  font-size: 1.1rem;
  margin: 2.5rem 0 1rem;
}
.privacypolicy01 .box ol {
  margin: 1rem 0 1rem 1rem;
}
.privacypolicy01 .box ol li {
  list-style: decimal;
  margin: 0.5rem 0;
}
.privacypolicy01 .box ul {
  margin: 1rem 0 1rem 1rem;
}
.privacypolicy01 .box ul li {
  list-style: disc;
}
.privacypolicy01 .box ul li ol {
  margin: 0rem 0 1.5rem 1rem;
}
.privacypolicy01 .box ul li ol li {
  list-style: decimal;
}
.privacypolicy01 .box p {
  margin: 0.5rem 0;
}
.privacypolicy01 .box .right {
  text-align: right;
}

/*///////////////////////////////////////////////////
//
//            ▼ お問い合わせ（Contactform7） ▼
//
///////////////////////////////////////////////////*/
.wpcf7 {
  position: relative;
}
.wpcf7 span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -20px;
  left: 10px;
  font-size: 12px;
}
.wpcf7 .your_msg span.wpcf7-not-valid-tip {
  bottom: -15px;
}
.wpcf7 div.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #f00;
  font-size: 12px;
  white-space: nowrap;
}

.ajax-loader {
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translate(-50%, -50%);
}

/*///////////////////////////////////////////////////
//
//            ▼ 404 ▼
//
///////////////////////////////////////////////////*/
.page404 .catch_copy {
  height: 100vh;
  min-height: 650px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page404 .catch_copy .ttl {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

/*///////////////////////////////////////////////////
//
//            ▼ 検索フォーム ▼
//
///////////////////////////////////////////////////*/
.search {
  width: 100%;
  border: 1px solid #ddd;
}
.search form .search_inner {
  display: flex;
  justify-content: space-between;
  height: 3rem;
  align-items: center;
}
.search form .search_inner .input {
  width: calc(100% - 3rem);
  height: 100%;
}
.search form .search_inner .input input {
  border: none;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.search form .search_inner .submit {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 3rem;
  height: 3rem;
  color: #000;
}
.search form .search_inner .submit span {
  font-size: 1.2rem;
}

.post_none {
  text-align: center;
}

@media screen and (orientation: portrait) {
  /* 縦向き */
}
@media screen and (orientation: landscape) {
  /* 横向き */
}

/*# sourceMappingURL=smart.css.map */