@charset "UTF-8";
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*黄*/
/*赤*/
/*青*/
/*緑*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400&display=swap");
/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only 
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}

@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}

.pc-only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}

.tab-only--flex {
  display: none !important;
}

@media (max-width: 1024px) {
  .tab-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}

.pad-only--flex {
  display: none !important;
}

@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pad-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}

.sp-only--flex {
  display: none !important;
}

@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 320px) {
  .sp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}

.se-only--flex {
  display: none !important;
}

@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .se-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}

@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}

.pctab-only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 1024px) {
  .pctab-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .pctab-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}

@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}

@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}

.tabsp-only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .tabsp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .tabsp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 320px) {
  .tabsp-only--flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

figure {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

small {
  font-size: 100%;
}

@-ms-viewport {
  width: device-width;
}

html,
body {
  line-height: 2.0625;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0em;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html,
  body {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 2.0625;
  }
}

a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  -webkit-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.l__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 767px) {
  .l__wrapper {
    border: none;
  }
}

.l__footer {
  margin-top: auto;
  height: 100%;
}

/* base > heading
============================================================================================================ */
/* 基本設定 */
h1 {
  font-size: 34px;
  font-size: 2.125em;
}

@media (max-width: 767px) {
  h1 {
    font-size: 22px;
    font-size: 1.375em;
  }
}

h2 {
  font-size: 30px;
  font-size: 1.875em;
}

@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    font-size: 1.25em;
  }
}

h3 {
  font-size: 24px;
  font-size: 1.5em;
  font-weight: bold;
}

h4 {
  font-size: 20px;
  font-size: 1.25em;
  font-weight: bold;
}

h5 {
  font-size: 18px;
  font-size: 1.125em;
  font-weight: bold;
}

h6 {
  font-size: 18px;
  font-size: 1.125em;
}

/* base > paragraph
============================================================================================================ */
/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
.home .common__main {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .home .common__main {
    margin: 0;
  }
}

.common__main {
  width: 100%;
  margin-top: 85px;
}

@media (max-width: 767px) {
  .common__main {
    margin-top: 13.33333vw;
  }
}

.archive .common__main {
  padding-top: 18px;
}

@media (max-width: 767px) {
  .archive .common__main {
    padding-top: 1.86667vw;
  }
}

/* layout > header
============================================================================== */
.common-header {
  padding: 23px 30px 21px;
}

@media (max-width: 1024px) {
  .common-header {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 767px) {
  .common-header {
    padding: 2.93333vw 0 7.86667vw 4vw;
  }
}

.common-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: normal;
      align-content: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .common-header__inner {
    max-width: 100%;
  }
}

.common-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-line-pack: normal;
      align-content: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .common-header__left {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
  }
}

.common-header__logo {
  width: 220px;
  margin-right: 28px;
}

@media (max-width: 1024px) {
  .common-header__logo {
    margin-right: 14px;
  }
}

@media (max-width: 767px) {
  .common-header__logo {
    width: 32vw;
    margin-right: 2.66667vw;
  }
}

.common-header__catch {
  font-size: 15px;
  font-size: 0.9375em;
  line-height: 1;
  padding-bottom: 24px;
}

@media (max-width: 1024px) {
  .common-header__catch {
    font-size: 12px;
    font-size: 0.75em;
    line-height: 1.33333;
    padding-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .common-header__catch {
    font-size: 9px;
    font-size: 2.4vw;
    letter-spacing: -0.03em;
    padding-bottom: 1.6vw;
  }
}

@media (max-width: 320px) {
  .common-header__catch {
    padding-bottom: 0;
  }
}

.common-header__right {
  padding-bottom: 15px;
}

@media (max-width: 1024px) {
  .common-header__right {
    display: none;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .common-header__right {
    display: none;
  }
}

.common-header__login {
  font-size: 16px;
  font-size: 1em;
  display: block;
  width: 164px;
  padding: 12px 0 13px;
  border: 1px solid #002B60;
  line-height: 1;
  border-radius: 22px;
  text-align: center;
  color: #002B60;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

.common-header__login:hover {
  color: white;
  background: #002B60;
}

/*  layout > footer
============================================================================================================ */
.common-footer {
  line-height: 1;
  text-align: right;
  padding: 0 10px 10px;
}

@media (max-width: 767px) {
  .common-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-line-pack: normal;
        align-content: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 4vw 3.33333vw 2.66667vw;
  }
}

.common-footer__inner {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .common-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-line-pack: normal;
        align-content: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
}

.common-footer__copyright {
  font-size: 11px;
  font-size: 0.6875em;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .common-footer__copyright {
    font-size: 11px;
    font-size: 2.93333vw;
    margin-bottom: 0;
  }
}

.common-footer__thanks {
  font-size: 7px;
  font-size: 0.4375em;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .common-footer__thanks {
    font-size: 8px;
    font-size: 2.13333vw;
    margin-bottom: 1.33333vw;
  }
}

.common-footer__thanks:last-of-type {
  margin-bottom: 0;
}

/*  layout > page-top
============================================================================================================ */
.common__page_top {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 10;
}

@media (max-width: 767px) {
  .common__page_top {
    bottom: 10.66667vw;
    right: auto;
    left: 20px;
  }
}

.common__page_top--wrap {
  position: relative;
  width: 74px;
  height: 70px;
}

@media (max-width: 767px) {
  .common__page_top--wrap {
    width: 12.66667vw;
    height: 12.13333vw;
  }
}

.fixed__btn {
  -webkit-transform: translateX(180%);
          transform: translateX(180%);
  -webkit-transition: 1s;
  transition: 1s;
}

.fixed__btn.view {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: 1s;
  transition: 1s;
}

@media (max-width: 767px) {
  .fixed__btn {
    -webkit-transform: translateX(-180%);
            transform: translateX(-180%);
  }
}

/*  layout > container
============================================================================================================ */
.l-container--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .l-container--1000 {
    max-width: 95%;
  }
}

@media (max-width: 767px) {
  .l-container--1000 {
    max-width: 92vw;
  }
}

/*  layout > top
============================================================================================================ */
.top-kv {
  position: relative;
  max-width: 1400px;
  padding-top: 50px;
  margin: 0 auto 106px;
}

@media (max-width: 767px) {
  .top-kv {
    padding-top: 0;
    margin-bottom: 4vw;
  }
}

.top-kv__img {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
}

.top-kv__img img {
  width: 100%;
}

.top-kv__info {
  width: 100%;
  position: absolute;
  top: calc(100% - 30px);
  left: 0;
  z-index: 1;
}

@media (max-width: 1024px) {
  .top-kv__info {
    position: static;
  }
}

@media (max-width: 767px) {
  .top-kv__info {
    position: static;
  }
}

.top-kv__heading {
  max-width: 1041px;
  width: 72.29167%;
  padding: 13px 46px;
  margin-bottom: 10px;
  line-height: 1;
  background: #F8BB31;
}

@media (max-width: 1024px) {
  .top-kv__heading.first {
    width: 89.33333vw;
    padding: 1.06667vw 16.66667vw 0.93333vw 8.66667vw;
    margin-bottom: 1.6vw;
  }
}

@media (max-width: 1024px) {
  .top-kv__heading.second {
    width: 89.33333vw;
    padding: 1.06667vw 8.13333vw 0.93333vw 22.13333vw;
    margin-left: auto;
    margin-bottom: 1.73333vw;
  }
}

.top-kv__txt {
  font-size: 24px;
  font-size: 1.5em;
  line-height: 1;
  margin-left: 84px;
}

@media (max-width: 1024px) {
  .top-kv__txt {
    font-size: 12px;
    font-size: 3.2vw;
    text-align: right;
    padding-right: 1.6vw;
    margin-left: auto;
    margin-bottom: 1px;
  }
}

/* layout > pop-up
============================================================================== */
.common-popup {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 43, 96, 0.78);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .common-popup {
    display: block;
  }
}

.common-popup__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: white;
}

.common-popup__txt {
  font-size: 15px;
  font-size: 4vw;
  margin-bottom: 1em;
}

.common-popup__close {
  font-size: 12px;
  font-size: 3.2vw;
}

/*  layout > top
============================================================================================================ */
/* module
============================================================================ */
/* module > btn & cta
============================================================================ */
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  border: 0;
  padding: 5px 10px;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
}

input[type="text"]:placeholder-shown, input[type="email"]:placeholder-shown, select:placeholder-shown, textarea:placeholder-shown {
  color: #aaa;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}

input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}

select {
  height: 39px;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
  position: relative;
  background-image: url("img/common/arw_select.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}

input[type="radio"] {
  vertical-align: 0.15em;
  margin-right: 5px;
}

[data-scroll] {
  -webkit-transition: 1s;
  transition: 1s;
}

[data-scroll="in"] {
  opacity: 1;
}

/*  module > breadcrumbs
============================================================================================================ */
/*# sourceMappingURL=style.css.map */