@charset "utf-8";

/* 初期設定
   ----------------------------------------------------------------- */
body,div,p,dl,dt,dd,ul,li{
    margin:0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

a{
    text-decoration: none;
    color: #000;
}

header,.nav_wrap,section,footer,h1,h2,h3{
    margin:0;
    padding: 0;
    font-size: 100%;
}
header,.nav_wrap,section,footer,figure{
    display: block;
}

img{
    display: inline-block;
    border: none;
    max-width: 100%;
    height: auto;
}

ul{
    list-style: none;
}

body{
    background: #fff;
    color:#333;
    text-align:left;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}
main {
  flex: 1;
}
h2{
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}
h3{
    font-size: 2.4rem;
    color: #143891;
    margin-bottom: 24px;
}
p{
    color: #333;
    line-height: 2;
}
section{
    display: block;
    width: 100%;
}
/* #content{
    min-width: 960px;
} */
/**
 * ------------------------------------------------------------------------
 * font
 * ------------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: Noto Sans JP, -apple-system, BlinkMacSystemFont, Avenir, Helvetica Neue, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, Yu Gothic, YuGothic, Verdana, Meiryo, sans-serif;
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
}

main{
  display: block;
}
.margin-T{
  margin-top: 12px;
}
.margin-TB{
  margin-top: 12px;
  margin-bottom: 12px;
}
.margin-B{
  margin-bottom: 12px;
}

.margin-Top56{
  margin-top: 56px;
}

.margin-B32{
  margin-bottom: 32px;
}

.margin-LR32{
  margin:0 32px;
}
.padding-L16{
  padding-left: 1.6rem;
}
.padding-R16{
  padding-right: 1.6rem;
}

.under {
  border-bottom:2px solid #6F4AD3;
  display:inline;
  line-height:2;
}
/* header
   ----------------------------------------------------------------- */
.l-header{
/*     position: absolute; */
    width: 100%;
    height: 80px;
    background-color: #21445B;;
}
.l-header_in{
    height: 80px;
    display: flex;
    align-items: center;
}
/* ロゴ*/
 .header_logoLink {
    display: block;
}
.header_logoLink img{
    padding-left: 24px;
    width: 148px;
    vertical-align: bottom;
}
@media screen and (max-width:768px) {
  .header_logoLink img{
    padding-left: 2.4vw;
  }
}
/* ナビゲーション*/
.l-header .area_nav{
    margin-left: auto;
}
.l-header .area_nav img{
    padding-right: 24px;
    height: 40px;
    vertical-align: bottom;
}

/* ログイン*/
#toggle__menu-login , .drop-down-menu__group{
    display: none;
}
#toggle__menu-login:checked~.drop-down-menu__group{
    display:block;
    position:absolute;
}
.drop-down-menu__group {
    top: 40px;
    right: 8px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 1px 4px #3b1e1e;
    z-index: 800;
}
.nav__item-link {
    width: 100%;
    padding: 16px;
    display: inline-block;
}
.drop-down-menu__item a:hover{
    background-color: #ECF4FB;
}

/* footer
   ----------------------------------------------------------------- */
.l-footer{
  width: 100%;
  height: 80px;
  background-color: #21445B;
}
.l-footer_in{
    height: 80px;
    display: flex;
    align-items: center;
}
.l-footer .nav{
    display: flex;
    align-items: center;
    color: #fff;
}
.l-footer .nav a{
    color: #fff;
    padding-left: 24px;
}
.l-footer .cpy{
    color: #fff;
    margin-left: auto;
    padding-right: 24px;
}
@media screen and (max-width:768px) {
     .l-footer{
        padding: 32px 0;
        height: 100%;
     }
    .l-footer_in{
        display: block;
        height: auto;
        align-items: flex-start;
    }
    .l-footer .nav{
        display: block;
        text-align: center;
        align-items: flex-start;
    }
    .l-footer .nav li{
        padding: 0 0 8px 0;
    }
    .l-footer .nav a{
        padding-left: 0;
    }
    .l-footer .cpy{
        text-align: center;
        margin-top: 8px;
    }
}
/**
 * ------------------------------------------------------------------------
 * 表
 * ------------------------------------------------------------------------
 */
table{
  margin: 0 auto 40px auto;
  border: solid #D3DFEA 2px;
  width: 720px;
  word-break: break-all;
  word-wrap: break-all;
}
th,td{
  border: solid #D3DFEA 1px;
}
@media screen and (max-width:768px) {
  table{
    width: 100%;
  }
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance:textfield;
}
.cmt p{
  font-size: 1.2rem;
}
.cmt p::before {
  font-size: 1.2rem;
	content: "※"
}

/* ボタン
   ----------------------------------------------------------------- */
.btnwapper{
  display: flex;
  justify-content: center;
}

.btnwapper.justify-sb{
  justify-content: space-between;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 2;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  /* vertical-align: middle; */
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}


/* section
   ----------------------------------------------------------------- */
#section1{
  padding: 0 6.2vw;
}
