/*! 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.
 */
@charset "UTF-8";
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/* font settings -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&display=swap'); /*全丸ゴシック*/
@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Medium"); }
@font-face { font-family: "Yu Gothic M"; src: local("Yu Gothic Bold"); font-weight: bold; }

/*CSS カスタムプロパティ (変数) */
:root{
  /*カラー設定*/
  --c-orange: #E56B00;
  --c-lite-orange: #FFF7E4;
  --c-yellow: #ECAB15;
  --c-brown: #633B06;
  --c-dark-brown: #2A0D0D;
  --c-lite-green: #78CEAC;
  --c-white: #FFFFFF;
  
  /*テキストカラー設定*/
  --txt-color: #2A0D0D;
  --txt-color-orange: #E56B00;
  --txt-color-white: #FFFFFF;
  
  /*ボーダーカラー設定*/
  --border-color:#2A0D0D;
  
  /*角丸設定*/
  --thema-r: 50px;
}
@media only screen and (min-width: 981px) {
  :root{
     --thema-r: 100px;
  }
}

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

body {
  font-family: 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-size: 1.6rem;
  background-color: var(--c-lite-orange);
  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;
}

@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;
  }
}

/* ---------------------------------
  wrapper style
  ---------------------------------*/
.wrapper {
  width: calc(100% - 40px);
  margin:0 auto;
  max-width: 1400px;
}

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


/* ---------------------------------
  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 > * {
    width: 50%;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
  }
  .layout.one_third > * {
    width: 33%;
    
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content:space-between;
  }
  .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 > * {
    width: 25%;
    
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
}

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

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

.appearance.card {
  
}
.appearance.card > * {
  box-sizing: border-box;
  padding: 0;
  margin: 15px 0;
  
  border: solid 2px var(--border-color);
  border-radius: var(--thema-r);
  text-align: center;
  overflow: hidden;
}
.appearance.card .img_box {
  
}
.appearance.card .img_box:before{
  content: "";
  display: block;
  padding-top: calc( 100% * 13 / 22 );
}
.appearance.card .contents_box {
  padding: 30px 40px 40px 40px;
}
.appearance.card .contents_box .title {
  margin: 0 0 20px 0;
  line-height: 1;
}
.appearance.card .contents_box p {
  margin: 0;
}

.appearance.card.r_img {
  margin-left: -20px;
  margin-right: -20px;
}
.appearance.card.r_img > * {
  overflow: visible;
  margin-top: calc(20px + 72px);
  border-radius: 0;
  border-left: none;
  border-right: none;
}
.appearance.card.r_img > * > .img_box {
  width: 142px;
  height: 142px;
  background-color: var(--c-white);
  border: solid 2px var(--border-color);
  border-radius: 50%;
  overflow: hidden;
  margin: -72px auto 0 auto;
  padding: 20px 10px;
}
.appearance.card.r_img > * > .img_box:before {
  display: none;
}
.appearance.card.r_img > * > .img_box img {
  width: 104px;
}
.appearance.card.r_img > * > .img_box h3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 981px) {
  .appearance.card {
    margin-left: -20px;
    margin-right: -20px;
  }
  .appearance.card > * {
    margin: 20px;
  }
  .appearance.card .contents_box {
    padding: 40px 40px 60px 40px;
  }
  
  .layout.appearance.card {
    -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: -20px;
    margin-right: -20px;
  }
  .layout.one_half.appearance.card > * {
    max-width: calc( 50% - 40px );
  }
  .layout.one_third.appearance.card > * {
    max-width: calc( 33% - 40px );
  }
  .appearance.card.r_img {
    /*margin-left: 0;
    margin-right: 0;*/
  }
  .appearance.card.r_img > * {
    overflow: visible;
    margin-top: calc(20px + 42px);
    border-radius: var(--thema-r);
    border-left: solid 2px var(--border-color);
    border-right: solid 2px var(--border-color);
  }
  .appearance.card.r_img > * > .img_box {
    width: calc(370vw / 16);
    height: calc(370vw / 16);
    background-color: var(--c-white);
    border: solid 2px var(--border-color);
    border-radius: 50%;
    overflow: hidden;
    margin: calc(42vw / 16 * -1) auto 0 auto;
    padding: calc(50vw / 16);
  }
  .appearance.card.r_img > * > .img_box img {
    width: calc(210vw / 16);
  }
  .appearance.card.r_img > * > .img_box h3 {
    font-size:  calc(30vw / 16);
    line-height: 1;
    margin: 0 0 calc(50vw / 16) 0;
  }
}
@media only screen and (min-width: 1600px) {
  .appearance.card.r_img > * > .img_box {
    width: 370px;
    height: 370px;
    margin: -42px auto 0 auto;
    padding: 50px;
  }
  .appearance.card.r_img > * > .img_box img {
    width: 210px;
  }
  .appearance.card.r_img > * > .img_box h3 {
    font-size: 30px;
    font-size: 3.0rem;
    margin: 0 0 50px 0;
  }
}
/**/
.appearance.button_nav {
  list-style: none;
}
.appearance.button_nav > * {
  margin: 5px 0;
}
@media only screen and (min-width: 981px) {
  .appearance.button_nav > * {
    margin: 15px 20px;
  }
  .layout.appearance.button_nav {
    margin-left: -20px;
    margin-right: -20px;
  }
  .layout.one_third.appearance.button_nav > li {
    max-width: calc( 33% - 40px );
  }
}

/**/
.appearance.img_list {
  list-style: none;
}
.appearance.img_list > * {
  margin: 10px 40px;
}

@media only screen and (min-width: 981px) {
  .layout.appearance.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: -40px;
    margin-right: -40px;
  }
  .layout.one_quarter.appearance.img_list > li {
    max-width: calc( 25% - 80px );
  }
}

/**/
.appearance.inner_box {}
.appearance.inner_box.column {
  border: solid 2px var(--border-color);
  border-radius: var(--thema-r);
  background-color: var(--c-white);
  overflow: visible;
  position: relative;
  padding: 30px;
}

@media only screen and (min-width: 981px) {
  .appearance.inner_box {
    border: solid 2px var(--border-color);
    border-radius: var(--thema-r);
    overflow: hidden;
  }
  
  .appearance.inner_box.column {
    padding: 63px;
  }
  .appearance.inner_box.column::before {
    content: '';
    width: calc(100% - 60px);
    height: calc(100% -  60px);
    border: dotted 3px var(--border-color);
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: calc( var(--thema-r) * 0.8);
  }
  
  .appearance.inner_box.column .layout.two_column {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .appearance.inner_box.column .layout.two_column .img_box {
    width: 298px;
    margin: 50px 75px;
  }
  .appearance.inner_box.column .layout.two_column .contents_box {
    width: calc(100% - 298px - 150px - 150px);
    margin: 50px 75px;
  }
}


/**/
.appearance.conect_list {}
.appearance.conect_list > * {
  background-color: var(--c-lite-orange);
  width: 100%;
  height: 80px;
  border-radius: var(--thema-r);
  margin-bottom: 10px;
  padding: 5px 25px;
  position: relative;
  
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.appearance.conect_list > *::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url("../../img/consumer/icon_plus.svg");
  background-repeat: no-repeat;
  background-size: 17px 17px;
  background-position: center;
  background-color: var(--c-lite-green);
  position: absolute;
  left: calc(50% - 14px);
  bottom: -18px;
  z-index: 10;
  border-radius: 50%;
}
.appearance.conect_list > *:last-child::after {
  display: none;
}
.appearance.conect_list .layout.conect_list_item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.appearance.conect_list .layout.conect_list_item > .img_box {
  width: 76px;
  margin: 0;
}
.appearance.conect_list .img_box::before {
  display: none;
}
.appearance.conect_list .layout.conect_list_item > p {
  width: calc(100% - 76px - 15px);
  margin: 0 0 0 15px;
  text-align: left;
}
@media only screen and (min-width: 981px) {
  .appearance.conect_list > * {
    background-color: var(--c-lite-orange);
    width: 100%;
    height: 170px;
    border-radius: var(--thema-r);
    margin-bottom: 24px;
    padding: 20px calc(70vw / 16);
    position: relative;

    font-size: calc(24vw / 16);
    font-weight: 700;
  }
  .appearance.conect_list > *::after {
    content: "";
    display: block;
    width: 58px;
    height: 58px;
    background-image: url("../../img/consumer/icon_plus.svg");
    background-repeat: no-repeat;
    background-size: 27px 27px;
    background-position: center;
    background-color: var(--c-lite-green);
    position: absolute;
    left: calc(50% - 29px);
    bottom: -37px;
    z-index: 10;
    border-radius: 50%;
  }
  .appearance.conect_list .layout.conect_list_item > .img_box {
    width: calc(160vw / 16);
    margin: 0 calc(15vw / 16);
  }
  .appearance.conect_list .layout.conect_list_item > p {
    width: calc(100% - calc(160vw / 16) - calc(60vw / 16));
    margin: 0 calc(15vw / 16);
    text-align: left;
  }
}
@media only screen and (min-width: 1600px) {
  .appearance.conect_list > * {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 20px 70px;
  }
  
  .appearance.conect_list .layout.conect_list_item > .img_box {
    width: 160px;
    margin: 0 15px;
  }
  .appearance.conect_list .layout.conect_list_item > p {
    width: calc(100% - 160px - 60px);
    margin: 0 15px;
    text-align: left;
  }
}
/**/
.appearance.conect_dot_list {
  max-width: 735px;
  margin: 0 auto;
}
.appearance.conect_dot_list > * {
  padding: 20px 0 40px 0;
  position: relative;
}
.appearance.conect_dot_list > *::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75px;
  height: calc( 100% - 75px - 20px );
  min-height: 100px;
  background-image: url("../../img/consumer/img_about_conect_dot.svg");
  background-repeat: no-repeat;
  background-size: 4px 100px;
  background-position: center;
}
.appearance.conect_dot_list > *:last-child {
    padding: 20px 0 50px 0;
}
.appearance.conect_dot_list > *:last-child::after {
  display: none;
}

.appearance.conect_dot_list .layout.v_box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.appearance.conect_dot_list .layout.v_box > .img_box {
  width: 75px;
  height: 75px;
  background-color: var(--c-white);
  border: solid 2px var(--border-color);
  border-radius: 50%;
  overflow: hidden;
  padding: 10px 5px;
}
.appearance.conect_dot_list .layout.v_box > .contents_box {
  width: calc(100% - 75px);
  padding-left: 30px;
}

@media only screen and (min-width: 981px) {
  .appearance.conect_dot_list > * {
    padding: 20px 0 120px 0;
    position: relative;
  }
  .appearance.conect_dot_list > *::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 190px;
    height: 100px;
    background-image: url("../../img/consumer/img_about_conect_dot.svg");
    background-repeat: no-repeat;
    background-size: 4px 100px;
    background-position: center;
  }
  .appearance.conect_dot_list > *:last-child {
    padding: 20px 0 140px 0;
  }
  .appearance.conect_dot_list .layout.v_box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .appearance.conect_dot_list .layout.v_box > .img_box {
    width: 190px;
    height: 190px;
    padding: 50px 40px;
  }
  .appearance.conect_dot_list .layout.v_box > .contents_box {
    width: calc(100% - 190px);
    padding-left: 60px;
  }
}
/* ---------------------------------
  button style
  ---------------------------------*/
.button {
  display: inline-block;
  width: 100%;
  background-color: var(--c-orange);
  border: solid 2px var(--c-orange);
  border-radius: var(--thema-r);
  line-height: 1;
  padding: 20px 70px;
  position: relative;
  
  color: var(--txt-color-white);
  text-decoration: none;
  text-align: center;
  
  transition: 0.5s;
}
.button::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../../img/consumer/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 46px;
  top: calc(50% - 10px);
}

.button:hover {
  background-color: var(--c-white);
  color: var(--txt-color-orange);
  text-decoration: none;
}
.button:hover::after {
  background-image: url("../../img/consumer/icon_arrow_og.svg");
}

@media only screen and (min-width: 981px) {
  .button {
    padding: 30px 70px 30px 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .button {
    padding: 30px 70px;
  }
}
/* ---------------------------------
  img style
  
  画像を入れる場合、divに以下のクラスを適用するなどして、利用してください。
  ---------------------------------*/
.img_box,
.figure_box {
  width: 100%;
  height: auto;
  
  /*background-color: #cccccc;*/
}

.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: 1024px) {
  /*
    比率の設定 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 );
  }
}

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

/* ハンバーガーアイコン */
#hamburger {
  display: none;
}
.menu_trigger,
.menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu_trigger {
  position: relative;
  width: 29px;
  height: 22px;
  cursor: pointer;
}

.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 10px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
/* ハンバーガーアイコンのアニメーション調整は以下を調整する */
#hamburger:checked + .menu_trigger span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#hamburger:checked +  .menu_trigger span:nth-of-type(2) {
  opacity: 0;
}
#hamburger:checked +  .menu_trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) 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%;
  /*padding: 20px;*/
  box-sizing: border-box;
}
#header .img_box.logo {
  display: block;
  padding: 15px 30px 23px 20px;
  width: 255px;
  background-image: url("../../img/consumer/bg_header_logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.5s;
}
#header .nav_box {
  width: calc(100% - 255px);
  padding: 20px 20px 35px 30px;
  background-image: url("../../img/consumer/bg_header_nav.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  
  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: 24px;
  font-size: 2.4rem;
  color: #ffffff;
  padding: 20px 0 18px 0;
}
.menu_list.child a {
  font-weight: normal;
  padding: 12px 0;
  width: inherit;
}
.menu_list .sns_nav {
  text-align: left;
  padding: 0;
}
.menu_list .sns_nav li {
  list-style: none;
  display: inline-block;
  width: 36px;
  margin-right: 35px;
}
.menu_list .sns_nav li img {
  width: 36px;
  height: auto;
}
.menu_list .sns_nav li a{
  padding: 40px 0 0 0;
}

#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 - 460px * 0.5) calc(50vw - 220px * 0.5);
  opacity: 0;
  background-color: rgba(255,150,57,0);
  border-bottom-left-radius: 50%;
  height: 0;
  width: 100vw;
  overflow: hidden;
}

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

#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: 350px;
    padding: 20px 75px 40px 40px;
  }
  #header .nav_box {
    width: calc(100% - 350px);
  }
  #header.no_scroll .nav_box {
    background-image: url("../../img/consumer/bg_header_nav.svg"), url("../../img/consumer/bg_header_nav_pc.svg");
    background-repeat: no-repeat, no-repeat;
    background-size: auto, contain;
    background-position: top right, top right;
    padding: 20px 20px 370px 30px;
  }
  #header.no_scroll .img_box.logo {
    width: 523px;
    padding: 30px 75px 50px 40px;
  }
  #header.no_scroll .nav_box {
    width: calc(100% - 523px);
  }
  #header.no_scroll .nav_box .menu_trigger {
    opacity: 0;
    cursor: default;
    z-index: -1
  }
  #header.no_scroll #hamburger + .menu_trigger + .menu_list {
    opacity: 1;
    transform: translate(0);
    width: 300px;
    padding: 20px 60px 120px 100px;
    overflow: visible;
    background-color: rgba(255,150,57,0);
  }
  
  #header.no_scroll .menu_list a {
    font-weight: 700;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 0 12px 0;
  }
  #header.no_scroll .menu_list .sns_nav li {
    width: 27px;
    margin-right: 20px;
  }
  #header.no_scroll .menu_list .sns_nav li a {
    padding: 18px 0 0 0;
  }
  #header.no_scroll .menu_list .sns_nav li a img {
    width: 100%;
  }
}

/* ---------------------------------
  footer style
  ---------------------------------*/
#footer {
  background-color: var(--c-white);
  text-align: center;
  padding: 30px 0 0 0;
}

#footer .layout.footer_contents {
  -ms-flex-direction: column;
  flex-direction: column;
}

#footer .img_box {
  width: 249px;
  margin: 0 auto 10px auto;
  order: 2;
}
#footer .footer_nav {
  width: 200px;
  margin: 0 auto 50px auto;
  
  list-style: none;
  order: 1;
}
#footer .footer_nav > li {
  margin: 0 10px;
  width: calc(50% - 20px);
  
  font-size: 12px;
  font-size: 1.2rem;
}
#footer .footer_nav a {
  color: var(--txt-color);
}

#footer .copyright {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 0 30px 0;
  margin: 0;
  order: 3;
}
@media only screen and (min-width: 981px) {
  #footer {
    padding: 20px 0 0 0;
  }
  #footer .layout.footer_contents {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  #footer .img_box {
    width: 100%;
    margin: 0 auto 20px auto;
    order: 1;
  }
  #footer .img_box img {
    max-width: 296px;
  }
  #footer .footer_nav {
    width: 50%;
    margin: 0 auto 40px auto;
    order: 2;
  }
  #footer .layout.footer_nav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #footer .footer_nav > li {
    width: auto;
    margin: 0 30px 0 0;
  }
  #footer .copyright {
    width: 50%;
    text-align: right;
    padding: 0 0 40px 0;
  }
}

/* ---------------------------------
  section title style
  ---------------------------------*/
.section_title {
  text-align: left;
  margin-bottom: 60px;
}
.section_title > h2 {
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.5;
  margin: 0;
}
.section_title > p:first-of-type {
  margin: 15px 0 0 0;
}
.section_title > p {
  margin: 20px 0;
}

@media only screen and (min-width: 981px) {
  .section_title {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section_title > h2 {
    font-size: 40px;
    font-size: 4.0rem;
  }
  .section_title > p:first-of-type {
    margin: 30px 0 0 0;
  }
  
}

/*-------------------*/
.section_title.balloon {
  background-color: var(--c-white);
  border: solid 2px var(--border-color);
  border-radius: var(--thema-r);
  position: relative;
  padding: 15px 25px;
  margin: 0 auto;
  max-width: calc(100% - 40px);
  text-align: center;
}
.section_title.balloon > h2 {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1;
  margin: 0;
}
.section_title.balloon:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(50% - 2.5px);
  border: 5px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
.section_title.balloon:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: calc(50% - 4.5px);
  border: 7px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}
@media only screen and (min-width: 981px) {
  .section_title.balloon {
    margin: 0 auto -33px auto;
    padding: 15px 45px;
    max-width: 450px;
  }
  .section_title.balloon > h2 {
    font-size: 29px;
    font-size: 2.9rem;
  }
}

/*-------------------*/
.section_title.inner {
  margin-bottom: 30px;
  text-align: center;
}
.section_title.inner > h3 {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .section_title.inner {
    margin-bottom: 50px;
  }
}

/* ---------------------------------
  text style
  ---------------------------------*/

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

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

a {
  color: var(--txt-color-orange);
  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%;
}

/* ---------------------------------
  page style
  ---------------------------------*/
main {
  background-image: url("../../img/consumer/bg_key_sp.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
#key {
  width: 100%;
  height: calc(100vh - 210px);
  height: calc(100svh - 210px);
  min-height: 680px;
  position: relative;
}
@media only screen and (min-width: 981px) {
  main {
    background-image: url("../../img/consumer/bg_key.svg");
  }
  
  #key {
    padding-bottom: calc( 100% * 9 / 16 );
    height: auto;
  }
}


#key .section_title {
  position: absolute;
  
  /*
    キャッチコピーの位置調整。
    以下デザインに合わせに任意に書き換えてください。
  */
  width: 300px;
  height: 295px;
  top: calc(41% - 295px * 0.5 ); /* section_titleの高さの半分だけマイナスする */
  left: calc(50% - 300px * 0.5 );
  text-align: center;
}
#key .section_title > h1 {
  margin: 0;
  line-height: 1.5;
}
#key .section_title .sub_txt {
  display: block;
  width: 88%;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: dotted 3px var(--border-color);
  padding-bottom: 5px;
  margin: 0 auto 20px auto;
}
#key .section_title .sub_txt .lt_spc_ctrl {
  letter-spacing: 0.3rem;
}
#key .section_title .sub_txt .icon_tree {
  margin-left: -6%;
  margin-right: -6%;
}
#key .section_title .sub_txt .icon_tree::before,
#key .section_title .sub_txt .icon_tree::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 22px;
  background-image: url("../../img/consumer/icon_key.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px;
}
#key .section_title .main_txt {
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  
}
#key .section_title .main_txt .lt_spc_ctrl {
  letter-spacing: 0.5rem;
  position: relative;
  z-index: 1;
}
#key .section_title .main_txt .badge {
  position: absolute;
  top: -20px;
  left: calc(22px - 72px);
  z-index: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--c-yellow);
  color: var(--c-white);
  padding: 13px 10px;
  transform: rotate(-8deg);
}

#key .section_contents {
  position: absolute;
  bottom: 3vh;
  bottom: 3svh;
}
#key .section_contents .layout.one_third {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content:space-between;
}
#key .section_contents .left_box > img,
#key .section_contents .center_box > img,
#key .section_contents .right_box > img {
  width: 100%;
  height: auto;
}
#key .section_contents .left_box {
  width: 120px;
  width: calc(12000vw / 375);
}
#key .section_contents .center_box {
  width: 78px;
  width: calc(7800vw / 375);
  max-width: 98px;
}
#key .section_contents .right_box {
  position: relative;
  width: 120px;
  width: calc(12000vw / 375);
}
#key .section_contents .right_box .badge {
  position: absolute;
  bottom: 170px;
  right: calc(50vw - 90.5px );
  left: auto;
  z-index: 0;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-white);
  text-align: center;
  width: 143px;
  height: 143px;
  background-image: url("../../img/consumer/bg_badge.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0;
  padding: 45px 20px;
}
#key .section_contents .right_box > img {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 981px) {
  #key .wrapper {
    width: calc(100% - 200px);
    max-width: none;
  }
  #key .section_title {
    position: absolute;

    /*
      キャッチコピーの位置調整。
      以下デザインに合わせに任意に書き換えてください。
    */
    width: calc(430vw / 16); /*width: 420px;*/
    height: calc(295vw / 16); /*height: 295px;*/
    top: calc(35% - calc(295vw / 16) * 0.5 ); /*top: calc(35% - 295px * 0.5 ); /* section_titleの高さの半分だけマイナスする */
    left: calc(50% - calc(410vw / 16) * 0.5 ); /*left: calc(50% - 410px * 0.5 );*/
    text-align: center;
  }
  #key .section_title .sub_txt {
    display: block;
    width: calc(380vw / 16); /*width: 88%;*/
    font-size: calc(26vw / 16); /*font-size: 26px;*/
    font-weight: 500;
    border-bottom: dotted 3px var(--border-color);
    padding-bottom: 5px;
    margin: 0 auto calc(35vw / 16) auto; /*margin: 0 auto 35px auto;*/
  }
  #key .section_title .sub_txt .lt_spc_ctrl {
    letter-spacing: calc(3vw / 16); /*letter-spacing: 0.3rem;*/
  }
  #key .section_title .sub_txt .icon_tree {
    margin-left: -6%;
    margin-right: -6%;
  }
  #key .section_title .sub_txt .icon_tree::before,
  #key .section_title .sub_txt .icon_tree::after {
    content: "";
    display: inline-block;
    width: calc(25vw / 16); /*width: 25px;*/
    height: calc(34vw / 16); /*height: 34px;*/
    background-image: url("../../img/consumer/icon_key.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
    margin: 0 calc(10vw / 16); /*margin: 0 10px;*/
  }
  #key .section_title .main_txt {
    font-size: calc(52vw / 16); /*font-size: 52px;*/
    font-weight: 800;
    line-height: 1.3;
    position: relative;
  }
  #key .section_title .main_txt .lt_spc_ctrl {
    letter-spacing:calc(8vw / 16); /*letter-spacing: 0.8rem;*/
    position: relative;
    z-index: 1;
  }
  #key .section_title .main_txt .badge {
    position: absolute;
    top: calc( calc(22vw / 16) * -1); /*top: -22px;*/
    bottom: auto;
    left: calc( calc(22vw / 16) - calc(95vw / 16)); /*left: calc( 22px - 95px);*/
    z-index: 0;
    font-size: calc(22vw / 16); /*font-size: 22px;*/
    line-height: 1.2;
    display: block;
    width: calc(95vw / 16); /*width: 95px;*/
    height: calc(95vw / 16); /*height: 95px;*/
    border-radius: 50%;
    background-color: var(--c-yellow);
    color: var(--c-white);
    padding: calc(20vw / 16); /*padding: 20px;*/
    transform: rotate(-8deg);
  }
  
  #key .section_contents {
    bottom: -12px;
  }
  #key .section_contents .left_box {
    width: calc(282vw / 16); /*width: 282px;*/
    max-width: none;
  }
  #key .section_contents .center_box {
    width: calc(165vw / 16); /*width: 165px;*/
    padding-bottom: 90px;
    max-width: none;
  }
  #key .section_contents .right_box {
    position: relative;
    width: calc(266vw / 16); /*width: 266px;*/
    max-width: none;
  }
  #key .section_contents .right_box .badge {
    top: calc( calc(110vw / 16) * -1); /*top: -110px;*/
    left: calc( calc(130vw / 16) * -1); /*top: -130px;*/
    font-size: calc(20vw / 16); /*font-size: 20px;*/
    width: calc(232vw / 16); /*width: 232px;*/
    height: calc(232vw / 16); /*height: 232px;*/
    padding: calc(75vw / 16) calc(40vw / 16); /*padding: 75px 40px;*/
  }
}

/*------------------*/
#intro {
  background-color: var(--c-brown);
  position: relative;
  z-index: 2;
  margin: calc(10vw + 20px) 0 -30px 0;
  padding: 90px 0 70px 0;
}

#intro::before,
#intro::after {
  content: "";
  display: block;
  background-image: url("../../img/consumer/bg_section_top_br.svg");
  background-repeat: no-repeat;
  background-size: 102vw auto; /*iOSで両端が切れるので大きめに設定*/
  background-position: top center;
  position: absolute;
  width: 100vw;
  height: 18.75vw;
  z-index: -1;
}
#intro::before {
  top: -9.8vw;
}
#intro::after {
  display: none;
  bottom: -18vw;
  transform: rotateX(180deg);
}

#intro .section_title {
  color: var(--c-white);
  text-align: center;
}
#intro .section_title > h2 {
  font-size: 24px;
  font-size: 2.4rem;
}

.exp_list {
  list-style: none;
  
}
.exp_list > li {
  background-image: url("../../img/consumer/bg_shape.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 40px 0;
  padding: 45px;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  font-weight: 600;
  text-align: center;
  line-height: 2;
}
.exp_list p {
  margin: 0 0 20px 0;
}
.exp_list .img_box {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255,255,255,0);
}
@media only screen and (min-width: 981px) {
  #intro {
    padding: 0 0 190px 0;
  }
  #intro::after {
    display: block;
  }
  
  #intro .section_title > h2 {
    font-size: 40px;
    font-size: 4.0rem;
  }
  .exp_list > li {
    margin: calc(50vw / 16);
    padding: calc(70vw / 16) calc(60vw / 16);
    font-size: calc(24vw / 16);
    font-weight: 700;
    line-height: 1.5;
    max-width: calc(540vw / 16);
  }
  .exp_list .img_box {
    width: calc(100% - 60px);
  }
}
@media only screen and (min-width: 1600px) {
  .exp_list > li {
    margin: 50px;
    padding: 70px 60px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    max-width: 540px;
  }
}
/*------------------*/
#solution {
  background-color: var(--c-white);
  
  position: relative;
  padding-bottom: 80px;
}
#solution::after {
  content: "";
  display: block;
  background-image: url("../../img/consumer/bg_section_end_sp_w.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -19.23vw;
  width: 100vw;
  height: 38.46vw;
  z-index: 1;
}

#solution .wrapper {
  position: relative;
  z-index: 2;
}
#solution .inner_box {
  background-color: var(--c-white);
}
#solution .inner_box section {
  padding: 80px 0;
}
#solution .layout.about_mark_section {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#solution .layout.about_mark_section > .img_box {
  width: calc(100% - 100px);
  margin-bottom: 35px;
}

#solution .about_mark_section .section_title.inner {
  text-align: left;
}
#solution .about_mark_section .section_title.inner > h3 {
  margin: 0 0 30px 0;
  font-weight: 600;
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.5;
}
#solution .about_mark_section .section_contents p > em {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.5;
  font-weight: 700;
}

#solution .inner_box section.button_nav_section {
  padding: 20px 0 0 0;
}
#solution .button_nav_section .section_title.inner {
  margin: 0 0 25px 0;
}
#solution .button_nav_section .section_title.inner > h3 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

@media only screen and (min-width: 981px) {
  #solution {
    padding-bottom: 140px;
  }
  #solution::after {
    background-image: url("../../img/consumer/bg_section_end_w.svg");
    bottom: -9.8vw;
    width: 100vw;
    height: 18.75vw;
  }
  
  #solution .inner_box section {
    padding: 90px;
  }
  #solution .layout.about_mark_section > .img_box {
    width: calc(445vw / 16);
    max-width: 445px;
    margin-bottom: 0;
  }
  #solution .layout.about_mark_section > .contents_box {
    width: calc(100% - calc(445vw / 16) - calc(140vw / 16));
    max-width: 631px;
    margin-bottom: 0;
  }
  
  #solution .about_mark_section .section_title.inner {}
  #solution .about_mark_section .section_title.inner > h3 {
    margin: 0 0 45px 0;
    font-size: 40px;
    font-size: 4.0rem;
  }
  #solution .about_mark_section .section_contents p > em {
    font-size: 26px;
    font-size: 2.6rem;
  }
  #solution .inner_box section.button_nav_section {
    background-color: var(--c-lite-orange);
    padding: 90px;
  }
  #solution .button_nav_section .section_title.inner > h3 {
    font-size: 30px;
    font-size: 3.0rem;
  }
}
@media only screen and (min-width: 1600px) {
  #solution .layout.about_mark_section > .img_box {
    width: 445px;
  }
  #solution .layout.about_mark_section > .contents_box {
    width: calc(100% - 445px - 140px);
  }
}
/*------------------*/
#about {
  background-color: var(--c-lite-orange);
  
  position: relative;
  padding: calc(19.23vw + 70px) 0 70px 0;
}
#about::after {
  content: "";
  display: block;
  background-image: url("../../img/consumer/bg_section_end_sp_or.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -19.23vw;
  width: 100vw;
  height: 38.46vw;
  z-index: 1;
}
#about .wrapper {
  position: relative;
  z-index: 2;
}


#about .appearance.inner_box.column .img_box {
  width: calc(100% - 100px);
  margin-top: 20px;
  margin-bottom: 35px;
}
#about .appearance.inner_box.column .contents_box {}
#about .appearance.inner_box.column .contents_box > p {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

#about .appearance.conect_dot_list .layout.v_box .contents_box > h3 {
  margin: 0 0 15px 0;
}
#about .appearance.conect_dot_list .layout.v_box .contents_box > p {
  margin: 0;
}
@media only screen and (min-width: 981px) {
  #about {
    padding: calc(9.8vw + 150px) 0 140px 0;
  }
  
  #about::after {
    background-image: url("../../img/consumer/bg_section_end_or.svg");
    bottom: -9.8vw;
    width: 100vw;
    height: 18.75vw;
    }
  
  #about .appearance.inner_box.column .img_box {
    width: calc(298vw / 16); /*width: 298px;*/
    margin: calc(50vw / 16) calc(75vw / 16);
  }
  #about .appearance.inner_box.column .layout.two_column .contents_box {
    width: calc(100% - calc(598vw / 16)); /*width: calc(100% - 298px - 150px - 150px);*/
    margin: calc(50vw / 16) calc(75vw / 16);
  }
  
  #about .appearance.inner_box.column .contents_box > p {
    font-size: 30px;
    font-size: 3.0rem;
    line-height: 2;
    text-align: center;
  }
}
@media only screen and (min-width: 1600px) {
  #about .appearance.inner_box.column .img_box {
    width: 298px;
    margin: 50px 75px;
  }
  #about .appearance.inner_box.column .layout.two_column .contents_box {
    width: calc(100% - 298px - 150px - 150px);
    margin: 50px 75px;
  }
}
/*------------------*/
#organization {
  background-color: var(--c-lite-orange);
  
  position: relative;
  padding: calc(19.23vw + 70px) 0 70px 0;
}
#organization::after {
  content: "";
  display: block;
  background-image: url("../../img/consumer/bg_section_end_sp_or.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -19.23vw;
  width: 100vw;
  height: 38.46vw;
  z-index: 1;
}
#organization .wrapper {
  position: relative;
  z-index: 2;
}

#organization .inner_box section {
  padding: 0;
}
#organization .layout.about_japoc_section {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}
#organization .layout.about_japoc_section > .img_box {
  width: calc(100% - 40px);
  margin-bottom: 35px;
}

#organization .about_japoc_section .section_title.inner {
  text-align: left;
}
#organization .about_japoc_section .section_title.inner > h3 {
  margin: 0 0 30px 0;
  font-weight: 700;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.5;
}
#organization .about_japoc_section .section_contents > p {
  margin-top: 0;
}

#organization section.company_section {
  background-color: var(--c-white);
  border-radius: var(--thema-r);
  padding: 40px 30px;
}
#organization .company_section .section_title.inner {
  text-align: left;
  margin: 0 0 25px 0;
}
#organization .company_section .section_title.inner > h3 {
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 25px 0;
}
#organization .company_section .section_title.inner > p:last-of-type {
  text-align: center;
}
#organization .company_section .section_contents .appearance.img_list {
  max-width: 1140px;
  margin: 0 auto;
}
#organization .company_section .section_contents .layout.appearance.img_list {
  margin: 0 -20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#organization .company_section .section_contents .layout.appearance.img_list > * {
  margin: 10px 20px;
  width: calc(50% - 40px);
}
#organization .company_section .section_contents .layout.appearance.img_list > * > img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 981px) {
  #organization {
    padding: calc(9.8vw + 150px) 0 140px 0;
  }
  #organization::after {
    background-image: url("../../img/consumer/bg_section_end_or.svg");
    bottom: -9.8vw;
    width: 100vw;
    height: 18.75vw;
  }
  #organization .inner_box section {
    padding: 80px 90px 70px 90px;
  }
  #organization .layout.about_japoc_section {
    margin-bottom: 0;
  }
  #organization .layout.about_japoc_section > .img_box {
    width: calc(445vw / 16);
    margin-bottom: 0;
  }
  #organization .layout.about_japoc_section > .contents_box {
    width: calc(100% - calc(445vw / 16) - calc(140vw / 16));
  }
  
  #organization .about_japoc_section .section_title.inner > h3 {
    margin: 0 0 45px 0;
  }
  #organization section.company_section {
    background-color: var(--c-white);
    border-radius: 0px;
  }
  #organization .company_section .section_title.inner {
    text-align: center;
    margin: 0 0 25px 0;
  }
  #organization .company_section .section_title.inner > h3 {
    margin: 0 0 35px 0;
    font-size: 40px;
    font-size: 4.0rem;
  }
  #organization .company_section .section_contents .layout.appearance.img_list {
    margin: 0 auto;
  }
  #organization .company_section .section_contents .layout.appearance.img_list > * {
    margin: 10px 40px;
  }
}
@media only screen and (min-width: 1600px) {
  #organization .layout.about_japoc_section > .img_box {
    width: 445px;
  }
  #organization .layout.about_japoc_section > .contents_box {
    width: calc(100% - 445px - 140px);
  }
  
}
/*------------------*/
#certification {
  background-color: var(--c-white);
  
  position: relative;
  padding: calc(19.23vw + 70px) 0 70px 0;
}
#certification::after {
  content: "";
  display: block;
  background-image: url("../../img/consumer/bg_section_end_sp_w.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  bottom: -19.23vw;
  width: 100vw;
  height: 38.46vw;
  z-index: 1;
}
#certification .wrapper {
  position: relative;
  z-index: 2;
}

#certification .section_contents > nav {
  margin: 0 auto 40px auto;
}

@media only screen and (min-width: 981px) {
  #certification {
    padding: calc(9.8vw + 150px) 0 140px 0;
  }
  #certification::after {
    background-image: url("../../img/consumer/bg_section_end_w.svg");
    bottom: -9.8vw;
    width: 100vw;
    height: 18.75vw;
  }
  
  #certification .section_contents > nav {
    margin: 0 auto 80px auto;
    max-width: 1088px;
  }
}

/*------------------*/
#products {
  background-color: var(--c-white);
  
  position: relative;
  padding: calc(19.23vw + 70px) 0 70px 0;
}
#products .wrapper {
  position: relative;
  z-index: 2;
}

#products .section_title {}
#products .section_contents {
  background-color: var(--c-white);
  padding: 20px 0;
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (min-width: 981px) {
  #products {
    padding: calc(9.8vw + 150px) 0 140px 0;
  }
  #products .appearance.inner_box {
    background-color: var(--c-white);
  }
  #products .section_title {
    padding: 120px 100px 100px 100px;
    margin-bottom: 0;
  }
  #products .section_contents {
    padding: 0 100px 100px 100px;
  }
}

/* table */
#products .filter_box {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
#products .filter_box select {
  width: 200px;
}
#products .filter_box .search_ui:first-child select {
  width: 240px;
}
@media only screen and (min-width: 981px) {
  #products .filter_box {
    flex-direction: row;
    margin: 0;
  }
  #products .filter_box select {
    margin-right: 20px;
  }
}

#products .text-group {
  margin-top: 20px;
  overflow-y: auto;
}
#products table {
  width: 100%;
  min-width: 800px;
  margin: 0 20px 20px 20px;
  border-top: solid 2px #e5cfac;
  border-collapse: separate;
  
  font-size: 16px;
  font-size: 1.6rem;
}
#products table th,
#products table td {
  border-width: 1px;
  border-style: solid;
  vertical-align: middle;
}
#products table th {
  background-color: #f2f1e8;
  text-align: center;
  font-weight: bold;
  border-color: #FFF #F0E8D5 #F0E8D5 #FFF;
  padding: 10px;
}
#products table td {
  border-color: #f4f4f4;
  padding: 6px;
}
#products table td .inquire {
  margin-top: 5px;
  display: block;
}
#products table.product td {
  vertical-align: top;
}
#products table.product .pw5 {
  width: 5%;
}
#products table.product .pw10 {
  width: 10%;
}
#products table.product .pw15 {
  width: 10%;
}
#products table.product .pw20 {
  width: 20%;
}
#products table.product .pw25 {
  width: 25%;
}
#products table.product .pw30 {
  width: 30%;
}
#products table.product .sp_minw110 {
  min-width: 110px;
}
#products table.product .minw210 {
  min-width: 210px;
}
#products table.product .minw360 {
  min-width: 360px;
}

@media only screen and (min-width: 981px) {
  #products .text-group {
    overflow-y: visible;
  }
  #products table {
    width: 100%;
    min-width: none;
    margin: 0 0 20px 0;
  }
  #products table.product .sp_minw110 {
    min-width: 0px;
  }
}

/* ---------------------------------
  popup style
  ---------------------------------*/
#product-inquire {
  padding-top: 20px;
  padding-bottom: 20px;
}
#product-inquire table {
  width: 94%;
  margin: 0 3%;
  border: solid 1px #d2ccab;
  border-top: solid 3px var(--c-orange);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: #fff;
  border-collapse: separate;
}
#product-inquire table th {
  padding: 8px;
  background-color: #f2f1e8;
  border: 1px solid;
  border-color: #FFF #F0E8D5 #F0E8D5 #FFF;
  font-weight: bold;
  text-align: center;
}
#product-inquire table td {
  border: 1px solid #f4f4f4;
  padding: 20px;
  text-align: center;
}
#product-inquire .free-dial,
#product-inquire .free2-dial,
#product-inquire .free-call {
  padding-left: 70px;
  margin: 0 auto;
}
#product-inquire .free-dial {
  background: url("../../img/consumer/logo-free-dial.png") left top no-repeat;
  width: 300px;
}
#product-inquire .free2-dial {
  background: url("../../img/consumer/logo-free2-dial.png") left top no-repeat;
  margin: 10px auto;
  width: 370px;
}
#product-inquire .free-call {
  background: url("../../img/consumer/logo-free-call.png") left top no-repeat;
  width: 360px;
}
#product-inquire .number {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
}
#product-inquire .number.blue {
  color: #3c91ff;
}
#product-inquire .none {
  display: none;
}
#product-inquire .close {
  text-align: center;
  margin-top: 20px;
}
#product-inquire .close a {
  padding: 5px 20px;
  color: var(--c-white);
  background-color: var(--c-orange);
  text-decoration: none;
  border-radius: 3px;
}
#product-inquire .close a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
#product-inquire .company-07 .label {
  background-color: #fff30c;
  border: solid 1px #402f0f;
  padding: 2px 10px;
  letter-spacing: -2px;
  font-weight: bold;
}


/* ==========================================================================
   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;
  }
}

