@charset "UTF-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * File name: layout.css
 * Summary:   レイアウト用スタイル
 * Author:    CrEa Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    structures
 *       =1-1    header
 *       =1-2    contents
 *                 - main contents
 *                 - navigation
 *       =1-3    sidepanel
 *       =1-4    footer
 *     =2    breakpoint checker (for javascript)
 *
 * ===============================================================
*/
/** =1
 * ========================================
 * structures
 * ========================================
 */
.l-container {
  box-sizing: border-box;
  display: flex;
  z-index: 2;
  position: relative;
  right: 0;
  flex-direction: column;
  width: 100%;
  height: auto;
  min-height: 100%;
  min-height: 100vh;
  margin: 0;
  transition: right 300ms ease-in-out;
}
.l-container > * {
  flex-shrink: 0;
}

.l-inner, .l-innerNarrow {
  margin-inline: auto;
}
.l-innerNarrow {
  max-width: 688px;
}
.l-inner{
  max-width: 1280px;
}
/** =1-1
* header
* ----------------------------------
*/
.l-header {
  /* z-index: 100;
  position: sticky;
  top: 0; */
  text-align: center;
  border-top: solid 5px #004077;
  border-bottom: solid 5px #00A1D8;
  /* margin-bottom: 70px; */
}
.l-headerTitle{
  color: #014076;
}
.l-header .borderTop {
  margin-top:2px;
  padding-block: 40px;
  border-top:solid 3px #00a0d9;
  background: url(../src/default/pc/image/common/mainimg_back.png);
}
@media screen and (max-width: 768px){
  .l-header .borderTop {
    padding-block: 20px;
  }
}
.l-header h1 span {
  font-size: clamp(2.2rem,calc( 38 / 960 )* 100vw,3.8rem);
  font-weight: 700;
  margin-block-end: 1em;
}
.l-header .detailArea{
  max-width: 960px;
  text-align: center;
  background: #fff;
  margin-inline: auto;
  margin-block-start: 20px;
  padding-block: 47px;
}
@media screen and (max-width: 768px){
  .l-header .detailArea{
    padding-inline: 20px;
    padding-block-start: 35px;
    padding-block-end: 40px;
  }
}
.l-header .detailArea .detailAreaText{
  font-size: clamp(1.4rem,calc( 16 / 960 )* 100vw,1.6rem);
  line-height: calc( 32 / 16 );
}
@media screen and (max-width: 768px){
  .l-header{
    /* padding-block: min(30px, 7vw); */
    background-size: 1069px;
    /* margin-bottom: 30px; */
  }
  .l-header div {
    padding-block: 20px;
  }
  .l-header .logo{
    width: 60%;
  }
}

/* navHandler */
.navHandler {
  display: flex;
  z-index: 102;
  position: fixed;
  align-items: center;
  justify-content: center;
  transition: right 0.3s ease-in-out;
}

.btnNavHandler {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  color: #fff;
}
.btnNavHandler .icon-menu {
  display: block;
  position: relative;
  /* width: 66.6666666667%; */
  width: 100%;
  height: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px){
  .btnNavHandler .icon-menu {
    width: 70%;
  }
}
.btnNavHandler .icon-menu .bar {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 2px solid #fff;
  transition: all 0.2s ease;
}
.btnNavHandler .icon-menu .bar:nth-child(1) {
  margin-top: -8px;
}
.btnNavHandler .icon-menu .bar:nth-child(3) {
  margin-top: 8px;
}
.btnNavHandler .text {
  display: none;
}
.is-panelopened .btnNavHandler .icon-menu .bar:nth-child(1) {
  margin-top: -1px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
}
.is-panelopened .btnNavHandler .icon-menu .bar:nth-child(2) {
  opacity: 0;
}
.is-panelopened .btnNavHandler .icon-menu .bar:nth-child(3) {
  margin-top: -1px;
  transform: rotate(-45deg);
  border-top: 2px solid #fff;
}

/** =1-2
 * contents
 * ----------------------------------
 */
.l-contents {
  flex-grow: 1;
  padding-bottom: clamp(60px, 15.625vw, 120px);
}
.l-contents:not(.isHome) {
  padding-block: clamp(30px, 15.625vw, 40px) clamp(60px, 15.625vw, 120px);
}
@media screen and (max-width: 767px) {
  .l-contents:not(.isHome) {
    padding-inline: 20px;
    padding-block: clamp(15px, 15.625vw, 30px) clamp(30px, 15.625vw, 60px);
  }
}

/* [ main contents ]
------------------------------ */
.l-main {
  position: relative;
  overflow: hidden;
}

.l-article {
  margin: 0 auto 20px;
}
/* [ navigation ]
------------------------------ */
.l-nav {
  padding-top: 80px;
}
.l-nav .listNavMyPageItem {
  position: relative;
}
.l-nav .listNavMyPageItem::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0,-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 13px solid #fff;
  border-right: 0;
}
.l-nav .listNavMyPageItem::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url(../src/ioki/image/mypage/dot_white.svg);
  background-position: center center;
  background-size: contain;
}
.l-nav .listNavMyPageItemLink {
  display: block;
  position: relative;
  padding-block: 1.5em;
  color: #fff;
  font-weight: bold;
}
.l-nav .listNavMyPageItemLink span {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}
.l-nav .listNavMyPageItemLink [class*=icon-] {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.l-nav .listNavOther {
  margin-block: 50px 0;
  /* padding-inline: 1.4285714286em; */
  font-size: 1.4rem;
}
.l-nav .listNavOtherItem:not(:first-child) {
  margin-top: 1em;
}

/** =1-3
* sidepanel
* ----------------------------------
*/
.l-sidepanel {
  z-index: 101;
  position: fixed;
  top: 0;
  /* right: -300px; */
  right: -100%;
  /* width: 300px; */
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #365394;
  color: #fff;
  transition: all 0.3s ease;
}

.is-panelopened .l-sidepanel {
  display: block;
  right: 0;
}

/* .l-sidepanel .navHandler {
  position: static;
} */
.l-sidepanel a,
.l-sidepanel a:hover {
  color: #fff;
  font-weight: bold;
}
.listNavOtherItem a span{
  font-weight: bold;
}
/** =1-4
  * footer
  * ----------------------------------
  */
.l-footer{
  background: #004077;
  color:#FFF;
  min-height: 100px;
}
.l-footerInner {
  max-width: 960px;
  margin: 15px auto 10px auto;
}
.l-footer a {
  color: inherit;
  word-break: break-all;
}
.footer_nav .privacy,
.footer_nav .faq{
  padding:0 0 0 15px;
  background:url(../src/default/pc/image/common/footer_icon.png) 0 50% no-repeat;
}
/* .l-footer a {
  color: inherit;
  word-break: break-all;
}
.l-footer{
  background-color: #F6F6F6;
  color: #000;
  padding: 0;
}
.l-footerInner{
  max-width: 951px;
  width: 100%;
  margin-inline: auto;
  padding: 35px 20px;
  display: flex;
  align-items: center;
}
.footerMain{
  font-size: 14px;
}
.footerCopyright{
  background-color: #000;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 25px 0;
  margin-top: 0;
} */

/** =2
* ========================================
* breakpoint checker (for javascript)
* ========================================
*/
#js-breakpointChecker {
  z-index: -100;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

#js-breakpointChecker div {
  display: none;
}

@media screen and (max-width: 1499px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 1199px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  html {
    margin: 0;
  }
  .navHandler {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 14px;
  }
  .l-article {
    padding: 0;
  }
  #js-breakpointChecker .narrow {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 319px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .l-inner, .l-innerNarrow {
    max-width: 1040px;
  }
  .navHandler {
    top: 20px;
    right: 20px;
    /* width: 30px; */
    /* height: 14px; */
    width: 40px;
    height: 40px;
    background-color: #365394;
  }
  .l-nav {
    padding-top: 100px;
    padding-inline: 20px;
  }
  .l-footerInner {
    justify-content: space-between;
    padding: 30px 20px;
    gap: 20px;
    display: block;
  }
  .footerMain{
    font-size: 12px;
    margin-bottom: 20px;
  }
  #js-breakpointChecker .medium {
    display: block;
  }
  #js-breakpointChecker .wide {
    display: block;
  }
  .l-header .logo img{
    width: 85%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-inner, .l-innerNarrow {
    box-sizing: content-box;
    padding-inline: 6.6666666667%;
  }
}




#banner_area {
  max-width: 960px;
  margin-inline: auto;
  padding: 10px 0 0 0;
  border-top: solid 1px #ccc;
}
#banner_area ul li {
  float: left;
  margin: 0 10px 20px 0;
}
#banner_area figure{
  max-width: 120px;
}
#banner_area figure img{
  width: 100%;
}

@media screen and (max-width: 768px){
  #banner_area figure{
    max-width: 80px;
  }
}
.borderTopLow{
  color: #014076;
  font-weight: 700;
}
.borderTopLowSub{
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px){
  .borderTopLowSub{
    font-size: 1.6rem;
  }
}
.borderTopLowMain{
  font-size: 3.8rem;
}
@media screen and (max-width: 768px){
  .borderTopLowMain{
    font-size: 2.8rem;
  }
}