/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/* font settings -------------------- */
/* headでの読み込みが安定しない場合はこちらを使う */
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Urbanist:wght@100;300;400;700&display=swap');*/

/*CSS カスタムプロパティ (変数) */
:root{
  /*カラー設定*/
  --c-deep-blue: #061938;
  --c-blue: #002C6C;
  --c-orange: #E56B00;
  --c-gray: #848D9E;
  --c-lite-gray: #F7F7F7;
  --c-white: #FFFFFF;
  
  /*テキストカラー設定*/
  --txt-color: #000000;
  --txt-color-deep-blue: #061938;
  --txt-color-gray: rgba(6,25,65,0.3); /*#9298A2*/
  --txt-color-white: #FFFFFF;
  
  /*フォント別ウェイト設定*/
  /*Noto Sans Japanese*/
  --noto-regular: 400;
  --noto-mid: 500;
  --noto-bold: 700;
  --noto-black: 900;
  /*Urbanist*/
  --urban-thin: 100;
  --urban-light: 300;
  --urban-regular: 400;
  --urban-bold: 700;
  
  /*ボーダーカラー設定*/
  --border-color: rgba(6,25,65,0.3);
  --border-color-white: rgba(255,255,255,0.3);
}
@media only screen and (min-width: 981px) {
  :root{
    /*PC変更ある場合は記載*/
  }
}

html {
  color: var(--txt-color);
  font-size: 62.5%; /* 1rem = 10px */
  line-height: 2;
}

body {
  font-family: 'Urbanist','Noto Sans JP', -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial, メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  overflow-x: hidden;
}

@media only screen and (min-width: 981px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* 全ての要素にBorder-boxを適用する */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ---------------------------------
  Common styles
  mobileファーストレスポンシブの設定で記述します
  --------------------------------- */

/* PC SP control --------------------------------- */
.pc_br {
  display: none;
}
.sp_br {
  display: inline;
}
.pc_img {
  display: none;
}
.sp_img {
  display: inline-block;
}
.sp_b_elem {
  display: block;
}
.pc_b_elem {
  display: none;
}
.pc_flex {
  display: none;
}

@media only screen and (min-width: 981px) {
  .pc_br {
    display: inline;
  }
  .sp_br {
    display: none;
  }
  .pc_img {
    display: inline-block;
  }
  .sp_img {
    display: none;
  }
  .sp_b_elem {
    display: none !important;
  }
  .pc_b_elem {
    display: block;
  }
  .pc_flex {
    display: flex;
  }
}


/* ---------------------------------
  wrapper style
  ---------------------------------*/
.wrapper {
  width: calc(100% - 32px);
  margin:0 auto;
  max-width: calc(1280px + 80px);
}
.pc_wrapper {
  width: 100%;
  margin:0 auto;
  max-width: calc(1280px + 80px);
}
.sp_wrapper {
  width: calc(100% - 32px);
  margin:0 auto;
  max-width: calc(1280px + 80px);
}

@media only screen and (min-width: 981px) {
  .wrapper {
    width: calc(100% - 80px);
  }
  .pc_wrapper {
    width: calc(100% - 80px);
  }
  .sp_wrapper {
    width: 100%;
  }
}


/* ---------------------------------
  layout style
  ---------------------------------*/
.layout {
  display:-ms-flexbox;
  display:flex;
  
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content:center;
  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items:center;
}
ul.layout {
  padding: 0; /*リスト要素に使われた時に初期設定paddingをなくす*/
}

.layout > *,
.layout.one_half > *,
.layout.one_third > *,
.layout.two_column > *{
  width: 100%;
}

.layout.one_quarter > *{
  width: 50%;
}

.esc_flex {
  display: inline;
}

@media only screen and (min-width: 981px) {
  .layout.one_half,
  .layout.one_third {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
  }
  .layout.one_half > * {
    width: 50%;
  }
  .layout.one_third > * {
    width: 33.3%;
  }
  .layout.two_column {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
      
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items:flex-start;
  }
  .layout.two_column > .img_box {
    width: 445px;
  }
  .layout.two_column > .contents_box {
    width: calc(100% - 445px - 140px);
  }
  .layout.one_quarter {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
  .layout.one_quarter > * {
    width: 25%;
  }
  
}

/* ---------------------------------
  appearance style
  
  利用頻度の高い特定の見た目を与える時に、
  appearanceクラスにまとめます。
  ---------------------------------*/
.appearance,
.appearance > * {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*カードスタイル表示設定------------
  
layoutとの併用して利用可能
*/

/**/
.appearance.bg_band {
  background-color: var(--c-lite-gray);
  padding-top: 40px;
}
.appearance.bg_band > .wrapper {
  margin: 0 auto;
  padding-bottom: 64px;
}
.appearance.bg_band .contents_box {
  margin-bottom: -32px;
}
.appearance.bg_band .img_box_wrapper {
  position: relative;
  bottom: -64px;
  z-index: 10;
}
@media only screen and (min-width: 981px) {
  .appearance.bg_band .layout.h_box {
    justify-content : space-between;
    align-items: flex-start;
  }
  .appearance.bg_band .img_box_wrapper {
    width: 420px;
    bottom: auto;
  }
  .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    position: absolute;
    width: inherit;
    top: -135px;
  }
  .appearance.bg_band .contents_box {
    width: calc(100% - 420px - 75px);
  }
}
@media only screen and (min-width: 1185px) {
  .appearance.bg_band .img_box_wrapper {
    width: 511px;
  }
  .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    top: -270px;
  }
  .appearance.bg_band .contents_box {
    width: calc(100% - 511px - 129px);
  }
}

/**/
.appearance.asterisk_list > * {
  list-style-type: none;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.appearance.asterisk_list > *:before {
  display: inline;
  content: "※";
  margin-right: 0.2em;
}

/**/
.appearance.img_list {
  list-style: none;
}
.appearance.img_list > * {
  margin: 0 0 56px 0;
  text-align: left;
}
.appearance.img_list > *:last-child {
  margin-bottom: 0;
}
.appearance.img_list.media > *:last-child {
  margin-bottom: 56px;
}
.appearance.img_list .layout.v_box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.img_list .img_box {}
.appearance.img_list .contents_box {
  margin-bottom: 32px;
}
.appearance.img_list .contents_box > h3 {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.5;
  margin: 24px 0;
  color: var(--txt-color-deep-blue);
}
.appearance.img_list .contents_box > p {
  margin: 0;
}
.appearance.img_list .contents_box > h3.voice_title {
  margin: 24px 0 16px 0;
}
.appearance.img_list .contents_box > h3.media_title {
  margin: 16px 0;
}
.appearance.img_list .contents_box > p.staff,
.appearance.img_list .contents_box > time.media_time {
  display: block;
  margin: 16px 0;
  min-height: 0px;
  color: var(--txt-color-gray);
  line-height: 1;
}
.appearance.img_list .contents_box > time.media_time {
  letter-spacing: 0.04em;
}
.appearance.img_list .contents_box > p.staff::after {
  content: "担当者";
  margin-left: 0.4em;
}
.appearance.img_list .button {
  max-width: 73%;
}
.appearance.img_list .layout.h_box > .contents_box  {
  margin-bottom: 0;
}
.appearance.img_list .contents_box > h3.media_title {
  margin-bottom: 0;
}
.appearance.img_list.page_media {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.img_list.page_media .contents_box {
  margin-bottom: 0;
}
.appearance.img_list.page_media .contents_box > time.media_time {
  margin-top: 32px;
}
.appearance.img_list.page_media .contents_box > h3.media_title {
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (min-width: 981px) {
  .layout.appearance.img_list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
    align-content: flex-start;
    
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -50px;
  }
  .appearance.img_list > *,
  .appearance.img_list > *:last-child {
    margin: 28px 24px;
  }
  .appearance.img_list.media > * {
    margin: 50px 0;
  }
  .appearance.img_list.page_media > * {
    margin: 0 24px 50px 24px;
  }
  .layout.one_third.appearance.img_list > * {
    max-width: calc( 33% - 48px );
  }
  .appearance.img_list .layout.v_box {
    align-content: space-between;
  }
  .appearance.img_list .contents_box > h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .appearance.img_list .contents_box > p {
    min-height: 104px;
  }
  .appearance.img_list .layout.h_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    
    justify-content: space-between;
  }
  .appearance.img_list .layout.h_box .img_box {
    width: 318px;
  }
  .appearance.img_list .layout.h_box .contents_box  {
    width: calc(100% - 348px);
    margin-bottom: 0;
  }
  .appearance.img_list .contents_box > time.media_time {
    margin-top: 0;
  }
  .appearance.img_list .contents_box > h3.media_title {
    margin-bottom: 0;
  }
  .appearance.img_list .button {
    max-width: 250px;
  }
}

/**/
.appearance.count_img_list {
  list-style: none;
  counter-reset: num 0;
}
.appearance.count_img_list > * {
  margin: 0 0 56px 0;
  text-align: left;
}
.appearance.count_img_list .contents_box > h3 {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.5;
  margin: 24px 0;
  color: var(--txt-color-deep-blue);
}
.appearance.count_img_list > li .counter {
  text-align: left;
  width: 66px;
  padding-right: 16px;
}
.appearance.count_img_list > li .counter::after {
  display: block;
  width: 50px;
  counter-increment: num;
  content: counter(num);
  font-size: 40px;
  font-size: 4.0rem;
  font-weight: var(--urban-light);
  line-height: 1;
  text-align: center;
}
.appearance.count_img_list li:nth-child(-n + 9) span.counter::after {
  content: "0"counter(num);
}
.appearance.count_img_list > li .title {
  width: calc(100% - 66px);
  margin: 0px;
  padding-left: 16px;
  border-left: solid 1px var(--border-color);
  min-height: 54px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 981px) {
  .appearance.count_img_list .contents_box > h3 {
    font-size: 24px;
    font-size: 2.4rem;
    margin: 0 0 40px 0;
  }
  .appearance.count_img_list > li .counter {
    width: 92px;
    padding-right: 32px;
  }
  .appearance.count_img_list > li .counter::after {
    width: 62px;
    font-size: 50px;
    font-size: 5.0rem;
  }
  .appearance.count_img_list > li .title {
    width: calc(100% - 92px);
    padding-left: 32px;
  }
  
  .appearance.count_img_list > li.layout.h_box {
    justify-content : space-between;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 100px;
  }
  .appearance.count_img_list > li.layout.h_box.reverse {
    justify-content : space-between;
    flex-direction:row-reverse;
  }
  .appearance.count_img_list > li.layout.h_box .img_box {
    max-width: 320px;
  }
  .appearance.count_img_list > li.layout.h_box .contents_box {
    width: calc(100% - 320px - 80px);
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1185px) {
  .appearance.count_img_list > li.layout.h_box .img_box {
    max-width: 450px;
  }
  .appearance.count_img_list > li.layout.h_box .contents_box {
    width: calc(100% - 480px - 80px);
  }
}
/*----------------*/
.appearance.count_box_list {
  counter-reset: num 0;
  align-items: stretch;
  margin-right: -8px;
  margin-left: -8px;
}
.appearance.count_box_list > li {
  margin: 0 8px 16px 8px;
  padding: 16px;
  background-color: var(--c-lite-gray);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-bold);
  color: var(--txt-color-deep-blue);
  line-height: 1.5;
  align-items: center;
  align-content: stretch;
}
.appearance.count_box_list > li .counter {
  color: var(--txt-color-gray);
  text-align: left;
  width: 52px;
  padding-right: 16px;
}
.appearance.count_box_list > li .counter::before {
  display: block;
  width: 36px;
  content: "課題";
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 8px;
}
.appearance.count_box_list > li .counter::after {
  display: block;
  width: 36px;
  counter-increment: num;
  content: counter(num);
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: var(--urban-light);
  line-height: 1;
  text-align: center;
}
.appearance.count_box_list li:nth-child(-n + 9) div.counter::after {
  content: "0"counter(num);
}
.appearance.count_box_list > li p {
  width: calc(100% - 56px);
  margin: 0px;
  padding-left: 16px;
  border-left: solid 1px var(--border-color);
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 981px) {
  .appearance.count_box_list.one_half > li {
    width: calc(50% - 16px);
    font-size: 18px;
    font-size: 1.8rem;
    padding: 25px 30px;
  }
  .appearance.count_box_list > li .counter {
    width: 56px;
    padding-right: 20px;
  }
  .appearance.count_box_list > li p {
    padding-left: 20px;
  }
}

/*----------------*/
.appearance.count_img_list {
  list-style: none;
}

.appearance.count_img_list .img_box {
  border: solid 1px var(--border-color);
}

@media only screen and (min-width: 981px) {
  .layout.appearance.count_img_list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    
    margin-left: -24px;
    margin-right: -24px;
  }
  .appearance.count_img_list > * {
    margin: 28px 24px;
  }
}

/*----------------*/
.appearance.checkbox_list > li {
  margin-bottom: 16px;
  padding: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-bold);
  color: var(--txt-color-deep-blue);
  line-height: 1.5;
  align-items: center;
  align-content: stretch;
}
.appearance.checkbox_list > li:last-child {
  margin-bottom: 0;
}
.appearance.checkbox_list > li > p {
  margin: 0;
  padding-left: 16px;
  width: calc(100% - 18px);
}
.appearance.checkbox_list > li > .checkbox {
  content: url(../img/icon_check.svg);
  display: block;
  width: 18px;
}
.appearance.checkbox_list {
  margin-bottom: 50px;
}

@media only screen and (min-width: 981px) {
  .appearance.checkbox_list > li {
    width: calc(50% - 8px);
    margin-bottom: 0;
    min-height: 109px;
    font-size: 2rem;
    padding: 20px 40px;
  }
  .appearance.checkbox_list > li:nth-child(even) {
    margin-left: 8px;
  }
  .appearance.checkbox_list > li:nth-child(odd) {
    margin-right: 8px;
  }
  .appearance.checkbox_list > li:nth-child(odd):last-child {
    margin-right: 0;
  }
  .appearance.checkbox_list > li:nth-child(n + 3) {
    margin-top: 16px;
  }
  .appearance.checkbox_list > li > .checkbox {
    width: 22px;
  }
  .appearance.checkbox_list > li > p {
    padding-left: 30px;
    width: calc(100% - 22px);
  }
  .appearance.checkbox_list {
    margin-bottom: 65px;
  }
}

/*----------------*/
.appearance.icon_list li {
  padding: 16px;
  margin-bottom: 20px;
}
.appearance.icon_list li:last-child {
  margin-bottom: 0;
}
.appearance.icon_list .img_box {
  border: none;
  width: 58px;
  height: 76px;
  background-color: var(--c-white);
}
.appearance.icon_list .img_box .inner_img_box {
  width: inherit;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appearance.icon_list .img_box .inner_img_box img {
  width: 30px;
}
.appearance.icon_list .img_box .inner_img_box img.w40 {
  width: 40px;
}
.appearance.icon_list h3 {
  margin-top: 0;
}
.appearance.icon_list .title {
  width: calc(100% - 58px);
  padding-left: 16px;
  line-height: 1.5;
  font-size: 2rem;
  color: var(--txt-color-deep-blue);
  margin: 0;
}
.appearance.icon_list p {
  margin: 24px 0 0;
}
@media only screen and (min-width: 981px) {
  .appearance.icon_list {
    margin-top: 50px;
  }
  .appearance.icon_list li {
    padding: 60px 80px;
  }
  .appearance.icon_list .img_box {
    width: 170px;
    height: 170px;
  }
  .appearance.icon_list .img_box .inner_img_box img,
  .appearance.icon_list .img_box .inner_img_box img.w40 {
    width: unset;
  }
  .appearance.icon_list .contents_box {
    width: calc(100% - 170px);
    padding-left: 60px;
  }
  .appearance.icon_list .title {
    width: 100%;
    padding-left: unset;
    font-size: 2.4rem;
  }
}

/*----------------*/
.appearance.table .table_head {
  background-color: var(--c-deep-blue);
  color: var(--txt-color-white);
  font-weight: var( --urban-bold);
  line-height: 1.5em;
  font-size: 2rem;
}
.appearance.table .table_head {
  padding: 24px 0;
}
.appearance.table .table_body {
  padding: 36.5px 0;
}
.appearance.table .table_body.text {
  padding: 32px 0;
}
.appearance.table .table_body p {
  margin: 0;
  line-height: 1.5;
}
.appearance.table .table_body strong {
  font-size: 3.2rem;
  font-weight: var( --urban-bold);
  margin: 0 8px;
}
.appearance.table .table_body small {
  font-size: 1.4rem;
  font-weight: var( --urban-bold);
}
.appearance.table {
  text-align: center;
  font-size: 1.6rem;
}
.appearance.table li:first-child {
  margin-bottom: 16px;
}

@media only screen and (min-width: 981px) {
  .appearance.table .table_head {
    background-color: var(--c-deep-blue);
    color: var(--txt-color-white);
    padding: 30px 0;
    font-weight: var( --urban-bold);
    line-height: 1.5em;
    font-size: 2.4rem;
  }
  .appearance.table .table_body, .appearance.table .table_body.text {
    padding: 55px 0;
    font-size: 2.4rem;
  }
  .appearance.table .table_body p {
    height: 40px;
    line-height: 40px;
  }
  .appearance.table .table_body strong {
    font-size: 4rem;
  }
  .appearance.table .table_body small {
    font-size: 1.6rem;
  }
  .appearance.table {
    justify-content: space-between;
  }
  .appearance.table li {
    max-width: calc(50% - 30px);
  }
  .appearance.table li:first-child {
    margin-bottom: unset;
  }
}

/*----------------*/
.appearance .line_box {
  text-align: center;
  border: 1px solid #BDC2CA;
}
.appearance .line_box > .img_box {
  max-width: 400px;
  margin: 0 auto;
  border: none;
}
.appearance.to_line_box {
  position: relative;
  color: var(--txt-color-deep-blue);
}
.appearance.to_line_box > img {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 51px;
}

#worries .line_box {
  padding: 32px 0;
}
#worries .line_box h3 {
  margin: 18px 0;
  font-size: 2rem;
  font-weight: var(--urban-bold);
  line-height: 29px;
}
#worries .line_box p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: var(--urban-regular);
}

@media only screen and (min-width: 981px) {
  #worries .line_box {
    padding: 40px 0;
  }
  #worries .line_box h3 {
    margin: 20px 0;
    font-size: 3.2rem;
    line-height: 1;
  }
  #worries .line_box p {
    margin: 20px 0;
    font-size: 2rem;
  }
}

/*----------------*/
.appearance.gray_boxes li {
  background-color: var(--c-lite-gray);
}

/*----------------*/
.appearance.count_flow_list {
  counter-reset: num 0;
}
.appearance.count_flow_list li {
  background-color: var(--c-lite-gray);
  padding: 16px;
  margin-bottom: 20px;
}
.appearance.count_flow_list li:nth-child(-n + 9) .counter::after {
  content: "0"counter(num);
}
.appearance.count_flow_list > li .counter {
  width: 37px;
  margin-right: 16px;
  letter-spacing: 1.6px;
}
.appearance.count_flow_list > li .counter::after {
  display: block;
  counter-increment: num;
  content: counter(num);
  font-size: 3rem;
  font-weight: var(--urban-light);
  line-height: 1;
  text-align: center;
  color: var(--txt-color-gray);
}
.appearance.count_flow_list .contents_box h3 {
  margin-top: 0;
}
.appearance.count_flow_list .contents_box .title {
  width: calc(100% - 53px);
  line-height: 34px;
  margin: 0;
  border-left: 1px solid var(--border-color);
  padding-left: 16px;
  color: var(--txt-color-deep-blue);
  font-size: 1.6rem;
}
.appearance.count_flow_list li p {
  margin: 24px 0 0;
}

@media only screen and (min-width: 981px) {
  .appearance.count_flow_list {
    counter-reset: num 0;
  }
  .appearance.count_flow_list li {
    background-color: var(--c-lite-gray);
    padding: 30px;
    margin-bottom: 20px;
  }
  .appearance.count_flow_list li:nth-child(-n + 9) .counter::after {
    content: "0"counter(num);
  }
  .appearance.count_flow_list > li .counter {
    width: 57px;
    margin-right: 40px;
  }
  .appearance.count_flow_list > li .counter::after {
    font-size: 5rem;
  }
  .appearance.count_flow_list .contents_box {
    border-left: solid 1px var(--border-color);
    width: calc(100% - 110px);
    padding-left: 40px;
  }
  .appearance.count_flow_list .contents_box .title {
    width: 100%;
    line-height: 1;
    border: none;
    padding-left: unset;
    font-size: 2rem;
  }
}

.appearance.std_dlist > dt {
  float: left;
  clear: left;
}
.appearance.std_dlist > dt::after {
  content: ":";
  margin: 0 0.25em;
}
.appearance.std_dlist > dd {
  padding-left: 4em;
}
.appearance.std_list {
  padding-left: 0.9em;
}
.appearance.std_list > li {
  list-style: disc;
}

.appearance.std_olist {
  counter-reset: num-count;
  padding-left: 25px;
}
.appearance.std_olist > li {
  position: relative;
}
.appearance.std_olist > li:before {
  content: counter(num-count);
  counter-increment: num-count;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  color: var(--txt-color);
  font-size: 85%;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: -25px;
}
.appearance.asterisk_olist {
  list-style: none;
  counter-reset: asterisk-count;
  padding-left: 1.4em;
  margin: 20px 0;
}
.appearance.asterisk_olist > li {
  position: relative;
}
.appearance.asterisk_olist > li:before {
  content: "*" counter(asterisk-count);
  counter-increment: asterisk-count;
  position: absolute;
  left: -25px;
}

.appearance.nested_olist {
  padding-left: 1.4em;
}
.appearance.nested_olist > li {
  list-style: decimal;
  margin: 20px 0;
}
.appearance.nested_olist.second {
  list-style: none;
  counter-reset: second;
  padding-left: 1.4em;
}
.appearance.nested_olist.second > li {
  list-style: none;
  position: relative;
  margin: 20px 0;
}
.appearance.nested_olist.second > li:before {
  content: "(" counter(second) ")";
  counter-increment: second;
  position: absolute;
  left: -25px;
}
.appearance.nested_olist.third {
  list-style: none;
  counter-reset: third;
  padding-left: 1.3em;
  margin: 20px 0;
}
.appearance.nested_olist.third > li {
  list-style: none;
  position: relative;
  margin: 0;
}
.appearance.nested_olist.third > li:before {
  content: counter(third);
  counter-increment: third;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  color: var(--txt-color);
  font-size: 70%;
  line-height: 1;
  position: absolute;
  top: 0.6em;
  left: -23px;
}

@media only screen and (min-width: 981px) {
  .appearance.std_olist {
    padding-left: 30px;
  }
  .appearance.std_olist > li:before {
    height: 20px;
    width: 20px;
    top: 8px;
    left: -30px;
  }
  
  .appearance.nested_olist.third > li:before {
    top: 0.8em;
    left: -23px;
  }
}

/* ---------------------------------
  button style
  ---------------------------------*/
.button {
  display: inline-block;
  width: 100%;
  background-color: var(--c-deep-blue);
  border: solid 2px var(--c-deep-blue);
  line-height: 1;
  padding: 20px 30px;
  position: relative;
  
  color: var(--txt-color-white);
  text-decoration: none;
  text-align: left;
  
  transition: 0.5s;
}
.button::after {
  content: "";
  display: block;
  width: 46px;
  height: 6px;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
.button:hover {
  background-color: var(--c-white);
  color: var(--txt-color-deep-blue);
  text-decoration: none;
}
.button:hover::after {
  background-image: url("../img/icon_arrow-db.svg");
}

/* ---------------------------------
  img style
  
  画像を入れる場合、divに以下のクラスを適用するなどして、利用してください。
  ---------------------------------*/
.img_box,
.figure_box {
  width: 100%;
  height: auto;
  
  border: solid 1px var(--border-color);
}

.img_box img {
  width: 100%;
  height: auto;
}

/*
  比率の設定
  他にもパターンを加える場合は、同じ要領で追記してください。
*/
/*1:1*/
.square:before{
  content: "";
  display: block;
  padding-top: 100%;
}
/*3:2*/
.hvga:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 2 / 3 );
}
/*4:3*/
.sd:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 3 / 4 );
}
/*16:9*/
.hd:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 9 / 16 );
}

@media only screen and (min-width: 981px) {
  /*
    比率の設定 pcのみ
    他にもパターンを加える場合は、同じ要領で追記してください。
  */
  /*1:1*/
  .pc_square:before{
    content: "";
    display: block;
    padding-top: 100%;
  }
  /*3:2*/
  .pc_hvga:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 2 / 3 );
  } 
  /*4:3*/
  .pc_sd:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 3 / 4 );
  }
  /*16:9*/
  .pc_hd:before{
    content: "";
    display: block;
    padding-top: calc( 100% * 9 / 16 );
  }
}

/*
  影の装飾
  比率設定と併用できません。
*/
.img_box.shadow {
  /*background-color: #cccccc;*/
  position: relative;
  width: calc(100% - 24px);
  margin-left: 24px;
  margin-bottom: 22px;
}
.img_box.shadow::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-deep-blue);
  z-index: -2;
  top: 24px;
  right: 22px;
}
.img_box.shadow::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  z-index: -1;
  top: 8px;
  right: 8px;
}
@media only screen and (min-width: 981px) {
  .img_box.shadow {
    width: calc(100% - 30px);
    margin-left: 30px;
    margin-bottom: 32px;
  }
  .img_box.shadow::after {
    width: 100%;
    height: calc(100% - 20px);
    top: 52px;
    right: 30px;
  }
  .img_box.shadow::before {
    width: 100%;
    height: 100%;
    top: 10px;
    right: 10px;
  }
}

/* ---------------------------------
  header style
  ---------------------------------*/

/* ハンバーガーアイコン */
#hamburger {
  display: none;
}
.menu_trigger,
.menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu_trigger {
  cursor: pointer;
  width: 64px;
  height: 64px;
  padding: 23px 20px;
  background-color: var(--c-lite-gray);
}
.menu_trigger_box {
  position: relative;
  width: 24px;
  height: 19px;
}
.menu_trigger .menu_trigger_box > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-deep-blue);
}
.menu_trigger .menu_trigger_box > span:nth-of-type(1) {
  top: 0;
}
.menu_trigger .menu_trigger_box > span:nth-of-type(2) {
  width: calc(100% - 4px);
  top: 9px;
}
.menu_trigger .menu_trigger_box > span:nth-of-type(3) {
  width: calc(100% - 8px);
  bottom: 0;
}
/* ハンバーガーアイコンのアニメーション調整は以下を調整する */
#hamburger:checked + .menu_trigger .menu_trigger_box > span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
#hamburger:checked +  .menu_trigger .menu_trigger_box > span:nth-of-type(2) {
  opacity: 0;
}
#hamburger:checked +  .menu_trigger .menu_trigger_box > span:nth-of-type(3) {
  width: 100%;
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/* header レイアウト */
#header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--c-white);
}
#header .img_box.logo {
  display: block;
  width: 134px;
  height: 64px;
  padding: 17px 16px;
  transition: all 0.5s;
  border: none;
}
#header .nav_box {
  width: calc(100% - 134px);
  transition: all 0.5s;
}
#header .nav_box .menu_trigger {
  float: right;
  position: relative;
  z-index: 60;
}

.layout.menu_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu_list {
  display: none;
}
.menu_list a {
  line-height: 1;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--txt-color-white);
  padding: 16px 0;
}
#header .menu_list li .menu_list_txt {
  display: block;
  font-weight: var(--noto-bold);
  color: var(--txt-color-white);
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 16px;
  padding-top: 16px;
}
.menu_list.child {
  border-left: solid 1px var(--border-color-white);
  list-style: none;
  padding-left: 32px;
  margin-bottom: 16px;
}
.menu_list.child a {
  font-weight: normal;
  padding: 16px 0;
  width: inherit;
}
.menu_list.child li:first-child a {
  padding-top: 0;
}
.menu_list.child li:last-child a {
  padding-bottom: 0;
}

.layout.menu_list_btn {
  border-top: solid 1px var(--border-color-white);
  margin-top: 16px;
  padding-top: 32px;
  list-style: none;
}
.layout.menu_list_btn li:first-child {
  padding-bottom: 16px;
}
.layout.menu_list_btn li .button {
  font-size: 14px;
  ont-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-size: 24px auto;
  padding: 20px 30px 20px 62px;
}
.layout.menu_list_btn li .button.icon_mail {
  background-image: url("../img/icon_mail.svg");
}
.layout.menu_list_btn li .button.icon_doc {
  background-image: url("../img/icon_document.svg");
}
.layout.menu_list_btn li .button.icon_mail:hover {
  background-image: url("../img/icon_mail-db.svg");
}
.layout.menu_list_btn li .button.icon_doc:hover {
  background-image: url("../img/icon_document-db.svg");
}


.layout.sp_menu_btn {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 128px;
  float: right;
}
.layout.sp_menu_btn > li {
  width: 64px;
}
.layout.sp_menu_btn > li .button {
  width: 64px;
  height: 64px;
  padding: 41px 1px 9px 1px;
  font-size: 8px;
  font-size: 0.8rem;
  text-align: center;
  white-space: nowrap;
}
.layout.sp_menu_btn > li .button.icon_mail {
  background-image: url("../img/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: top 18px center;
  background-size: 16px auto;
}
.layout.sp_menu_btn > li .button.icon_doc {
  background-image: url("../img/icon_document.svg");
  background-repeat: no-repeat;
  background-position: top 16px center;
  background-size: 16px auto;
  background-color: var(--c-gray);
  border-color: var(--c-gray);
}
.layout.sp_menu_btn > li .button.icon_mail:hover {
  background-image: url("../img/icon_mail-db.svg");
  color: var(--txt-color-deep-blue);
}
.layout.sp_menu_btn > li .button.icon_doc:hover {
  background-image: url("../img/icon_document-db.svg");
  color: var(--txt-color-deep-blue);
  background-color: var(--c-white);
  border-color: var(--c-deep-blue);
  }

.layout.sp_menu_btn > li .button::after {
  display: none;
}

#hamburger + .menu_trigger + .menu_list {
  transition: all 0.5s;
  transform: translate(100vw);
  position: absolute;
  top:0;
  right: 0px; /*少しずらすなら値を設定*/
  z-index: 50;
  display: block;
  box-sizing: border-box;
  padding: calc(50vh - 582px * 0.5) calc(50vw - 270px * 0.5);
  opacity: 0;
  background-color: rgba(255,150,57,0);
  height: 0;
  width: 100vw;
}

#hamburger:checked + .menu_trigger + .menu_list {
  transform: translate(0);
  height: 100vh;
  opacity: 1;
  background-color: var(--c-blue);
  border-bottom-left-radius: 0;
  overflow-y: auto;
}

#hamburger:checked + .menu_trigger + .menu_list .menu_list.child {
  display: block;
}

@media only screen and (min-width: 981px) {
  #header {
    min-width: 810px;
  }
  #header .img_box.logo {
    width: 224px;
    height: 88px;
    padding: 20px 30px;
  }
  #header .nav_box {
    width: calc(100% - 224px);
    min-width: 525px;
  }
  #header .nav_box .menu_trigger {
    display: none;
  }
  .layout.menu_list,
  #hamburger + .menu_trigger + .menu_list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    
    position: relative;
    background-color: transparent;
    height: auto;
    width: auto;
  }
  
  #header #hamburger + .menu_trigger + .menu_list {
    opacity: 1;
    right: 0px;
    transform: translate(0);
  }
  #header .menu_list.child {
    display: block;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
    width: auto;
    min-width: 230px;
    box-sizing: border-box;
    top: 56px;
    padding: 15px 30px;
    background-color: var(--c-lite-gray);
  }
  
  #header .menu_list.child > li {
    padding-left: 0;
  }
  #header .menu_list.child > li > a {
    display: inline-block;
    white-space: nowrap;
  }
  
  #header .menu_list > li:hover > .menu_list.child {
    visibility: visible;
    opacity: 1;
  }
  #header .menu_list li ul.menu_list.child li ul.menu_list.child {
    position: static;
    top:0;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
  }
  #header .menu_list a {
    color: var(--txt-color-deep-blue);
  }
  #header .menu_list a,
  #header .menu_list li .menu_list_txt {
    color: var(--txt-color-deep-blue);
    font-weight: var(--noto-bold);
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 0 12px 0;
  }
  #header .layout.menu_list > li {
    width: auto;
    display: inline-block;
    margin-right: 32px;
    position: relative;
  }
  #header .layout.menu_list > li:last-child {
    margin-right: 0;
  }
  
  #header .layout.menu_list .layout.menu_list_btn {
    width: 220px;
    height: 88px;
    list-style: none;
    padding: 0;
    margin: -1px 0 0 0;
  }
  #header .layout.menu_list .layout.menu_list_btn > li {
    width: 50%;
  }
  #header .layout.menu_list .layout.menu_list_btn > li:first-child {
    padding-bottom: 0;
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button {
    font-size: 12px;
    font-size: 1.2rem;
    color: var(--txt-color-white);
    text-align: center;
    padding: 56px 6px 16px 6px;
    background-repeat: no-repeat;
    background-size: 25px auto;
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button.icon_mail {
    background-image: url("../img/icon_mail.svg");
    background-position: top 24px center;
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button.icon_doc {
    background-image: url("../img/icon_document.svg");
    background-position: top 18px center;
    background-color: var(--c-gray);
    border-color: var(--c-gray);
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button.icon_mail:hover {
    background-image: url("../img/icon_mail-db.svg");
    color: var(--txt-color-deep-blue);
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button.icon_doc:hover {
    background-image: url("../img/icon_document-db.svg");
    color: var(--txt-color-deep-blue);
    background-color: var(--c-white);
    border-color: var(--c-deep-blue);
  }
  #header .layout.menu_list .layout.menu_list_btn > li .button::after {
    display: none;
  }
}@media only screen and (min-width: 1185px) {
  #header .layout.menu_list > li {
   margin-right: 40px;
  }
  #header .layout.menu_list .layout.menu_list_btn {
    width: 240px;
  }
}
@media only screen and (min-width: 1260px) {
  #header .layout.menu_list > li {
    margin-right: 56px;
  }
  #header .layout.menu_list .layout.menu_list_btn {
    width: 356px;
  }
}
/* ---------------------------------
  footer style
  ---------------------------------*/
#footer {
  position: relative;
}

#footer .button.back_top {
  width: 64px;
  height: 64px;
  font-size: 8px;
  font-size: 0.8rem;
  padding: 42px 8px 8px 8px;
  position: absolute;
  right: 0;
  top: -64px;
}
#footer .button.back_top:after {
  transform:rotate(-90deg);
  left: 28px;
}

#footer .footer_contact {
  background-color: var(--c-gray);
  color: var(--txt-color-white);
  padding: 56px 0;
  margin-bottom: 0;
}
#footer .footer_contact .section_title {
  margin-bottom: 32px;
}

#footer .footer_contact_list {
  list-style: none;
  margin: 0;
}
#footer .footer_contact_list > li {
  border-top: solid 1px var(--border-color-white);
  padding: 32px 0;
  text-align: left;
}
#footer .footer_contact_list > li:last-child {
  padding-bottom: 0;
}
#footer .footer_contact_list .footer_contact_title {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: var(--noto-bold);
  line-height: 1;
  margin: 0 0 24px 0;
}
#footer .footer_contact_list .footer_contact_title.icon_doc {
  background-image: url("../img/icon_document.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px auto;
  height: 28px;
  padding: 5px 0 5px 40px;
}
#footer .footer_contact_list .footer_contact_title.icon_mail {
  background-image: url("../img/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px auto;
  height: 28px;
  padding: 5px 0 5px 40px;
}
#footer .footer_contact_list .footer_contact_txt {
  margin: 0 0 24px 0;
}

#footer .footer_nav {
  background-color: var(--c-lite-gray);
  margin-bottom: 0;
}
#footer .footer_nav .img_box {
  background-color: var(--c-white);
  padding: 48px 0;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  text-align: center;
  border: none;
}
#footer .footer_nav .img_box img {
  max-width: 92px;
}
#footer .footer_nav_list {
  width: 180px;
  margin: 0 auto;
  padding: 48px 0;
  list-style: none;
}
#footer .footer_nav_list li {
  margin: 0;
  padding: 10px 0;
  line-height: 1;
}
#footer .footer_nav_list > li ul {
  list-style: none;
  padding-left: 0;
}
#footer .footer_nav_list a,
#footer .footer_nav_list .footer_nav_title {
  color: var(--txt-color-deep-blue);
  text-align: left;
  display: block;
  width: inherit;
  width: 100%;
}
#footer .footer_nav_list .footer_nav_title {
  font-weight: var(--noto-bold);
  margin-bottom: 20px;
}
#footer .footer_nav_list > li ul.footer_sub_nav_list {
  border-left: solid 1px var(--border-color);
  list-style: none;
  padding-left: 32px;
}
#footer .footer_sub_nav > li {}

#footer .copyright {
  background-color: var(--c-deep-blue);
  color: var(--txt-color-white);
  font-size: 10px;
  font-size: 1.0rem;
  padding: 24px 0 0 0;
  margin-bottom: 0;
}

#footer .copyright_txt {
  order: 2;
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 16px 0;
}
#footer .copyright_link {
  order: 1;
  margin: 0;
}
#footer .copyright_link > li {
  line-height: 1;
  text-align: center;
  padding: 8px 0;
}
#footer .copyright_link > li a {
  color: var(--txt-color-white);
}

@media only screen and (min-width: 981px) {
  #footer .layout.footer_contact_list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  #footer .layout.footer_contact_list > li {
    width: 50%;
    border-top: none;
    border-left: solid 1px var(--border-color-white);
    padding: 0 70px;
  }
  #footer .layout.footer_contact_list > li:last-child {
    border-right: solid 1px var(--border-color-white);
  }
  #footer .footer_nav .img_box {
    background-color: var(--c-white);
    padding: 64px 0;
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
    text-align: center;
    border: none;
  }
  #footer .layout.footer_contact_list > li.layout.v_box {
    align-content: space-between;
  }
  #footer .footer_nav .img_box img {
    max-width: 182px;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list {
    width: 100%;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: flex-start;
    justify-content: space-between;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li {
    width: auto;
    max-width: 25%;
    margin-right: 24px;
  }
  
  #footer .copyright {
    padding: 0 32px;
  }
  #footer .copyright_txt {
    order: 1;
    text-align: left;
  }
  #footer .copyright_link {
    order: 2;
    justify-content: flex-end;
  }
  #footer .copyright_link > li {
    list-style: none;
    text-align: right;
    width: auto;
    padding: 16px 0 16px 24px;
  }
}
@media only screen and (min-width: 1185px) {
  #footer {}
  
  #footer .footer_contact {
    padding: 96px 0;
  }
  
  #footer .footer_contact .layout.footer_contact_box {
  }
  #footer .footer_contact .layout.footer_contact_box > .section_title {
    width: 300px;
    margin-bottom: 0px;
  }
  .layout.footer_contact_box > .section_title .main_txt {
    font-size: 32px;
    font-size: 3.2rem;
  }
  #footer .footer_contact .layout.footer_contact_box > .section_contents {
    width: calc(100% - 300px);
  }
  #footer .layout.footer_contact_list > li {
    width: 50%;
    border-top: none;
    border-left: solid 1px var(--border-color-white);
    padding: 0 32px;
  }
  #footer .layout.footer_contact_list > li:last-child {
    border-right: solid 1px var(--border-color-white);
  }
  #footer .footer_contact_list .footer_contact_title.icon_doc {
    background-size: 30px auto;
    height: 36px;
    padding: 8px 0 8px 50px;
  }
  #footer .footer_contact_list .footer_contact_title.icon_mail {
    background-size: 28px auto;
    height: 36px;
    padding: 8px 0 8px 50px;
  }
  
  #footer .layout.footer_contents {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  
  #footer .footer_nav .layout .img_box {
    width: 387px;
    height: 387px;
    text-align: center;
    margin-left: 0px;
    margin-right: 0px;
    padding: 167px 0;
  }
  #footer .footer_nav .layout .contents_box {
    width: calc(100% - 387px);
  }
  #footer .footer_nav .layout .contents_box > .wrapper {
    margin-right: 0;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list {
    width: 100%;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li {
    width: auto;
    max-width: 25%;
    margin-right: 24px;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li:last-child {
    margin-right: 0;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li ul {
    list-style: none;
    padding-left: 0;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li ul li {
    line-height: 1.5;
  }
  #footer .footer_nav .layout .contents_box .layout.footer_nav_list > li ul.footer_sub_nav_list {
    padding-left: 32px;
  }
  
  #footer .footer_nav .img_box img {
    max-width: 182px;
  }
  #footer .footer_nav {}
  #footer .layout.footer_nav {}
  
  #footer .footer_nav > li {
    width: auto;
    margin: 0 30px 0 0;
  }
  #footer .copyright {
    padding: 0 32px;
  }
  #footer .copyright_txt {
    order: 1;
    text-align: left;
  }
  #footer .copyright_link {
    order: 2;
    justify-content: flex-end;
  }
  #footer .copyright_link > li {
    list-style: none;
    text-align: right;
    width: auto;
    padding: 16px 0 16px 24px;
  }
}
@media only screen and (min-width: 1330px) {
  #footer .footer_contact .layout.footer_contact_box > .section_title {
    width: 378px;
  }
  #footer .footer_contact .layout.footer_contact_box > .section_contents {
    width: calc(100% - 378px);
  }
  #footer .layout.footer_contact_list > li {
    padding: 0 70px;
  }
}


/* ---------------------------------
  breadcrumb style
  ---------------------------------*/
.breadcrumb_box {
  padding: 24px 0;
  margin-bottom: 32px;
  line-height: 1;
  text-align: left;
}
.breadcrumb_box .breadcrumbs {
  min-height: 20px;
  white-space: nowrap;
  overflow-x: auto;
  margin-right: -20px;
  
  font-size: 14px;
  font-size: 1.4rem;
}
.breadcrumb_box .breadcrumbs a {
  position: relative;
  padding-right: 27px;
  margin-right: 15px;
  text-decoration: none;
  font-weight: var(--noto-bold);
}
.breadcrumb_box .breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumb_box .breadcrumbs a::after {
    position: absolute;
    top: calc( 50% - 6px );
    right: 0;
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../img/icon_arrow-s.svg);
}
.breadcrumb_box .breadcrumbs .current_item {
  color: var(--txt-color-black);
  padding-right: 20px;
}
@media only screen and (min-width: 981px) {
  .breadcrumb_box {
    padding: 30px 0;
    margin-bottom: 90px;
  }
  .breadcrumb_box .breadcrumbs {
    min-height: 20px;
    white-space: nowrap;
    overflow-x: auto;
    margin-right: -20px;
  
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* ---------------------------------
  section title style
  ---------------------------------*/
.section_title {
  text-align: left;
  margin-bottom: 56px;
  color: var(--txt-color-deep-blue);
}
.section_title > h2 {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.5;
  margin: 0;
}
.section_title .main_txt {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: var(--noto-regular);
}
.section_title .sub_txt {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 16px 0;
}
.section_title .sub_txt > .jp_txt {
  font-weight: var(--noto-bold);
  padding-right: 20px;
}
.section_title .sub_txt > .en_txt {
  font-weight: var(--urban-regular);
  padding-left: 20px;
  border-left: solid 1px var(--border-color);
}


.section_title.white {
  color: var(--txt-color-white);
}
.section_title.white  .sub_txt > .en_txt {
  border-left: solid 1px var(--border-color-white);
}

/*-----------------*/
#page_title .section_title {
  margin-bottom: 0;
}
#page_title .section_title > h1 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  margin: 0;
}
#page_title .section_title .main_txt {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: var(--noto-regular);
}
#page_title .section_title .sub_txt {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  margin: 16px 0 0 0;
}
#page_title .section_title .sub_txt > .jp_txt {
  display: block;
  font-weight: var(--noto-regular);
  padding-right: 0px;
  padding-left: 20px;
  border-left: solid 1px var(--border-color-white);
}


@media only screen and (min-width: 981px) {
  .section_title {}
  
  .section_title > h2 {
    font-size: 40px;
    font-size: 4.0rem;
  }
  .section_title .main_txt {
    font-size: 40px;
    font-size: 4.0rem;
  }
  .section_title .sub_txt {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 20px 0;
  }
  .section_title .sub_txt > .jp_txt {
    padding-right: 30px;
  }
  .section_title .sub_txt > .en_txt {
    padding-left: 30px;
  }
  
  #page_title .section_title > h1 {
    font-size: 56px;
    font-size: 5.6rem;
  }
  #page_title .section_title .main_txt {
    font-size: 56px;
    font-size: 5.6rem;
  }
  #page_title .section_title .sub_txt {
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 2;
    margin: 16px 0 0 0;
  }
  #page_title .section_title .sub_txt > .jp_txt {
    padding-left: 32px;
  }
}
/* ---------------------------------
  section contents style
  ---------------------------------*/
.section_contents > p {
  margin-bottom: 40px;
}
.section_contents .number {
  font-family: 'Noto Sans JP';
  line-height: 1;
}
@media only screen and (min-width: 981px) {
  .section_contents > p {
      margin-bottom: 50px;
  }
}
/* ---------------------------------
  text style
  ---------------------------------*/

em {
  font-style: normal;
  color: var(--txt-color-deep-blue);
}

/* ---------------------------------
  link style
  ---------------------------------*/

a {
  color: var(--txt-color-deep-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a > img {
  transition:0.5s;
}
a:hover > img {
  opacity: 0.8;
}

.animate_link {
  text-decoration: none;
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
  transition:0.5s;
}
.animate_link:hover {
  text-decoration: none;
  --d: 100%;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.link_blue {
  color: var(--c-blue);
}
a.icon_new_window:after,
.icon_new_window:after {
  margin-left: 8px;
  margin-right: 8px;
  content: '';
  background: url("../img/icon_new_window.svg") no-repeat;
  width: 13px;
  background-size: 13px 13px;
  height: 13px;
  display: inline-block;
}
.stretched-link::after{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:1;
  pointer-events:auto;
  content:"";
  background-color:rgba(0,0,0,0);
}

/* ---------------------------------
  section style
  ---------------------------------*/
main {
  overflow-x: hidden;
}

section {
  margin-bottom: 112px;
}
@media only screen and (min-width: 981px) {
  main {}

  section {
    margin-bottom: 200px;
  }
}


/* ---------------------------------
  page style
  ---------------------------------*/


#key {
  width: 100%;
  margin-top: 80px;
}
@media only screen and (min-width: 981px) {
  
  #key {
    margin-top: 150px;
  }
}

#key .section_title {
  margin-bottom: 64px;
}
#key .section_title h1 {
  margin: 0;
  line-height: 1.5;
}
#key .section_title .sub_txt {
  font-size: 14px;
  font-size: 1.4rem;
  font-size: 3.73vw;
}
#key .section_title .main_txt {
  font-size: 34px;
  font-size: 3.4rem;
  font-size: 9.07vw;
}
#key .section_title p {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-size: 3.73vw;
  font-weight: var(--noto-regular);
  line-height: 1.5;
  padding-right: 0px;
  padding-left: 16px;
  border-left: solid 1px var(--border-color);
  margin: 16px 0;
}
#key .section_contents {
  background-color: var(--c-lite-gray);
  text-align: right;
  font-size: 34px;
  font-size: 3.4rem;
  font-size: 9.07vw;
  font-weight: var( --urban-thin);
  color: var(--txt-color-deep-blue);
  line-height: 1;
  position: relative;
}
#key .section_contents .img_box_wrapper {
  position: relative;
  z-index: 10;
  margin: calc((100vw - 32px) * 0.56 * 0.5) -16px 0 auto;
  width: calc(100% + 16px);
  
}
#key .section_contents .img_box_wrapper .img_box_inner_wrapper {
  position: absolute;
  width: inherit;
  top: calc((100vw - 32px) * 0.56 * 0.4 * -1);
}
#key .section_contents .img_box_wrapper .img_box_inner_wrapper .img_box {
  
}
#key .section_contents .contents_box {
  padding-top: calc(61vw - 68px);
}
#key .section_contents .contents_box > p {
  position: absolute;
  bottom: -12px;
  right: -8px;
  margin: 0;
  opacity: 0.24;
  white-space: nowrap;
}

#key .scroll_box {
  position: relative;
  bottom: -48px;
}
.scroll_txt {
  position: absolute;
  top: 0;
  left: 8px;
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: var(--urban-regular);
  letter-spacing: 0.04em;
}

.scroll_bar {
  width: 1px;
  height: 68px;
  display: block;
  overflow: hidden;
  position: relative;
}
.scroll_bar span.bar_main {
  display: block;
  width: inherit;
  height: inherit;
  color: #fff;
  background-image: linear-gradient(  0deg,  var(--border-color),  var(--border-color) 33%,  var(--c-deep-blue) 34%,  var(--c-deep-blue) 66%, var(--border-color) 67%,  var(--border-color) 100%  );
  background-size: 1px 441px;
  animation: move 1800ms linear infinite;
}
.scroll_bar_sub {
  width: 1px;
  height: 8px;
  display: block;
  background-color: var(--c-deep-blue);
  transform: rotate(45deg);
  transform-origin:left bottom;
  position: absolute;
  bottom: 0;
}
@keyframes move {
  0% {
    background-position: 100% 100%;
  }
  10% {
    background-position: 85% 85%;
  }
  23% {
    background-position: 66% 66%;
  }
  77% {
    background-position: 33% 33%;
  }
  90% {
    background-position: 20% 20%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@media only screen and (min-width: 680px) {
    #key .section_title .wrapper.layout > p {
    font-size: 18px;
    font-size: 1.8rem;
  }
  #key .section_title .sub_txt {
    font-size: 24px;
    font-size: 2.4rem;
  }
  #key .section_title .main_txt {
    font-size: 64px;
    font-size: 6.4rem;
  }
  
}

@media only screen and (min-width: 981px) {
  #key .wrapper {
    max-width: 1560px;
  }
  #key .section_title {
    margin-bottom: 13.42vw;
  }
  #key .section_title .wrapper.layout {
    align-items: flex-end;
  }
  #key .section_title .wrapper.layout > h1 {
    margin: 0;
  }
  #key .section_title .wrapper.layout > p {
    min-width: 471px;
    padding-left: 30px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2;
  }
  #key .section_title .sub_txt {
    font-size: 24px;
    font-size: 2.4rem;
  }
  #key .section_title .main_txt {
    font-size: 64px;
    font-size: 6.4rem;
  }
  
  #key .section_contents {
    font-size: 100px;
    font-size: 10.0rem;
    font-size: 6.1vw;
    position: relative;
  }
  #key .section_contents .img_box_wrapper {
    margin: 8.96vw auto 0 auto;
    width: 100%;
  }
  #key .section_contents .img_box_wrapper .img_box_inner_wrapper {
    top: -8.96vw;
  }
  #key .section_contents .contents_box {
    padding-top: calc(33.48vw - 150px);
  }
  #key .section_contents .contents_box > p {
    float: right;
    bottom: -40px;
    right: -16px;
  }
  #key .scroll_box {
    position: relative;
    bottom: -40px;
  }
  .scroll_txt {
    position: absolute;
    top: 0;
    left: 8px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: var(--urban-regular);
  }
  .scroll_bar {
    width: 1px;
    height: 147px;
  }
  .scroll_bar_sub {
    width: 1px;
    height: 12px;
  }
}
@media only screen and (min-width: 1185px) {
  #key .section_title .wrapper.layout > h1 {
    width: 640px;
  }
  #key .section_title .wrapper.layout > p {
    width: calc(100% - 640px);
    margin: 0 0 10px 0;
  }
}
@media only screen and (min-width: 1640px) {
  #key .section_title {
    margin-bottom: 220px;
  }
  #key .section_contents {
    font-size: 100px;
    font-size: 10.0rem;
  }
  #key .section_contents .img_box_wrapper {
    margin: 147px auto 0 auto;
  }
  #key .section_contents .img_box_wrapper .img_box_inner_wrapper {
    top: -147px;
  }
  #key .section_contents .contents_box {
    padding-top: calc(549px - 150px);
  }
}

/* 配下ページタイトル */
#page_title {
  background-color: var(--c-blue);
  padding: calc(54px + 64px) 0 68px 0;
  margin-bottom: 0;
}
#page_title .section_title .wrapper > h1 {
  margin: 0;
  line-height: 1.5;
}
#page_title .section_contents {
  text-align: right;
  font-size: 60px;
  font-size: 6.0rem;
  font-weight: var( --urban-thin);
  color: var(--txt-color-white);
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
}
#page_title .section_contents > p {
  position: absolute;
  bottom: -78px;
  right: -8px;
  margin: 0;
  opacity: 0.1;
}
@media only screen and (min-width: 981px) {
  #page_title {
    padding: calc(87px + 63px) 0 80px 0;
  }
  #page_title .section_contents {
  font-size: 131px;
  font-size: 13.1rem;
  position: relative;
}
#page_title .section_contents > p {
  float: right;
  bottom: -104px;
  right: -16px;
  }
}

/*------------------*/
#intro {}

#intro .button_box .button {
  max-width: 73%;
}
#intro .appearance.bg_band {
  padding-top: 0;
  margin-top: calc((100vw - 32px) * 0.56 * 0.5 + 56px);
}
#intro .appearance.bg_band > .wrapper {
  padding-bottom: 0;
}
#intro .appearance.bg_band .img_box_wrapper {
  bottom: auto;
  margin-top: calc((100vw - 32px) * 0.56 * 0.5 * -1);
}
#intro .section_contents .layout.h_box {
  flex-direction: column-reverse;
}
#intro .section_contents .layout.h_box .contents_box > p {
  margin: 32px 0;
}
@media only screen and (min-width: 981px) {
  #intro .button_box .button {
    max-width: 250px;
  }
  #intro .appearance.bg_band {
    margin-top: 0;
  }
  #intro .appearance.bg_band .img_box_wrapper {
    bottom: auto;
    margin-top: 0;
  }
  #intro .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    top: -31px;
  }
  #intro .section_contents .layout.h_box {
    flex-direction: row;
  }
  #intro .section_contents .layout.h_box .contents_box > p {
    margin: 60px 0;
  }
}
@media only screen and (min-width: 1140px) {
  #intro .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    top: -135px;
  }
}
@media only screen and (min-width: 1185px) {
  #intro .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    top: -270px;
  }
}

/*------------------*/
#service {}

/*------------------*/
#coverage_media {
  margin-bottom: 231px
}
#coverage_media.appearance.bg_band {
  background-color: rgba(0,0,0,0);
}
#coverage_media .layout.top_media {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between;
}
#coverage_media .layout.top_media .section_contents {
  background-color: var(--c-lite-gray);
  margin-top: calc((100vw - 32px) * 0.56 * 0.5);
}
#coverage_media .layout.top_media .section_contents .sp_wrapper {
  /*(margin: -139px 0;*/
  margin-top: calc((100vw - 32px) * 0.56 * 0.5 * -1);
  margin-bottom: -29px;
}
#coverage_media .button_box .button {
  max-width: 73%;
}
@media only screen and (min-width: 981px) {
  #coverage_media {
    margin-top: 350px;
    margin-bottom: 231px;
    background-color: var(--c-lite-gray);
  }
  #coverage_media .layout.top_media .section_title {
    margin-top: -200px;
    margin-bottom: 0;
  }
  #coverage_media .layout.top_media .section_contents {
    /*margin: -139px 0;*/
    background: none;
    margin: 0 0 -31px 0;
  }
  #coverage_media .layout.top_media .section_contents .sp_wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }
  #coverage_media .appearance.img_list.media{
    margin: 60px 0;
  }
  #coverage_media .button_box.sp_b_elem {
    display: block !important;
    margin-top: 50px;
  }
  #coverage_media .button_box.pc_b_elem {
    display: none;
    margin-top: 50px;
  }
  #coverage_media .button_box .button {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1185px) {
  #coverage_media {
    margin-top: 339px;
    margin-bottom: 339px;
    background-color: var(--c-lite-gray);
  }
  
  #coverage_media .layout.top_media {
    padding-bottom: 0;
  }
  #coverage_media .layout.top_media .section_title {
    width: 50%;
    max-width: 360px;
    margin-top: 0;
    margin-bottom: 0;
  }
  #coverage_media .layout.top_media .section_contents {
    width: calc(100% - 360px - 100px);
    margin: -139px 0;
    background: none;
  }
  #coverage_media .layout.top_media .section_contents .sp_wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }
  #coverage_media .appearance.img_list.media{
    margin: 0;
  }
  
  #coverage_media .button_box.sp_b_elem {
    display: none !important;
    margin-top: 50px;
  }
  #coverage_media .button_box.pc_b_elem {
    display: block;
    margin-top: 50px;
  }
}

/*------------------*/
#message {}

/*------------------*/
#can_do {}

/*------------------*/
#strengths {}

/*------------------*/
#trust {}

/*------------------*/
#voice {}
#voice .section_title {
  margin-bottom: 20px;
}
#voice .appearance.asterisk_list {
  margin: 20px 0 32px 0;
}
#voice .img_box.customer_logo {
  margin-bottom: 56px;
}
@media only screen and (min-width: 981px) {
  #voice .section_title {
    margin-bottom: 32px;
  }
  #voice .appearance.asterisk_list {
    margin: 50px 0;
  }
  #voice .img_box.customer_logo {
    margin-bottom: 72px;
  }
}

/*------------------*/
#media {}

/* company.html */
.company .section_title {
  margin-bottom: 20px;
}
.layout-flex {
  display: flex;
}
.layout-flex_center {
  justify-content: center;
  align-items: center;
}
.contents_summary {
  color: var(--txt-color-deep-blue);
  font-size: 2.4rem;
  line-height: 1.5;
}
#mission .section_contents .appearance.std_olist {
  font-weight: var(--noto-bold);
}
.message_title.section_title .sub_txt {
  margin: 16px 0 0;
}
.appearance.bg_band .img_box_wrapper .img_box_inner_wrapper.img_box_inner_wrapper-mission {
  top: -75px;
}
.message_title {
  flex-basis: 33.3%;
}
.message_content {
  flex-basis: 66.3%;
}
.message_content p {
  margin-top: 0;
  margin-bottom: 20px;
}
.message_layout {
  margin-bottom: 118px;
}
.message_content .message_author {
  font-size: 2rem;
  font-weight: var(--noto-bold);
  color: var(--txt-color-deep-blue);
  text-align: right;
  margin: 40px 0 0 0;
}
.layout-flex_center.author_box {
  align-items: flex-start;
}
.layout-flex.author_box {
  justify-content: space-between;
}
.author_box > .img_box.shadow {
  z-index: 1;
  top: -70px;
  flex-basis: 20%;
}
.appearance.bg_band.author_wrapper {
  padding: 40px 80px;
}
.author_history {
  font-size: 2.4rem;
  font-weight: var(--noto-bold);
  color: var(--txt-color-deep-blue);
}
.author_info {
  flex-basis: 70%;
}
.appearance.bg_band.table_wrapper {
  padding: 80px;
}
.corporate_info {
  border-spacing: 0;
  width: 100%;
}
.corporate_info tr {
  padding: 1rem 0;
}
.corporate_info tr:first-child {
  padding-top: 0;
}
.corporate_info th, .corporate_info td{
  border-bottom: 2px solid #eaeaea;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: left;
}
.corporate_info td {
  padding-left: 50px;
  width: 875px;
}
.corporate_info .first-row {
  padding-top: 0;
}
.corporate_info th {
  color: var(--txt-color-deep-blue);
  width: 195px;
}
@media screen and (max-width: 981px) {
  .contents_summary {
    font-size: 2rem;
    margin:0 0 24px;
  }
  .contents_bold-number {
    padding-left: 20px;
  }
  .contents_bold-number li:before {
    top: 5px;
    left: -20px;
    height: 18px;
    width: 18px;
  }
  .img_box.shadow.img_box-mission {
    width: 80%;
    margin: 0 auto;
  }
  .company .section_title {
    margin-bottom: 0;
  }
  .message_layout {
    margin-bottom: 32px;
  }
  .message_title.section_title .sub_txt {
    margin: 16px 0 56px;
  }
  .message_content .message_author {
    font-size: 1.8rem;
    margin-top: 32px;
  }
  .author_box > .img_box.shadow {
    top: 0;
    width: 50%;
  }
  .author_history {
    font-size: 2rem;
  }
  .author_info {
    margin-top: 32px;
  }
  .author_info p {
    margin-bottom: 0;
  }
  .corporate_info tr {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eaeaea;
    line-height: 1;
    padding: 24px 0;
  }
  .layout-flex_center.author_box {
    align-items: center;
  }
  .appearance.bg_band.author_wrapper {
    padding: 32px 16px;
  }
  .appearance.bg_band.table_wrapper {
    padding: 40px 16px;
  }
  .corporate_info th, .corporate_info td {
    padding: 0;
    border-bottom: 0;
    text-align: left;
  }
  .corporate_info td {
    padding: 16px 0 0;
    line-height: 2;
    width: 100%;
  }
  .corporate_info td.first-row {
    margin-top: 16px;
  }
  .corporate_info th {
    width: 100%;
  }
  .link_box_wrapper {
    width: calc(100% - 32px);
  }
}

/* privacy_policy.html */

.privacy_policy {
  font-family: Noto Sans JP;
}
.privacy_policy .breadcrumb_box .breadcrumbs {
  overflow-x: unset;
}
.policy_box {
  margin-bottom: 100px;
}
.policy_box-first {
  margin-bottom: 9rem;
}
.policy_title h2 {
  font-size: 4rem;
  font-weight: var(--urban-regular);
  color: var(--txt-color-deep-blue);
  margin-bottom:60px;
  line-height:1.5
}
.policy_content p {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 981px) {
  .layout-flex {
      flex-direction: column;
  }
  .policy_box-first, .policy_box {
      margin-bottom: 56px;
  }
  .policy_title h2 {
      font-size: 2.6rem;
      color: var( --c-deep-blue);
      line-height: 1.5;
      margin: 0 0 32px;
  }
  .policy_box-first {
      text-indent: 0;
      padding-left: 0;
  }
}
@media screen and (max-width: 414px) {
  .img_box.shadow.img_box-mission {
      width: calc(100% - 24px);
      margin-left: 24px;
      margin-bottom: 22px;
  }
}

/* media.html */

/* recruit.html */
#secretary .section_contents.appearance.bg_band {
  background-color: unset;
  padding-top: unset;
}
#secretary .section_contents .layout.h_box .contents_box > p {
  margin: 32px 0;
}
#secretary .button_box .button {
  max-width: 73%;
}
#secretary .appearance.bg_band .img_box_wrapper {
  position: relative;
  bottom: -64px;
  z-index: 10;
}
@media only screen and (min-width: 981px) {
  #secretary .section_contents .layout.h_box .contents_box > .contents_summary {
    margin-top: 0;
  }
  #secretary .section_contents .layout.h_box .contents_box > p {
    margin: 24px 0 60px 0;
  }
  #secretary .button_box .button {
    max-width: 250px;
  }
  #secretary .appearance.bg_band .img_box_wrapper .img_box_inner_wrapper {
    top: -220px;
  }
}

#blog_link {}
#blog_link > .wrapper {}
.link_box {
  border: 1px solid var(--border-color);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
}
.link_box:hover {
  text-decoration: none;
  opacity: .8;
}
.link_box > .img_box {
  border: none;
}
.link_box > .contents_box {
  padding: 3rem 1.6rem;
}
.link_box .contents_box > h3 {
  font-size: 20px;
  font-size: 2.0rem;
  margin: 0 0 24px 0;
  font-weight: var(--noto-mid);
  color: var(--c-deep-blue);
  line-height: 1;
}
.link_box .contents_box > p {
  margin-top: 24px;
  margin-bottom: 32px;
}
.link_box .contents_box > a {
  display: block;
  text-align: right;
}
.link_box .contents_box .button_txt {
  position: relative;
  display: inline-block;
  width: 156px;
  font-size: 1.4px;
  font-size: 1.4rem;
  text-align: left;
}
.link_box .contents_box .button_txt::after {
  content: "";
  display: block;
  width: 46px;
  height: 6px;
  background-image: url(../img/icon_arrow-db.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0px;
  top: calc(50% - 3px);
}
@media only screen and (min-width: 981px) {
  .layout.one_half.link_box{
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }
  .link_box > .contents_box {
    padding: 30px 30px 22px 60px;
  }
  .link_box .contents_box > h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .link_box .contents_box > p {
    margin-bottom: 32px;
  }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
