﻿@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

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

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  /*background: #F1F5F8;*/
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

img {
  vertical-align: middle;
  border: 0;
}

a img {
  border: none;
}

a {
  text-decoration: none;
  color: #002e4e;
  cursor: pointer;
}

/* 共通設定 */
.arrow {
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

/* ------------------------
共通ヘッダー start
------------------------ */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  height: 74px;
  transition: all .6s;
  display:flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  z-index: 110;
}
#header #logo {
  margin-left: 40px;
}
@media(max-width: 834px){
  #header #logo{
    margin-left: 20px;
  }
}
#header .menu {
  display: flex;
  position: absolute;
  right: 0;
  font-weight: 700;  
  height: 100%;
  z-index: 110;
  background: #fff;
}
#header .menu .menu_back {
  width:100%;
  background: #fff;
  position:absolute;
  top:0;
  left:-20px;
  z-index: 110;
  width: 100%;
  height: 100%;
}
#header .menu li{
  margin-right: 40px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #002e4e;
  cursor: pointer;
  z-index: 110;
  background: #fff;
}  
#header .menu li a {
  color: #002e4e;
}
/*
  #header .menu li:hover{
  border-bottom: solid 8px #326EE0;
  box-sizing: border-box;
}
*/
#header .hamburger {
  position: absolute;
  right: 20px;
  width: 32px;
  height: 20px;
  cursor: pointer;
}

#header .sp-login {
  position: absolute;
  right: 68px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: #255AD2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

@media(max-width: 849px){
  #header .sp-login {
    display: inline-flex;
  }
}

@media(max-width: 420px){
  #header #logo {
    margin-left: 12px;
  }

  #header .sp-login {
    right: 58px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  #header .hamburger {
    right: 14px;
  }
}

#header .hamburger .line {
  position: absolute;
  width: 32px;
  height: 2px;
  right: 0;
  background: #002e4e;
  transition: all .4s;
}
.line_1 {
  top: 0px;
}
.line_2 {
  top: 10px;
}
.line_3 {
  top: 19px;
}
.active .line_1 {
  transform: rotate(-45deg);
  top: 8px
}

.active .line_2 {
  opacity: 0
}

.active .line_3 {
  transform: rotate(45deg);
  top: 8px
}

#sp_menu{
  position: fixed; 
  top: 74px; 
  left: 0;
  width: 100%;
  height: calc(100vh - 74px);
  background: #fff;
  animation: slide_in .8s;  
  z-index: 100;
}
#sp_menu ul {
  margin-top: 60px;
}
#sp_menu ul li {
  margin-top: 20px;
  cursor: pointer;
  margin-left: 40px;
  text-indent: 0;
  font-weight: 700;
}
#sp_menu ul li a{
  cursor: pointer;
}

#sp_sub_menu{
  overflow: hidden;
  animation: sp_sub_menu_slide_in 0.3s;
}

@keyframes sp_sub_menu_slide_in {
  0% {
    opacity: 0.0;
    margin-top: -30px;
  }
  20%{
    opacity: 0.0;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes sp_sub_menu_slide_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}


#sp_sub_menu span{
  font-weight: 100;
  display:block;
  margin:10px 20px;
}

.sub_menu {
  position: absolute;
  left: -10px;
  top: calc(100% + 1px);
  display: inline-block;
  background: #F8F8F9;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: calc(100% - 60px);
  font-weight: 100;
  animation: sub_menu_slide_in .5s;
  z-index: 101;
  box-shadow: 0 1px 2px #ccc;
}

@keyframes sub_menu_slide_in {
  from {
    top: 0;
  }
  to {
    top: 74px;
  }
}

@keyframes sub_menu_slide_out {
  from {
    top: 74px;
    opacity: 1;
  }
  to {
    top: -100px;
    opacity: 0;
  }  
}

@keyframes slide_in {
  from {
    top: calc(74px - 100vh);
  }
  to {
    top: 74px;
  }
}


.bar {
  position:absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #326EE0;
}
.sub_menu a {
  display: block;
  margin: 10px;
  float: left;
  text-decoration: underline;
}


@keyframes slide_in {
  from {
    top: calc(74px - 100vh);    
  }
  to {
    top: 74px;
  }
}

@keyframes slide_out {
  from {
    top: 74px;
  }
  to {
    top: calc(74px - 100vh);    
  }
}


/* ------------------------
共通ヘッダー end
------------------------ */

/* ------------------------
共通フッター start
------------------------ */
#footer {
  width: 100%;
  margin: 0 auto;
  background: #002e4e;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
}
#footer .nav_footer {
  position: absolute;
  display: flex;
  right: 20px;
  font-size: 11px;
  font-size: 0.6875rem;
}
#footer .nav_footer li {
  margin-right: 20px;
}
@media (max-width: 834px) {
  #footer .nav_footer {
    display: inline-block;;
  }
  #footer .nav_footer li {
    margin: 4px 0;
  }
}

#footer .nav_footer li a {
  font-size: 14px;
  font-size: 0.875rem;
  color: white;
  display: flex;
  align-items:center;
}
@media(max-width: 834px){
  #footer .nav_footer li a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#footer #logo {
  margin-left: 40px;
}
@media(max-width: 834px){
  #footer #logo {
    margin-left: 20px;
  }  
}
#copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
#copyright .text {
  display: block;
  padding: 38px 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}  
/* ------------------------
共通フッター end
------------------------ */
  

/* コンテンツ */
.contents_wrapper {
  background: #F1F5F8;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 254px);
}
.contents_wrapper.blue {
  background: #4B72BC;
}

.contents {
  /*background: #F1F5F8;*/
  background: #fff;
  margin: 0 auto;
  /*padding: 74px 40px 40px;*/
  padding: 74px 14px 40px;
  position: relative;
  color: #002e4e;
  /*width: calc(100% - 80px);*/
  width: calc(100% - 28px);
  overflow: hidden;
  max-width: 1000px;
  min-height: calc(100vh - 214px);
}

.bg_blue {
  /*background: #F1F5F8;*/
  background: #F1F5F8;
}

@media (max-width: 1000px) {
  .contents {
    padding: 74px 14px 0;
    /*width: calc(100% - 28px);*/
  }
}
ul.breadcrumb {
  color: #777;
  display: flex;
  font-size: 12px;
  margin-top: 90px;
  margin-bottom: 16px;
}
@media (max-width: 1000px) {
  ul.breadcrumb {
    margin-top: 86px;
    margin-bottom: 12px;
  }
}
ul.breadcrumb a {
  color: #002e4e;
}
ul.breadcrumb li {
  display: block;
  font-size: 12px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*ul.breadcrumb a::after {
  content: ">";
  position: absolute;
  top: 0;
  right: 5px;
}*/
ul.breadcrumb li::after {
  content: ">";
  margin: 0 10px;
}
ul.breadcrumb li:last-child:after {
  content: "";
  margin: 0;
}

.top_visual{
  width: calc(100% + 80px);
  height: 240px;
  margin: 0 -40px;
}
@media (max-width: 1000px) {
  .top_visual{
    width: calc(100% + 28px);
    margin: 0 -14px;
  }
}
@media (max-width: 834px) {
  .top_visual{
    height: 120px;
  }
}
.top_visual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .top_visual img{
    border-radius: 0;
  }
}

h1 {
  font-size: 36px;
  font-size: 2.25rem;
  margin-top: 40px;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

.box {
  position: relative;
  padding: 48px 0;
  width: 100%;
}
  
.box_title_en{
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  color: #002e4e;
  position: relative;
}
.box_title_en.white{
  color: #fff;
}
@media (max-width: 1000px) {
  .box_title_en{
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center;
    color: #002e4e;
    position: relative;
  }
}
.box_title{
  margin-top: 4px;
  margin-bottom: 48px;
  font-size: 32px;
  font-size: 2rem;
  text-align: center;
  color: #002e4e;
  font-weight: 700;
  position: relative;
}
.box_title.white{
  color: #fff;
}
.box_title::after{
  content: "";
  display: block;
  width: 100px;
  height: 7px;
  background: #2755d9;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 50px);
}
.box_title.white::after{
  background: #fff;
}
@media (max-width: 1000px) {
  .box_title{
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: 0 !important;
  }
}
.box .text {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 24px 0;
  text-align: center;
}
.box .text.white {
  color: #fff;
}

@media (max-width: 1000px) {
  .box .text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #eaeaea;
  margin: 40px 0;
}

@media(max-width: 500px){
  br.pc{
    display:none;
  }
}
select {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  color: #333;
}
#login {
 padding: 8px 16px; 
 background: #255AD2; 
 color: #fff; 
 border-radius: 8px; 
 cursor: pointer;
}
#login:hover{
  opacity: 0.5;
}
.cautionary_note{
  text-align: right;
  font-size: 10px;
  margin:4px 0;
}
@media (max-width: 600px){
  .cautionary_note{
    text-align: right;
    font-size: 8px;
    margin:4px -8px;
  }
}