html {
  overflow: auto;
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  overflow: hidden;
  line-height: 1.5;
  font-family: 'Noto Serif JP', sans-serif;
  color: #060606;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover,
a:focus {
  opacity: .7;
}
a[href^="tel:"] {
    pointer-events: none;
}
/* ローディング画面 */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #181818;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.loading_icon_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.looping-rhombuses-spinner, .looping-rhombuses-spinner * {
  box-sizing: border-box;
}
.looping-rhombuses-spinner {
  width: calc(15px * 4);
  height: 15px;
  position: relative;
  margin-top: 20px;
}
.looping-rhombuses-spinner .rhombus {
  height: 15px;
  width: 15px;
  background-color: #163491;
  left: calc(15px * 4);
  position: absolute;
  margin: 0 auto;
  border-radius: 2px;
  transform: translateY(0) rotate(45deg) scale(0);
  animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}
.looping-rhombuses-spinner .rhombus:nth-child(1) {
  animation-delay: calc(2500ms * 1 / -1.5);
}
.looping-rhombuses-spinner .rhombus:nth-child(2) {
  animation-delay: calc(2500ms * 2 / -1.5);
}
.looping-rhombuses-spinner .rhombus:nth-child(3) {
  animation-delay: calc(2500ms * 3 / -1.5);
}
@keyframes looping-rhombuses-spinner-animation {
  0% {
    transform: translateX(0) rotate(45deg) scale(0);
  }
  50% {
    transform: translateX(-233%) rotate(45deg) scale(1);
  }
  100% {
    transform: translateX(-466%) rotate(45deg) scale(0);
  }
}
/* パララックス */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.js-parallax {
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
/*下からフェードイン*/
.fade-in-bottom {
   opacity: 0;
   animation-name: fadein-bottom;
   animation-duration: 1.5s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
   0% {
      opacity: 0;
      transform: translateY(20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}
/* 要素スクロールフェードイン */
.slide-bottom {
   opacity: 0;
   transform: translateY(30px);
   transition: all 1.3s 0s ease-out;
 }
 .rice_container img:nth-of-type(2){
	transition-delay: .3s;
}
.rice_container img:nth-of-type(3){
	transition-delay: .6s;
}
/* プラグイン */
#glt-translate-trigger {
  background-color: #163491 !important;
}
/* テキスト共通クラス */
.line_height_w {
  line-height: 36px;
}
.text_white {
  color: #fff;
}
/* 共通部品 */
/* ボタン */
.btn_wrap {
  margin: 60px auto 0;
  width: 360px;
}
.btn_online_wrap {
  margin: 60px auto 0;
  width: 466px;
}
.btn {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 26px 10px;
  border: 2px solid transparent;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  transition: .25s;
  letter-spacing: 0.1rem;
}
.btn_blue {
  background-color: #163491;
  box-shadow: 0 0 18px rgba(0, 0, 0, .7);
}
.btn_white {
  background-color: #fff;
  color: #163491;
  box-shadow: 0 0 18px rgba(0, 0, 0, .7);
}
.btn_white:focus, .btn_white:hover {
  background-color: #163491;
  border-color:  #fff;
  color: #fff;
  opacity: 1;
}
.btn_blue:focus, .btn_blue:hover {
  background-color: #fff;
  border-color: #163491;
  color: #163491;
  opacity: 1;
}
.btn_back {
  background-color: #cdcdcd;
}
.btn_arrow_right {
  position: relative;
  padding-right: 2rem;
  padding-right: 1rem;
  z-index: 1;
}
.btn_arrow_right::after {
  content: 'keyboard_arrow_right';
  position: absolute;
  font-size: 3rem;
  top: 50%;
  right: 1rem;
  font-family: 'Material Icons';
  font-weight: 100;
  transform: translateY(-50%);
}
.btn_online {
  border: 1px solid #5d5d5d;
  width: 100%;
  padding: 30px 10px;
  font-size: 1.6rem;
}
.btn_online:focus, .btn_online:hover {
  background-color: #163491;
}
.btn_cart_icon {
  position: relative;
}
.btn_cart_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 19px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../img/cart_icon.png) no-repeat;
  background-size: contain;
}
.btn_phone {
  background-color: #dfe4f7;
  color: #082787;
  font-family: 'Noto Sans JP';
  font-size: 3.2rem;
  width: 40%;
  margin-right: 40px;
}
.btn_fax {
  background-color: #f3f3f3;
  color: #262626;
  font-family: 'Noto Sans JP';
  font-size: 3.2rem;
  width: 40%;
  pointer-events: none;
}
.btn_phone_icon {
  position: relative;
  padding-right: 2rem;
  padding-right: 1rem;
  z-index: 1;
}
.btn_fax_icon {
  position: relative;
  padding-right: 2rem;
  padding-right: 1rem;
  z-index: 1;
}
.btn_phone_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 33px;
  height: 27px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../img/btn_phone_icon.png) no-repeat;
  background-size: contain;
}
.btn_fax_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 31px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url(../img/btn_fax_icon.png) no-repeat;
  background-size: contain;
}
.action_btn_wrap{
  position: relative;
  width: 100%;
  height: 87px;
}
  .action_btn_wrap::after{
  transition: 0.3s;
  content: "";
  width: .6em;
  height: .6em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* 共通ページコンテナ */
.inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section_inner {
  display: flex;
}
/* ヘッダー */
.js-header_scroll_color {
  background-color: #fff;
}
.sp_header {
  display: none;
}
.pc_header {
  width: 100%;
  position: fixed;
  font-size: 1.4rem;
  z-index: 15;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header_logo {
  width: 220px;
  min-width: 200px;
  height: 50px;
  margin: auto 0 auto 30px;
}
.header_logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.header_logo_scroll {
  display: none;
}
.header_flex_box {
  display: flex;
  width: 80%;
  justify-content: flex-end;
}
.global_navi {
  height: 70px;
  line-height: 70px;
  width: 600px;
}
.navi {
  width: auto;
  display: flex;
  justify-content: space-between;
}
.navi_list {
  position: relative;
}
.navi_link {
  color: #fff;
}
#menu li a{
  display: block;
}
#menu li ul{
  position: absolute;
  top: 100%;
  left: 0;
}
#menu li:last-child ul{
  left: -100%;
  width: 100%
}
#menu li ul li{
  overflow: hidden;
  width: 200px;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#menu li ul li a{
  padding: 0 0 0 12px;
  background-color: #000000;
}
#menu li:hover ul li{
  overflow: visible;
  height: 100%;
}
.header_btn_container {
  display: flex;
  margin-left: 30px;
}
.header_btn_link {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 200px;
  max-width: 100%;
  padding: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  font-size: 1.4rem;
}
.btn_mail_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 17px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url("../img/header_contact_icon.png") no-repeat;
  background-size: contain;
}
.btn_tel_icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 19px;
  height: 16px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url("../img/header_phone_icon.png") no-repeat;
  background-size: contain;
}
.header_btn_blue {
  color: #fff;
  background-color: #163491;
}
.header_btn_white {
  font-size: 1.8rem;
  background-color: #fff;
  padding-left: 20px;
  padding-bottom: 5px;
}
.btn_time {
  font-size: 1rem;
}
/* スクロールした場合のカラー変更 */
.js-header_scroll_color .header_logo {
  display: none;
}
.js-header_scroll_color .header_logo_scroll {
  width: 220px;
  min-width: 200px;
  height: 50px;
  margin: auto 0 auto 30px;
  display: block;
}
.js-header_scroll_color .header_logo_scroll img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.js-header_scroll_color .navi_link {
  color: #222;
}
.js-header_scroll_color #menu li ul li{
  color: #222;
}
.js-header_scroll_color #menu li ul li a{
  background: #fff;
}

/* トップメイン */
.mainvisual_section {
  overflow: hidden;
}
.js-bg_slider {
  position: relative;
	width: 100%;
	height: 100vh;
	background-position:center center;
	background-size: cover;
  /* background-color: #555555; */
}
.mainvisual_tt {
  position: absolute;
  max-width: 550px;
  top: 60%;
  left: 20%;
}
.mainvisual_tt img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* 会社概要セクション */
.company_container {
  background-image: url(../img/section_company_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: auto;
  position: relative;
  background-color: #555555;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
.company_head_ttl {
  font-size: 3.2rem;
  writing-mode: vertical-rl;
  line-height: 61px;
  font-weight: normal;
  margin: 0 auto;
}
.text_box p {
  text-align: center;
  margin: 0 auto;
  font-family: 'Noto Sans JP';
}

/* オンラインショップセクション */
.store_container {
  background-image: url(../img/section_store_bg.png);
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% bottom;
  height: 100vh;
  max-height: 1400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  z-index: 2;
  background-color: #fff;
}
.content_left {
  flex: 1;
  text-align: center;
  margin-top: -100px;
}
.section_head {
  text-align: center;
}
.section_ttl {
  font-size: 3.6rem;
  font-weight: normal;
  position: relative;
}
.logo_before::before {
  position: absolute;
  content: "";
  width: 57px;
  height: 47px;
  background-image: url(../img/logo_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -50px;
  left: 50%;
  transform: translateX( -50%);
}
.section_ttl_sub {
  font-family: 'Noto Sans JP';
  text-transform: uppercase;
}
.section_txt {
  margin-top: 30px;
  display: inline-block;
}
.content_right {
  flex: 1;
  margin-top: -120px;
  height: auto;
}
.rice_container {
  display: flex;
}
.rice_container img {
  width: 100%;
  height: 100%;
}

/* ガイドセクション */
.guide_section {
  padding: 140px 0 170px 0;
  background-color: #fff;
}
.guide_img_container {
  flex: 1;
  max-width: 50%;
}
.guide_img_container img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}
.reverse_layout {
  display: flex;
  margin-top: 80px;
}
.reverse_layout:nth-child(even) {
  flex-direction: row-reverse;
}
.section_head_wrap {
  flex: 1;
  text-align: center;
  position: relative;
}
.vertical_mid_wrap{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* お知らせセクション */
.news_section {
  margin: 140px 0;
  background-color: #fff;
}
.vertical_posts {
  margin-top: 50px;
}
.vertical_posts_item {
  padding: 40px 26px;
  border-top: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
}
.vertical_posts_item:last-child {
  border-bottom: 1px solid #d3d3d3;
}
.list_flex {
  display: flex;
  align-items: center;
}
.vertical_posts_date {
  color: #303030;
  font-size: 1.4rem;
  margin-right: 86px;
  font-family: 'Noto Sans JP';
}
.vertical_posts_label {
  color: #163491;
  font-size: 1.4rem;
  padding: 8px 26px;
  border: 1px solid #163491;
  margin-right: 60px;
  pointer-events: none;
}
.vertical_posts_ttl {
  color: #303030;
  font-weight: normal;
  max-width: 60%;
}
.vertical_posts_ttl:focus,
.vertical_posts_ttl:hover {
  color: #303030;
  text-decoration: underline;
}

/* footerエリア */
.footer {
  background-image: url(../img/footer_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  background-position: top right 30%;
  padding: 120px 0 80px 0;
}
.footer_inner {
  display: flex;
  align-items: center;
}
.footer_adress_wrap {
  flex: 1;
}
.footer_img {
  width: 224px;
  height: 52px;
}
.footer_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.footer_address {
  margin-top: 50px;
}
.footer_phone {
  margin-top: 20px;
  display: inline-block;
}
.footer_navi_container {
  flex: 1.5;
}
.footer_navi_wrap {
  display: flex;
  justify-content: space-around;
}
.footer_navi {
  margin-left: 50px;
}
.footer_list{
  margin-top: 30px;
}
.navi_margin_l {
  margin-top: 66px;
}
.child_footer_list {
  background-image:url(../img/list-style_icon.jpg);
  background-position:left center;
  background-repeat:no-repeat;
  padding-left: 1.5rem;
  margin-top: 30px;
}
.copyright {
  background-color: #000;
  color: #7b7b7b;
  letter-spacing: 0.3rem;
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0 35px 0;
  font-family: 'Noto Sans JP';
}

/* 下層ページ共通 */
.page_head {
  height: 300px;
  width: 100%;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page_head img {
  width: 100%;
  height: 300px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  vertical-align: bottom;
  object-fit: cover;
}
.page_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  padding-top: 35px;
}
.page_inner {
  padding: 80px 0 135px 0;
}
.pagenation {
  margin-top: 80px;
  text-align: center;
  padding-bottom: 16px;
  line-height: 30px;
  vertical-align: middle;
  font-family: 'Noto Sans JP';
  display: flex;
  justify-content: center;
}
.page-numbers {
  background-color:#fff;
  color:#7a7a7a;
  border:1px solid #d5d5d5;
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 2rem;
  margin-right: 16px;
}
.current {
  color:#fff;
  background-color:#666;
  border:1px solid #d5d5d5;
}
.next,.prev {
  color:#7a7a7a;
  background-color:#fff;
  border:1px solid #d5d5d5;
  width: 60px;
  height: 30px;
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 2px;
}
.prev {
  margin-right: 16px;
}
.bread_crumbs {
  margin-top: 20px;
  font-family: 'Noto Sans JP';
  font-size: 1.4rem;
  color: #222;
}

/* 記事詳細ページ */
.info_detail_title {
  font-size: 3.6rem;
  font-weight: normal;
  color: #222;
}
.detail_date_wrap {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  font-family: 'Noto Sans JP';
  color: #222;
}
.detail_date {
  font-size: 1.4rem;
}
.detail_date_labels {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.detail_date_labels:last-child {
  margin-right: 0;
}
.detail_date_label {
  margin: 0 10px;
}
.category_label {
  font-size: 1.4rem;
  padding: 5px 28px;
  border: 1px solid #939393;
  margin-right: 10px;
}
.article_content {
  margin-top: 60px;
  font-family: 'Noto Sans JP';
  font-size: 2rem;
  color: #222;
}
.article_content h1 {
  font-size: 3rem;
  margin-top: 1em;
}
.article_content h2 {
  font-size: 2.66rem;
  margin-top: 1em;
}
.article_content h3 {
  font-size: 2.37rem;
  margin-top: 1em;
}
.article_content h4 {
  font-size: 2.1rem;
  margin-top: 1em;
}
.article_content h5 {
  font-size: 1.8rem;
  margin-top: 1em;
}
.is-style-rounded {
  border-radius: 50%;
}
.article_content li {
  list-style: circle;
  margin-left: 1rem;
  margin-top: 16px;
}
.article_content img {
  object-fit: contain;
  height: auto;
  margin-top: 16px;
  width: 100%;
}
/* ご相談ページ */
.faq_head {
  font-size: 2rem;
  text-align: center;
  color: #222;
}
.faq {
  margin-top: 100px;
  font-size: 2rem;
  color: #303030;
}
.faq_row {
  position: relative;
  display: flex;
  align-items: flex-start;
  box-sizing: content-box;
  min-width: 45px;
  padding-left: 75px;
}
.faq_row_question {
  margin-bottom: 50px;
  font-weight: bold;
}
.faq_question_txt {
  padding-top: 6px;
}
.faq_row_answer {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #d3d3d3;
}
.faq_row_answer_bdrnone {
  border-bottom: none;
}
.faq_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  font-weight: bold;
  line-height: 39px;
  text-align: center;
  font-family: 'Noto Sans JP';
}
.faq_icon_question {
  background-color: #082787;
  color: #fff;
}
.faq_icon_answer {
  background-color: #a70008;
  color: #fff;
}
.faq_answer_body {
  padding-top: 6px;
}
.faq_answer_txt_span {
  font-size: 1.6rem;
  display: block;
  margin-top: 40px;
}
.faq_answer_txt_ul {
  margin: 30px 0;
  padding-left: 24px;
}
.faq_answer_txt_list {
  list-style-type: decimal;
  padding-left: 16px;
}
.section_hr {
  margin: -100px calc(50% - 50vw) 100px;
  width: 100vw;
}

/* 会社概要ページ */
.bg_width {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.pdbt {
  padding-bottom: 90px;
}
.bg_img1 {
  background-image: url(../img/bg_logo.png);
  background-repeat: no-repeat;
  background-color: #f8faff;
  background-position: center;
}
.bg_img2 {
  background-image: url(../img/section_bg2.jpg);
  background-repeat: no-repeat;
  background-color: #f8faff;
  background-position: center;
  background-size: cover;
}
.section_padding_inner {
  padding: 137px 0 90px 0;
}
.section_title_3 {
  font-size: 3rem;
  text-align: center;
  margin-top: 66px;
  font-weight: normal;
}
.section_title_3_sub {
  display: block;
  font-size: 2rem;
  font-weight: normal;
}
.section_txt_container {
  text-align: center;
  margin-top: 50px;
  font-size: 2rem;
  line-height: 2;
}
.section_list_wrap {
  margin: 40px auto 0;
  text-align: center;
  display: block;
  font-size: 2rem;
  line-height: 2;
}
.section_ul {
  display: inline-block;
}
.section_list {
  text-align: left;
}
.sub_txt {
  text-align: right;
  margin-top: 60px;
}
.tab_01 {
  margin-top: 50px;
}
tr {
  border-bottom: 1px dotted #989898;
}
tr:last-child {
  border-bottom: none;
}
th {
  font-weight: bold;
  padding: 20px 0 20px 80px;
  width: 35%;
  vertical-align: baseline;
  font-weight: normal;
  text-align-last: left;
}
td {
  padding: 20px 0;
}
.sdg_img_wrap {
  margin-top: 40px;
  text-align: center;
}
.sdg_img_wrap img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* プライバシーページ */
.text_black {
  color: #303030;
  font-family: 'Noto Sans JP';
}
.privacy_main_ttl {
  font-size: 2.6rem;
  color: #082787;
  margin-top: 50px;
  font-weight: normal;
}
.privacy_ttl {
  font-size: 2rem;
  color: #082787;
  margin-top: 50px;
  font-weight: normal;
  padding: 4px 20px;
  border-left: 4px solid #082787;
}
.common_txt {
  margin-top: 30px;
  padding-left: 20px;
  color: #303030;
  font-family: 'Noto Sans JP';
}
.privacy_list_wrap {
  margin-left: 32px;
}
.privacy_ttl_sub {
  font-size: 2rem;
  color: #082787;
  font-weight: normal;
  margin-top: 36px;
}
.privacy_sub_txt {
  margin-top: 30px;
  font-family: 'Noto Sans JP';
}
.text_black_blue {
  color: #002;
}
.privacy_list {
  margin-top: 36px;
  font-family: 'Noto Sans JP';
}
.privacy_address_wrap {
  margin-top: 30px;
  color: #303030;
  font-family: 'Noto Sans JP';
}
.privasy_address_ttl {
  font-weight: bold;
}
.privacy_address {
  display: flex;
  font-style: normal;
}
.privacy_address p:nth-of-type(2) {
  margin-left: 20px;
}

/* 品質ページ */
.media_wrap {
  margin-top: 140px;
}
.media {
  display: flex;
}
.media:not(:first-child) {
  margin-top: 60px;
}
.media_img_wrap {
  margin-right: 66px;
  margin-left: 30px;
  width: 198px;
  height: 138px;
}
.media_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media_body:last-child {
  margin-bottom: 0;
}
.media_title {
  margin-bottom: 10px;
  font-size: 2.6rem;
  padding: 2px 20px;
  border-left: 5px solid #082787;
}
.media_txt {
  margin-top: 22px;
  font-size: 2rem;
  max-width: 736px;
}

/* お客様の声ページ */
.voice_heading_txt {
  font-size: 2rem;
  text-align: center;
  color: #222;
}
.voice_wrap {
  background-color: #f6f8ff;
  padding: 50px 27px 75px 44px;
  margin-top: 80px;
}
.voice_head {
  display: flex;
}
.voice_img_wrap {
  width: 130px;
}
.voice_img_wrap img {
  width: 130px;
  height: 150px;
}
.voice_img_sub {
  font-size: 1.2rem;
  color: #303030;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: 'Noto Sans JP';
}
.voice_ttl {
  font-size: 2.6rem;
  color: #001968;
  margin-top: 43px;
  margin-left: 40px;
}
.voice_txt {
  margin-top: 40px;
  color: #303030;
  font-size: 2rem;
}
.voice_answer_wrap {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
.voice_answer_txt {
  font-size: 2rem;
  background-color: #fff;
  padding: 40px;
  max-width: 750px;
  position: relative;
  border-radius: 10px;
  border: 1px solid #dfe4f7;
  color: #303030;
}
.voice_answer_txt::before {
  content: "";
  position: absolute;
  top: 26%;
  right: -60px;
  margin-top: -12px;
  border: 30px solid transparent;
  border-left: 30px solid #fff;
  z-index: 2;
}
.voice_answer_txt::after {
  content: "";
  position: absolute;
  top: 26%;
  right: -64px;
  margin-top: -14px;
  border: 32px solid transparent;
  border-left: 32px solid #dfe4f7;
  z-index: 1;
}
.voice_answer_img {
  width: 120px;
  height: 120px;
  margin-top: 20px;
  margin-left: 50px;
}

/* お問い合わせページ */
.contact_head {
  text-align: center;
}
.contact_head_txt {
  font-size: 2rem;
}
.contact_btn_wrap {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}
.contact_head_detail {
  margin-top: 58px;
}

.contact_head_detail .section_title_3{
    font-family: 'Noto Serif JP', sans-serif;
    margin-bottom: 40px;
  }
.contact_txt {
  margin-top: 40px;
}
.con--head-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: normal;
    align-items: normal;
    margin-top: 66px;
    width: calc(100% - 35px);
}
.con--head-arrow._blue {
    color: #fff;
    background: #003365;
}
.con--head-arrow._blue:before {
    border-color: transparent transparent transparent #003365;
}
.con--head-arrow {
    position: relative;
    width: 50%;
    padding: 15px 0;
    text-align: center;
    font-size: 2rem;
    color: #888888;
    background: #ebebeb;
    font-family: 'NotoSansJP';
}
.con--head-arrow:before {
    content: "";
    position: absolute;
    z-index: 9;
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #ebebeb;
}
.con--head-arrow:after {
    content: "";
    position: absolute;
    z-index: 8;
    top: -5px;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 0 35px 35px;
    border-color: transparent transparent transparent #fff;
}
.con--head-arrow._op {
    background: #ebebeb;
}
.con--head-arrow._op:before {
    border-color: transparent transparent transparent #ebebeb;
}
.required_icon {
  border: 1px solid #ff9999;
  display: inline-block;
  padding: 6px 10px;
  font-size: 1.2rem;
  color: #ff9999;
}
.form_inner {
  width: 820px;
  padding-top: 50px;
  margin: 0 auto;
  font-family: 'Noto Sans JP';
}

.form_box {
  color: #000;
  margin: 0 auto;
  margin-top: 80px;
}
.field-wrap {
  padding: 16px 0;
  align-items: center;
  border-bottom: 1px dashed #cfcfcf;
}

.nf-field-label {
  display: flex;
  width: 40%;
  min-width: 40%;
  justify-content: space-between;
  align-items: center;
  margin: 0 4%;
  box-sizing: content-box;
}
.nf-field-element {
  width: 50%!important;
  text-align: left;
}
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
  opacity: .7;
}
.nf-field-element input,
.nf-field-element textarea {
  padding: 9px 12px;
  width: 100%;
  font-size: 1.6rem;
  color: #222;
  background-color: #f2f9ff;
  border: 1px solid #c4cacd;
  font-family: 'Noto Sans JP';
}

/* 個人情報承認 */
#nf-field-16-wrap{
  border-bottom: 0;
  justify-content: flex-start;

  .nf-field-element{
    width: 10px!important;
  }
}

#nf-description-16{
  margin-right: 0;
}

.ip_bg_white input {
  background-color: #fff;
}
.input_box textarea {
  padding: 9px 12px;
  width: 100%;
  height: calc( 1em * 16);
  font-size: 1.6rem;
  color: #222;
  background-color: #f2f9ff;
  border: 1px solid #c4cacd;
  font-family: 'Noto Sans JP', sans-serif;
  resize: none;
}
input[type="checkbox"] {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0;
  margin-right: 20px !important;
  vertical-align:middle;
}
.service_term_link {
  text-align: center;
  margin-top: 80px;
}
.service_term_link a {
  text-decoration: underline;
}
.agreement {
  text-align: center;
  margin-top: 10px;
}
#agree > .horizontal-item {
  margin-left: 20px;
}
#agree input[type="checkbox"] {
    margin-right: 6px !important;
}
.action_box_block {
  color: #fff;
  position: relative;
  line-height: 2.8em;
  width: 350px;
  transition: 0.5s;
  margin: 60px auto 0;
}
#nf-field-8 {
  background-color: #003365;
  display: inline-block;
  border-style: none;
  color: #fff;
  width: 336px;
  padding: 30px 0;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

#nf-field-8-wrap{
  flex-direction: column;
  border-bottom: none;
}

.action_box:focus,
.action_box:hover {
  opacity: .7;
}
.mw_wp_form_confirm .service_term_link,
.mw_wp_form_confirm .agreement {
  display: none;
}
.btn_back  {
  background-color: #cdcdcd;
  margin-top: 10px;
}
/* スマホ非表示CSS */
.sp_display {
  display: none;
}
.sp_br {
  display: none;
}
/* 共通背景 */
.bg_glay {
  background-color: #f7f7f7;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 1024px) {
  .js-parallax {
    background-size: cover;
    background-attachment: scroll;
  }
}

@media screen and (max-width:960px) {
  /* テキスト共通クラス */
  .line_height_w {
    line-height: 50px;
  }
  /* ボタン */
  .btn_wrap {
    width: 80%;
  }
  .btn {
    font-size: 3rem;
  }
  .btn_arrow_right::after {
    font-size: 5rem;
}
  .btn_online_wrap {
    width: 80%;
  }
  .btn_online {
    font-size: 2.6rem;
  }
  .btn_phone {
    width: 80%;
    margin-right: 0;
  }
  .btn_fax {
    width: 80%;
    margin-top: 20px;
  }

  /* 共通コンテナ */
  .inner {
    width: 90%;
  }
  .section_inner {
    flex-direction: column;
  }
  /*ハンバーガーメニュー*/
  .menu_wrap {
    width: 110px;
    height: 110px;
    position: relative;
    background-color: #fff;
  }
  .menu{
    height: 40px;
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translate(-0,-50%);
    width: 50px;
    z-index: 99;
  }
  .menu__line{
    background: #082787;
    display: block;
    height: 5px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
  }
  .menu__line--center{
    top: 17px;
  }
  .menu__line--bottom{
    bottom: 0;
  }
  .menu__line--top.active{
    top: 17px;
    transform: rotate(45deg);
  }
  .menu__line--center.active{
    transform:scaleX(0);
  }
  .menu__line--bottom.active{
    bottom: 17px;
    transform: rotate(135deg);
  }
  .active .header_logo {
    display: block !important;
    width: 300px;
    min-width: 200px;
    height: auto;
    margin: auto 0 auto 15px;
  }
  .active .header_logo_scroll {
    display: none;
  }
  /*gnav*/
  .sp_global_navi{
    display: none;
    background-color: #181818;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
  }
  .global_nav_wrap{
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
  }
  .sp_navi {
    margin-left: 50px;
  }
  .sp_navi_list{
    margin: 40px 0;
  }
  .child_sp_navi_list {
    background-image:url(../img/list-style_icon.jpg);
    background-position:left center;
    background-repeat:no-repeat;
    padding-left: 1.5rem;
    margin-top: 30px;
  }
  .sp_navi_link{
    color: #fff;
    font-size: 2.6rem;
    transition: .5s;
  }
  .sp_navi_link:hover{
    color: #666;
}
/* ヘッダーエリア */
  .pc_header {
    display: none;
  }
  .sp_header {
    display: block;
    position: fixed;
    height: 110px;
    width: 100%;
    z-index: 100;
    font-size: 2.6rem;
  }
  .sp_header.active {
    background-color: #181818;
  }
  .header_logo {
    width: 300px;
    min-width: 200px;
    height: auto;
    margin: auto 0 auto 15px;
  }
  .js-header_scroll_color .header_logo {
    display: none;
  }
  .js-header_scroll_color .header_logo_scroll {
    width: 300px;
    min-width: 200px;
    height: auto;
    margin: auto 0 auto 15px;
  }
  /* ヘッダーボタンエリア */
  .header_btn_flex {
    display: flex;
  }
  .header_btn_link {
    height: 110px;
    width: 110px;
  }
  .header_btn_link::before {
    height: 30px;
    width: 40px;
    left: 50%;
    background: url("../img/sp_header_contact_icon.png") no-repeat;
    transform: translate(-50%,-50%);
  }
  /* トップメイン */
  .mainvisual_tt {
    left: 5%;
    width: 80%;
  }
  .mainvisual_tt img {
    margin-top: 20px;
  }
  /* 会社概要セクション */
  .company_container {
    height: auto;
  }
  .company_head_ttl {
    font-size: 4.6rem;
    letter-spacing: -0.1rem;
  }
  .text_box p {
    font-size: 2.6rem;
  }
  /* オンラインショップセクション */
  .store_container {
    height: 1600px;
    padding: 50px 0 70px 0;
    display: block;
  }
  .content_left {
    margin-top: 0;
  }
  .section_ttl {
    font-size: 5.6rem;
    margin-top: 150px;
  }
  .logo_before::before {
    width: 124px;
    height: 102px;
    top: -110px;
  }
  .section_ttl_sub {
    font-size: 2.6rem;
  }
  .section_txt {
    font-size: 2.6rem;
    margin-top: 40px;
    display: block;
  }
  .content_right {
    margin: 40px auto 0;
  }
  .rice_container img {
    width: calc(100%/3);
  }

  /* ガイドセクション */
  .guide_section {
    padding: 50px 0 140px 0;
  }
  .reverse_layout {
    flex-direction: column;
  }
  .guide_img_container {
    width: 70%;
    margin: 0 auto;
    max-width: inherit;
  }
  .reverse_layout {
    flex-direction: column;
    margin-top: 0;
  }
  .reverse_layout:nth-child(even)  {
    flex-direction: column;
    margin-top: 150px;
  }
  .vertical_mid_wrap {
    position: static;
    transform: translateY(0);
  }

  /* お知らせセクション */
  .news_section {
    padding: 0;
  }
  .vertical_posts_item {
    padding: 70px 0 70px 0;
    flex-direction: column;
    align-items: baseline;
  }
  .vertical_posts_item:last-child {
    margin-bottom: 100px;
  }
  .vertical_posts_date {
    font-size: 2rem;
  }
  .vertical_posts_label {
    font-size: 2rem;
    padding: 14px 40px;
    margin-right: 0;
  }
  .vertical_posts_ttl {
    font-size: 2.6rem;
    margin-top: 34px;
    max-width: inherit;
  }

  /* footerエリア */
  .footer {
    padding: 170px 0 220px 0;
  }
  .footer_inner {
    flex-direction: column;
    font-size: 2.6rem;
  }
  .footer_img {
    width: 448px;
    height: 104px;
  }
  .footer_address {
    margin-top: 40px;
  }
  .footer_phone {
    margin-top: 40px;
  }
  .footer_navi_wrap {
    margin-top: 60px;
  }
  .footer_navi {
    margin-left: 0;
  }
  .footer_navi:last-child {
    margin-left: 50px;
  }
  .footer_list {
    margin-top: 60px;
  }
  .navi_margin_l {
    margin-top: 90px;
  }
  .child_footer_list {
    margin-top: 60px;
  }
  .copyright {
    font-size: 1.6rem;
  }
  .sdg_img_wrap img {
    width: 100%;
  }

  /* 会社概要ページ */
  th {
    padding: 20px 0;
  }
  td {
    padding: 20px 0;
  }

  /* プライバシーポリシー */
  .privacy_address {
    flex-direction: column;
  }
  .privacy_address_wrap {
    line-height: 2;
  }
  .privacy_address p:nth-of-type(2) {
    margin-left: 0;
  }

  /* 品質ページ */
 .media_wrap {
  margin-top: 140px;
}
.media {
  display: block;
}
.media_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.media_img_wrap {
  margin-right: 0;
}
.media_title {
  margin-bottom: 0;
}

/* お客様の声ページ */
.voice_answer_txt::before {
  top: 60px;
}
.voice_answer_txt::after {
  top: 60px;
}

/* お問い合わせページ */

.nf-form-content .field-wrap{
  display: block;

}

.nf-form-content .nf-field-element{
  width: 100%!important;

}

  .contact_btn_wrap {
    margin-top: 27px;
    flex-direction: column;
    align-items: center;
  }
  .form_inner {
    width: auto;
  }
  .required_icon {
    margin-left: 5px;
    min-width: 50px;
  }
  .vertical-item:nth-child(even) {
  margin-left: 0;
  }

    /* スマホ表示CSS */
  .pc_display {
    display: none;
  }
  .sp_display {
    display: block;
  }
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}
@media screen and (max-width:560px) {
  a[href^="tel:"] {
      pointer-events: all;
  }
  .line_height_w {
    line-height: 18px;
  }
  .btn_wrap {
    margin-top: 30px;
  }
  .btn_online_wrap {
    margin: 30px auto 0;
  }
  .btn {
    font-size: 1.5rem;
    padding: 20px 10px;
  }
  .btn_arrow_right::after  {
    font-size: 2rem;
  }
  .btn_phone {
    width: 90%;
    margin-right: 0;
    font-size: 2.6rem;
  }
  .btn_fax {
    width: 90%;
    margin-top: 20px;
    font-size: 2.6rem;
  }
  .btn_phone_icon::before {
    width: 22px;
    height: 18px;
    top: 50%;
    left: 15px;
  }
  .btn_fax_icon::before {
    width: 22px;
    height: 20px;
    top: 50%;
    left: 15px;
}
  .action_btn_wrap{
    position: relative;
    width: 100%;
    height: 54px;
   }
  .action_btn_wrap::after{
    transition: 0.3s;
    content: "";
    width: .6em;
    height: .6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
  }
  /* ハンバーガーメニュー */
  .menu_wrap {
    width: 60px;
    height: 60px;
  }
  .menu {
    width: 30px;
    height: 25px;
  }
  .menu__line {
    height: 3px;
  }
  .menu__line--center{
    top: 11px;
  }
  .menu__line--top.active{
    top: 11px;
  }
  .menu__line--bottom.active{
    bottom: 11px;
  }
  .active .header_logo {
    width: 200px;
    height: 45px;
    min-width: 150px;
    margin: auto 0 auto 5px;
  }

  /* gnav */
  .global_nav_wrap {
    width: 95%;
    margin: 0 auto;
  }
  .sp_navi {
    margin-left: 20px;
  }
  .sp_navi_list {
    margin: 20px 0;
  }
  .child_sp_navi_list {
    margin-top: 15px;
    background-position: left 70%;
  }
  .sp_navi_link {
    font-size: 1.3rem;
  }

  /* ヘッダーエリア */
  .sp_header {
    height: 60px;
  }
  .header_logo {
    width: 200px;
    height: 45px;
    min-width: 150px;
    margin: auto 0 auto 5px;
  }
  .js-header_scroll_color .header_logo_scroll {
    width: 200px;
    height: 45px;
    min-width: 150px;
    margin: auto 0 auto 5px;
  }
  .header_btn_link {
    height: 60px;
    width: 60px;
  }
  .header_btn_link::before {
    background-size: 100%;
    height: 15px;
    width: 20px;
  }
   /* トップメイン */
  .mainvisual_tt {
    width: 90%;
    top: 50%;
  }
  .mainvisual_tt img {
    width: 100%;
    height: auto;
  }
  /* 会社概要セクション */
  .company_container {
    padding: 40px 0;
  }
  .company_head_ttl {
    font-size: 2.3rem;
    line-height: 30px;
  }
  .text_box {
    margin-top: 10px;
  }
  .text_box p {
    font-size: 1.3rem;
  }
  /* オンラインショップセクション */
  .store_container {
    padding: 25px 0 35px 0;
    height: 800px;
    background-position: 40% bottom;
  }
  .section_ttl {
    font-size: 2.8rem;
    margin-top: 75px;
  }
  .logo_before::before {
    width: 48px;
    height: 40px;
    top: -40px;
  }
  .section_ttl_sub {
    font-size: 1.3rem;
  }
  .section_txt {
    font-size: 1.3rem;
    margin-top: 20px;
  }
  .content_right {
    margin: 20px auto 0;
  }
    /* ガイドセクション */
  .guide_section {
    padding: 25px 0 70px 0;
  }
  .reverse_layout:nth-child(even) {
    margin-top: 75px;
  }

    /* お知らせセクション */
  .news_section {
    margin: 70px 0 105px 0;
  }
  .vertical_posts_item {
    padding: 30px 0 30px 0;
  }
  .vertical_posts_item:last-child {
    margin-bottom: 50px;
  }
  .vertical_posts_date {
    font-size: 1.2rem;
  }
  .vertical_posts_label {
    font-size: 1.2rem;
    padding: 7px 14px;
  }
  .vertical_posts_ttl {
    font-size: 1.3rem;
    margin-top: 17px;
  }

  /* footerエリア */
  .footer {
    padding: 85px 0 110px 0;
    background-image: url(../img/sp_footer_bg.jpg);
    background-position: top right;
  }
  .footer_inner {
    font-size: 1.3rem;
  }
  .footer_img {
    width: 224px;
    height: 52px;
  }
  .footer_address {
    margin-top: 20px;
  }
  .footer_phone {
    margin-top: 20px;
  }
  .footer_navi_wrap {
    margin-top: 30px;
  }
  .footer_navi:last-child {
    margin-left: 25px;
  }
  .footer_list {
    margin-top: 30px;
  }
  .navi_margin_l {
    margin-top: 45px;
  }
  .child_footer_list {
    margin-top: 30px;
  }
  .copyright {
    font-size: 1.2rem;
    padding: 20px 0;
  }

  /* 下層ページ共通 */
  .page_head {
    height: 170px;
  }
  .page_head img {
    height: 100%;
  }
  .page_ttl {
    font-size: 2rem;
    padding-top: 20px;
  }
  .page_inner {
    padding: 40px 0 70px 0;
  }
  .pagenation {
    margin-top: 40px;
  }
    .pagenation {
    line-height: 40px;
  }
  .page-numbers {
    width: 40px;
    height: 40px;
    margin-right: 4px;
  }
  .next,.prev {
    width: 66px;
    height: 40px;
    font-size: 1.3rem;
  }
  .prev {
    margin-right: 10px;
  }
  .bread_crumbs {
    margin-top: 10px;
    font-size: 1.3rem;
  }

  /* 記事詳細ページ */
  .info_detail_title {
    font-size: 2rem;
  }
  .detail_date_wrap {
    margin-top: 40px;
  }
  .detail_date {
    font-size: 1.2rem;
  }
  .category_label {
    padding: 3px 14px;
    font-size: 1.2rem;
  }
  .article_content {
    margin-top: 30px;
    font-size: 1.3rem;
  }
  .article_content img{
    width: 100%;
    height: auto;
  }

  /* ご相談ページ */
  .faq {
    margin-top: 50px;
    font-size: 1.6rem;
  }
  .faq_row {
    padding-left: 40px;
    font-size: 1.3rem;
  }
  .faq_row_question {
    margin-bottom: 25px;
  }
  .faq_question_txt {
    padding-top: 3px;
  }
  .faq_row_answer {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .faq_icon {
    width: 30px;
    height: 30px;
    line-height: 28px;
  }
  .faq_answer_body {
    padding-top: 3px;
  }
  .faq_answer_txt_span {
    font-size: 1.3rem;
    margin-top: 20px;
  }
  .faq_answer_txt_ul {
    margin: 15px 0;
    padding-left: 12px;
  }
  .faq_answer_txt_list {
    padding-left: 8px;
  }

  /* 会社概要ページ */
  .pdbt {
    padding-bottom: 45px;
  }
  .bg_img1 {
    background-size: 90%;
  }
  .section_padding_inner {
    padding: 10px 0 45px 0;
  }
  .section_title_3 {
    font-size: 2rem;
    margin-top: 33px;
  }
  .section_title_3_sub {
    font-size: rem;
  }
  .section_txt_container {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  .section_list_wrap {
    font-size: 1.3rem;
    margin-top: 20px;
  }
  .sub_txt {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  .tab_01 {
    margin-top: 25px;
    font-size: 1.3rem;
  }
  th {
    padding: 10px 0;
  }
  td {
    padding: 10px 0;
  }
  .sdg_img_wrap {
    margin-top: 20px;
  }

  /* プライバシーページ */
  .privacy_main_ttl {
    font-size: 2rem;
    margin-top: 25px;
  }
  .privacy_ttl {
    font-size: 1.6rem;
    margin-top: 25px;
    padding: 2px 10px;
  }
  .common_txt {
    font-size: 1.3rem;
    margin-top: 15px;
    padding-left: 10px;
  }
  .privacy_list_wrap {
    margin-left: 16px;
  }
  .privacy_ttl_sub {
    font-size: 1.6rem;
  }
  .privacy_sub_txt {
    margin-top: 15px;
    font-size: 1.3rem;
  }
  .privacy_list {
    margin-top: 18px;
    font-size: 1.3rem;
  }
  .privacy_address_wrap {
    margin-top: 15px;
    font-size: 1.3rem;
  }


  /* 品質ページ */
  .media_wrap {
    margin-top: 70px;
  }
  .media:not(:first-child) {
    margin-top: 30px;
  }
  .media_img_wrap {
    margin-right: 0;
    margin-left: 15px;
    width: 36%;
    height: auto;
    min-width: 100px;
  }
  .media_title {
    font-size: 1.8rem;
    padding: 2px 10px;
    margin-bottom: 0;
    border-left: 3px solid #082787;
  }
  .media_txt {
    font-size: 1.3rem;
    margin-top: 14px;
    max-width: fit-content;
  }

  /* お客様の声ページ */
  .voice_heading_txt {
    font-size: 1.6rem;
  }
  .voice_wrap {
    padding: 25px 12px 30px 12px;
    margin-top: 40px;
  }
  .voice_wrap:last-of-type {
    margin-bottom: 150px;
  }
  .voice_img_wrap {
    width: auto;
  }
  .voice_img_wrap img {
    width: 100px;
    height: auto;
  }
  .voice_img_sub {
    font-size: 1.1rem;
  }
  .voice_ttl {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-left: 20px;
    line-height: 27px;
  }
  .voice_txt {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 26px;
  }
  .voice_answer_wrap {
    margin-top: 35px;
  }
  .voice_answer_txt {
    font-size: 1.2rem;
    padding: 20px 10px;
    line-height: 24px;
  }
  .voice_answer_txt::before  {
    top: 40px;
    right: -35px;
    border: 15px solid transparent;
    border-left: 20px solid #fff;
  }
  .voice_answer_txt::after {
    top: 40px;
    right: -39px;
    border: 17px solid transparent;
    border-left: 22px solid #dfe4f7;
  }
  .voice_answer_img {
    width: 60px;
    height: 60px;
    margin-top: 10px;
    margin-left: 30px;
  }

  /* お問い合わせページ */
  .contact_head_txt {
    font-size: 1.6rem;
  }
  .contact_btn_wrap {
    margin-top: 27px;
  }
  .contact_head_detail {
    margin-top: 29px;
  }
  .contact_txt {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  .con--head-arrow {
    font-size: 1.6rem;
  }
  .con--head-arrow:before {
    border-width: 27px 0 27px 27px;
  }
  .con--head-arrow:after {
    border-width: 32px 0 32px 32px;
  }
  .required_icon {
    padding: 4px 8px;
    min-width: auto;
    order: 1;
    margin-left: 0;
    margin-right: 10px;
  }
  .form_inner {
    width: auto;
  }
  .form_box {
    margin-top: 40px;
  }
  .input_box {
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.3rem;
  }
  .radio_container {
    margin-top: 20px;
    font-size: 1.3rem;
    width: auto;
  }
  .vertical-item {
    margin-bottom: 22px;
  }
  input[type="checkbox"] {
    width: 24px;
    height: 24px;
  }
  .label_ttl {
    width: 100%;
    margin: 0;
    justify-content: start;
  }
  .label_area {
    font-size: 1.3rem;
    order: 2;
  }
  .input_mt20 p {
    margin-top: 20px;
  }
  .input_area {
    width: 100%;
    margin-top: 10px;
    font-size: 1.3rem;
  }
  .input_box input {
    font-size: 1.3rem;
    padding: 6px 9px;
  }
  .input_box textarea {
    font-size: 1.3rem;
    padding: 6px 9px;
    width: 100%;
    margin-top: 10px;
  }
  input[type="checkbox"] {
    margin-right: 10px;
  }
  .service_term_link {
    margin-top: 40px;
    font-size: 1.3rem;
  }
  .agreement {
    font-size: 1.3rem;
  }
  .action_box_block {
    max-width: 350px;
    width: auto;
    margin: 30px auto 0;
  }
  .action_box {
    width: 100%;
    padding: 15px 0;
    font-size: 1.6rem;
  }
  /* 共通背景 */
  .bg_glay {
  background-color: #f7f7f7;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
}
