/*
Theme Name: Pharmacy_Template2.0
Author: TripFarm,inc
Version: 2.0
License: TripFarm,inc
*/
@charset "UTF-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

html {
  scroll-behavior: smooth;
}
body {
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ,
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", brandon-grotesque,
    sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.8;
}
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
img {
  width: 100%;
  height: auto;
}
li {
  list-style: none;
}
ul.useful {
  padding: 16px;
  margin-bottom: 18px;
}
.img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* 共通→CSS変数設定 */
:root {
  --my-first-color: #cedb82; /* 変更可能 */
  --my-second-color: #f7ec68; /* 変更可能 */
  --my-bg-color: #f5f4f2; /* 固定 */
}

/* 共通 */
#whole_content {
  position: relative;
}
#whole_content::before {
  position: absolute;
  border-left: 5px solid var(--my-first-color);
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 25px 40px;
  overflow: hidden;
  box-sizing: border-box;
}
.normal_box {
  padding: 25px;
  margin-bottom: 20px;
}
.block {
  display: block;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pc-none {
  display: none;
}
section:nth-of-type(odd) .flex.col_2 {
  flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.txt_center {
  text-align: center;
}
.txt_right {
  text-align: right;
}
.col_2 .flex_child {
  width: 100%;
  flex-basis: 48%;
  height: auto;
  border-radius: 8px;
}
.col_2 .flex_child.imgs {
  width: 100%;
  flex-basis: 45%;
  height: auto;
  border-radius: 8px;
}
.col_2 .flex_child.text_zone {
  width: 100%;
  flex-basis: 50%;
  height: 100%;
  border-radius: 8px;
}
.col_3 .flex_child {
  width: 100%;
  flex-basis: 32%;
  height: auto;
  margin-bottom: 20px;
}
.sec_indicat {
  position: relative;
  width: 95%;
  margin: 0 auto 45px;
  text-align: right;
  border-bottom: 2px solid var(--my-bg-color);
}
.sec_indicat::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  width: 150px;
  height: 2px;
  background: var(--my-second-color);
}
.sec_ttl_box {
  text-align: center;
  margin-bottom: 40px;
}
.sec_ttl_box h2,
.sec_ttl_box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #343434;
}
.en_ttl {
  /* font-family:'Rokkitt', serif ; */
  font-family: "Merriweather", serif;
  font-size: 22px;
}
.text_zone {
  background: var(--my-bg-color);
  padding: 24px;
}
.text_zone h3,
.text_zone h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}
.text_zone p {
  font-size: 15px;
  margin-bottom: 14px;
}
.pre_b_radius {
  border-radius: 8px;
}
.img.pre_b_radius img {
  border-radius: 8px;
}
.view_more {
  padding: 20px;
}
.view_more a {
  background: #edece8;
  display: inline-block;
  width: 100%;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  box-sizing: border-box;
  transition: 0.3s;
}
.view_more a:hover {
  background: var(--my-first-color);
}
.fix-btn {
  position: fixed;
  right: 12px;
  bottom: 20px;
  z-index: 100;
  display: block;
  overflow: hidden;
  width: 130px;
  height: 130px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.fix-btn a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0c3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 0px 15px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.fix-btn a.insta {
  background-color: unset;
  background: linear-gradient(
    to right,
    rgba(247, 207, 0, 0.7),
    rgba(246, 37, 2, 0.7) 45%,
    rgba(182, 47, 82, 0.7) 75%,
    rgba(113, 58, 166, 0.7)
  );
  padding: 0;
}
/* 下層共通 */
.under_kv_container {
  position: relative;
  height: 41vw;
  margin-bottom: 40px;
  overflow: hidden;
}
.under_kv_circle {
  position: absolute;
  top: 10px;
  left: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--my-first-color);
  z-index: 0;
}
.under_kv_ttl_box {
  position: absolute;
  top: 170px;
  left: 150px;
  z-index: 1;
}
.under_kv_ttl {
  font-size: 36px;
}
.under_kv_subttl {
  font-size: 26px;
  font-family: "Caveat", cursive;
}
.img.under_kv {
  height: 100%;
  padding-left: 410px;
  border-top-left-radius: 20px;
  overflow: hidden;
}
.img.under_kv img {
  border-top-left-radius: 30px;
}
.plane_ttl {
  font-size: 21px;
  margin-bottom: 28px;
}
.plane_p {
  font-size: 16px;
  margin-bottom: 20px;
}
.common_dl {
  border-top: 2px solid var(--my-second-color);
  background: #f5f4f2;
  padding: 0 65px 40px;
  border-radius: 8px;
  font-size: 15px;
}
.common_dl dd,
.common_dl dt {
  border-bottom: 1px solid #d9d9d9;
  padding: 35px 0 10px;
  vertical-align: bottom;
}
.common_dl dd {
  display: inline-block;
  font-weight: 700;
  width: -webkit-calc(100% - 240px);
  width: calc(100% - 240px);
}
.common_dl dt {
  display: inline-block;
  width: 210px;
  font-weight: 700;
  margin-right: 20px;
}
/* ヘッダー */
.nav_logo {
  width: 100%;
  flex-basis: 20%;
}
.flex.nav_container {
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  gap: 15px;
}
header h1 {
  width: 160px;
  height: auto;
  /* padding-top: 10px; */
}
nav {
  width: 100%;
  flex-basis: 60%;
  background: var(--my-bg-color);
  padding: 12px 24px;
  border-radius: 35px;
  margin-right: 20px;
  margin-left: calc(20% - 230px);
  box-shadow: 0 1px 10px -4px #c6c8ca;
}
.nav_menu,
.btn_nav_cv {
  max-height: 65px;
}
.nav_container {
  padding: 25px 30px 25px 40px;
}
.nav_ul {
  padding: 4px 12px;
}
.nav_ul.flex {
  justify-content: space-around;
}
.nav_ul li {
  font-size: 15px;
  font-weight: 700;
}
.nav_ul li:hover {
  opacity: 0.5;
}
.btn_nav_cv {
  display: inline-block;
  background: var(--my-second-color);
  border: 1px solid var(--my-second-color);
  border-radius: 30px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 25px;
  line-height: 40px;
  box-shadow: 0 1px 10px -4px #c6c8ca;
  box-sizing: border-box;
}
.btn_nav_cv:hover {
  opacity: 0.4;
}
.btn_nav_cv.pc-none {
  display: none;
}
.btn-menu {
  display: none;
}
/* トップページ */
.bg_dot {
  background-color: transparent;
  background-image: radial-gradient(#e4e1de 30%, transparent 30%);
  background-size: 5px 5px;
}
.dot_top.bg_dot {
  position: absolute;
  width: 80%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.kv_container {
  position: relative;
  width: 100%;
  height: 46vw;
  padding-left: 190px;
  overflow: hidden;
  margin-bottom: 40px;
}
.kv_inner {
  position: relative;
  width: 100%;
  z-index: 1;
}
.kv_message_place {
  position: absolute;
  bottom: 65px;
  right: 24px;
  z-index: 2;
}
.kv_message_ttl span:first-of-type {
  margin-bottom: 16px;
  text-indent: -8px;
  padding-right: 12px;
}
.kv_message_ttl span {
  font-size: 26px;
  font-weight: 700;
  line-height: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  color: #4d482d;
  display: inline-block;
  padding: 4px 20px;
}
.slide {
  position: relative;
}
.slide__item {
  width: 100%;
  height: 46vw;
}
.slide__item > img {
  height: 100%;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}
.slide__item--first {
  position: absolute;
  top: 0;
  left: 0;
  /* background: var(--my-bg-color); */
}
.slide__item--secound {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* background: var(--my-bg-color); */
}
@keyframes opacity-start {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity-end {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top_news_pt1.flex {
  justify-content: space-around;
}
.flex_child.col_2.top_news_pt1 {
  width: 740px;
}
.newsfeed_pt1 {
  padding: 10px;
  box-sizing: border-box;
}
.newsfeed_pt1 li {
  background: var(--my-bg-color);
  padding: 26px 30px;
  border-bottom: 1px solid #e4e4e3;
  transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}
.newsfeed_pt1 li:hover {
  opacity: 0.6;
  cursor: pointer;
  background: var(--my-first-color);
}
.newsfeed_pt1_date {
  display: inline-block;
  width: 135px;
  text-align: center;
}
.newsfeed_pt1_ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.img.news_pt2 {
  height: 240px;
  border-radius: 8px 8px 0 0;
  background: var(--my-bg-color);
}
.newsfeed_pt2_date,
.newsfeed_pt2_cat {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
}
.newsfeed_pt2_date {
  padding-right: 8px;
}
.newsfeed_pt2_ttl_area {
  background: var(--my-bg-color);
  padding: 20px 20px 30px;
  margin-bottom: 10px;
  border-radius: 0 0 8px 8px;
}
.newsfeed_pt2_ttl {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
/* 薬局紹介 */
.sec_ttl_box h2.stores {
  font-size: 36px;
}
.pharmacy_list {
  max-width: 1200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
  text-align: center;
  margin: 25px auto 50px;
}
.pharmacy_list a {
  display: block;
  background: #fff;
  font-weight: 700;
  position: relative;
  border-top: 2px solid var(--my-bg-color);
  border-left: 2px solid var(--my-bg-color);
  border-right: 2px solid var(--my-bg-color);
  border-bottom: 3px solid var(--my-second-color);
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  padding: 20px 40px;
  border-radius: 6px;
}
.pharmacy_list a:hover {
  opacity: 0.4;
  color: var(--my-second-color);
}
section:nth-of-type(odd) .flex.col_2.stores {
  flex-direction: unset;
  -ms-flex-direction: unset;
}
.stores_singleImg.normal_box {
  margin-bottom: 0;
}
.stores_singleImg.img {
  width: 70%;
  height: auto;
  margin: 0 auto;
}
.stores_Message {
  padding: 20px;
  border: 2px solid var(--my-bg-color);
  margin-bottom: 25px;
  border-radius: 6px;
  box-shadow: 0px 0px 3px silver;
}
.liner_box {
  height: auto;
  margin: 0 0 20px;
  text-align: center;
}
.liner {
  display: inline;
  background: linear-gradient(transparent 70%, var(--my-first-color) 20%);
  text-align: center;
  padding-bottom: 3px;
  font-size: 16px;
}
.col_2 .flex_child.imgs.stores {
  flex-basis: 48%;
}
.common_dl.stores {
  padding: 10px 25px 25px;
  border-top: none;
  font-size: 13px;
}
.common_dl.stores dd,
.common_dl.stores dt {
  padding: 15px 0 10px;
}
.common_dl.stores dt {
  width: 140px;
}
.common_dl.stores dd {
  width: calc(100% - 170px);
  width: -webkit-calc(100% - 170px);
}
table.gnv_tmp_table tr {
  vertical-align: inherit;
  border-color: inherit;
}
table.gnv_tmp_table {
  margin: 0;
  width: 100%;
  border: 3px solid #d3d6e8;
  table-layout: inherit;
}
table.gnv_tmp_table tr {
  vertical-align: inherit;
  border-color: inherit;
}
table.gnv_tmp_table tr th:first-child,
table.gnv_tmp_table tr td:first-child {
  border-right: 2px solid #d3d6e8;
}
table.gnv_tmp_table th,
table.gnv_tmp_table td {
  color: #7a7a7a;
  text-align: center;
  background: #fff;
}
table.gnv_tmp_table th {
  background: #edeff6;
  border-bottom: 1px solid #d3d6e8;
  border-top: 1px solid #ccc;
  line-height: 1.4;
  padding: 7px 3px;
  font-weight: normal;
}
table.gnv_tmp_table td {
  padding: 12px 3px;
  border-bottom: 1px solid #d3d6e8;
}
ul.detail_info {
  padding: 10px 0px;
}
ul.detail_info li {
  padding-left: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
/* 採用情報 */
.staff {
  margin-bottom: 24px;
  padding: 16px;
  width: 100%;
  flex-basis: 33.333%;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  box-sizing: border-box;
}
.staff a {
  color: #242a2e;
  display: block;
  position: relative;
}
.staff__image {
  overflow: hidden;
}
.staff__image img {
  display: block;
  height: auto;
  width: 100%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.staff-caption {
  background: #fff;
  -webkit-box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  padding: 40px 24px 24px;
  position: absolute;
  right: 16px;
  bottom: -32px;
  left: 16px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.staff-caption__division {
  font-size: 11px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.staff-caption__division span {
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin-right: 0.25em;
  padding: 6px 8px;
}
.staff-caption__division span:last-child {
  margin-right: 0;
}
.staff-caption__division span.division-1 {
  background-color: #b32c2b;
}
.staff-caption__heading {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
.staff-caption__title {
  font-size: 12px;
  line-height: 1.2em;
  margin-bottom: 8px;
}
.staff-caption__name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.staff a:hover .staff-caption {
  -webkit-box-shadow: 0 24px 32px -16px rgba(0, 0, 0, 0.6);
  box-shadow: 0 24px 32px -16px rgba(0, 0, 0, 0.6);
}
.staff a:hover .staff__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.faq_inner {
  background: #fff;
  padding: 20px 40px;
  margin-bottom: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.faq_inner a.toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
span.int_Q,
span.int_A {
  display: inline;
  font-weight: 700;
  font-size: 2rem;
  color: var(--my-first-color);
}
span.int_Q {
  margin-right: 20px;
}
span.int_A {
  display: block;
}
.en {
  font-family: "Merriweather", serif;
  font-style: normal;
}
.faq_inner h3 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 16px;
}
.faq_inner p {
  font-size: 16px;
}
.faq_A_box {
  padding: 20px 40px;
  background: var(--my-bg-color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: none;
}
.open-answer {
  display: block;
  margin-top: 16px;
}
/* 採用インタビュー個別ここから */
.l-hero-wrap {
  background-size: cover;
  position: relative;
  height: 84vh;
  overflow: hidden;
}

.l-hero-wrap img {
  width: 100%;
  height: auto;
}
.l-container {
  margin: 0 auto;
  max-width: 1000px;
}
.l-interview-topWrap {
  padding-top: 46px;
}
.l-interview-catch {
  -webkit-flex-basis: 658px;
  -ms-flex-preferred-size: 658px;
  flex-basis: 658px;
}
.l-interview-number {
  font-size: 18px;
  font-weight: 400;
  line-height: 3.1111111111;
  font-family: "Merriweather", sans-serif;
  color: #c70313;
}
.l-interview-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5555555556;
  display: inline-block;
  margin-bottom: 16px;
  margin-top: 5px;
  position: relative;
}
.l-interview-topTxt {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25;
  margin-bottom: 60px;
}
.l-interview-profile {
  color: #fff;
  -webkit-flex-basis: 342px;
  -ms-flex-preferred-size: 342px;
  flex-basis: 342px;
  left: 100px;
  position: relative;
  top: -243px;
}

.l-interview-topWrap .l-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-interview-profile__name {
  background: var(--my-first-color);
  border-radius: 5px 5px 0 0;
  height: 120px;
  padding: 38px 32px;
}

.l-interview-profile__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.0714285714;
}

.l-interview-profile__h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 0.7631578947;
  margin: 10px 0 9px;
}

.l-interview-profile__history {
  background: #2d2d2d;
  border-bottom: 38px solid #2d2d2d;
  border-top: 38px solid #2d2d2d;
  border-radius: 0 0 5px 5px;
  height: 200px;
  overflow: hidden;
}

.l-interview-profile__historyTtl {
  margin-bottom: 14px;
  color: #999;
}

.l-interview-profile__list li .l-interview-profile__list--year {
  -webkit-flex-basis: 56px;
  -ms-flex-preferred-size: 56px;
  flex-basis: 56px;
}

.l-interview-profile__list li .l-interview-profile__list--txt {
  -webkit-flex-basis: 250px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
}
.scroll-content {
  padding: 0 32px;
}
.scroll-content ul {
  list-style: none;
}
.l-interview-profile__list li {
  font-size: 13px;
  font-weight: 400;
  line-height: 2.2307692308;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-interview-topWrap__bgImg {
  height: 410px;
  overflow: hidden;
}
.l-interview-topWrap__bgImg img {
  width: 100%;
  height: auto;
}
.l-interview-point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1366px;
  margin: auto;
}
.l-interview-point__img {
  -webkit-flex-basis: 45%;
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}
.point01 .l-interview-point__img {
  position: relative;
  top: -40px;
}
.l-interview-point__txt {
  -webkit-flex-basis: 48%;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
  padding: 52px 54px 80px 70px;
}
.l-interview-subTitle {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5333333333;
  margin-bottom: 21px;
}
.l-interview-qTitle {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7647058824;
  margin-bottom: 16px;
}
.l-interview-mainTxt {
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}
.point02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.l-interview-point.point02 .l-interview-point__img {
  -webkit-flex-basis: 44.5%;
  -ms-flex-preferred-size: 44.5%;
  flex-basis: 44.5%;
}
.point02 .l-interview-point__txt {
  padding-top: 120px;
}
.l-interview-point.point03 {
  padding-top: 80px;
}
.l-interview-bottomWrap:last-of-type {
  padding-top: 60px;
  margin-bottom: 60px;
}
.l-container {
  margin: 0 auto;
  max-width: 1000px;
}
.l-interview-bottomWrap__inner {
  margin-bottom: 60px;
}

/* 追加パーツ群 */
.ideal_detail_box {
  border: 1px solid var(--my-first-color);
  border-radius: 6px;
  box-shadow: 0px 0px 3px silver;
}
.ideal_detail_title {
  background: var(--my-first-color);
  font-size: 26px;
  color: #fffffd;
  padding: 12px 30px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 8px;
}
.check_lists {
  margin: 0 30px;
  padding: 0px 15px;
  text-align: center;
}
.check_lists li {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
}
ul.check_lists li::before {
  content: "●";
  color: var(--my-second-color);
  margin-right: 5px;
}
ol.check_lists {
  counter-reset: number;
  list-style-type: none !important;
}
ol.check_lists li {
  position: relative;
}
ol.check_lists li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: var(--my-second-color);
  color: #fff;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 20px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 10px;
}
ul.slowgan.check_lists li,
ol.slowgan.check_lists li {
  font-size: 22px;
}
ul.slowgan.check_lists li::before,
ol.slowgan.check_lists li::before {
  content: none;
}
.MessageSingle {
  padding: 40px 40px 50px;
  border: 2px solid var(--my-first-color);
  margin-bottom: 30px;
  box-shadow: 0px 0px 3px silver;
  border-radius: 8px;
}
.message_single_ttl {
  font-size: 26px;
  padding-bottom: 6px;
  text-align: center;
}
.message_single_ttl::after {
  content: "";
  display: block;
  margin: 10px auto 25px;
  width: 30px;
  height: 3px;
  background: var(--my-second-color);
}
.oneC_block {
  padding: 30px;
  border: 3px solid var(--my-bg-color);
  border-radius: 8px;
}
.oneC_block_ttl {
  font-size: 20px !important;
}
.MessageSingle p,
.oneC_block p {
  font-size: 18px;
  margin-bottom: 16px;
}

/* 追加パーツ > ボタン */

.btn,
a.btn,
button.btn {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  margin: 30px auto;
  width: 400px;
}

a.btn-c.pt1 {
  font-size: 1.4rem;
  position: relative;
  padding: 0.25rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: var(--my-second-color);
  -webkit-box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
  box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
}

a.btn-c.pt1 span {
  font-size: 1rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: var(--my-second-color);
  border: 2px solid var(--my-second-color);
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c.pt1:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: var(--my-second-color);
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  opacity: 0.4;
}

a.btn-c.pt1:hover:before {
  left: 2rem;
}

a.btn--yellow.pt2 {
  color: #fff;
  background-color: #0c3;
  border: 1px solid #f4f4f4;
}
a.btn--yellow.pt2:hover {
  color: #000;
  background: #fff20a;
  border: 1px solid #f4f4f4;
}
a.btn--yellow.pt2.btn--cubic {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn--yellow.pt2.btn--cubic:hover {
  margin-top: 3px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-c.pt2 {
  font-size: 1.4rem;
  position: relative;
  padding: 1.6rem 4rem 1.6rem 3rem;
  border-radius: 100vh;
}
a.btn-c.pt2 i.fa {
  margin-right: 1rem;
}
a.btn-c.pt2:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: "\f054";
}
.btn-copy {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 0.2em;
  text-align: center;
}
.btn-copy:before {
  margin-right: 1rem;
  content: "＼";
}
.btn-copy:after {
  margin-left: 1rem;
  content: "／";
}

a.btn-c.pt3 {
  font-size: 1.4rem;

  position: relative;

  padding: 0.25rem 2rem 1.5rem 3.5rem;

  color: #fff;
  background: var(--my-first-color);
  -webkit-box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
  box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
}

a.btn-c.pt3 span {
  font-size: 1rem;

  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);

  display: block;

  width: 300px;
  padding: 0.2rem 0;

  color: var(--my-first-color);
  border: 2px solid var(--my-first-color);
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c.pt3 span:before,
a.btn-c.pt3 span:after {
  position: absolute;
  left: calc(50% - 10px);

  content: "";
}

a.btn-c.pt3 span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: var(--my-first-color) transparent transparent transparent;
}

a.btn-c.pt3 span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn-c.pt3 i {
  margin-right: 1rem;
}

a.btn-c.pt3:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: var(--my-first-color);
  -webkit-box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
  box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
  opacity: 0.4;
}

/* お知らせ一覧 */
.archive_kv_desc {
  display: block;
  width: 70vw;
  padding: 28px 32px;
  margin: 0px auto 32px;
  background: var(--my-bg-color);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
p.archive_kv_desc-p {
  font-size: 18px;
  color: var(--my-first-color);
  font-weight: 700;
  margin-bottom: 12px;
}
p.archive_kv_desc-p span {
  font-size: 18px;
  padding: 0px 10px;
  color: var(--my-first-color);
  font-weight: 700;
}
ul.archive_kv_desc_cats.flex {
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
ul.archive_kv_desc_cats .cat-item a {
  background: #fff;
  margin-bottom: 8px;
  padding: 6px 28px;
  border-radius: 28px;
  border: 1px solid var(--my-first-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: 0.3s;
}
ul.archive_kv_desc_cats .cat-item a:hover {
  background: var(--my-first-color);
}
/* お知らせ個別 */
section.news_single {
  background: #f7f7f7;
}
.under_kv_container.single {
  margin: 25px auto;
  height: auto;
}
.single_ttl {
  font-size: 24px;
  margin-top: 20px;
}
.news_ttl_category {
  background: var(--my-first-color);
  padding: 2px 18px;
  border-radius: 20px;
  margin-right: 10px;
}
.news_inner {
  width: 70vw;
  margin: 0 auto;
  padding: 40px 35px;
  background: #fff;
}
.news_inner h2,
.oneC_block_ttl {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  border-left: 5px solid var(--my-second-color);
  padding-left: 14px;
}
.news_inner h2::after,
.oneC_block_ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  border-bottom: 1px solid #d9d9d9;
}
.news_inner h3 {
  background: #f4f4f4;
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}
.news_inner p {
  font-size: 15px;
  margin-bottom: 20px;
}
.news_inner a {
  font-weight: 600;
  color: #8bbeee;
  text-decoration: underline;
}
.news_inner img,
.news_inner video {
  max-width: 700px;
  height: auto;
  margin-bottom: 25px;
}
.news_inner ul,
.news_inner ol {
  background: #f4f4f4;
  padding: 10px;
  margin-bottom: 15px;
}
.news_inner ul li,
.news_inner ol li {
  margin-bottom: 10px;
}
/* お問い合わせフォーム */
/************************************
** お問い合わせフォームの入力
************************************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}
@media (max-width: 600px) {
  .inquiry td,
  .inquiry th {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
  }
  .inquiry .any,
  .inquiry .haveto {
    font-size: 10px;
  }
}
table.inquiry {
  width: 100%;
  margin-bottom: 25px;
}
.inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding-right: 5px;
  width: 30%;
  background: #f7f7f7;
  border: solid 1px #d7d7d7;
}
.inquiry td {
  font-size: 13px;
  border: solid 1px #d7d7d7;
}
.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #d7d7d7;
}
.haveto {
  font-size: 7px;
  padding: 5px;
  background: #ff9393;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.any {
  font-size: 7px;
  padding: 5px;
  background: #93c9ff;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.verticallist .wpcf7-list-item {
  display: block;
}
#formbtn {
  display: block;
  padding: 15px;
  width: 350px;
  background: #ffaa56;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 2px;
  margin: 25px auto 0;
}
#formbtn:hover {
  background: #fff;
  color: #ffaa56;
  border: 2px solid #ffaa56;
}
th {
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px;
}
td {
  border-top: 1px solid #ededed;
  padding: 12px;
}
input,
select,
textarea {
  border: 1px solid #dfdfdf;
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none;
}

/* カスタム店舗一覧 */
.shop_single {
  box-shadow: 0 12px 10px -6px rgb(0 0 0 / 30%);
  border-radius: 8px;
}

/* パンくず */
#breadcrumb {
  padding: 20px;
  box-shadow: none;
  margin: 0 auto;
  border-radius: 0;
  background: #fff;
}
#breadcrumb > ol > li {
  display: inline-block;
  margin: 0 5px;
}

/* フッター */
footer {
  background: var(--my-bg-color);
}
.footer_ttl {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
footer img.footer_ttl {
  width: 300px;
  height: auto;
  margin-bottom: 15px;
}
.footer_sub_ttl {
  font-size: 16px;
  margin-bottom: 25px;
}
.footer_links ul {
  clear: both;
  margin-bottom: 50px;
}
.footer_links ul li {
  display: inline-block;
  padding-right: 15px;
}
.footer_links ul li::after {
  display: inline-block;
  content: "/";
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  /* スマホ共通 */
  .flex {
    display: block;
  }
  .flex_child.imgs {
    margin-bottom: 20px;
  }
  .pc-none {
    display: block;
  }
  .container {
    padding: 30px 20px;
  }
  .sec_ttl_box h2,
  .sec_ttl_box h3 {
    font-size: 24px;
  }
  .en_ttl {
    font-size: 18px;
  }
  .sec_indicat {
    margin: 0 auto 30px;
  }
  .sec_ttl_box {
    margin-bottom: 25px;
  }
  .normal_box {
    padding: 10px;
    margin-bottom: 15px;
  }
  .view_more {
    padding: 15px;
  }
  .view_more a {
    height: 65px;
    line-height: 65px;
    font-size: 16px;
  }
  .text_zone h3,
  .text_zone h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  /* スマホ下層共通 */
  .under_kv_container {
    height: auto;
    overflow: initial;
  }
  .img.under_kv {
    padding: 0;
    border-top-left-radius: 0;
  }
  .img.under_kv img {
    border-top-left-radius: 0;
  }
  .under_kv_circle {
    display: none;
    left: initial;
    top: initial;
    bottom: 10%;
    right: 40%;
    width: 50px;
    height: 50px;
    z-index: 2;
  }
  .under_kv_ttl_box {
    width: 51vw;
    top: initial;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px 30px 10px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  }
  .under_kv_subttl {
    display: none;
  }
  .under_kv_ttl {
    font-size: 20px;
    text-align: center;
  }
  .under_kv_ttl::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--my-second-color);
    text-align: center;
    margin: 5px auto 5px;
  }
  .plane_ttl {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .plane_p {
    font-size: 15px;
  }
  .common_dl,
  .common_dl.stores {
    padding: 10px 15px 30px;
    font-size: 14px;
  }
  .common_dl dt,
  .common_dl.stores dt {
    width: 100%;
    padding: 10px 0 10px 0px;
    border-bottom: none;
  }
  .common_dl dt::before,
  .common_dl.stores dt::before {
    content: "●";
    color: var(--my-second-color);
    margin-right: 8px;
  }
  .common_dl dd,
  .common_dl.stores dd {
    width: 100%;
    padding: 0 0 10px;
    margin-bottom: 15px;
  }
  .col_2 .flex_child.imgs.stores {
    margin-top: 15px;
  }
  .stores_Message {
    margin-bottom: 20px;
  }
  .sec_ttl_box h2.stores {
    font-size: 24px;
  }
  /* スマホヘッダー */
  .nav_logo {
    display: none;
  }
  header {
    height: 55px;
  }
  header h1 {
    margin-left: 5px;
  }
  .sp_header_bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 55px;
    background: #fff;
    position: fixed;
    border: none;
    justify-content: space-between;
    z-index: 4;
  }
  .btn-menu {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 100%;
    border: none;
    background: var(--my-first-color);
    z-index: 5;
  }
  .btn-menu span {
    display: block;
    background: #fff;
    width: 26px;
    height: 2px;
    position: absolute;
    left: 15px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  .btn-menu span:first-child {
    top: 14px;
  }
  .btn-menu span:nth-child(2) {
    margin-top: -1px;
    top: 23px;
  }
  .btn-menu span:nth-child(3) {
    top: 30px;
  }
  .btn-menu::after {
    position: absolute;
    width: 56px;
    left: 0;
    bottom: 2px;
    content: "メニュー";
    font-size: 11px;
    font-weight: normal;
    text-align: center;
    color: #fff;
  }
  .nav_container {
    padding: 0;
  }
  .nav_menu {
    display: block;
    background: var(--my-bg-color);
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    overflow-x: hidden;
    text-align: center;
    padding: 0;
    margin-right: 0px;
    border-radius: 0;
    width: 0;
    transition: 0.3s;
    max-height: none;
  }
  nav.open-menu.nav_menu {
    width: 100%;
    height: 100%;
    margin-top: 55px;
    padding: 0;
    overflow-y: scroll;
    background: transparent;
  }
  .nav_menu .nav_ul {
    display: block;
    background: var(--my-bg-color);
    width: 100%;
    height: 100%;
    padding: 25px 0;
  }
  .nav_menu .nav_ul li {
    width: 100%;
    padding: 15px 40px;
    border-bottom: 2px solid #e4e4e3;
    text-align: center;
    font-size: 17px;
  }
  nav {
    padding: 12px 24px;
    margin-left: calc(20% - 230px);
    box-shadow: 0 1px 10px -4px #c6c8ca;
  }
  .btn_nav_cv {
    display: none;
  }
  .btn_nav_cv.pc-none {
    display: block;
  }
  header h1 {
    width: 120px;
  }
  /* スマホトップページ */
  .kv_container {
    padding-left: 0;
    height: 310px;
    margin-bottom: 20px;
  }
  .slide__item {
    height: 68vw;
  }
  .slide__item > img {
    border-radius: 0;
  }
  .kv_message_place {
    bottom: 35px;
    right: 8px;
  }
  .kv_message_ttl span {
    font-size: 16px;
    border-radius: 6px;
  }
  .kv_message_ttl span:first-of-type {
    margin-bottom: 8px;
  }
  .flex_child.col_2.top_news_pt1 {
    width: 100%;
  }
  .newsfeed_pt1 li {
    padding: 15px 25px;
  }
  .newsfeed_pt1_ttl {
    font-size: 14px;
  }
  .img.news_pt2 {
    height: 200px;
  }
  .newsfeed_pt2_ttl_area {
    padding: 15px 15px 25px;
    margin-bottom: 30px;
  }
  .newsfeed_pt2_date,
  .newsfeed_pt2_cat {
    font-size: 13px;
  }
  .newsfeed_pt2_ttl {
    font-size: 14px;
  }
  /* スマホの採用情報 */
  .faq_inner {
    padding: 10px;
  }
  .faq_inner h3 {
    font-size: 16px;
  }
  .faq_inner p {
    font-size: 14px;
  }
  span.int_Q,
  span.int_A {
    font-size: 22px;
  }
  .faq_A_box {
    padding: 15px 25px;
  }
  /* スマホの採用社員インタビューここから */
  .l-hero-wrap {
    width: 100%;
    height: 149vw;
  }
  /* 画像の位置を写真ごとに修正の必要あり */
  .l-hero-wrap img {
    width: 100%;
    height: 149vw;
    object-fit: cover; /* 画像を高さに合わせてリサイズ */
    object-position: -180px 0px; /* 画像の位置を指定 */
  }
  .l-container {
    padding: 0 20px;
  }
  .l-interview {
    position: relative;
  }
  .l-interview-topWrap {
    background-size: auto 308px;
    padding: 0 0 23.5px;
  }
  .l-interview-topWrap .l-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .l-interview-catch {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .l-interview-number {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4375;
    margin-bottom: 4.5px;
  }
  .l-interview-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.4347826087;
    margin-bottom: 6px;
  }
  .l-interview-topTxt {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7142857143;
    margin-bottom: 10px;
  }
  .l-interview-profile {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-bottom: 40px;
    position: static;
    z-index: 2;
    margin-top: -135px;
  }
  .l-interview-profile__name {
    height: 100px;
    padding: 19px 16px;
  }
  .l-interview-profile__txt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5833333333;
  }
  .l-interview-profile__h1 {
    font-size: 27px;
    font-weight: 700;
    line-height: 0.537037037;
    margin: 16px 0px;
  }
  .l-interview-profile__history {
    height: 135px;
    border-bottom: 3vw solid #2d2d2d;
    border-top: 1vw solid #2d2d2d;
    position: relative;
    z-index: -1;
  }
  .l-interview-profile__history .scroll-content {
    padding: 19px 16px;
  }
  .l-interview-profile__historyTtl {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.0357142857;
  }
  .l-interview-profile__list li {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.9166666667;
  }
  .l-interview-profile__list--txt {
    -webkit-flex-basis: 73% !important;
    -ms-flex-preferred-size: 73% !important;
    flex-basis: 73% !important;
  }
  .l-interview-topWrap__bgImg {
    height: 48vw;
  }
  .l-interview-point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }
  .l-interview-point.point01 .l-interview-point__img {
    top: -20px;
    min-height: 60vw;
    width: 90%;
  }
  .l-interview-point.point01 .l-interview-point__img img {
    padding: 0 20px;
  }
  .l-interview-point__txt {
    padding: 5px 19.5px 35px;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .l-interview-subTitle {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4761904762;
    margin-bottom: 12px;
  }
  .l-interview-qTitle {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4666666667;
    margin-bottom: 2px;
  }
  .l-interview-mainTxt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7142857143;
    letter-spacing: 0.04em;
  }
  .l-interview-point.point02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-interview-point.point02 .l-interview-point__img {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .l-interview-point__img img {
    display: block;
    margin: auto;
  }
  .l-interview-point.point02 .l-interview-point__txt {
    padding: 25.5px 19.5px;
  }
  .l-interview-point.point02 .l-interview-subTitle {
    margin-bottom: 8.5px;
  }
  .l-interview-point.point02 .l-interview-qTitle {
    margin-bottom: 3.5px;
  }
  .l-interview-point.point02 .l-interview-mainTxt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7142857143;
  }
  .l-interview-point.point03 {
    padding-top: 9.5px;
  }
  .l-interview-point__img {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    min-height: 70vw;
  }
  .l-interview-point.point03 .l-interview-point__txt {
    padding: 20px 20px 26.5px;
  }
  .l-interview-point.point03 .l-interview-subTitle {
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }
  .l-interview-point.point03 .l-interview-qTitle {
    margin-bottom: 3.5px;
  }
  .l-interview-point.point03 .l-interview-mainTxt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7142857143;
  }
  .l-interview-bottomWrap__inner {
    margin-bottom: 25px;
  }
  .l-interview-bottomWrap .l-interview-subTitle {
    margin-bottom: 6px;
  }
  .l-interview-bottomWrap .l-interview-mainTxt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7142857143;
  }
  /* スマホの薬局一覧 */
  .pharmacy_list {
    flex-wrap: wrap;
    margin: 0px auto 40px;
  }
  .pharmacy_list li {
    flex-basis: 45%;
    margin-bottom: 15px;
  }
  .pharmacy_list a {
    padding: 10px 0;
    font-size: 12px;
  }
  .stores_singleImg.img {
    width: 100%;
    height: auto;
  }
  /* スマホのパーツ群 */
  .ideal_detail_title {
    font-size: 18px;
    padding: 12px 16px;
    margin-bottom: 25px;
  }
  .check_lists {
    margin: 0 auto;
  }
  .check_lists li {
    font-size: 15px;
  }
  ul.slowgan.check_lists li,
  ol.slowgan.check_lists li {
    font-size: 15px;
  }
  ol.check_lists {
    padding: 15px 0;
  }
  ol.check_lists li {
    padding: 20px 0;
  }
  ol.check_lists li:before {
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .message_single_ttl {
    font-size: 16px;
  }
  .message_single_ttl::after {
    margin: 8px auto 20px;
  }
  .MessageSingle p,
  .oneC_block p {
    font-size: 15px;
  }
  .oneC_block_ttl {
    font-size: 17px !important;
  }
  .oneC_block {
    margin-bottom: 20px;
  }
  .MessageSingle {
    padding: 25px 20px 30px;
  }
  /* スマホのパーツ群 > ボタン */
  .btn-wrap {
    width: 100%;
  }
  a.btn-c.pt2 {
    font-size: 1.2rem;
    padding: 1.2rem 2rem 1.4rem 1.5rem;
  }
  /* スマホのお知らせ一覧 */
  .archive_kv_desc {
    width: 100%;
    padding: 15px 20px;
  }
  ul.archive_kv_desc_cats li {
    display: inline-block;
    margin-bottom: 12px;
  }
  p.archive_kv_desc-p {
    margin-bottom: 15px;
  }

  /* スマホのお知らせ個別 */
  .under_kv_container.single {
    margin: 25px auto;
    height: auto;
    padding: 0 8px;
  }
  .single_ttl {
    font-size: 18px;
  }
  .news_inner {
    width: 100%;
    padding: 30px 20px;
  }
  .news_inner p {
    font-size: 14px;
  }
  .news_inner h2 {
    font-size: 16px;
    padding: 14px 8px;
  }
  .news_inner h3 {
    font-size: 15px;
  }
  .news_inner img,
  .news_inner video {
    width: 100%;
    height: auto;
  }
  /* スマホのフッター */
  .footer_ttl {
    font-size: 20px;
  }
  .footer_sub_ttl {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .footer_links ul li {
    margin-bottom: 8px;
  }
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .kv_container {
    height: 350px;
  }
  .img.news_pt2 {
    height: 280px;
  }
  .under_kv_ttl_box {
    bottom: 50px;
    right: 50px;
    padding: 10px 35px 10px 30px;
  }
}
