@charset "utf-8";
/* Simple fluid media
Note: Fluid media requires that you remove the media's height and width attributes from the HTML
http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
width: 100%;
}
.gridContainer {
overflow: hidden;
}
.fluid {
clear: both;
margin-left: 0;
width: 100%;
float: left;
display: block;
}
.fluidList {
list-style: none;
list-style-image: none;
margin: 0;
padding: 0;
}
.totop {
position: fixed;
bottom: 30px;
width: 54px;
height: 54px;
right: 10px;
display: block;
z-index: 200;
}
.en {
font-family: 'Heebo', sans-serif;;
}
.jp {
font-family: 'Noto Sans JP', sans-serif;
}
/* ホバー時に画像をズームする */
.HoverZoom .pic {
position: relative;
overflow: hidden;
}
.HoverZoom .pic figure img {
backface-visibility: visible;
-webkit-backface-visibility: hidden;
-webkit-transition: -webkit-transform 0.8s;
transition: -webkit-transform 0.8s;
transition: transform 0.8s;
transition: transform 0.8s, -webkit-transform 0.8s;
}
.HoverZoom:hover .pic figure img {
-webkit-transform: scale3d(1.05, 1.05, 1) rotate(0deg);
transform: scale3d(1.05, 1.05, 1) rotate(0deg);
}
/* ホバー時にラインを移動する */
@-webkit-keyframes line-in {
from {
  width: 0;
  left: 0;
}
to {
  width: 100%;
  left: 0;
}
}
@keyframes line-in {
from {
  width: 0;
  left: 0;
}
to {
  width: 100%;
  left: 0;
}
}
@-webkit-keyframes line-out {
from {
  width: 100%;
  left: 0;
}
to {
  width: 0;
  left: 100%;
}
}
@keyframes line-out {
from {
  width: 100%;
  left: 0;
}
to {
  width: 0;
  left: 100%;
}
}
@-webkit-keyframes line-in-top {
from {
  width: 0;
  left: 100%;
}
to {
  width: 100%;
  left: 0;
}
}
@keyframes line-in-top {
from {
  width: 0;
  left: 100%;
}
to {
  width: 100%;
  left: 0;
}
}
@-webkit-keyframes line-out-top {
from {
  width: 100%;
  right: 100%;
}
to {
  width: 0;
  right: 0;
}
}
@keyframes line-out-top {
from {
  width: 100%;
  right: 100%;
}
to {
  width: 0;
  right: 0;
}
}
.isPlay {
animation-name: play;
animation-duration: .2s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.8, 0, .5, 1);
position: relative;
opacity: 1 !important;
}
.isPlay:before {
animation-name: maskOut;
animation-duration: .5s;
animation-delay: .5s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(.8, 0, .5, 1);
content: '';
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
background-image: linear-gradient(109.6deg, rgba(100, 105, 125, 1) 11.2%, rgba(100, 105, 125, 1) 91.1%);
}
@keyframes play {
from {
  transform: translateX(-0.01%);
}
to {
  transform: translateX(0%);
}
}
@keyframes maskOut {
from {
  transform: translateX(0);
}
to {
  transform: translateX(100%);
}
}
@keyframes scrollAnime {
0% {
  transform: translateX(0)
}
100% {
  transform: translateX(-100%)
}
}
@keyframes arrow {
0% {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
60% {
  -webkit-transform: translate3d(-50%, 100px, 0);
  transform: translate3d(-50%, 100px, 0);
}
100% {
  -webkit-transform: translate3d(-50%, 100px, 0);
  transform: translate3d(-50%, 100px, 0);
}
}
.section_hid {
overflow: hidden;
}
.io.on {
-webkit-transform: translate(0px, 0px);
transform: translate(0px, 0px);
opacity: 1;
}
.io {
-webkit-transform: translate(0, 50px);
transform: translate(0, 50px);
opacity: 0;
-webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.io .media::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #595f70;
transform-origin: 0 0;
}
.io.on .media::after {
transition: transform 1s 0.1s cubic-bezier(0.19, 1, 0.22, 1), background 3s cubic-bezier(0.19, 1, 0.22, 1);
transform: scaleY(0);
}
.io.on .media .media__image {
opacity: 1;
transform: scale(1);
transition: 3s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.io .media .media__image {
opacity: 0;
transform: scale(1.3);
}
.section_line {
position: relative;
top: 0px;
left: 0;
}
.section_line hr {
border: none;
background-color: #1a287b;
height: 1px;
transform-origin: left top;
margin-block-start: 0;
margin-block-end: 0;
transform: scale(0, 1)
}
.on {
transition: all 1s ease;
animation: extend 1s both;
}
@keyframes extend {
0% {
  transform: scaleX(0)
}
100% {
  transform: scaleX(1)
}
}
/*PC*/
@media print, screen and (min-width: 769px) {
body {
  font-size: 16px;
  line-height: 1.8;
  min-width: 1080px;
}
.totop {
  position: fixed;
  bottom: 30px;
  width: 54px;
  height: 54px;
  right: 10px;
  display: block;
  z-index: 200;
}
#a, #b, #c, #e, #f, #g, #h, #i, #j, #k, #l, #m, #n {
  margin-top: -120px;
  padding-top: 120px;
}
/* com[PC]
--------------------------------------------*/
.gridContainer {
  width: 100%;
  min-width: 1080px;
}
.pcBr {
  display: inline-block;
}
.spBr {
  display: none;
}
.pc {
  display: block;
}
.sp {
  display: none !important;
}
.comPd {
  padding-bottom: 120px;
}
.com_mb60 {
  margin-bottom: 60px;
}
/* ボックス[PC]
--------------------------------------------*/
.page_wrap {
  width: calc((1280 - 320) / 1280 * 100%);
  min-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.hed_wrap {
  width: 1280px;
  margin: 180px auto 120px;
  position: relative;
}

.w1080Wrap {
  width: 1080px;
  margin: auto;
  position: relative;
}
.w1080Wrap_end {
  width: 1080px;
  margin: 0 auto 160px;
  position: relative;
}


.w1200Wrap {
width: 1200px;
margin: 0 auto 160px;
position: relative;
}

.w1200Wrap_end {
width: 1200px;
margin: 0 auto 160px;
position: relative;
}

.std-page {
  width: 80.7%;
  margin: 0 auto;
  background-color: #F5F5F5;
  padding: 7.4%;
  box-sizing: border-box;
}

.page_bg_line {
position: relative;
}

.page_bg_line::before {
content: "";
display: block;
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
background-image: -webkit-repeating-linear-gradient( 
-140deg
, #ffffff 0px, #ffffff 436px, #f0f0f0 436px, #f0f0f0 1136px);
background-image: -o-repeating-linear-gradient(140deg, #ffffff 0px, #ffffff 436px, #f0f0f0 436px, #f0f0f0 1136px);
background-image: repeating-linear-gradient( -50deg , #034f84 0px, #034f84 300px, #fff 300px, #fff 700px, #f0f0f0 700px, #f0f0f0 1100px,#fff 1100px, #fff 1500px, #f0f0f0 1500px, #f0f0f0 1900px,#fff 1900px, #fff 2200px, #034f84 2200px, #034f84 2500px,);
background-position: 50% 0;
opacity: .5;
}

/* タイトル[PC]
--------------------------------------------*/
.hedImg {
  background: #000;
  width: 100%;
  height: 320px;
  margin: 0 auto 30px;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.hedImg::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 180px 0 0 100vw;
  border-color: transparent transparent transparent #1a287b;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.hedImg::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 180px 100vw;
  border-color: transparent transparent #FFFFFF transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.com_bg_line {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 8% 0 0;
  box-sizing: border-box;
}
.com_bg_line::before {
  content: "";
  background-color: #e5e5e5;
  width: 400px;
  height: 120%;
  position: absolute;
  left: 0%;
  top: -20%;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  z-index: -1;
  transition: all 1.5s ease;
}
.com_bg_line .com_hed_wrap {
  width: 1080px;
  position: relative;
  margin: 0 auto 100px;
}
.com_bg_line .com_hed_wrap::before {
  content: "";
  background-color: #64697d;
  width: 300%;
  height: 2px;
  position: absolute;
  left: -100%;
  top: 40%;
  transition: all 1s ease;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  z-index: -10;
}
.com_bg_line.isview.active .com_hed_wrap::before {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.com_hed_wrap .com_red_tit {
  font-size: 7em;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.25;
  display: inline-block;
  color: #64697d;
  margin: 0 0 10px;
  overflow: hidden;
  position: relative;
}
.com_hed_wrap .com_red_subtit {
  font-size: 1.2em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #64697d;
}
.com_tit {
  font-size: 1.2em;
  font-weight: 100;
  margin: 0 0 20px;
}
.com_hed_wrap2 {
  width: 100%;
  position: relative;
  margin: 0 auto 60px;
  text-align: center;
}
.com_hed_wrap2 .com_red_tit {
  font-size: 4em;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  color: #64697d;
  margin: 0 0 10px;
  overflow: hidden;
  position: relative;
}
.com_hed_wrap2 .com_red_tit2 {
  font-size: 3em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  color: #64697d;
  margin: 0;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #9ca3be;
}
.com_hed_wrap2 .com_red_tit2 span {
  display: block;
  font-size: 0.5em;
  color: #FFF;
  letter-spacing: 0;
}
.com_hed_wrap2 .com_red_subtit {
  font-size: 1.4em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #64697d;
}
.com_hed_wrap2 .com_red_txt {
  font-size: 1.2em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  margin: 30px auto 0;
}


.com_en_title {
margin-top: 5px;
margin-bottom: 60px;
}
.com_en_title_text {
display: inline-block;
font-size: 12px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.5;
letter-spacing: 0px;
color: #101f76;
transform: scale(0.9);
transform-origin: top left;
}
.com_tit_name {
font-size: 2.6em;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
font-weight: 300;
}
.com_tit_name span {
font-size: 0.4em;
display:block;
font-style: normal;
font-weight:300;
text-decoration: none;;
line-height: 1;
color: #FFF;
}
.com_tit_name_catch {
font-size: 16px;
font-stretch: normal;
font-style: normal;
line-height: 2.25;
}
.com_tit_name_sub {
font-size:32px;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
color: #101f76;
}
.com_tit_name_sub span {
font-size: 0.5em;
display: block;
color: #FFF;
font-weight: 100;
letter-spacing: 0.05em;
}

.com_en_title_text2 {
display: inline-block;
font-size: 5.5em;
font-weight: 500;
line-height: 1.1;
color: #101f76;
transform: scale(0.9);
transform-origin: top left;
letter-spacing: 0.05em;
}
.com_en_title2 {
}
.com_tit_name2 {
font-size: 1.2em;
font-stretch: normal;
font-style: normal;
letter-spacing: 0.05em;
}
.com_tit_name2 span {
display: inline-block;
font-style: normal;
font-weight: 500;
text-decoration: none;
border-bottom: 1px solid #fff;
padding-bottom: 1px;
line-height: 1;
}

.com_read_txt {
font-size: 18px;
line-height: 1.8;
margin: 0 auto 80px;
}


.com_tit_name_sub2 {
font-size:26px;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
}

.com_tit_name_sub3 {
font-size:16px;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
}


/* ボタン [PC]
--------------------------------------------*/
.link-arrow {
  font-family: 'Hind', sans-serif;
  font-style: italic;
  letter-spacing: .1em;
  font-size: 1.6rem;
  position: absolute;
  left: 56px;
  bottom: 376px;
  font-weight: 300;
}
.textAnimate [data-split="true"] {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.link-arrow .icon {
  width: 1em;
  height: 1em;
  margin-left: .5em;
}
.com_btn5 {
  margin: 30px auto;
  display: inline-block;
  font-weight: 400;
}
.com_btn5 a {
  display: block;
  border: 1px solid #101f76;
  background: #101f76;
  padding: 10px;
  position: relative;
  color: #FFF;
  width: 200px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn5 a::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #6c0000;
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn5 a:hover::before {
  right: -10px;
}


.com_btn6 {
  margin: 30px auto;
  display: inline-block;
  font-weight: 400;
}
.com_btn6 a {
  display: block;
  border: 1px solid #FFF;
  background: #FFF;
  padding: 10px;
  position: relative;
  color: #000;
  width: 200px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn6 a::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #6c0000;
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn6 a:hover::before {
  right: -10px;
}


.com_list_btn {
  text-align: right;
  transition: all 0.3s ease-out;
  margin-top: 30px;
}
.com_list_btn a {
  text-align: right;
  padding-right: 30px;
  position: relative;
  font-weight: 400;
  margin-top: 30px;
  color: #000;
}
.com_list_btn a::before {
  position: absolute;
  right: 10px;
  content: "";
  display: block;
  background: url("../images/com/arrow.png")0 0 no-repeat;
  width: 9px;
  height: 17px;
  top: 3px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_list_btn a:hover::before {
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* header[PC]
--------------------------------------------*/
/* ヘッダー[PC] */
#header {
width: 100%;
min-width: 1200px;
padding: 0 90px;
box-sizing: border-box;
z-index: 5;
position: fixed;
top: 0;
left: 0;
height: 100px;
background:rgba(255,255,255,0.8);
}
/* ロゴ[PC] */
.logo_wrap {
width: 180px;
position: absolute;
top: 10px;
left: 2%;
}
#logo_img {
  width: 100%;
}
#logo_img a {
  display: block;
}


/* メニュー[PC]
--------------------------------------------*/
/*gnav*/
.gnav {
  display: none;
}
.gnav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
}
.gnav_bg_img {
  flex-basis: 38%;
  width: 100%;
  height: 100%;
  align-items: center;
}
.gnav_bg_img .bg_img {
  background: url(../images/com/gnav_bg_img.jpg) center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.gnav_contents {
  flex-basis: 62%;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-position: bottom right, center center;
  background-repeat: no-repeat, repeat;
}
.gnav_menu_box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}
.gnav_menu_boxL {
  flex-basis: 52%;
  max-width: 52%;
  margin-right: 5%;
}
.gnav_menu_boxR {
  flex-basis: 43%;
  max-width: 43%;
}
.gnav_menu_sub {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.gnav_menu_sub li:nth-child(n+2) {
  margin-top: 10px;
}
.gnav_menu_sub li a {
  color: #888;
  display: block;
}
.g_sns a {
  color: #888;
  margin: 10px 0px;
  font-weight: 500;
  display: block;
}
.g_sns a span.icon {
  padding-right: 15px;
  display: inline-block;
  text-align: center;
  width: 20px;
}
.g_sns a span.icon i {
  font-size: 18px;
  text-align: center;
}
.gnav_contents_box {
  width: 100%;
  align-items: center;
  padding: 0 70px;
  box-sizing: border-box;
}
.gnav__menu {
  height: 100%;
}
.gnav__menu__item {
  opacity: 0;
}
.gnav__menu li:nth-child(n+2) {
  margin-top: 20px;
}
.gnav__menu__item a {
  color: #222;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: bold;
  text-decoration: none;
  transition: .5s;
  display: table;
}
.gnav__menu__item a span.en {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #002f7c;
}
.gnav__menu__item a i {
  padding-left: 15px;
}
.gnav__menu__item a span.gnav_link {
  padding-left: 10px;
}
.gnav__menu__item a:hover {
  color: #666;
}
.gnav_logo {
  width: 220px;
  margin: auto auto auto 0;
  margin-bottom: 50px;
}
.gnav_logo img {
  width: 100%;
  height: auto;
}
.g_high_menu {
  position: absolute;
  top: 10px;
  right: 3%;
  display: flex;
  align-items: flex-end;
}
.g_high_menu li {
  display: block;
  padding: 0 8px;
  font-size: 0.8em;
  font-family: 'Heebo', sans-serif;;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.g_high_menu li a {
  color: #101f76
}
.g_menu {
  position: absolute;
  top: 40px;
  right: 3%;
  font-family: 'Heebo', sans-serif;;
  ont-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.g_menu li {
  margin: 0 10px;
  line-height: 1;
}
.g_menu li a {
  padding: 3px 3px;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  color: #101f76;
  display: block;
  box-sizing: border-box;
}
.g_menu a span.en {
  display: inline;
  font-weight: 500;
}

.g_menu a span.jp {
  display:block;
   font-size: 0.6em;
  font-weight: 500;
  color: #101f76;
  margin-top: -5px;
}

/* footer
--------------------------------------------*/
#footerWrap {
  width: 100%;
  padding: 50px 3% 0 0;
  box-sizing: border-box;
  background: #1a287b;
  min-width: 1080px;
}
#footer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
/* 住所 */
#footer address {
background: #FFF;
padding: 5%;
box-sizing: border-box;
width:30%;
height: 100%;
font-size: 10px;
color: #000;
line-height: 1.75em;
font-style: normal;
margin-top: -80px;
text-align: center;
}
#footer address img.logo {
  width: 200px;
  margin: 0 0 20px;
}
#footer address p.link_sns {
  padding-top: 5px;
  text-align: right;
}
#footer address p.link_sns a img {
  width: 20px;
}
#footer address .iso_mark {
width: 70%;
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
#footer address .iso_mark .iso_mark_box1 {
  width: 40%;
  margin-right: 10px;
}
#footer address .iso_mark .iso_mark_box2 {
  width: 29%;
}
/* フットナビ */
#footer nav {
margin-left: 10%;
}
#footer nav ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1em;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin: 0 0 50px;
}
#footer nav ul li {
  margin-right: 15px;
}
#footer nav ul li a {
  color: #FFF;
}
#footer nav ul li a:hover {
  color: #FFF;
}
#footer p.copy {
  opacity: 0.5;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #FFF;
  text-align: right;
}

.f_logo {
width: 30%;
margin: 0 auto;
}

/* PAGE[PC]
--------------------------------------------*/
.com_table {
  width: 100%;
}
.com_table th {
  border-bottom: 1px solid #7a7a7a;
  width: 20%;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
}
.com_table td {
  border-bottom: 1px solid #414141;
  padding: 15px;
}
.com_box {
  border: 4px solid #f5f5f5;
  padding: 50px 40px;
  position: relative;
  margin: 0 0 60px;
}
.com_box__corner::before, .com_box__corner::after {
  display: block;
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1;
}
.com_box__corner:first-child::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}
.com_box__corner:first-child::after {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}
.com_box__corner:last-child::before {
  left: 10px;
  bottom: 10px;
  border-top: 0;
  border-right: 0;
}
.com_box__corner:last-child::after {
  right: 10px;
  bottom: 10px;
  border-top: 0;
  border-left: 0;
}
.com_tit_txt {
font-size: 1.2em;
margin: 0 auto 20px;
color: #101f76;
}

.com_txt {
margin: 0 auto 40px;
}


.all_hed_img {
  margin: 0 auto 80px;
  padding: 0 50px;
}
.all_hed_img img {
  width: 100%;
  height: auto;
}
#pan_area {
  width: 100%;
  font-size: 1.3rem;
  padding-top: 15px;
  margin-bottom: 15px;
}
#pan_area #pan_area_in {
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#pan_area #pan_area_in .pan_list {
  padding-right: 16px;
  margin-right: 10px;
  position: relative;
}
#pan_area #pan_area_in .pan_list:last-child {
  padding-right: 0;
  margin-right: 0;
}
#pan_area #pan_area_in .pan_list::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: 1px solid #303030;
  border-right: 1px solid #303030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pan_area #pan_area_in .pan_list:last-child::before {
  display: none;
}
#pan_area #pan_area_in .pan_list a {
  text-decoration: underline;
}
#pan_area h3 {
  font-size: 1.3rem;
  font-weight: normal !important;
}
}
/*sp*/
@media only screen and (max-width: 768px) {
body {
  font-size: 14px;
  line-height: 1.8;
}
.totop {
  position: fixed;
  bottom: 30px;
  width: 30px;
  height: 30px;
  right: 5px;
  display: block;
  z-index: 200;
}
#a, #b, #c, #e, #f, #g, #h, #i, #j, #k, #l, #m, #n {
  margin-top: -60px;
  padding-top: 60px;
}
/* com[SP]
--------------------------------------------*/
.gridContainer {
  width: 100%;
  min-width: 1080px;
}
.pcBr {
  display: none;
}
.spBr {
  display: inline-block;
}
.pc {
  display: none !important;
}
.sp {
  display: block;
}
.comPd {
  padding-bottom: 120px;
}
.com_mb60 {
  margin-bottom: 30px;
}
/* ボックス[SP]
--------------------------------------------*/
.page_wrap {
  width: 100%;
  position: relative;
  margin: 0 auto 60px;
}

.hed_wrap {
  width: 90%;
  position: relative;
  margin: 60px auto 60px;
}

.w1080Wrap {
  width: 90%;
  margin: auto;
position: relative;

}
.w1080Wrap_end {
  width: 90%;
  margin: 0 auto 60px;
  position: relative;
}

.w1200Wrap {
  width: 90%;
  margin: 0 auto 60px;
  position: relative;
}
.w1200Wrap_end {
  width: 90%;
  margin: 0 auto 60px;
  position: relative;
}

.std-page {
  width: 80.7%;
  margin: 0 auto;
  background-color: #F5F5F5;
  padding: 7.4%;
  box-sizing: border-box;
}
/* タイトル[SP]
--------------------------------------------*/
.hedImg {
  background: #000;
  background-size: cover;
  width: 100%;
  height: 80px;
  margin: 0 auto 30px;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.hedImg::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 0 0 100vw;
  border-color: transparent transparent transparent #1a287b;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.hedImg::after {
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 70px 100vw;
border-color: transparent transparent #FFFFFF transparent;
position: absolute;
bottom: 0;
left: 0;
z-index: 10;
}

.com_bg_line {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 8%;
  box-sizing: border-box;
}
.com_bg_line::before {
  content: "";
  background-color: #e5e5e5;
  width: 160px;
  height: 100%;
  position: absolute;
  left: -26vw;
  top: -8%;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  z-index: -1;
  transition: all 1.5s ease;
}
.com_hed_wrap {
  width: 90%;
  position: relative;
  margin: 0 auto 60px;
}
.com_bg_line .com_hed_wrap::before {
  content: "";
  background-color: #64697d;
  width: 105%;
  height: 1px;
  position: absolute;
  left: -5%;
  top: 26%;
  transition: all 1s ease;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  z-index: -10;
}
.com_bg_line.isview.active .com_hed_wrap::before {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.com_hed_wrap .com_red_tit {
  font-size: 2em;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  color: #64697d;
  margin: 0 0 10px;
  overflow: hidden;
  position: relative;
}
.com_hed_wrap2 .com_red_tit2 {
  font-size: 1.8em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
  color: #64697d;
  margin: 0;
  overflow: hidden;
  position: relative;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #9ca3be;
}
.com_hed_wrap2 .com_red_tit2 span {
  display: block;
  font-size: 0.5em;
  color: #FFF;
  letter-spacing: 0;
}
.com_hed_wrap .com_red_subtit {
  font-size: 1.2em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #64697d;
}
.com_tit {
  font-size: 1.1em;
  font-weight: 100;
  margin: 0 0 20px;
}
.com_hed_wrap2 {
  width: 90%;
  position: relative;
  margin: 0 auto 60px;
  text-align: center;
}
.com_hed_wrap2 .com_red_tit {
  font-size: 1.6em;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  color: #64697d;
  margin: 0 0 10px;
  overflow: hidden;
  position: relative;
}
.com_hed_wrap2 .com_red_subtit {
  font-size: 1.2em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #64697d;
}
.com_hed_wrap2 .com_red_txt {
  font-size: 1em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  margin: 20px auto 0;
}


.com_en_title {
margin-top: 5px;
margin-bottom: 30px;
}
.com_en_title_text {
display: inline-block;
font-size: 10px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.5;
letter-spacing: 0px;
color: #101f76;
transform: scale(0.9);
transform-origin: top left;
padding-left: 2.5%;
}
.com_tit_name {
font-size: 1.6em;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
font-weight: 300;
}
.com_tit_name span {
font-size: 0.5em;
display:block;
font-style: normal;
font-weight:300;
text-decoration: none;;
line-height: 1;
color: #FFF;
}
.com_tit_name_catch {
font-size: 12px;
font-stretch: normal;
font-style: normal;
line-height: 1.8;
}
.com_tit_name_sub {
font-size:16px;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
color: #101f76;
}
.com_tit_name_sub span {
font-size: 0.5em;
display: block;
color: #FFF;
font-weight: 100;
letter-spacing: 0.05em;
}

.com_en_title2 {
}

.com_en_title_text2 {
display: inline-block;
font-size: 2em;
font-weight: 500;
line-height: 1.2;
color: #101f76;
letter-spacing: 0.1em;
}

.com_tit_name2 {
font-size: 1em;;
font-stretch: normal;
font-style: normal;
letter-spacing: -0.2px;
margin-bottom: 30px;
}
.com_tit_name2 span {
display: inline-block;
font-style: normal;
font-weight: 500;
text-decoration: none;
border-bottom: 1px solid #FFF;
padding-bottom: 1px;
line-height: 1;
}


.com_tit_txt {
font-size: 1em;
margin: 0 auto 20px;
color: #101f76;
}

.com_txt {
margin: 0 auto 40px;
}


.com_read_txt {
font-size: 14px;
line-height: 1.8;
margin: 0 auto 60px;
}


/* ボタン [SP]
--------------------------------------------*/
.link-arrow {
  font-family: 'Hind', sans-serif;
  font-style: italic;
  letter-spacing: .1em;
  font-size: 1.6rem;
  position: absolute;
  left: 56px;
  bottom: 376px;
  font-weight: 300;
}
.textAnimate [data-split="true"] {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.link-arrow .icon {
  width: 1em;
  height: 1em;
  margin-left: .5em;
}
.com_btn5 {
  margin: 30px auto;
  display: inline-block;
  font-weight: 400;
}
.com_btn5 a {
  display: block;
  border: 1px solid #101f76;
  background: #101f76;
  padding: 10px;
  position: relative;
  color: #FFF;
  width: 200px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn5 a::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #6c0000;
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn5 a:hover::before {
  right: -10px;
}


.com_btn6 {
  margin: 30px auto;
  display: inline-block;
  font-weight: 400;
}
.com_btn6 a {
  display: block;
  border: 1px solid #FFF;
  background: #FFF;
  padding: 10px;
  position: relative;
  color: #000;
  width: 200px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn6 a::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #6c0000;
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_btn6 a:hover::before {
  right: -10px;
}

.com_list_btn {
  text-align: right;
  transition: all 0.3s ease-out;
  margin-top: 30px;
}
.com_list_btn a {
  text-align: right;
  padding-right: 30px;
  position: relative;
  font-weight: 400;
  margin-top: 30px;
  color: #000;
}
.com_list_btn a::before {
  position: absolute;
  right: 10px;
  content: "";
  display: block;
  background: url("../images/com/arrow.png")0 0 no-repeat;
  width: 9px;
  height: 17px;
  top: 3px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.com_list_btn a:hover::before {
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
/* header[SP]
--------------------------------------------*/
/* ヘッダー[sp] */
#header {
  width: 100%;
  height: 50px;
  z-index: 100;
  position: relative;
  display: flex;
}
/* ロゴ[SP] */
#logo_img {
  position: relative;
  z-index: 100;
  width: 120px;
  margin: 10px 0 0 5%;
}
#logo_img a {
  display: block;
}
#logo_img a img {
  width: 100%;
}
.g_menu, .g_high_menu {
  display: none;
}
/* メニュー[SP]
--------------------------------------------*/
/*menu*/
.mainMenu {
  box-sizing: border-box;
  width: 100%;
  align-items: center;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 100;
}
.mainMenuInWrap, .mainMenuIn {
  display: none;
}
.inqBox {
  display: none;
}
.logo_Hed_index {
  display: none;
}
/*menu*/
.menuWrap {
  width: 30px;
  position: fixed;
  right: 15px;
  top: 0px;
  z-index: 20000;
  cursor: pointer;
}
.menu {
  display: block;
  position: fixed;
  width: 30px;
  margin: 0 auto;
  height: 18px;
  margin-top: 15px;
  margin-right: 0;
}
.menu__line {
  background: #101f76;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 30px;
}
.menu__line--center {
  top: 8px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 7px;
  transform: rotate(45deg);
  width: 100%;
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 9px;
  transform: rotate(135deg);
}
.menuWrap p {
  width: 100px;
  display: block;
  position: fixed;
  font-size: 10px;
  font-weight: bold;
  line-height: 1em;
  margin-top: 28px;
  margin-left: -100px;
}
/*gnav*/
.gnav {
  background: #fff;
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.gnav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
}
.gnav_bg_img {
  display: none;
}
/*.gnav_bg_img .bg_img { background: url(../images/com/gnav_bg_img.jpg) center center; background-size: cover; width: 100%; height: 100%; }*/
.gnav_contents {
  width: 100%;
  background: url(../images/com/gnav_contents_bg_icon.png), url(../images/com/gnav_contents_bg.jpg);
  background-size: 180px 224px, cover;
  height: 100%;
  display: flex;
  align-items: center;
  background-position: bottom right, center center;
  background-repeat: no-repeat, repeat;
}
.gnav_contents_box {
  width: 95%;
  align-items: center;
  overflow-y: auto;
  height: 70vh;
}
.gnav__menu {
  height: 100%;
  padding: 0 2%;
  /*position: absolute;
left: 50%;
transform: translateX(-50%);
width: 170px;*/
  font-family: 'Heebo', sans-serif;;
  font-weight: 400;
}
.gnav__menu__item {
  opacity: 0;
  text-align: center;
}
.gnav__menu li:nth-child(n+2) {
  margin-top: 15px;
}
.gnav__menu__item a {
  color: #101f76;
  font-size: 16px;
  text-decoration: none;
  transition: .5s;
}
.gnav__menu__item a span.en {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #002f7c;
}
.gnav__menu__item a i {
  padding-left: 15px;
}
.gnav__menu__item a:hover {
  color: #666;
}
.gnav_logo {
  width: 200px;
  margin: 0 auto 40px;
}
.gnav_logo img {
  width: 100%;
  height: auto;
}
.gnav_menu_sub {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 30px;
}
.gnav_menu_sub li:nth-child(n+2) {
  margin-top: 10px;
}
.gnav_menu_sub li a {
  color: #101f76;
  display: block;
  font-size: 12px;
}
.g_sns a {
  color: #888;
  margin: 10px 0px;
  font-weight: 500;
  display: block;
}
.g_sns a span.icon {
  padding-right: 15px;
  display: inline-block;
  text-align: center;
  width: 20px;
}
.g_sns a span.icon i {
  font-size: 18px;
  text-align: center;
}
.gnav_menu_boxR {
  padding: 0 10%;
  margin-top: 50px;
  text-align: center;
}
/* お問い合わせ[SP]
--------------------------------------------*/
#contactWrap {
  background: url("../images/com/bg_contact_img.jpg") top center no-repeat;
  background-size: cover;
  padding: 40px 0;
  background-position: left top;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}
#contact_bg {
  width: 80%;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
#contact_bg .contact_tit {
  font-size: 2rem;
  margin-top: 1.5rem;
  line-height: 2;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  color: #FFF;
  font-weight: normal;
}
#contact_bg .contact_tit::before {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background-color: #e06017;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -35%;
}
#contact_txt {
  margin: 15px 0;
  color: #FFF;
}
#contact_bg .tel {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFF;
}
/* footer[SP]
--------------------------------------------*/
#footerWrap {
  width: 100%;
  padding: 25px 0%;
  box-sizing: border-box;
  background: #1a287b;
  position: relative;
}
#footer {}
/* 住所 */
#footer address {
background: #FFF;
width: 60%;
margin: -6vh auto 0;
font-size: 10px;
line-height: 1.75em;
font-style: normal;
color: #000;
text-align: center;
padding: 20px;
box-sizing: border-box;
}
#footer address img.logo {
  width: 160px;
  margin: 0 auto 20px;
}
#footer address p.link_sns {
  padding-top: 5px;
  text-align: right;
}
#footer address p.link_sns a img {
  width: 20px;
}

#footer address .iso_mark {
width: 181px;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto 0;
}
#footer address .iso_mark .iso_mark_box1 {
  width: 100px;
  margin-right: 10px;
}
#footer address .iso_mark .iso_mark_box2 {
  width: 71px;
}

/* フットナビ */
#footer nav {
  display: none;
}
#footer p.copy {
  opacity: 0.5;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0.05em;
  text-align: center;
  color: #FFF;
}

.f_logo {
width: 50%;
margin: 0 auto;
}

/* PAGE[SP]
--------------------------------------------*/
.com_table {
  width: 100%;
}
.com_table th {
  display: block;
  width: 100%;
  padding: 10px 10px 0;
  text-align: left;
  box-sizing: border-box;
}
.com_table td {
  display: block;
  border-bottom: 1px solid #414141;
  padding: 10px;
  box-sizing: border-box;
}
.all_hed_img {
  margin: 0 auto 60px;
  padding: 0 10px;
}
#pan_area {
  width: 100%;
  font-size: 10px;
  padding-top: 10px;
}
#pan_area #pan_area_in {
  width: 100%;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
}
#pan_area #pan_area_in .pan_list {
  padding-right: 16px;
  margin-right: 10px;
  position: relative;
}
#pan_area #pan_area_in .pan_list:last-child {
  padding-right: 0;
  margin-right: 0;
}
#pan_area #pan_area_in .pan_list::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: 1px solid #303030;
  border-right: 1px solid #303030;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pan_area #pan_area_in .pan_list:last-child::before {
  display: none;
}
#pan_area #pan_area_in .pan_list a {
  text-decoration: underline;
}
#pan_area h3 {
  font-size: 10px;
  font-weight: 500;
}
}