@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B334E;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  #screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

video {
  opacity: 0.7;
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.Manrope {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
}

.container {
  width: 100%;
  max-width: 1134px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

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

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

/* ▼ タイトル
--------------------------------------- */
#site_title {
  overflow: hidden;
}

h1.title {
  background: #999;
  padding: 20px 10px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  background: #ccc;
  overflow: hidden;
}
header .container {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: visible;
  }
  header .header_inner {
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }
}

.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
    width: 60px;
    height: 60px;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2000;
  }
  .menu .icon {
    display: block;
    width: 30px;
    height: 2px;
    border-top: 2px solid #fff;
    position: absolute;
    top: 40%;
    right: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu .icon::before, .menu .icon::after {
    content: "";
    width: 30px;
    border-top: 2px solid #fff;
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .menu .icon::before {
    top: -11px;
  }
  .menu .icon::after {
    bottom: -9px;
  }
  .menu .icon span:before {
    content: "Menu";
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
  }
  .menu .icon.active {
    border-color: transparent;
  }
  .menu .icon.active::before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: -2px;
    right: 0;
  }
  .menu .icon.active::after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
    right: 0;
  }
  .menu .icon.active span:before {
    content: "Close";
  }
}

/* グローバルナビゲーション */
#gnav {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #gnav {
    display: block !important;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    float: none;
    width: 100%;
    max-height: 100vh;
    padding-top: 60px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  #gnav.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #gnav ul > li {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    text-indent: 0;
  }
}
#gnav ul > li a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a {
    /* height: 50px!important; */
    background: #fff;
    background-size: 10px 10px !important;
    border-bottom: 1px solid #ccc;
    padding: 0 15px;
    color: #333;
    line-height: 50px;
    font-weight: bold;
  }
}
#gnav ul > li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a:hover {
    text-decoration: none;
    opacity: 1;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .menu_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin: 20px auto 80px;
  padding: 0 20px;
  max-width: 1324px;
  font-size: 14px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #path {
    margin-bottom: 55px;
  }
}
#path li {
  float: left;
}
#path li:not(:last-child):after {
  content: "-";
  margin: 0 10px;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  background: #333;
  padding: 20px 0;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 20px;
  }
}

#footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
/* .pagetop {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #000;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	position: fixed;
	cursor: pointer;
	@include mq(){
		padding: 10px;
	}
	&::after{
		content: '';
		width: 11px;
		height: 11px;
		border-left: #FFF 1px solid;
		border-top: #FFF 1px solid;
		position: absolute;
		top: calc(50% - 3px);
		right: calc(50% - 6px);
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
} */
/* ▼ コピーライト
--------------------------------------- */
#copyright {
  font-size: 12px;
  color: #fff;
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 8vw 20px;
}
@media screen and (max-width: 767px) {
  #not_found {
    padding: 100px 20px 60px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 42px;
  font-family: "Arial", "メイリオ";
}
@media screen and (max-width: 767px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 39px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #not_found p.arial + p {
    ont-size: 17px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #not_found p.txt {
    line-height: 1.6;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}

/* ▼▼▼ 追記
====================================================== */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* 電話リンク */
.tel {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tel {
    pointer-events: all;
  }
}

/* 見出し */
.sub {
  font-size: 13px;
  line-height: 1;
  font-weight: bold;
  display: block;
  margin: 0 0 12px;
  padding: 0 0 0 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub {
    font-size: 12px;
    margin: 0 0 7px;
  }
}
.sub::before {
  content: "";
  background: #2B334E;
  width: 1px;
  height: 13px;
  position: absolute;
  bottom: 0;
  left: 3px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.ttl_wrap {
  position: relative;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ttl_wrap .ttl_anime_square {
  display: inline;
  background: #2B334E;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translate3d(-101%, 0, 0);
          transform: translate3d(-101%, 0, 0);
  -webkit-animation-name: ttl_anime_square;
          animation-name: ttl_anime_square;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 2;
}
.ttl_wrap .ttl_anime {
  opacity: 0;
  -webkit-animation-name: ttl_anime;
          animation-name: ttl_anime;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  z-index: 1;
}
.ttl_wrap .ttl_anime_op02 {
  opacity: 0;
  -webkit-animation-name: ttl_anime_op02;
          animation-name: ttl_anime_op02;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  z-index: 1;
}

@-webkit-keyframes ttl_anime_square {
  0% {
    -webkit-transform: translate3d(-101%, 0, 0);
            transform: translate3d(-101%, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(101%, 0, 0);
            transform: translate3d(101%, 0, 0);
  }
}

@keyframes ttl_anime_square {
  0% {
    -webkit-transform: translate3d(-101%, 0, 0);
            transform: translate3d(-101%, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(101%, 0, 0);
            transform: translate3d(101%, 0, 0);
  }
}
@-webkit-keyframes ttl_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ttl_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ttl_anime_op02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes ttl_anime_op02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
.copy_wrap .copy_anime_square {
  -webkit-transform: translate3d(-101%, 0, 0);
          transform: translate3d(-101%, 0, 0);
  -webkit-animation-name: copy_anime_square;
          animation-name: copy_anime_square;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes copy_anime_square {
  0% {
    -webkit-transform: translate3d(-101%, 0, 0);
            transform: translate3d(-101%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes copy_anime_square {
  0% {
    -webkit-transform: translate3d(-101%, 0, 0);
            transform: translate3d(-101%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.btn_more {
  font-weight: 500;
  line-height: 57px;
}
@media screen and (max-width: 767px) {
  .btn_more {
    line-height: 43px;
  }
}
.btn_more .link_more {
  padding-left: 72px;
  position: relative;
  /* &:hover{
  	&::before{
  		left: 22.5px;
  	}
  } */
}
@media screen and (max-width: 767px) {
  .btn_more .link_more {
    padding-left: 54px;
  }
}
.btn_more .link_more::before {
  content: "";
  background: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 8px;
  position: absolute;
  left: 19.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* transition: 0.3s; */
}
@media screen and (max-width: 767px) {
  .btn_more .link_more::before {
    width: 14px;
    height: 6px;
    left: 14.5px;
  }
}
.btn_more .link_more::after {
  content: "";
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .btn_more .link_more::after {
    width: 41px;
    height: 41px;
  }
}

/* 下層ページ top */
.subpage .subpage_top {
  padding: 125px 0 65px;
  background: linear-gradient(135deg, #E2EBF5, #A6BED9);
  position: relative;
}
@media screen and (max-width: 767px) {
  .subpage .subpage_top {
    padding: 108px 0 52px;
  }
}
.subpage .subpage_top .video_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage .subpage_top .video_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.subpage .subpage_top .video_screen {
  mix-blend-mode: screen;
}
.subpage .subpage_top .sec_ttl {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .subpage .subpage_top .sec_ttl {
    position: relative;
    padding-top: 12px;
    line-height: 1.25;
  }
}
.subpage .subpage_top .sec_ttl .sub {
  display: inline;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .subpage .subpage_top .sec_ttl .sub {
    font-size: 11px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
}
.subpage .subpage_top .sec_ttl .sub::before {
  height: 17px;
}
@media screen and (max-width: 767px) {
  .subpage .subpage_top .sec_ttl .sub::before {
    height: 17px;
    left: 5px;
  }
}
.subpage #gnav ul {
  color: #2B334E;
}
.subpage #main {
  padding-bottom: 295px;
}
@media screen and (max-width: 767px) {
  .subpage #main {
    padding-bottom: 285px;
  }
}