/*
Theme Name: ドクターズファーマシー
Theme URI: 
Description: 
Author: 
Version: 1.0
*/
@charset "utf-8";

/* ========================================
  CSS カスタムプロパティ（CSS変数）
======================================== */
:root {
  --main-color1: #D26EA0;
  --main-color2: #2882C8;
  --text-color: #222;
  --sub-text-color: #666666;
  --gray-color1: #f5f5f5;
  --gray-color2: #dcdcdc;
}

/* ========================================
  リセットCSS / 基本設定
======================================== */
html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* リセット：要素の初期化 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, p, blockquote, pre,
a, address, em, ins, strong, var,
b, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
nav, output, section, time, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  word-break: break-all;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, nav, section {
  display: block;
}

/* 基本的な要素のスタイル */
body {
  line-height: 1.8;
  font-size: 16px;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #1e1e1e;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

/* 見出し・強調文字のフォント */
b, strong, .bold, 
h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* 画像・SVG要素 */
img {
  vertical-align: bottom;
}

svg {
  vertical-align: middle;
}

/* リンク */
a {
  text-decoration: none;
  color: #1e1e1e;
}

/* リスト */
ol, ul {
  list-style: none;
}

/* 引用 */
blockquote, q {
  quotes: none;
}

blockquote:before, 
blockquote:after {
  content: '';
  content: none;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0;
}

th {
  white-space: nowrap;
  padding: 5px 10px;
  border: 1px solid #b9b9b9;
  background-color: #eee;
}

td {
  padding: 5px 10px;
  border: 1px solid #b9b9b9;
  text-align: left;
  vertical-align: middle;
}

/* ボックスモデル */
*, 
*:before, 
*:after {
  box-sizing: border-box;
}

/* ========================================
  共通コンポーネント
======================================== */

/* ボタンスタイル */
.s_btn a {
  display: block;
  width: 200px;
  height: 56px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 14px 20px 0;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.s_btn a:after {
  content: "";
  background: linear-gradient(to right, #D26EA0, #D26EA0, #D26EA0, #2882C8);
  width: 400px;
  top: 0;
  right: 0;
  display: block;
  position: absolute;
  height: 56px;
  z-index: -1;
  transition: .3s;
}

.s_btn a:hover:after {
  right: -200px;
}

.s_btn a:before {
  content: "";
  width: 10px;
  height: 8px;
  background: url('/wp-content/uploads/icon_arrow.svg') no-repeat;
  position: absolute;
  margin-top: -4px;
  top: 50%;
  right: 24px;
  transition: .3s;
}

.s_btn a:hover:before {
  transform: translateX(10px);
}

.m_btn {
  display: none;
}

/* ========================================
  ヘッダー
======================================== */
.header {
  max-width: 100%;
  width: 100%;
  height: 90px;
  margin: auto;
  display: flex;
  position: fixed;
  align-items: center;
  padding: 0 48px;
  top: -90px;
  left: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  background: #fff;
  border-bottom: solid 1px #F5F5F5;
}

.header.is-show {
  top: 0;
}

.header_logo {
  width: 330px;
}

.header_nav {
  flex: 1;
  text-align: right;
}

.header_nav .nav-content .logo,
.header_nav .nav-content .mn_logo {
  display: none;
}

.header_nav input {
  display: none;
}

.header_nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}

.header_nav ul li {
  margin-left: 24px;
  position: relative;
}

.header_nav .s_btn a {
  width: 156px;
  height: 55px;
}

.header_nav .s_btn a:after {
  width: 312px;
}

.header_nav .s_btn a:hover:after {
  right: -156px;
}

.header_nav .under a {
  position: relative;
}

.header_nav .under a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #D26EA0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header_nav .under a:hover::after {
  transform: scale(1, 1);
}

/* ========================================
  下層ページ共通レイアウト
======================================== */
.c_header {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 70px auto 0;
  display: flex;
  gap: 30px;
}

.c_header .sub_header {
  width: 230px;
}

.c_header .c_header_p {
  flex: 1;
  max-width: 900px;
  width: 100%;
}

/* サブヘッダーナビゲーション */
.sub_header .sub-nav {
  line-height: 1;
  margin-top: 45px;
  font-weight: 700;
}

.sub_header .sub-nav li {
  margin-bottom: 24px;
  position: relative;
  margin-left: 20px;
}

.sub_header .sub-nav li:nth-child(5) {
  margin-bottom: 32px;
}

.sub_header .sub-nav .s_btn {
  margin-left: 0;
}

.sub_header .sub-nav .s_btn a {
  width: 166px;
  padding: 20px 20px 0;
}

.sub_header .sub-nav .s_btn a:after {
  width: 332px;
}

.sub_header .sub-nav .s_btn a:hover:after {
  right: -166px;
}

.sub_header .sub-nav .under a {
  position: relative;
}

.sub_header .sub-nav .under a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #D26EA0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.sub_header .sub-nav .under a:hover::after {
  transform: scale(1, 1);
}

.sub_header .sub-nav .selected:before {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  background: #D26EA0;
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  border-radius: 50%;
}

/* ========================================
  トップページ メインビジュアル
======================================== */
#mv {
  position: relative;
  height: 530px;
  width: 100%;
}

.mv_c {
  position: relative;
  height: 530px;
  max-width: 940px;
  width: 100%;
  border-radius: 260px 260px 260px 260px;
  overflow: hidden;
}

.mv_c:after {
  content: "";
  position: absolute;
  width: calc(50% - 10px);
  height: 100%;
  background: #F8E9F1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0px 20px 20px 0px;
}

.mv_c:before {
  content: "";
  position: absolute;
  width: calc(50% - 10px);
  height: 100%;
  background: #D9EBF6;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 20px 0px 0px 20px;
}

.mv_c img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mv_t1 {
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
}

.mv_t2 {
  display: block;
  position: absolute;
  bottom: 5px;
  left: -20px;
}

/* ========================================
  フッター
======================================== */
#footer {
  margin-top: 80px;
  background: #f5f5f5;
}

.footer_contact {
  background: linear-gradient(to right, #D26EA0, #2882C8);
  text-align: center;
  padding: 60px 0;
}

.footer_contact_c {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
  gap: 6px;
}

.footer_contact_c .con_tel,
.footer_contact_c .con_web {
  width: 100%;
  display: flex;
}

.footer_contact_c .con_tel a {
  display: block;
  width: 100%;
  height: 100%;
  background: #F8E9F1;
  border-radius: 100px 8px 8px 100px;
  transition: .3s;
  padding: 23px 0 33px 0;
}

.footer_contact_c .con_web a {
  display: block;
  width: 100%;
  height: 100%;
  background: #DFECF7;
  border-radius: 8px 100px 100px 8px;
  transition: .3s;
  padding: 23px 0 33px 0;
}

.footer_contact_c .con_tel a:hover,
.footer_contact_c .con_web a:hover {
  background: #fff;
}

.footer_contact_c .con_tel_inner .ttl {
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #222;
  line-height: 2.3;
}

.footer_contact_c .con_tel_inner .number {
  font-family: "Montserrat", serif;
  color: #D26EA0;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .2rem;
  line-height: 1;
  margin-top: 22px;
}

.footer_contact_c .con_tel_inner .text {
  margin-top: 2px;
}

.footer_contact_c .con_web .ttl {
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #222;
  line-height: 2.3;
}

.footer_contact_c .con_web .s_btn {
  display: block;
  width: 260px;
  height: 56px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 14px 20px 0;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin: 25px auto 0;
}

.footer_contact_c .con_web .s_btn:after {
  content: "";
  background: linear-gradient(to right, #D26EA0, #D26EA0, #D26EA0, #2882C8);
  width: 520px;
  top: 0;
  right: 0;
  display: block;
  position: absolute;
  height: 56px;
  z-index: -1;
  transition: .3s;
}

.footer_contact_c .con_web a:hover .s_btn:after {
  right: -260px;
}

.footer_contact_c .con_web .s_btn:before {
  content: "";
  width: 10px;
  height: 8px;
  background: url('/wp-content/uploads/icon_arrow.svg') no-repeat;
  position: absolute;
  margin-top: -4px;
  top: 50%;
  right: 24px;
  transition: .3s;
}

.footer_contact_c .con_web a:hover .s_btn:before {
  transform: translateX(10px);
}

.flow_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 700;
  width: 648px;
  height: 140px;
  margin: 115px auto 0;
  padding-left: 36px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 8px #ccc;
  transition: all 0.3s ease-in-out;
}

.flow_btn a:before {
  content: "";
  background: url('/wp-content/uploads/btn_flow2.png') no-repeat center center;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  top: 0;
  left: 0;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.flow_btn .flow_btn_bgz {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.flow_btn a:hover:before {
  transform: scale(1.1);
}

.flow_btn a:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url('/wp-content/uploads/icon_arrow_b-1.svg') no-repeat;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.footer_ac_c {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px 0;
  display: flex;
  align-items: flex-start;
}

.footer_ac_c .footer_logoArea {
  width: 120px;
}

.footer_ac_c .footer_logoArea img {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}

.footer_ac_c .footer_logoArea a:hover img {
  opacity: 0.8;
}

.footer_ac_c .footer_nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.footer_ac_c .footer_nav ul {
  width: 220px;
}

.footer_ac_c .footer_nav .nav_m {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  font-weight: 700;
}

.footer_ac_c .footer_nav > ul {
  font-size: 14px;
}

.footer_ac_c .footer_nav ul li {
  margin-bottom: 10px;
}

.footer_ac_c .footer_nav ul li a {
  position: relative;
}

.footer_ac_c .footer_nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
  bottom: -1px;
  transform: scaleX(0);
  transform-origin: left top;
  transition: transform 0.3s;
}

.footer_ac_c .footer_nav ul li a:hover::after {
  transform: scaleX(1);
}

#footer .copyright__text {
  display: block;
  max-width: 1240px;
  width: 100%;
  font-size: 12px;
  text-align: right;
  padding: 30px 48px;
  margin: 0 auto;
}

/* ========================================
  トップページセクション
======================================== */

/* ニュースセクション */
#tp_news {
  margin-top: 120px;
}

#tp_news h2 {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
}

#tp_news h2:after {
  font-family: "Noto Sans JP", serif;
  content: "お知らせ";
  display: block;
  color: #D26EA0;
  font-size: 16px;
  margin-top: 10px;
}

#tp_news h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 4px 0;
}

.tp_news_cont {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.tp_news_t {
  width: 275px;
}

.tp_news_c {
  flex: 1;
}

.tp_news_c ul {
  border-top: 1px solid #DCDCDC;
}

.tp_news_c li {
  border-bottom: 1px solid #DCDCDC;
}

.tp_news_c li a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  transition: .3s;
  height: 60px;
  align-items: center;
}

.tp_news_c .ex li a {
  grid-template-columns: 180px 1fr;
}

.tp_news_c li a .eng {
  display: block;
  width: 220px;
  white-space: nowrap;
  padding: 0 0 0 15px;
  font-family: "Montserrat", serif;
  font-weight: 700;
  color: #2882C8;
  font-variant-numeric: tabular-nums;
}

.tp_news_c li a .art {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 24px;
  position: relative;
}

.tp_news_c li a .art img {
  transition: transform .3s;
}

.tp_news_c li a .art:after {
  content: "";
  width: 10px;
  height: 8px;
  background: url('/wp-content/uploads/icon_arrow_b.svg') no-repeat;
  position: absolute;
  margin-top: -4px;
  top: 50%;
  right: 24px;
  transition: .3s;
}

.tp_news_c .ex li a .art:after {
  width: 14px;
  height: 14px;
  background: url('/wp-content/uploads/icon_square.png') no-repeat;
}

.tp_news_c li a:hover {
  background: #F4F8FC;
}

.tp_news_c li a:hover .art:after {
  transform: translateX(10px);
}

.tp_news_btn {
  text-align: center;
  margin-top: 40px;
}

.tp_news_btn a {
  margin: 0 auto;
}

/* サービスセクション */
#tp_service {
  margin-top: 115px;
  background: linear-gradient(to right, #F6E8F1, #D9EBF6);
  border-radius: 200px 0 200px 0;
  padding: 95px 0;
}

#tp_service h2 {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
}

#tp_service h2:after {
  font-family: "Noto Sans JP", serif;
  content: "サービス";
  display: block;
  color: #D26EA0;
  font-size: 16px;
  margin-top: 10px;
}

#tp_service h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 32px;
  font-weight: 700;
  margin-top: 100px;
}

.tp_service_cont {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.tp_service_l {
  margin-top: 30px;
  display: flex;
}

.tp_service_l .tp_service_letter {
  width: 340px;
  padding-right: 40px;
  font-size: 18px;
}

.tp_service_l .tp_service_letter p {
  margin-top: 17px;
}

.tp_service_l .tp_service_img {
  flex: 1;
  height: 450px;
  border-radius: 300px 20px 20px 300px;
  overflow: hidden;
}

.tp_service_l .tp_service_img img {
  width: 100%;
  object-fit: cover;
}

.tp_service_l .s_btn {
  margin-top: 40px;
  font-size: 16px;
}

.tp_service_r {
  margin-top: 60px;
}

.tp_service_r .tp_service_letter {
  order: 2;
  padding-left: 40px;
  padding-right: 0;
}

.tp_service_r .tp_service_img {
  order: 1;
  border-radius: 20px 300px 300px 20px;
}

/* 企業理念セクション */
#tp_philosophy {
  margin-top: 115px;
}

#tp_philosophy h2 {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
}

#tp_philosophy h2:after {
  font-family: "Noto Sans JP", serif;
  content: "企業理念";
  display: block;
  color: #D26EA0;
  font-size: 16px;
  margin-top: 10px;
}

.tp_philosophy_cont {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.tp_philosophy_c {
  margin-top: 40px;
  border-top: 1px solid #DCDCDC;
  display: flex;
}

.tp_philosophy_cl {
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 35px;
}

.tp_philosophy_letter {
  flex: 1;
}

.tp_philosophy_letter h3 {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 44px;
  font-weight: 700;
  position: relative;
  line-height: 1;
  margin-top: 45px;
}

.tp_philosophy_letter h3.tpl_m:after {
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  content: "ミッション";
  color: #2882C8;
  font-size: 16px;
  position: absolute;
  top: 52%;
  right: -140px;
  transform: translateY(-50%) translateX(-50%);
}

.tp_philosophy_letter h3.tpl_v:after {
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  content: "ビジョン";
  color: #2882C8;
  font-size: 16px;
  position: absolute;
  top: 52%;
  right: -115px;
  transform: translateY(-50%) translateX(-50%);
}

.tp_philosophy_letter p {
  padding-left: 42px;
  margin-top: 40px;
  font-size: 18px;
}

.tp_philosophy_img {
  min-width: 430px;
  padding-left: 60px;
}

.tp_philosophy_img_m {
  margin-top: 30px;
}

.tp_philosophy_img_v {
  margin-top: 28px;
}

.tp_philosophy_cont .s_btn {
  margin-top: 40px;
}

.tp_philosophy_cont .s_btn a {
  margin: 0 auto;
}

/* ========================================
  下層ページ共通スタイル
======================================== */
.c_header_p h1 {
  font-size: 40px;
}

.c_header_p .b__ttl {
  font-size: 40px;
  font-weight: 700;
}

.c_header_p nav {
  font-size: 12px;
  margin-top: 4px;
}

.c_header_p nav ol {
  display: flex;
  gap: 50px;
}

.c_header_p nav ol li {
  position: relative;
}

.c_header_p nav ol li a {
  color: #B4B4B4;
}

.c_header_p nav ol li:last-child a {
  position: relative;
  color: var(--text-color);
}

.c_header_p nav ol li:before {
  content: "";
  width: 40px;
  height: 1px;
  background: #B4B4B4;
  position: absolute;
  right: -45px;
  top: 11px;
}

.c_header_p nav ol li:last-child:before {
  display: none;
}

.llmv {
  margin-top: 58px;
}

.llmv img {
  border-radius: 24px 300px 300px 24px;
  width: 100%;
  height: auto;
}

/* ========================================
  個別ページスタイル
======================================== */

/* 海外医薬品輸入代行 */
.main_substitute {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.substitute_l {
  text-align: center;
  margin-top: 100px;
  font-size: 18px;
}

.substitute_l h2 {
  font-size: 32px;
}

.substitute_l p {
  margin-top: 20px;
}

.substitute_ol {
  margin-top: 160px;
  display: flex;
  justify-content: space-between;
  gap: 65px;
}

.substitute_ol li {
  display: flex;
  flex-flow: column;
  max-width: 560px;
  width: 100%;
}

.substitute_ol li img {
  width: 100%;
  height: auto;
}

.substitute_ol li .sb1 {
  order: 2;
  margin-top: 40px;
}

.substitute_ol li .sb1 h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}

.substitute_ol li .sb1 p {
  margin-top: 25px;
}

.substitute_ol li .sb2 {
  order: 1;
  position: relative;
}

.substitute_ol li .sb2_ttl {
  font-family: "Montserrat", serif;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
}

.substitute_ol li .sb2_ttl span {
  display: block;
  font-size: 80px;
  color: #D26EA0;
  margin-top: 5px;
}

.substitute_wsb {
  width: 82%;
  margin: 150px auto 0;
  background: #DFECF7;
  border-radius: 24px;
  padding: 40px 45px 55px 55px;
  display: flex;
  gap: 65px;
}

.substitute_wsb_co {
  margin-top: 13px;
}

.substitute_wsb_co h2 {
  font-size: 22px;
  font-weight: 700;
}

.substitute_wsb_co p {
  margin-top: 19px;
}

.substitute_wsb_co p.an {
  font-size: 14px;
  margin-top: 15px;
}

.substitute_medicine-list {
  padding: 65px 0;
  margin: 160px auto 0;
  background: #F5F5F5;
  border-radius: 24px;
  position: relative;
}

.substitute_medicine-list:before {
  content: "";
  position: absolute;
  width: calc(100% + 280px);
  height: 100%;
  background: #f5f5f5;
  top: 0;
  left: -140px;
  border-radius: 24px;
  z-index: -1;
}

.substitute_medicine-list h2 {
  font-size: 32px;
  padding-left: 32px;
  background-image: url('/wp-content/uploads/Group-625376.png');
  background-repeat: no-repeat;
  background-position: 0 25px;
}

.substitute_medicine-list ul {
  margin-top: 50px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.substitute_medicine-list ul li {
  padding: 16px 16px 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  width: calc((100% - 80px)/3);
  font-size: 20px;
  font-weight: 700;
}

.substitute_medicine-list ul li svg {
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  max-width: 94px;
  height: auto;
}

.substitute_medicine-list .notes {
  margin-top: 25px;
}

.substitute_checkout-progress {
  margin: 120px auto 0;
  text-align: center;
}

.substitute_checkout-progress h2 {
  font-size: 32px;
  text-align: left;
  padding-left: 32px;
  background-image: url('/wp-content/uploads/Group-625376.png');
  background-repeat: no-repeat;
  background-position: 0 25px;
}

.substitute_checkout-progress img {
  margin-top: 50px;
}

.substitute_checkout-progress .s_btn {
  margin: 60px auto 0;
  width: 200px;
}

.substitute_oem {
  padding: 0 0 30px 0;
  gap: 30px;
  margin: 160px auto 0;
  position: relative;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
}

.substitute_oem:before {
  content: "";
  position: absolute;
  width: calc(100% + 280px);
  height: 100%;
  background: #f5f5f5;
  top: 0;
  left: -140px;
  border-radius: 24px;
  z-index: -1;
}

.substitute_oem_co {
  padding: 70px 0 0 0;
}

.substitute_oem_co h2 {
  font-size: 32px;
  text-align: left;
  padding-left: 32px;
  background-image: url('/wp-content/uploads/Group-625376.png');
  background-repeat: no-repeat;
  background-position: 0 25px;
}

.substitute_oem_co p {
  margin-top: 30px;
}

.substitute_oem_co img {
  height: auto;
}

/* 再生医療関連 */
.main_regenerative_medicine {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.regenerative_medicine_l {
  text-align: center;
  margin-top: 100px;
  font-size: 18px;
}

.regenerative_medicine_l h2 {
  font-size: 32px;
}

.regenerative_medicine_l p {
  margin-top: 20px;
}

.regenerative_medicine_services {
  margin-top: 90px;
}

.regenerative_medicine_services ol {
  border-bottom: 1px solid #e6e6e6;
}

.regenerative_medicine_services li {
  padding: 58px 0;
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  gap: 140px;
}

.regenerative_medicine_services li:nth-child(2) img {
  border-radius: 24px;
}

.regenerative_medicine_services_co {
  display: flex;
  flex-flow: column;
  margin-top: 40px;
}

.regenerative_medicine_services_co h2 {
  order: 2;
  font-size: 25px;
  margin-top: 13px;
}

.regenerative_medicine_services_co .ic {
  order: 1;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 22px;
  position: relative;
}

.regenerative_medicine_services_co .ic:before {
  content: "";
  position: absolute;
  left: 100px;
  top: -12px;
  font-size: 48px;
  margin-left: 10px;
  color: #D26EA0;
  line-height: 1;
}

.regenerative_medicine_services_co .ic01:before {
  content: "01";
}

.regenerative_medicine_services_co .ic02:before {
  content: "02";
}

.regenerative_medicine_services_co .ic span {
  font-size: 48px;
  margin-left: 10px;
  color: #D26EA0;
}

.regenerative_medicine_services_co .l {
  order: 3;
  margin-top: 16px;
}

.regenerative_medicine_about {
  margin-top: 120px;
  position: relative;
  padding: 110px 0;
}

.regenerative_medicine_about:before {
  content: "";
  position: absolute;
  width: calc(100% + 280px);
  height: 100%;
  background: #f5f5f5;
  top: 0;
  left: -140px;
  border-radius: 24px;
  z-index: -1;
}

.regenerative_medicine_about .co {
  display: flex;
  justify-content: space-between;
}

.regenerative_medicine_about .co > img {
  border-radius: 24px;
}

.regenerative_medicine_about .co .co_l {
  width: 385px;
  text-align: center;
}

.regenerative_medicine_about .co .co_l h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-top: 50px;
}

.regenerative_medicine_about .co .co_l h2 span {
  font-size: 18px;
}

.regenerative_medicine_about .co .co_l p {
  margin-top: 20px;
  font-size: 18px;
}

.regenerative_medicine_about .forte {
  margin-top: 50px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
}

.regenerative_medicine_about .forte h3 {
  display: block;
  width: 40%;
  text-align: center;
  font-size: 25px;
  color: #2882C8;
}

.regenerative_medicine_about .forte p {
  display: block;
  width: 60%;
  padding: 40px 45px;
  position: relative;
}

.regenerative_medicine_about .forte p:before {
  display: block;
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #e6e6e6;
}

.regenerative_medicine_about .s_btn {
  width: 200px;
  margin: 64px auto 0;
}

.regenerative_medicine_about .s_btn a:before {
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url('/wp-content/uploads/LaunchLinkOpen.png') no-repeat;
}

/* 学会・展示会 出展一覧 */
.main_exhibition {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.exhibition_l {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
}

.exhibition_l p {
  margin-top: 20px;
}

.exhibition_list {
  margin-top: 100px;
}

.exhibition_list h2 {
  border-bottom: 1px solid #222;
  font-size: 32px;
  padding-bottom: 5px;
}

.exhibition_list h2.lyear {
  margin-top: 100px;
}

.exhibition_list li {
  width: 80%;
  padding: 50px 0;
  margin-left: 20%;
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exhibition_list li h3 {
  font-size: 22px;
  position: relative;
  padding-left: 33px;
}

.exhibition_list li h3:after {
  content: "";
  width: 22px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background-image: url('/wp-content/uploads/Group-625376.png');
  background-repeat: no-repeat;
}

.exhibition_list li .time {
  margin: 30px 0 0 33px;
}

.exhibition_list li .venue {
  margin-left: 33px;
}

.exhibition_list li .access {
  margin-left: 33px;
}

.exhibition_list li .access a {
  color: #2882C8;
  text-decoration: underline;
}

.exhibition_list li .access a:hover {
  color: #222;
}

.exhibition_list .s_btn a:before {
  width: 14px;
  height: 14px;
  background: url('/wp-content/uploads/LaunchLinkOpen.png') no-repeat;
  top: 25px;
}

/* ご注文の流れ */
.main_order_flow {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.order_flow_l {
  text-align: center;
  margin-top: 50px;
  font-size: 18px;
}

.order_flow_list {
  margin-top: 100px;
}

.order_flow_list > ul {
  position: relative;
}

.order_flow_list > ul:after {
  position: absolute;
}

.order_flow_list > ul > li {
  display: flex;
  gap: 75px;
  position: relative;
  margin-top: 8px;
}

.order_flow_list > ul > li:before {
  content: "";
  width: 1px;
  height: calc(100% - 108px);
  background: #dcdcdc;
  position: absolute;
  left: 129px;
  top: 108px;
}

.order_flow_list > ul > li > h2 {
  width: 260px;
  height: 100px;
  padding: 30px 0;
  text-align: center;
  font-size: 22px;
  position: relative;
}

.order_flow_list > ul > li > h2:before {
  content: "";
  width: 50%;
  height: 100px;
  background: #DFECF7;
  border-radius: 0 100px 100px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.order_flow_list > ul > li > h2:after {
  content: "";
  width: 50%;
  height: 100px;
  background: #F8E9F1;
  border-radius: 100px 0 0 100px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.order_flow_list > ul > li > h2.s_2 {
  padding: 15px 0;
  line-height: 1.5;
}

.order_flow_list > ul > li .co {
  padding-bottom: 70px;
}

.order_flow_list > ul > li .co_link a {
  border-bottom: 1px solid #D26EA0;
  transition: .3s;
  color: #D26EA0;
}

.order_flow_list > ul > li .co_link a:hover {
  border-bottom: 1px solid #222;
  color: #222;
}

.order_flow_list > ul > li .co_s {
  position: relative;
  padding: 80px 0;
}

.order_flow_list > ul > li .co_s img {
  position: absolute;
  left: 0;
  top: 0;
}

.order_flow_list > ul > li .co_s2 {
  margin-top: 10px;
}

.order_flow_list > ul > li .co_s3 {
  margin-top: 35px;
  padding-bottom: 0;
}

.order_flow_list > ul > li .btn_area {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.order_flow_list > ul > li .olist {
  margin-top: 35px;
}

.order_flow_list > ul > li .olist li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
}

.order_flow_list > ul > li .olist li:before {
  content: "";
  background: #222;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.order_flow_list > ul > li .tf {
  margin-top: 15px;
  font-size: 30px;
  display: flex;
  gap: 40px;
  font-family: "Montserrat", serif;
  font-weight: 700;
}

.order_flow_list > ul > li .tf .tel {
  color: #D26EA0;
}

.order_flow_list > ul > li .tf .fax {
  color: #2882C8;
}

.order_flow_list > ul > li .fl {
  margin-top: 20px;
}

.order_flow_list > ul > li .s_btn_area .s_btn a {
  width: 220px;
}

.order_flow_list > ul > li .s_btn_area .s_btn a:before {
  width: 14px;
  height: 14px;
  background: url('/wp-content/uploads/LaunchLinkOpen.png') no-repeat;
  margin-top: -7px;
  right: 15px;
}

.order_flow_list > ul > li .s_btn_area .s_btn a:after {
  width: 440px;
}

.order_flow_list > ul > li .s_btn_area .s_btn a:hover:after {
  right: -220px;
}

.order_flow_precautions {
  max-width: 880px;
  width: 100%;
  margin: 100px auto 0;
  background: #DFECF7;
  border-radius: 24px;
  padding: 40px 50px;
}

.order_flow_precautions h2 {
  font-size: 22px;
}

.order_flow_precautions ul {
  margin-top: 17px;
}

.order_flow_precautions ul li {
  position: relative;
  padding-left: 20px;
  line-height: 1.8;
}

.order_flow_precautions ul li:before {
  content: "";
  background: #222;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  position: absolute;
  left: 5px;
  top: 12px;
}

/* 会社概要 */
.main_about {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.about_box {
  margin-top: 100px;
}

.about_box h2 {
  font-size: 32px;
  position: relative;
  padding-left: 33px;
}

.about_box h2:after {
  content: "";
  width: 22px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  background-image: url('/wp-content/uploads/Group-625376.png');
  background-repeat: no-repeat;
}

.about_box_r {
  padding-left: 22%;
  margin-top: 60px;
}

.about_box_r .tr {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-top: 40px;
}

.about_box .tp_philosophy_letter h3.tpl_l:after {
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  content: "ロゴ";
  color: #2882C8;
  font-size: 16px;
  position: absolute;
  top: 52%;
  right: -70px;
  transform: translateY(-50%) translateX(-50%);
}

.about_box .tp_philosophy_img_l {
  margin-top: 40px;
}

.about_list {
  border-top: 1px solid #dcdcdc;
}

.about_list > li {
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  padding: 30px 0;
}

.about_list > li > h3 {
  width: 125px;
  font-weight: 400;
}

.about_list_con {
  max-width: calc(100% - 125px);
  width: 100%;
}

.about_list_con .about_box_r_con2 {
  display: flex;
  justify-content: space-between;
}

.about_list_con li {
  border-bottom: 1px solid #dcdcdc;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}

.about_list_con li:first-child {
  padding: 0 0 30px 0;
}

.about_list_con li:last-child {
  border: none;
  padding: 30px 0 0 0;
}

.about_list_con .s_btn a:before {
  width: 14px;
  height: 14px;
  background: url('/wp-content/uploads/LaunchLinkOpen.png') no-repeat;
  margin-top: -6px;
  right: 20px;
}

/* FAQ */
.about_box_r .accordion {
  border-top: 1px solid #dcdcdc;
}

.about_box_r .accordion li {
  border-bottom: 1px solid #dcdcdc;
}

.about_box_r .accordion .toggle {
  display: none;
}

.about_box_r .accordion .Label {
  display: block;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  padding: 30px 57px;
  position: relative;
}

.about_box_r .accordion .Label span:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "Q.";
  font-family: "Montserrat", serif;
  font-size: 32px;
  color: #D26EA0;
}

.about_box_r .accordion .Label::before,
.about_box_r .accordion .Label::after {
  content: "";
  width: 16px;
  height: 3px;
  background: #2882C8;
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
}

.about_box_r .accordion .Label::after {
  transform: rotate(-90deg);
  transition-duration: .2s;
}

.about_box_r .accordion .Label,
.about_box_r .accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  cursor: pointer;
}

.about_box_r .accordion .content {
  height: 0;
  overflow: hidden;
  position: relative;
  padding: 0 57px;
}

.about_box_r .accordion .content:before {
  content: "A.";
  font-family: "Montserrat", serif;
  font-size: 32px;
  font-weight: 700;
  position: absolute;
  top: -18px;
  left: 0;
}

.about_box_r .accordion .toggle:checked + .Label + .content {
  height: auto;
  transition: all .3s;
  padding: 0 57px 40px;
}

.about_box_r .accordion .toggle:checked + .Label::after {
  transform: rotate(0deg) !important;
}

/* ご利用規約 */
.main_tos {
  margin-top: 100px;
}

.main_tos h2 {
  font-size: 22px;
  position: relative;
  padding-left: 33px;
}

.main_tos h2:after {
  content: "";
  width: 22px;
  height: 12px;
  position: absolute;
  top: 15px;
  left: 0px;
  background-image: url('/wp-content/uploads/icon_medicine.svg');
  background-repeat: no-repeat;
}

.main_tos .tos_con ul {
  padding-left: 4px;
}

.main_tos .tos_con li {
  position: relative;
  padding-left: 12px;
}

.main_tos .tos_con li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--text-color);
  position: absolute;
  left: 0;
  top: 13px;
  line-height: 16px;
}

.tos_con {
  margin-bottom: 48px;
}

.tos_con:last-child {
  margin-bottom: 0;
}

.tos_con p {
  margin-top: 24px;
}

.tos_con p a {
  color: var(--main-color1);
  text-decoration: underline;
}

.tos_con p a:hover {
  color: var(--text-color);
}

.pp_letter {
  margin-bottom: 60px;
}

/* 特定商取引法に基づく表記 */
.ln_list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-color2);
}

.ln_list dt {
  width: 130px;
  font-weight: 700;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-color2);
}

.ln_list dd {
  width: calc(100% - 130px);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-color2);
}

.ln_list dd li {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-color2);
}

.ln_list dd li:first-child {
  padding: 0 0 32px;
}

.ln_list dd li:last-child {
  padding: 32px 0 0;
  border: none;
}

.ln_list dd a {
  color: var(--main-color1);
  text-decoration: underline;
}

.ln_list dd a:hover {
  color: var(--text-color);
}

/* お知らせ */
.blog_article {
  margin-top: 100px;
}

.blog_article .ttl__post {
  font-size: 25px;
  margin-bottom: 8px;
}

.blog_article .post__date {
  color: var(--main-color2);
  font-weight: 700;
  font-family: "Montserrat", serif;
  margin-bottom: 20px;
}

.blog_article .post__content {
  border-top: 1px solid var(--gray-color2);
  padding: 60px 0 0 0;
  margin-bottom: 80px;
}

.blog_article .post__content a {
  border-bottom: 1px solid #D26EA0;
  transition: .3s;
  color: #D26EA0;
}

.blog_article .post__content a:hover {
  border-bottom: 1px solid #222;
  color: #222;
}

.blog_article .s_btn {
  width: 200px;
  margin: 0 auto;
}

.blog_article .post__thumbnail {
  margin-bottom: 60px;
}

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

/* お問い合わせ */
.main_contact {
  padding: 0 48px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.contact_box_r {
  margin-top: 100px;
  font-size: 18px;
}

.contact_box_r .wpcf7 {
  margin-top: 90px;
}

.contact_box_r .wpcf7 p.ttl {
  font-weight: 700;
  margin-top: 45px;
}

.contact_box_r .wpcf7 p.ttl_f {
  margin: 0;
}

.contact_box_r .wpcf7 input,
.contact_box_r .wpcf7 textarea {
  font-size: 18px;
  margin-top: 5px;
}

.contact_box_r .wpcf7 input::placeholder,
.contact_box_r .wpcf7 textarea::placeholder {
  opacity: .4;
}

.contact_box_r .wpcf7 input[type=text],
.contact_box_r .wpcf7 input[type=email],
.contact_box_r .wpcf7 textarea {
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #f5f5f5;
  padding: 20px;
  width: 100%;
}

.contact_box_r .check {
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
}

.contact_box_r .check a {
  border-bottom: 1px solid #222;
}

.contact_box_r .check a:hover {
  border: none;
}

.contact_box_r .wpcf7 input[type=checkbox] {
  margin-right: 15px;
}

.contact_box_r .wpcf7 button {
  font-size: 16px;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  border: none;
  display: flex;
  align-items: center;
  width: 300px;
  height: 56px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  font-weight: 700;
  color: #fff;
  text-align: left;
  cursor: pointer;
  padding: 0 20px;
  margin: 30px auto 0;
}

.contact_box_r .wpcf7 button:after {
  content: "";
  background: linear-gradient(to right, #D26EA0, #D26EA0, #D26EA0, #2882C8);
  width: 600px;
  top: 0;
  right: 0;
  display: block;
  position: absolute;
  height: 56px;
  z-index: -1;
  transition: .3s;
}

.contact_box_r .wpcf7 button:hover:after {
  right: -300px;
}

.contact_box_r .wpcf7 button:before {
  content: "";
  width: 10px;
  height: 8px;
  background: url('/wp-content/uploads/icon_arrow.svg') no-repeat;
  position: absolute;
  margin-top: -4px;
  top: 50%;
  right: 24px;
  transition: .3s;
}

.contact_box_r .wpcf7 button:hover:before {
  transform: translateX(10px);
}

.contact_box_r .wpcf7 .co_radio {
  margin: 10px 0;
  display: flex;
  gap: 20px;
}

/* ========================================
  サービス利用約款ページ専用スタイル
======================================== */
/* Page: terms.php - PDF exact replica */
main.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;	
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
  font-size: 11.5pt;
  color: #000;
  background-color: #ffffff;
}

main.terms-content .terms-document {
  background: #fff;
  margin: 0 auto;
  text-align: left;
}

/* ドキュメントタイトル（中央揃え） */
main.terms-content .document-title {
  font-size: 18pt;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-align: center;
  color: #000;
  line-height: 1.4;
}

/* ドキュメント序文 */
main.terms-content .document-intro {
  font-size: 11.5pt;
  line-height: 1.8;
  margin: 0 0 30px 0;
  text-align: left;
  color: #000;
  text-indent: 0;
}

/* 章見出し（ボーダー付き中央揃え） */
main.terms-content .chapter-header {
  text-align: center;
  margin: 25px 0 15px 0;
}

main.terms-content .chapter-title-box {
  background: #fff;
  color: #000;
  font-size: 11.5pt;
  font-weight: bold;
  padding: 8px 40px;
  display: inline-block;
  border: 1px solid #000;
  text-align: center;
  letter-spacing: 0.1em;
}

/* 章コンテンツ */
main.terms-content .terms-chapter {
  margin-bottom: 30px;
  text-align: left;
}

/* ドキュメント内の最後のセクション */
main.terms-content .terms-chapter:last-child {
  margin-bottom: 0;
}

/* 条項 */
main.terms-content .terms-article {
  margin-bottom: 20px;
  text-align: left;
}

main.terms-content .terms-article:last-child {
  margin-bottom: 0;
}

main.terms-content .terms-article h4 {
  color: #000;
  font-size: 11.5pt;
  font-weight: bold;
  margin: 0 0 8px 0;
  text-align: left;
  line-height: 1.8;
}

main.terms-content .terms-article p {
  margin: 0 0 8px 0;
  color: #000;
  line-height: 1.8;
  font-size: 11.5pt;
  text-align: left;
  text-indent: 0;
}

main.terms-content .terms-article p:last-child {
  margin-bottom: 0;
}

/* リスト */
main.terms-content .terms-article ol {
  margin: 0 0 8px 0;
  padding-left: 2em;
  text-align: left;
  list-style-type: decimal;
}

main.terms-content .terms-article ul {
  margin: 0 0 8px 0;
  padding-left: 2em;
  text-align: left;
  list-style: none;
}

main.terms-content .terms-article ol li {
  margin-bottom: 6px;
  color: #000;
  line-height: 1.8;
  font-size: 11.5pt;
  text-align: left;
}

main.terms-content .terms-article ul li {
  margin-bottom: 6px;
  color: #000;
  line-height: 1.8;
  font-size: 11.5pt;
  text-align: left;
}

main.terms-content .terms-article ol li:last-child,
main.terms-content .terms-article ul li:last-child {
  margin-bottom: 0;
}

main.terms-content .sub-list {
  margin-top: 8px;
  padding-left: 2em;
  text-align: left;
  list-style: none;
}

main.terms-content .sub-list li {
  margin-bottom: 4px;
  font-size: 11.5pt;
  color: #000;
  text-align: left;
  line-height: 1.8;
}

/* フッターセクション */
main.terms-content .terms-chapter p {
  margin: 0;
  color: #000;
  line-height: 1.8;
  font-size: 11.5pt;
  text-align: left;
  text-indent: 0;
}

main.terms-content .terms-footer p {
  color: #000;
  margin: 0;
  font-size: 11.5pt;
  text-align: left;
  line-height: 1.8;
  font-weight: normal;
}

/* ========================================
  レスポンシブデザイン（モバイル）
======================================== */
@media screen and (max-width: 600px) {
  img {
    max-width: 100%;
  }
  
  .m_btn {
    display: block;
  }
  
  .p_btn {
    display: none;
  }
  
  /* ヘッダー（モバイル） */
  .header {
    padding: 0 30px 0 15px;
    top: 0;
    position: fixed;
    border: none;
    height: 70px;
  }
  
  .header_logo {
    width: 220px;
  }
  
  .header_logo img {
    width: 100%;
    height: auto;
  }
  
  .header_nav {
    height: 25px;
  }
  
  .header_nav .nav-content .logo {
    display: flex;
  }
  
  .header_nav .nav-content .mn_logo {
    display: block;
  }
  
  .header_nav .s_btn a {
    width: 200px;
  }
  
  .header_nav .s_btn a:after {
    width: 400px;
  }
  
  .header_nav ul {
    font-size: 16px;
  }
  
  .header_nav ul li {
    margin: 0;
  }
  
  .header_nav .nav-content .cls-1,
  .header_nav .nav-content .cls-2 {
    fill: #fff;
  }
  
  /* ハンバーガーメニュー */
  .menu-btn,
  .menu-btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    transform-origin: center center;
  }
  
  .menu-btn {
    width: 20px;
    height: 10px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    z-index: 90;
    position: relative;
  }
  
  .menu-btn:before {
    content: "";
    width: 57px;
    height: 35px;
    position: absolute;
    z-index: 89;
    background: linear-gradient(to right, #D26EA0, #2882C8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
  }
  
  .menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 95;
  }
  
  .menu-btn span:nth-of-type(1) {
    top: 0;
  }
  
  .menu-btn span:nth-of-type(2) {
    bottom: 0;
  }
  
  #menu-btn-check {
    display: none;
  }
  
  #menu-btn-check:checked ~ .nav-content {
    visibility: visible;
    opacity: 1;
  }
  
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  
  #menu-btn-check:checked ~ .menu-btn span:nth-of-type(1) {
    transform: translateY(4px) rotate(-30deg);
  }
  
  #menu-btn-check:checked ~ .menu-btn span:nth-of-type(2) {
    transform: translateY(-4px) rotate(30deg);
  }
  
  .nav-content {
    width: 100%;
    height: 100svh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
    background: linear-gradient(to bottom, #F6E8F1, #D9EBF6);
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    padding: 0 15px;
  }
  
  .nav-content > ul {
    padding: 70px 58px;
    width: calc(100% - 30px);
    margin: 15px auto 0;
    display: block;
    text-align: left;
    max-height: 540px;
    height: calc(100vh - 85px);
    background: #fff;
    border-radius: 260px;
    position: relative;
  }
  
  .nav-content > ul::after {
    position: absolute;
    content: "";
    display: block;
    width: 96px;
    height: 151px;
    top: 27%;
    right: 20px;
    background: url("/wp-content/uploads/img_earth.svg") no-repeat;
  }
  
  .nav-content > ul > li {
    margin-bottom: 24px;
  }
  
  .nav-content > ul > li.s_btn {
    margin-bottom: 20px;
  }
  
  .nav-content > ul > li.mn_logo {
    text-align: center;
  }
  
  .nav-content .logo {
    width: 220px;
    height: 70px;
    display: flex;
    align-items: center;
  }
  
  .nav-content .logo img {
    width: 100%;
    height: auto;
  }
  
  /* 共通レイアウト（モバイル） */
  .c_header {
    padding: 70px 20px 0;
    margin: 0;
  }
  
  .c_header .c_header_p {
    margin-top: 15px;
  }
  
  .c_header .sub_header {
    display: none;
  }
  
  .c_header_p h1 {
    font-size: 32px;
  }
  
  .llmv {
    margin-top: 40px;
    height: 280px;
    border-radius: 24px 300px 300px 24px;
    overflow: hidden;
  }
  
  .llmv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .flow_btn a {
    width: 90%;
    margin: 80px auto 0;
    font-size: 18px;
    padding-left: 20px;
  }
  
  .flow_btn a:before {
    background: url('/wp-content/uploads/btn_flow2-2.png') no-repeat center center;
    left: initial;
    right: 0px;
    width: 335px;
    height: 140px;
  }
  
  /* フッター（モバイル） */
  .footer_contact {
    background: linear-gradient(to bottom, #D26EA0, #2882C8);
    padding: 40px 0;
  }
  
  .footer_contact_c {
    display: block;
    padding: 0 20px;
  }
  
  .footer_contact_c .con_tel a {
    border-radius: 200px 200px 8px 8px;
    padding: 50px 0 30px 0;
  }
  
  .footer_contact_c .con_web {
    margin-top: 8px;
  }
  
  .footer_contact_c .con_web a {
    border-radius: 8px 8px 200px 200px;
    padding: 35px 0 80px 0;
  }
  
  .footer_contact_c .con_web .s_btn {
    width: 200px;
  }
  
  .footer_contact_c .con_web .ttl,
  .footer_contact_c .con_tel_inner .ttl {
    font-size: 18px;
    line-height: 2.7;
  }
  
  .footer_contact_c .con_tel_inner .number {
    font-size: 36px;
  }
  
  .footer_contact_c .con_tel_inner .text {
    margin-top: 13px;
    line-height: 1.6;
  }
  
  .footer_ac_c {
    display: block;
    padding: 0 20px;
  }
  
  .footer_ac_c .footer_logoArea {
    margin: 60px auto 0;
  }
  
  .footer_ac_c .footer_nav {
    display: block;
    margin-top: 45px;
  }
  
  .footer_ac_c .footer_nav ul {
    width: 100%;
    font-size: 12px;
  }
  
  .footer_ac_c .footer_nav > ul {
    margin-top: 35px;
  }
  
  .footer_ac_c .footer_nav .nav_m {
    display: flex;
    gap: 25px;
    justify-content: space-between;
  }
  
  .footer_ac_c .footer_nav .nav_m ul {
    font-size: 14px;
  }
  
  #footer .copyright__text {
    padding: 10px 20px;
  }
  
  /* トップページ（モバイル） */
  .mv_c, #mv {
    max-height: 640px;
    max-height: 540px;
    height: calc(100vh - 120px);
    padding: 0 10px;
  }
  
  .mv_c picture {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .mv_c:before {
    width: 100%;
    height: calc(50% - 6px);
    bottom: 0;
    top: auto;
    border-radius: 20px;
  }
  
  .mv_c:after {
    width: 100%;
    height: calc(50% - 6px);
    border-radius: 20px;
  }
  
  .mv_c img {
    height: 500px;
    top: 0;
  }
  
  .mv_t1 {
    top: 10px;
    right: 10px;
    max-width: 87px;
  }
  
  .mv_t2 {
    left: 5px;
    bottom: -70px;
    max-width: 85%;
  }
  
  .tp_news_cont,
  .tp_service_cont,
  .tp_philosophy_cont {
    display: block;
    padding: 0 20px;
  }
  
  #tp_news {
    margin-top: 150px;
  }
  
  #tp_news h2 {
    font-size: 32px;
  }
  
  #tp_news h2:after {
    margin-top: 7px;
  }
  
  #tp_news h3 {
    font-size: 18px;
  }
  
  .tp_news_c ul {
    margin-top: 27px;
  }
  
  .tp_news_c ul.ex {
    margin-top: 8px;
  }
  
  .tp_news_c li a {
    display: block;
    padding: 14px 0 11px 0;
    height: auto;
  }
  
  .tp_news_c li a .eng {
    padding: 0;
    font-size: 12px;
    line-height: 1.3;
  }
  
  .tp_news_c li a .art {
    font-size: 14px;
  }
  
  .tp_news_c li a .art:after {
    right: 0;
    top: calc(50% - 4px);
    transform: translateY(-50%);
  }
  
  .tp_news_btn {
    margin-top: 25px;
  }
  
  #tp_service {
    margin-top: 80px;
    background: linear-gradient(to bottom, #F6E8F1, #D9EBF6);
    border-radius: 0 80px 0 80px;
    padding: 75px 0;
  }
  
  #tp_service h2 {
    font-size: 44px;
  }
  
  #tp_service h3 {
    font-size: 22px;
    margin: 0;
  }
  
  .tp_service_l {
    display: block;
    margin-top: 60px;
  }
  
  .tp_service_l .tp_service_letter {
    padding: 0;
  }
  
  .tp_service_l .tp_service_letter p {
    margin-top: 7px;
    font-size: 16px;
  }
  
  .tp_service_l .tp_service_letter .s_btn {
    display: none;
  }
  
  .tp_service_l .tp_service_img {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }
  
  .tp_service_l .tp_service_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .tp_service_l .s_btn {
    margin-top: 24px;
  }
  
  .tp_service_l .s_btn a {
    margin: 0 auto;
  }
  
  #tp_philosophy {
    margin-top: 85px;
  }
  
  #tp_philosophy h2 {
    font-size: 44px;
  }
  
  .tp_philosophy_c {
    display: block;
    margin-top: 42px;
  }
  
  .tp_philosophy_letter h3 {
    font-size: 32px;
    font-size: 400;
  }
  
  .tp_philosophy_letter h3.tpl_m:after {
    position: absolute;
    display: block;
    right: -140px;
    top: 50%;
  }
  
  .tp_philosophy_letter p {
    padding: 0;
    font-size: 16px;
    margin-top: 21px;
  }
  
  .tp_philosophy_img {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 0;
  }
  
  .tp_philosophy_img img {
    width: 100%;
    height: auto;
  }
  
  /* 海外医薬品輸入代行（モバイル） */
  .main_substitute {
    padding: 0 20px;
  }
  
  .main_substitute img {
    max-width: 100%;
    height: auto;
  }
  
  .substitute_l {
    margin-top: 60px;
    text-align: left;
  }
  
  .substitute_l h2 {
    font-size: 22px;
  }
  
  .substitute_ol {
    display: block;
    margin-top: 120px;
  }
  
  .substitute_ol li:nth-child(2) {
    margin-top: 100px;
  }
  
  .substitute_ol li .sb1 {
    margin-top: 25px;
  }
  
  .substitute_ol li .sb1 p {
    margin-top: 17px;
  }
  
  .substitute_ol li .sb1 h3 {
    font-size: 20px;
  }
  
  .substitute_ol li .sb2_ttl {
    font-size: 22px;
    top: -55px;
  }
  
  .substitute_ol li .sb2_ttl span {
    font-size: 58px;
  }
  
  .substitute_wsb {
    display: block;
    width: 100%;
    margin: 60px 0 0;
    padding: 20px 30px 40px 30px;
    text-align: center;
  }
  
  .substitute_wsb img {
    width: 85%;
  }
  
  .substitute_wsb_co {
    margin-bottom: 30px;
    text-align: left;
  }
  
  .substitute_wsb_co h2 {
    font-size: 18px;
  }
  
  .substitute_medicine-list {
    padding: 40px 20px;
    margin: 90px -20px 0 -20px;
    border-radius: 0;
  }
  
  .substitute_medicine-list h2,
  .substitute_checkout-progress h2 {
    font-size: 22px;
    background-position: 0 15px;
  }
  
  .substitute_medicine-list ul {
    gap: 15px;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .substitute_medicine-list ul li {
    width: calc((100% - 18px) / 2);
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 13px 0 19px;
  }
  
  .substitute_medicine-list ul li svg {
    max-width: 108px;
    height: auto;
    margin-top: 10px;
  }
  
  .substitute_medicine-list .notes {
    font-size: 14px;
  }
  
  .substitute_medicine-list:before {
    display: none;
  }
  
  .substitute_checkout-progress {
    margin-top: 80px;
  }
  
  .substitute_oem {
    display: block;
    background: #f5f5f5;
    border-radius: 0;
    margin: 80px -20px 0 -20px;
    padding: 40px 20px;
  }
  
  .substitute_oem:before {
    display: none;
  }
  
  .substitute_oem_co {
    padding: 0;
  }
  
  .substitute_oem_co h2 {
    font-size: 22px;
    background-position: 0 26px;
    line-height: 1.4;
  }
  
  .substitute_oem picture {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  
  .substitute_oem_co img {
    width: 80%;
  }
  
  /* 再生医療関連（モバイル） */
  .main_regenerative_medicine {
    padding: 0 20px;
  }
  
  .main_regenerative_medicine img {
    max-width: 100%;
    height: auto;
  }
  
  .regenerative_medicine_l {
    margin-top: 60px;
    text-align: left;
  }
  
  .regenerative_medicine_l h2 {
    font-size: 22px;
  }
  
  .regenerative_medicine_services {
    margin-top: 80px;
  }
  
  .regenerative_medicine_services li {
    display: block;
    padding: 15px 0 60px;
  }
  
  .regenerative_medicine_services li picture {
    text-align: center;
    display: block;
    margin-top: 40px;
  }
  
  .regenerative_medicine_services li:nth-child(2) img {
    margin-top: 30px;
  }
  
  .regenerative_medicine_about {
    padding: 70px 20px 60px;
    background: #f5f5f5;
    margin: 80px -20px 0;
  }
  
  .regenerative_medicine_about .co {
    display: block;
  }
  
  .regenerative_medicine_about .co .co_l {
    width: 100%;
  }
  
  .regenerative_medicine_about .co .co_l h2,
  .regenerative_medicine_about .co > img {
    margin-top: 40px;
  }
  
  .regenerative_medicine_about .forte h3,
  .regenerative_medicine_about .forte p {
    width: 100%;
  }
  
  .regenerative_medicine_about .forte p {
    padding: 0;
    margin-top: 25px;
  }
  
  .regenerative_medicine_about:before {
    display: none;
  }
  
  .regenerative_medicine_about .forte {
    display: block;
    margin-top: 40px;
    padding: 0 30px 40px;
  }
  
  .regenerative_medicine_about .forte h3 {
    font-size: 20px;
    line-height: 92px;
    border-bottom: 1px solid #e6e6e6;
  }
  
  .regenerative_medicine_about .forte p:before {
    display: none;
  }
  
  .regenerative_medicine_about .s_btn {
    margin-top: 40px;
  }
  
  /* 学会・展示会 出展一覧（モバイル） */
  .main_exhibition {
    padding: 0 20px;
  }
  
  .exhibition_l {
    text-align: left;
  }
  
  .exhibition_list {
    margin-top: 80px;
  }
  
  .exhibition_list h2 {
    font-size: 22px;
  }
  
  .exhibition_list h2.lyear {
    margin-top: 60px;
  }
  
  .exhibition_list li {
    width: 100%;
    margin: 0;
    display: block;
  }
  
  .exhibition_list li:last-child {
    border: none;
    padding-bottom: 0;
  }
  
  .exhibition_list li h3 {
    font-size: 18px;
    padding-left: 20px;
  }
  
  .exhibition_list li h3:after {
    width: 15px;
    height: 9px;
    background-image: url('/wp-content/uploads/icon_medicine.png');
  }
  
  .exhibition_list li .time {
    margin: 15px 0 0 20px;
  }
  
  .exhibition_list li .venue {
    margin-left: 20px;
  }
  
  .exhibition_list li .access {
    margin-left: 20px;
  }
  
  .exhibition_list li .s_btn a {
    margin-left: auto;
    margin-top: 20px;
  }
  
  /* ご注文の流れ（モバイル） */
  .main_order_flow {
    padding: 0 20px;
  }
  
  .order_flow_l {
    text-align: left;
  }
  
  .order_flow_list > ul > li,
  .order_flow_list > ul > li .btn_area {
    display: block;
  }
  
  .order_flow_list > ul > li > h2 {
    width: 170px;
    padding: 0;
    line-height: 42px;
    font-size: 18px;
    height: 42px;
  }
  
  .order_flow_list > ul > li > h2.s_2 {
    padding: 0;
    line-height: 42px;
  }
  
  .order_flow_list > ul > li:before {
    height: calc(100% - 50px);
    left: 20px;
    top: 50px;
  }
  
  .order_flow_list > ul > li .co {
    padding: 30px 0 60px 50px;
  }
  
  .order_flow_list > ul > li .co_s {
    padding: 50px 0 0;
  }
  
  .order_flow_list > ul > li .co_s2 {
    margin: 0;
  }
  
  .order_flow_list > ul > li .co_s3 {
    margin: 0;
    padding: 30px 0 30px 50px;
  }
  
  .order_flow_list > ul > li .co_s img {
    top: -52px;
    right: 0;
    left: auto;
  }
  
  .order_flow_list > ul > li .olist {
    margin-top: 20px;
  }
  
  .order_flow_list > ul > li .btn_area {
    margin-top: 0;
  }
  
  .order_flow_list > ul > li .btn_area .s_btn {
    margin-top: 20px;
  }
  
  .order_flow_list > ul > li .tf {
    display: block;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .order_flow_list > ul > li > h2:before,
  .order_flow_list > ul > li > h2:after {
    height: 42px;
  }
  
  .order_flow_precautions {
    margin: 60px auto 0;
    padding: 30px;
  }
  
  .order_flow_precautions ul li:before {
    top: 12px;
    transform: none;
  }
  
  .order_flow_precautions h2 {
    font-size: 18px;
  }
  
  /* 会社情報（モバイル） */
  .main_about {
    padding: 0 20px;
  }
  
  .about_box {
    margin-top: 60px;
  }
  
  .about_box_r {
    padding: 0;
    margin-top: 20px;
  }
  
  .about_box_r .tr {
    margin-top: 30px;
  }
  
  .main_about .tp_philosophy_c {
    margin-top: 40px;
  }
  
  .main_about .tp_philosophy_letter h3 {
    margin-top: 35px;
  }
  
  .main_about .tp_philosophy_img_m {
    margin-top: 20px;
  }
  
  .main_about .tp_philosophy_img_l {
    margin-top: 0px;
  }
  
  .main_about .tp_philosophy_cl {
    border: none;
    padding: 0;
  }
  
  .about_box h2 {
    font-size: 22px;
  }
  
  .about_list_con .about_box_r_con2,
  .about_list_con li {
    display: block;
  }
  
  .about_list > li {
    padding: 20px 0;
  }
  
  .about_list > li > h3 {
    width: 110px;
  }
  
  .about_list .s_btn {
    margin-top: 20px;
  }
  
  /* Q&A（モバイル） */
  .about_box_r .accordion .Label {
    padding: 28px 25px 28px 35px;
  }
  
  .about_box_r .accordion .toggle:checked + .Label + .content {
    padding: 0 25px 28px 35px;
  }
  
  .about_box_r .accordion .Label span:before {
    font-size: 24px;
    top: 22px;
  }
  
  .about_box_r .accordion .Label::before,
  .about_box_r .accordion .Label::after {
    top: 43px;
    right: 0;
  }
  
  .about_box_r .accordion .content:before {
    top: -8px;
  }
  
  .about_box_r .accordion .content:before {
    font-size: 24px;
  }
  
  /* ご利用規約（モバイル） */ 
  .main_tos {
    margin-top: 64px;
  }
  
  .main_tos h2 {
    font-size: 18px;
    padding-left: 30px;
  }
  
  .main_tos h2:after {
    top: 12px;
  }
  
  /* 特定商取引法に基づく表記（モバイル） */
  .ln_list dt {
    width: 100px;
  }
  
  .ln_list dd {
    width: calc(100% - 100px);
  }
  
  /* お知らせ（モバイル） */
  .blog_article {
    margin-top: 80px;
  }
  
  .blog_article .post__content {
    padding: 40px 0 0;
    margin-bottom: 40px;
  }
  
  .blog_article .post__thumbnail {
    margin-bottom: 40px;
  }
  
  /* お問い合わせ（モバイル） */
  .main_contact {
    padding: 0 20px;
  }
  
  .contact_box_r {
    padding: 0;
    margin-top: 60px;
  }
  
  .contact_box_r .wpcf7 {
    margin-top: 60px;
  }
  
  .contact_box_r .wpcf7 p.ttl {
    margin-top: 30px;
  }
  
  .contact_box_r .wpcf7 input[type=checkbox] {
    margin-right: 5px;
  }
  
  .contact_box_r .check {
    margin-top: 40px;
  }
  
  .wpcf7-spinner {
    display: none;
  }
  
  /* サービス利用約款ページ（モバイル） */
  main.terms-content {
    padding: 15px 10px;
    font-size: 10pt;
  }
  
  main.terms-content .document-title {
    font-size: 11pt;
    margin-bottom: 12px;
  }
  
  main.terms-content .document-intro {
    font-size: 10pt;
  }
  
  main.terms-content .chapter-header {
    margin: 20px 0 12px 0;
  }
  
  main.terms-content .chapter-title-box {
    font-size: 10pt;
    padding: 5px 20px;
    letter-spacing: 0.05em;
  }
  
  main.terms-content .terms-article h4 {
    font-size: 10pt;
  }
  
  main.terms-content .terms-article p,
  main.terms-content .terms-article ol li,
  main.terms-content .terms-article ul li,
  main.terms-content .sub-list li {
    font-size: 10pt;
  }
  
  main.terms-content .terms-article ol,
  main.terms-content .terms-article ul {
    padding-left: 1.5em;
  }
  
  main.terms-content .sub-list {
    padding-left: 1.2em;
  }
  
  main.terms-content .terms-chapter p {
    font-size: 10pt;
  }
}

/* ================================================
   サンクスページスタイル
   ================================================ */
/* カスタムCSSクラス "thanks-page" を body に適用した場合のスタイル */
.thanks-page .thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thanks-page .thanks-message {
    text-align: center;
    margin-bottom: 60px;
}

.thanks-page .thanks-message h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.thanks-page .thanks-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.thanks-page .line-registration {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.thanks-page .line-registration h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.thanks-page .line-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.thanks-page .qr-code-wrapper {
    margin-bottom: 30px;
}

.thanks-page .qr-code-wrapper img {
    max-width: 100%;
    height: auto;
}

.thanks-page .line-button-wrapper {
    margin-top: 20px;
}

.thanks-page .line-button-wrapper img {
    transition: opacity 0.3s;
}

.thanks-page .line-button-wrapper img:hover {
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .thanks-page .thanks-content {
        padding: 20px 15px;
    }
    
    .thanks-page .line-registration {
        padding: 20px;
    }
    
    .thanks-page .thanks-message h2 {
        font-size: 24px;
    }
    
    .thanks-page .line-registration h3 {
        font-size: 20px;
    }
    
    .thanks-page .qr-code-wrapper img {
        width: 150px;
        height: 150px;
    }
}

