@charset "UTF-8";

:root {
  --red: #dc143c;
  --white: #fff;
  --primary-color: #1c4388;
  --secondary-color: #e483c6;
}

/* CSS Document */
/* ==========================================================================================
■■■■■■　PC/タブレット調整　■■■■■■
========================================================================================== */
@media screen and (max-width: 1080px) {
  #homeMainVisual .infoBanners {
    right: 2.5rem;
    bottom: 2.5rem;
  }

  #homeMainVisual .infoBanners li,
  #homeMainVisual .infoBanners li a {
    min-width: 260px;
  }

  #homeMainVisual .infoBanners li a {
    padding: 1.5rem 2rem;
  }

  .infoBanners .infoBannarItem01 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .infoBanners .infoBannarItem01 li {
    width: 100%;
  }
}

/* ==========================================================================================
■■■■■■　スマホ通常設定　■■■■■■
========================================================================================== */
@media screen and (max-width: 768px) {
  /* * {
    font-size: 1rem;
  } */

  html {
    /*font-size: 62.5%;*/
    height: -webkit-fill-available;
  }

  .mbShow {
    display: block;
  }

  .mbNoShow {
    display: none;
  }

  /* common style */
  .mbDBlock {
    display: block;
  }

  .mbDInlineBlock {
    display: inline-block;
  }

  .Btn-ish a {
    /*		width: auto !important;*/
    width: 100% !important;
    line-height: 1.5;
    display: block;
  }

  /* ------------------------------------ */
  header {
    position: relative;
    height: auto;
  }

  #globalHeader__content {
    padding: 0;
    height: auto;
    background: #1c4388;
  }

  #globalHeader__nav {
    width: 100%;
  }

  .globalHeader__inner {
    padding: 0;
  }

  #globalHeader__items {
    /*---メニューを縦並びに */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 10em 0 10rem;
    height: 100vh;
    /* メニューの位置マイナス指定で画面外に */
    position: fixed;
    right: -100%;
    width: 100%;
    background: rgba(28, 67, 136, 0.95);
  }

  #globalHeader__logo {
    display: none;
  }

  .globalHeader__Item {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    letter-spacing: 0.1rem;
    padding: 1rem 0;
  }

  .globalHeader__Item a {
    font-weight: 300;
  }

  .globalHeader__Item {
    margin: 0;
    position: relative;
  }

  #globalHeader .header_rubby {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 0.1rem;
    font-weight: 100;
  }

  .globalHeader__Item:not(:first-of-type):before {
    display: none;
  }

  #globalHeader__specular {
    position: relative;
    display: none;
  }

  #mb_logo {
    display: block;
    position: absolute;
    left: 2rem;
    top: 1.5rem;
  }

  #mb_logo img {
    width: 237px;
    /*        height: 4.5rem;*/
  }

  .menuBtn {
    /* ボタンの配置位置  */
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    /* ボタンの大きさ  */
    width: 80px;
    height: 80px;
    /* 最前面に */
    z-index: 10;
    border: none;
    background: none;
    outline: none;
  }

  /***** 真ん中のバーガー線 *****/
  .btn-line {
    display: block;
    position: relative;
    /* バーガー線の位置基準として設定 */
    width: 100%;
    /* 線の長さと高さ */
    height: 4px;
    background-color: #FFF;
    /* バーガー線の色 */
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  /****** 上下のバーガー線 *****/
  .btn-line::before,
  .btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .btn-line::before {
    /* 上の線の位置 */
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
    right: 0;
  }

  .btn-line::after {
    /* 下の線の位置 */
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    left: 0;
  }

  #globalHeader__items.open {
    right: 0;
    padding: 8rem 0 2rem;
  }

  /***** メニューオープン時 *****/
  .btn-line.open {
    background-color: transparent;
    /* 真ん中の線を透明に */
  }

  .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    background-color: #FFF;
    /* 上下の線の色を変える */
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }

  .btn-line.open::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /* 上の線を傾ける */
  }

  .btn-line.open::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /* 下の線を傾ける */
  }

  #conceptMainPhrase {
    background-position: center;
    background-size: contain;
    margin-bottom: 5rem;
    height: auto;
    padding: 0;
  }

  #conceptMainPhrase p {
    font-size: 0.9rem;
    line-height: 1.6rem;
    letter-spacing: 0.05rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: justify;
  }

  .the_inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }

  #homeMainVisual {
    display: block;
  }

  #homeMainVisual #slogan {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    /*top: 35%;*/
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
  }

  #homeMainVisual #slogan h2 {
    color: #FFF;
    font-size: 2.6rem;
    line-height: 0.8;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #FFF;
    text-shadow: -3px 5px 0 rgba(0, 0, 0, 0.3);
    letter-spacing: 0.07rem;
    text-align: left;
  }

  #homeMainVisual #slogan h2 #sloganEnphasis {
    font-size: 5rem;
  }

  #homeMainVisual #slogan p {
    color: #FFF;
    text-shadow: -1px 1px 0 rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05rem;
    font-size: 0.8rem;
    text-align: left;
    font-weight: 700;
  }

  .bg_slideshow {
    /*height: 100vh;
    height: -webkit-fill-available;*/
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
  }

  .infoBanners {
    position: static;
    padding: 2rem;
    background: #FAFAFA;
  }

  .infoBanners li:last-child {
    margin-bottom: 0;
  }

  .infoBanners li a {
    padding: 2rem 4rem;
    font-size: 1.05rem;
    width: 100%;
    min-width: 100%;
  }

  .each__section {
    padding: 5rem 0;
  }

  .section__title {
    margin-bottom: 5rem;
  }

  .section__title h2 {
    font-size: 4.5rem;
    letter-spacing: 0.15rem;
  }

  .the_wrapper {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .the_wrapper .wrap_content {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .contentBox .txt {
    line-height: 1.6;
  }

  #conceptTheFearture .contentType_01,
  #conceptTheFearture .contentType_02 {
    width: 100%;
    padding: 0;
  }

  #conceptTheFearture .contentType_01.contentBox {
    margin-top: 0.5rem;
  }

  .the_wrapper .wrap__image {
    display: block;
    width: 100%;
  }

  #featureWrapper .contentType_01 .wrap__image picture,
  #featureWrapper .contentType_02 .wrap__image picture {
    padding: 0;
  }

  #featureWrapper .contentType_01 .wrap__image picture span,
  #featureWrapper .contentType_02 .wrap__image picture span {
    left: 0;
    right: 0;
  }

  #featureWrapper {
    padding: 0 0 5rem 0;
  }

  #featureWrapper h3 {
    font-size: 3.2rem !important;
  }

  #pointIntro h3 {
    letter-spacing: 0.1rem;
  }

  #pointIntro h3 .mbCtrl {
    font-size: 2.5rem;
    letter-spacing: -0.2rem;
  }

  #conceptTheFearture .wrap_content h3 {
    font-size: 2.7rem;
    letter-spacing: 0.05rem;
  }

  #conceptTheFearture .wrap_content h4 {
    font-size: 1.65rem;
  }

  #pointIntro .wideBgControl:nth-child(odd) .wrap_content,
  #pointIntro .wideBgControl:nth-child(even) .wrap_content {
    margin: 0;
  }

  .contentType_02 .wrap_content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1;
  }

  .contentType_02 .wrap__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2;
  }

  #pointIntro #point_02 .wrap__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    order: 2;
  }

  .eachPointContents .btn {
    margin-bottom: 2rem;
    text-align: center;
  }

  #secOutline #outlineTable {
    padding: 0;
    margin-bottom: 2rem;
  }

  #secOutline #outlineTable th,
  #secOutline #outlineTable td {
    display: block;
    width: auto;
    padding: 1rem;
  }

  #secOutline #outlineTable th {
    border: none;
    background: #1c4388;
    color: #FFF;
  }

  #secOutline #outlineTable td {
    padding: 1rem 1rem;
  }

  #secOutline #outlineTable .goodsDetail td {
    padding: 0 0 0.5rem 0;
  }

  #secFlow {
    padding-bottom: 5rem;
  }

  #secFlow h2 .mbCtrl {
    display: none;
  }

  #flowchart {
    padding: 0;
  }

  .flowchart__items dl {
    display: block;
  }

  .flowchart__items dt,
  .flowchart__items dd {
    display: block;
    padding: 0;
    margin: 0;
    width: auto;
  }

  .flowchart__items dd {
    border: none;
    margin-bottom: 1rem;
  }

  .flowchart__items:after {
    display: block;
    width: 50px;
    height: 50px;
    border-top: 1px solid #1c4388;
    border-right: 1px solid #1c4388;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    content: "";
    margin: 0 auto;
  }

  .flowchart__items:last-child:after {
    display: none;
  }

  .flowchart__items+.flowchart__items {
    margin-top: 0;
  }

  #secOutline #outlineTable table td li span.desc {
    display: block;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    text-indent: 0;
    letter-spacing: 0;
    /* text-align: justify; */
  }

  #secOutline #outlineTable table td li {
    /* text-align: justify; */
    word-break: break-all;
    padding-right: 1rem;
  }

  #entryDetail {
    padding: 0;
  }

  .entry__title {
    margin-bottom: 1rem;
    text-align: center;
    display: inline-block;
    width: 85%;
    margin: 0 auto 2rem;
    position: relative;
    background: #FFF;
    z-index: 1;
    padding: 1rem 2rem;
    color: #1c4388;
  }

  /*
  .entry__title:before {
      position: absolute;
      content: '';
      left: 0;
      top: 0;
      width: 0;
      height: 0;
      border-left: solid 2rem #1c4388;
      border-bottom: solid 94px transparent;
      z-index: 2;
  }
  .entry__title:after {
      position: absolute;
      content: '';
      right: 0;
      top: 0;
      width: 0;
      height: 0;
      border-left: solid 2rem #FFF;
      border-bottom: solid 94px #1c4388;
      z-index: 2;
  }*/
  .youbi {
    display: inline-block;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .howToEntry p {
    font-size: 1rem;
    margin: 0 auto 3rem;
    width: 100%;
    letter-spacing: 0.1rem;
    font-weight: 300;
    text-align: left;
    line-height: 1.8;
  }

  .entryboxWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }

  .entrybox_items {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    min-width: 100%;
    padding: 2rem 1.5rem;
    border: 1px solid #CCC;
    background: rgba(255, 255, 255, 0.1);
  }

  .entrybox_items:first-child {
    margin-bottom: 1rem;
  }

  #faqLists {
    padding: 0;
    background: none;
  }

  .faq__items dl {
    position: relative;
    line-height: 1.8;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
  }

  .faq__items .question {
    padding-left: 4rem;
    width: 85%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    height: 4rem;
    font-weight: 500;
    color: #1c4388;
    font-size: 1rem;
  }

  .faq__items .answerWrapper {
    margin: 1rem 0;
  }

  .faq__items .answer {
    font-size: 0.95rem;
    width: 96%;
  }

  .faq__items .questionWrapper::before {
    top: 48%;
    right: 5px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .faq__items .questionWrapper::after {
    top: 48%;
    right: 5px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .termWrapper {
    padding: 0;
  }

  .termWrapper h4 {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .term__items {
    text-align: justify;
    line-height: 1.6;
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .contactWrapper {
    padding: 5rem 0 0;
    width: 100%;
  }

  .contactContents h4 {
    font-size: 1.6rem;
  }

  .contactContents li.tel,
  .contactContents li.mail {
    font-size: 1.7rem;
  }

  .termWrapper p {
    font-size: 0.9rem;
    letter-spacing: 0;
    line-height: 1.6;
  }

  .information {
    margin: 1rem 0 5rem;
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 0.5rem;
  }

  .information dl {
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #333;
  }

  .information dl dt {
    margin-bottom: 1rem;
    margin-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid currentColor;
    width: auto;
  }

  .information dl dt:after {
    display: none;
  }

  .information dl dd {
    /*text-align-last: justify;*/
    text-align: left;
  }

  /* ----- modaal ----- */
  .modaal-outer-wrapper .modaal-container {
    max-width: 640px;
  }

  /* ----- ambassador ----- */
  #secAmbassadors {
    margin-bottom: 5rem;
    padding-top: 0;
  }
  #secAmbassadors::before, #secAmbassadors::after {
    top: 2.5rem;
    width: calc(100% - 4rem);
    height: calc(100% - 5.5rem);
  }
  #secAmbassadors .section__title {
    margin-top: 0;
    line-height: 75px;
  }
  #secAmbassadors .ambassadors {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }
  #secAmbassadors .ambassadors::before {
    display: none;
  }
  #secAmbassadors .ambassadors .ambassador {
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  #secAmbassadors .ambassadors .ambassador + .ambassador {
    padding-top: 2rem;
    padding-bottom: 0;
  }
  #secAmbassadors .ambassadors .ambassador h3 {
    margin-left: -1em;
    margin-right: -1em;
  }
  #secAmbassadors .ambassadors .ambassador:first-of-type::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: block;
    content: "";
    width: calc(100% - 8rem);
    height: 1px;
    background: #eee;
  }
  #secAmbassadors .ambassadors .ambassador figure {
    padding: 0;
  }
  #secAmbassadors .ambassadors .ambassador figure figcaption a {
    position: static;
    white-space: normal;
    top: 100%;
    bottom: auto;
    margin-left: -1rem;
    margin-right: -1rem;
    text-align: left;
    padding: 0.75rem 1rem;
    -moz-text-align-last: right;
         text-align-last: right;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  #secAmbassadors .ambassadors .ambassador figure figcaption a span {
    display: inline-block;
    margin-left: auto;
    text-align: right;
  }
}