/*
Theme Name:luxon
Description:luxon
Version: 1.0
Author: 
*/

@charset "UTF-8";

html {
  font-size: 62.5%; /* 16px × 62.5% = 10px */
  scroll-behavior: smooth;
  height: 100%;
}

body {
	min-height: 100vh;
	font-family: var(--font-main);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-1);
	background-color: var(--color-2);
	overflow-x: hidden;
}

/* ------------------------------
  変数
------------------------------*/

:root {
	--font-size-base: 1.6rem; /* =16px: 基本文字サイズ */
	--color-1: #000; /* 基本カラー */
	--color-2: #fff; /* ベースカラー1 */
	--color-3: #ff0000; /* アクセントカラー */
	--color-4: #F8F8F8; /* ベースカラー2 */
	--font-main: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Medium",
    "Yu Gothic Medium", "Noto Sans JP", "メイリオ", "Meiryo" ,"Helvetica Neue" ,"Arial", sans-serif;
}

.arial {
  font-family: "Arial", "メイリオ";
}
p, li, small, span {
    font-family: -apple-system, BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "Meiryo", sans-serif;
  }
  
[lang="en"], .en {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.05em
  }

*, *::before, *::after {
  box-sizing: border-box;
  transition: 0.3s;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style-type: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.section__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-3);
}
.section__heading {
  font-size: clamp(2.6rem, 3.1vw, 5rem);
  font-weight: bold;
}
.section__lead {
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .section__lead {
    line-height: calc( 22 / 14);
  }
}
.section__heading-wrapper {
  display: flex;
  align-items: baseline;
  gap: min( 1.6vw, 3rem);
}
@media (max-width: 768px) {
  .section__heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
.section__text {
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  font-weight: 500;
  line-height: calc( 29/ 18);
}
@media (max-width: 768px) {
  .section__text {
    line-height: calc( 22 / 14);
  }
}
.btn-area {
  text-align: center;
}
.btn {
  display: inline-block;
  max-width: 100%;
  border: 2px solid #000;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  background-color: var(--color-2);
}
.btn:hover {
  background-color: var(--color-3);
  color: var(--color-2);
}
.circle-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .circle-btn {
    width: 42px;
    height: 42px;
    color: #fff;
  }
}
:focus-visible {
  outline: 2px solid #0f7bff;
  outline-offset: 2px;
}

/* =========================
   表
========================= */
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}



thead,
tfoot .back {
  background-color: #f5f5f5;
}

th,
td {
  border: 1px solid #777;
  padding: 8px 10px;
}

tbody > tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

/* =========================
   Header
========================= */
.header {
      width: 100%;
      height: 120px;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1001;
      padding: 0 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #D9D9D9;
}
@media (max-width: 768px) {
  .header {
    padding: 0 1.5rem;
	  height: 75px;
  }
}
.header__logo {
  width: 190px;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .header__logo {
    width: 116px;
  }
}
.header__logo-link {
  display: block;
}
.header__inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
	font-weight: bold;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: -375px;
    left: 0;
    width: 100%;
    transition: top 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;
    margin-top: 72px;
    background-color: #fff;
    padding-bottom: 3.9rem;
    border-bottom: 1px solid #D9D9D9;
  }
}
.header.is-open .header__nav {
  display: block;
  top: 0;
  opacity: 1;
}
.header__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
  .header__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-right: 0;
}
}
.header__item {
  margin-right: min(2vw, 4rem);
}
@media (max-width: 768px) {
  .header__item {
    width: 100%;
    border-bottom: 1px solid var(--color-1);
  }
} 
.header__link.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .header__link.sp-only {
    display: flex;
  }
} 
@media (max-width: 768px) {
  .header__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.7rem;
  }
}
.header__link-arrow {
  display: none;
}
@media (max-width: 768px) {
  .header__link-arrow {
    display: block;
  }
}
.btn__contact {
  padding: 0.7rem 4rem;
}
.btn__contact2 {
	display: none;
}
@media (max-width: 768px) {
  .btn__contact {
    display: none;
}
	.btn__contact2 {
		display: block;
		padding: 1rem 4rem;
	}
}
.header__toggle-area {
  display: none;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 768px) {
  .header__toggle-area {
    width: 36px;
    height: 29px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.header__toggle {
  width: 30px;
  height: 14px;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}
.header__toggle-line {
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header.is-open .header__toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header.is-open .header__toggle-line:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__toggle-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.header__toggle-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.15em;
}
/* =========================
   Main
========================= */
#main {
	margin-top: 0;
}
.main--index {
  /*padding-top: 3.6rem;*/
}
@media (max-width: 768px) {
  .main--index {
    /*padding-top: 2rem;*/
  }
}
.main--column,
.main--contact,
.main--maintenance,
.main--lineup {
  padding-top: 21.7rem;
}
@media (max-width: 768px) {
  .main--column,
  .main--contact,
  .main--maintenance,
  .main--lineup {
    padding-top: 9.1rem;
  }
}
.main--column-article {
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .main--column-article {
    padding-top: 3rem;
  }
}
/* =========================
   トップページ
========================= */
.Top_slider-pc {
    max-width: 900px;
	margin: auto;
}
.Top_slider-sp {
  display: none;
}
.Top_fv-pc{
	display: block;
}
.Top_fv-sp{
	display: none;
}

@media (max-width: 768px) {
  	.Top_slider-sp {
		display: block;
		width: 80%;
		margin: auto;
		margin-top: 30px;
  	}
  	.Top_slider-pc {
    	display: none;
  	}
	.Top_fv-pc{
		display: none;
	}
	.Top_fv-sp{
		display: block;
	}
}
/* =========================
   Hero
========================= */
.hero {
    position: relative;
    background-color: #fff;
    margin-bottom: 8rem;
  }

  @media (max-width: 768px) {
    .hero {
      margin-bottom: 3.6rem;
    }
  }
.hero__inner img{
	position: relative;
}

  .hero__title {
    font-size: clamp(3rem, 3.6vw, 6rem);
    font-weight: bold;
	line-height: calc(74 / 60);
    position: absolute;
    margin: -20% 5% 0;
    color: var(--color-2);
  }
  @media (max-width: 768px) {
    .hero__title {
      	line-height: calc( 40 / 30);
      	margin-bottom: 1.8rem;
		margin: -60% 5% 0;
    }
  }
  br.sp-only {
    display: none;
  }
  @media (max-width: 768px) {
    br.sp-only {
      display: inline;
    }
  }
  .pc_display { 
    display: flex; 
  }
  .sp_display { 
    display: none; 
  }
  @media (max-width: 768px) {
    .pc_display { 
      display: none; 
    }
    .sp_display { 
      display: flex; 
      width: 100%;
    }
  }
    .hero__content {
      gap: 2.5rem;
      width: 100%;   
      height: auto;
      justify-content: end;
    }
    @media (max-width: 768px) {
      .hero__content {
        flex-direction: column-reverse;
        align-items: end;
        gap: 1rem;
      }
    }
    .hero__left {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      width: calc(100% - 64% - 2.5rem);
      height: auto;
    }
    @media (max-width: 768px) {
      .hero__left {
        flex-direction: row;
        gap: 1rem;
        height: auto;
        margin-left: auto;
      }
    }
    .hero__img-flex {
      display: flex;
      gap: 2.5rem;
      height: calc(50% - 1.25rem);
      width: 100%;
    }
    @media (max-width: 768px) {
      .hero__img-flex {
        gap: 1rem;
        height: 40%;
        justify-content: flex-end;
      }
    }
    @media (max-width: 768px) {
      .hero__img-flex4 {
        width: 41%;
      }
      .hero__img-flex3 {
        width: 41%;
      }
      .hero__img-flex2 {
        width: 18%;
      }
    }
    .hero__img {
      transition: opacity 1.5s ease-in-out;
      opacity: 1;
    }
    .hero__img img,
    .hero__img-flex img,
    .hero__right img {
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }
    .hero__right img {
      height: 492px;
      border-radius: 8px 0 0 8px;
    }
    @media (max-width: 768px) {
      .hero__right img {
        height: 191px;
      }
    }
    .hero__img img {
      height: 231px;
    }
    .hero__img-flex2, .hero__img-flex3,.hero__img-flex4 {
      height: 236px;
    }
    @media (max-width: 768px) {
      .hero__img-flex2, .hero__img-flex3,.hero__img-flex4 {
        height: 136px;
      }
    }
    .hero__img img,
    .hero__img-flex img {
      border-radius: 8px;
    }
    .hero__img-flex2 img {
      border-radius: 8px;
    }
    @media (max-width: 768px) {
    .hero__img-flex2 img {
     border-radius: 8px 0 0 8px;
    }
   }
    .hero__right {
      width: 64%;
      height: auto;
    }
    @media (max-width: 768px) {
      .hero__right {
        width: 100%;
      }
    }

  /* =========================
   Pickup
========================= */
.pickup {
  margin-bottom: 6.6rem;
}
@media (max-width: 768px) {
  .pickup {
    margin-bottom: 5rem;
  }
}
.pickup__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    max-width: 904px;
    padding: 0 1.2rem;
    margin: 0 auto;
}
@media (max-width: 768px) {
  .pickup__inner {
    margin: 0 auto;
    max-width: 293px;
    gap: 0.7rem;
    width: 78%;
    padding: 0;
  }
}
.pickup__title {
    font-size: 1.8rem;
    font-weight: 500;
    align-self: flex-start;
}
@media (max-width: 768px) {
  .pickup__title {
    font-size: 1.4rem;
  }
}
.pickup__img {
  width: 100%;
  align-self: flex-start;
}

  /* =========================
   about
========================= */
.about {
  margin-bottom:11rem;
}
@media (max-width: 768px) {
  .about {
    margin-bottom: 5rem;
  }
}
.about__inner {
  max-width: 1420px;
  min-width: 740px;
  width: 74%;
  margin-right: auto;
  margin-left: 0;
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .about__inner {
    width: 100%;
    min-width: initial;
    gap: 0.4rem;
  }
}
/*.box {
  width: calc(100% - 919px - 3.1rem - 0.6rem - 0.6rem);
  min-width: 100px;
  min-height: 1px; 
  background-color: #24578E;
  display: block;
}*/
@media (max-width: 768px) {
  .box {
    min-width: 38px;
  }
}
 .border {
  position: relative;
 }
.border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /*width: 6px;*/
  height: 100%;
  /*background-color: #C53240;*/
  display: block;
}
@media (max-width: 768px) {
  .border::after {
    width: 4px;
  }
}
@media (min-width: 769px) {
.about__content  {
  padding: 7.9rem 7rem 1.8rem 0;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
}
.about__content .section__heading {
  margin-bottom: 1.5rem;
}
.about__text {
  max-width: 849px;
}
.about__circle-btn {
  border: 2px solid var(--color-1);
  position: absolute;
  bottom: 1.8rem;
  right: 0;
  color: var(--color-1);
}
@media (max-width: 768px) {
  .about__circle-btn {
    margin: 0px -5% -14% 0px;
    right: 4.1rem;
    background-color: var(--color-1);
    color: #fff;
  }
}
.about__circle-btn:hover {
  background-color: var(--color-3);
  color: #fff;
}

/* =========================
   column
========================= */
.column {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .column {
    margin-bottom: 6rem;
  }
}
.column__inner {
  max-width: 1382px;
  min-width: 740px;
  width: 72%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .column__inner {
    min-width: initial;
    width: 100%;
    padding: 0 2.5rem;
  }
}
.column__content {
  margin: 3rem 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .column__content {
    margin: 1.6rem 0 3rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.card {
  padding: min( 2.4vw, 4.6rem);
  position: relative;
  display: flex;
  width: calc(100% / 3);
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #fff;
}
.card:hover {
  background-color: var(--color-4);
}
@media (max-width: 768px) {
  .card {
    width: 100%;
    padding: 3.4rem 3.1rem;
    border: 1px solid var(--color-1);
  }
}

.card:hover .column__circle-btn {
  opacity: 1;
}
.card__image {
  aspect-ratio: 384/216;
  width: 100%;
  object-fit: cover;
  height: auto;
  margin-bottom: min( 1vw, 2rem);
}
@media (max-width: 768px) {
  .card__image {
    margin-bottom: 1.5rem;
  }
}
.card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: min( 0.7vw, 1.4rem);
}
@media (max-width: 768px) {
  .card__body {
    gap: 1rem;
  }
}
.card__category {
  display: flex;
  flex-flow: wrap;
  gap: min( 0.3vw, 0.6rem);
}
@media (max-width: 768px) {
  .card__category {
    gap: 0.4rem;
  }
}
.card__category-text {
  border: 1px solid #000;
  padding: min( 0.3vw, 0.5rem) min( 0.7vw, 1.4rem);
  font-size: clamp(1.1rem, 1vw, 1.6rem);
  font-weight: 300;
}
@media (max-width: 768px) {
  .card__category-text {
    padding: 0.3rem 1rem;
  }
}
.card__text {
  font-size: clamp(1.8rem, 1vw, 2rem);
  font-weight: 500;
}
.column__circle-btn {
  display: flex;
  opacity: 0;
  border: 2px solid var(--color-1);
  color: var(--color-1);
  align-self: end;
}
@media (max-width: 768px) {
  .column__circle-btn {
    opacity: 1;
    width: 37px;
    height: 37px;
  }
  .column__circle-btn svg {
    width: 17px;
    height: 15px;
  }
}
.column__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn__column {
  padding: 1rem 5rem;
  font-size: 2rem;
  text-align: center;
  display: inline;
}
@media (max-width: 768px) {
  .btn__column {
    display: block;
    width: 84%;
    background-color: var(--color-1);
    font-size: 1.6rem;
    color: #fff;
  }
}
/* =========================
   早稲田製薬について
========================= */
/* =========================
   hero__about
========================= */
.hero__about {
  background-image: url(/wp-content/themes/luxon/assets/image/about-image.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 280px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero__about {
    background-image: url(/wp-content/themes/luxon/assets/image/about-image-sp.webp);
    height: 168px;
    margin-bottom: 1rem;
	/*margin-top: 70px;*/
  }
}
.hero__about--inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 100%;
}
.hero__about--subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .hero__about--subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0;
  }
}
.hero__about--title {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 1.7rem;
  color: #fff;
}
@media (max-width: 768px) {
  .hero__about--title {
    font-size: 3rem;
  }
}


.hero__about2 {
  	background-image: url(https://gofool.co.jp/waseda_test/wp-content/themes/wasedapharmacy/assets/image/about-image2.webp);
  	background-position: center;
  	background-size: cover;
  	background-repeat: no-repeat;
  	height: 280px;
  	margin-bottom: 2rem;
	border-bottom: solid 2px  #000;
}
@media (max-width: 768px) {
  .hero__about2 {
    background-image: url(https://gofool.co.jp/waseda_test/wp-content/themes/wasedapharmacy/assets/image/about-image-sp2.webp);
    height: 168px;
    margin-bottom: 1rem;
	border-bottom: solid 2px  #000;
	margin-top: 60px;
  }
}
.hero__about--inner2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 100%;
}
.hero__about--subtitle2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-3);
}
@media (max-width: 768px) {
  .hero__about--subtitle2 {
    font-size: 1.4rem;
    font-weight: 500;
	color: var(--color-3);
    margin-bottom: 0;
  }
}
.hero__about--title2 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 1.7rem;
  color: #000000;
}
@media (max-width: 768px) {
  .hero__about--title2 {
    font-size: 3rem;
	color: #000000;
  }
}
/* =========================
   breadcrumb
========================= */
.breadcrumb {
  max-width: 1428px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .breadcrumb {
    min-width: initial;
    width: 100%;
    padding-left: 1.7rem;
  }
}
.breadcrumb__list {
  display: flex;
  gap: 0.5rem;
}
.breadcrumb__item {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .breadcrumb__item {
    font-size: 1.2rem;
  }
}
.breadcrumb__link::after {
  content: ">";
  margin-left: 0.5rem;
  color: #000000;
}
/* =========================
  mvv
========================= */
.mvv {
  margin: 1.3rem auto 0;
}
@media (max-width: 768px) {
  .mvv {
    margin: 0 auto 5rem;
  }
}
.mvv__inner {
  max-width: 1252px;
  min-width: 640px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: top;
  gap: min( 2.6vw, 5rem);
}
@media (max-width: 768px) {
  .mvv__inner {
    flex-direction: column;
    width: 100%;
    min-width: initial;
    gap: 0;
  }
}
.mvv__card {
  flex: 1;
}
@media (max-width: 768px) {
  .mvv__card {
    height: auto;
  }
}
.mvv__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .mvv__card-inner {
    padding: 3rem 1.7rem 0;
  }
}
.mvv__card-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-3);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .mvv__card-subtitle {
    margin-bottom: 1rem;
  }
}
.mvv__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mvv__card-title {
  font-size: clamp(2.6rem, 2.1vw, 4rem);
  font-weight: 500;
  line-height: calc( 52/ 40);
  text-align: center;
  
}
@media (max-width: 768px) {
  .mvv__card-title {
    line-height: calc( 33 / 26);
  }
}
.mvv__card-image {
  padding: min( 2.3vw, 4.5rem) 0 min( 2.6vw, 5rem);
}
@media (max-width: 768px) {
  .mvv__card-image {
    padding: 1.9rem 0 1.4rem;
  }
}
.mvv__card-image.mission-img {
  width: 30%;
}
@media (max-width: 768px) {
  .mvv__card-image.mission-img {
    width: 15%;
  }
}
.mvv__card-image.vision-img {
  width: 27%;
}
@media (max-width: 768px) {
  .mvv__card-image.vision-img {
    width: 15%;
  }
}
.mvv__card-image.value-img {
  width: 23%;
}
@media (max-width: 768px) {
  .mvv__card-image.value-img {
    width: 15%;
  }
}
.mvv__card-text {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  font-weight: 500;
  line-height: calc( 29/ 18);
}
@media (max-width: 768px) {
  .mvv__card-text {
    line-height: calc( 22 / 14);
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-1);
  }
}
/* =========================
  strength
========================= */
.strength__heading-inner {
  display: flex;
  width: 100%;
  background-color: #fff;
}
.strength__heading-box {
  /*border-right: 6px solid #C53240;*/
  width: 18%;
  min-width: 100px;
  min-height: 1px; 
  display: block;
}
@media (max-width: 768px) {
  .strength__heading-box {
    /*border-right: 4px solid #C53240;*/
    width: 17px;
    min-width: initial;
  }
}
.strength__heading-content {
  padding: 0 0 3rem 0;
  width: 63%;
}
@media (max-width: 768px) {
  .strength__heading-content {
    padding: 0  3rem 0.6rem 0;
    width: 100%;
  }
}
.strength__heading-content .section__heading {
  margin-bottom: 0.6rem;
}
@media (max-width: 768px) {
  .strength__heading-content .section__heading {
    margin-bottom: 1rem;
  }
}
.strength__inner {
    max-width: 1252px;
    width: 70%;
    margin: 0px auto;
    padding: 9rem 0 7rem;
}
@media (max-width: 768px) {
	.strength__inner {
		width: 100%;
        padding: 4rem 2.5rem 0;
	}
}
.strength__text {
  max-width: 975px;
  min-width: 540px;
}
@media (max-width: 768px) {
  .strength__text {
    min-width: initial;
  }
}
.strength__main-inner {
  display: flex;
  width: 100%;
  /*background-color: #24578E;*/
}
.strength__main-box {
  border-right: 6px solid #FFFFFF;
  width: 18%;
  min-width: 100px;
  min-height: 1px; 
  display: block;
}
@media (max-width: 768px) {
  .strength__main-box {
    border-right: 4px solid #FFFFFF;
    width: 17px;
    min-width: initial;
  }
}
.strength__main-content {
  padding: 0 0 min( 2.1vw, 4rem) 0;
  display: flex;
  gap: min( 6svw, 3.5rem);
  max-width: 1200px;
  width: 100%;
  color: var(--color-1);
}
@media (max-width: 768px) {
  .strength__main-content {
    flex-direction: column;
    padding: 0 0 1.9rem;
    width: 100%;
  }
}
.strength__card {
  flex: 1;
}
.strength__card-inner {
  display: flex;
  flex-direction: column;
  gap: min( 1vw, 2rem);
}
@media (max-width: 768px) {
  .strength__card-inner {
    gap: 1.4rem;
  }
}
.strength__card-image {
  aspect-ratio: 358/202;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.strength__card-body {
  display: flex;
  flex-direction: column;
  gap: min( 1vw, 2rem);
}
@media (max-width: 768px) {
  .strength__card-body {
    gap: 1.4rem;
  }
}
.strength__card-title {
  font-size: clamp(2.2rem, 1.5vw, 2.7rem);
  font-weight: bold;
  line-height: calc( 36/ 27);
}
@media (max-width: 768px) {
  .strength__card-title {
    line-height: calc( 30/ 22);
  }
}
.strength__card-text {
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}
@media (max-width: 768px) {
  .strength__card-text {
    line-height: calc( 22/ 14);
  }
}
.strength__footer-inner {
  display: flex;
  width: 100%;
  background-color: #fff;
}
.strength__footer-box {
  /*border-right: 6px solid #C53240;*/
  width: 18%;
  min-width: 100px;
  min-height: 1px; 
  display: block;
}
@media (max-width: 768px) {
  .strength__footer-box {
    /*border-right: 4px solid #C53240;*/
    width: 17px;
    min-width: initial;
  }
}
.strength__footer-content {
  	padding: 3rem 0 10rem 0;
  	max-width: 1200px;
  	width: 63%;
	margin: auto;
}
@media (max-width: 768px) {
  .strength__footer-content {
    padding: 3rem 0 8rem 0;
    width: calc(100% - 17px - 4px);
  }
}
.strength__btn-wrapper {
  display: flex;
  gap: min( 2.08svw, 4rem);
  max-width: 600px;
  width: 100%;
}
@media (max-width: 768px) {
  .strength__btn-wrapper {
    flex-direction: column;
    gap: 2.4rem;
	align-items: center;
  }
}
.btn__strength {
  padding: 1rem 0;
  display: block;
  width: 280px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .btn__strength {
    padding: 0.8rem 0 1rem;
    font-size: 1.6rem;
    color: #fff;
    width: 82%;
    background-color: var(--color-1);
  }
}
/* =========================
  company
========================= */
.company {
  background-color: var(--color-4);
}
.company__inner {
  max-width: 1252px;
  width: 70%;
  margin: 0 auto;
  padding: 9rem 0 7rem;
}
@media (max-width: 768px) {
  .company__inner {
    width: 100%;
    padding: 4rem 2.5rem 5rem;
  }
}
.company__heading .section__heading {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .company__heading .section__heading {
    margin-bottom: 1.5rem;
  }
}
.company__info, 
.company__map {
  display: flex;
  flex-wrap: wrap;
}
.company__info dt, 
.company__map dt {
  width: 21%;
  font-size: clamp(1.8rem, 1.3vw, 1.7rem);
  font-weight: 500;
  line-height: calc( 28/ 22);
  padding: min( 0.9375svw, 1.8rem) min( 1.25svw, 2.4rem);
  border-bottom: 1px solid #000000;
}
@media (max-width: 768px) {
  .company__info dt, 
  .company__map dt {
  width: 100%;
  line-height: 1;
  padding: 0 0 0.6rem 0;
  border-bottom: none;
}
}
.company__info dd, 
.company__map dd {
  width: 79%;
  font-size: clamp(1.4rem, 1.3vw, 1.7rem);
  font-weight: 500;
  line-height: calc( 28/ 22);
  padding: min( 0.9375vw, 1.8rem) min( 1.979vw, 3.8rem);
  border-bottom: 1px solid #000000;
  position: relative;
}
@media (max-width: 768px) {
  .company__info dd, 
  .company__map dd {
    width: 100%;
    line-height: 1.5;
    padding: 0 0 1.4rem 0;
    margin-bottom: 1.5rem;
  }
  .company__info dd:last-child, 
  .company__map dd:last-child {
    margin-bottom: 0;
  }
}
.company__map dd,
.company__map dt {
  border-bottom: none;
}
.company__info dd::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 1.6rem;
  transform: translateY(-50%);
}
.company__map dd::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 30%;
  font-size: 1.6rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .company__info dd::before, 
  .company__map dd::before {
    display: none;
  }
}
.company__map {
  width: 100%;
  border-bottom: 1px solid #000000;
  padding-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .company__map {
    padding-bottom: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .company__map iframe {
    height: 264px;
  }
}
.company__info .pc-only {
  display: block;
}
@media (max-width: 768px) {
  .company__info .pc-only {
    display: none;
  }
}
/* =========================
  コラム一覧ページ
========================= */
/* =========================
  column__page
========================= */
.column__page-heading {
  text-align: center;
  border-bottom: 2px solid #24578E;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .column__page-heading {
    padding-bottom: 2rem;
    margin-bottom: 0.8rem;
  }
}
.column__page-heading .section__title {
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
  font-weight: 500;
  color: #24578E;
}

.column__page-heading .section__heading {
  font-size: 5rem;
  font-size: clamp(3rem, 3.1vw, 7rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .column__page-heading.section__heading {
   line-height: calc(40 / 30);
  }
}
.column__page-inner {
  padding: 5.4rem 0 8rem;
  max-width: 1428px;
  width: 72%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .column__page-inner {
    padding: 3rem 1.7rem 6rem;
    width: 100%;
  }
}
.column__page-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .column__page-text {
    margin-bottom: 2.4rem;
  }
}
.select_box {
  display: none;
}
@media (max-width: 768px) {
  .select_box {
    display: block;
  }
}
.select_btn {
   display: inline-block;
   align-items: center;
   position: relative;
}
.select_btn::before,
.select_btn::after {
   position: absolute;
   content: '';
   pointer-events: none;
}
.select_btn::before {
   display: inline-block;
   right: 0;
   width: 32px;
   height: 33px;
   border-radius: 0 4px 4px 0;
   background-color: #6E5353;
}
.select_btn::after {
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translate(50%, -50%) rotate(45deg);
   width: 10px;
   height: 10px;
   border-bottom: 2px solid #fff;
   border-right: 2px solid #fff;
}
.select_btn select {
   appearance: none;
   width: 245px;
   height: 33px;
   padding-left: 1.4rem;
   border: 1px solid #6E5353;
   border-radius: 4px;
   background-color: #fff;
   color: #6E5353;
   cursor: pointer;
   outline: 0;
}
.column__page-category {
  display: flex;
  flex-wrap: wrap;
  gap: min( 1vw, 2rem);
}
@media (max-width: 768px) {
  .column__page-category {
    gap: 2rem;
  }
}
.column__category {
  color: #000;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 1.6rem;
  width: fit-content;
}
.column__category.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .column__category.pc-only {
    display: none;
  }
}
.column__category.active,
.pagination__circle-btn.active {
  color: #fff;
  background-color: #000;
}
.column__category:hover,
.pagination__circle-btn:hover {
  background-color: #000;
  color: #fff;
}
.column__page-content {
  max-width: 1382px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 3rem;
  padding-bottom: 14.2rem;
}
@media (max-width: 768px) {
  .column__page-content {
    flex-direction: column;
    padding-bottom: 5rem;
  }
}
.pagination__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;
}
@media (max-width: 768px) {
  .column__page-content {
    gap: 3.1rem;
  }
}
.pagination__btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 768px) {
  .pagination__btn-inner {
    gap: 2rem;
  }
}
.next__btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;
}
.next-btn {
  color: #6E5353;
  background-color: #fff;
  font-size: 2.3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .next-btn {
    font-size: 1.8rem;
  }
}
.pagination__circle-btn {
  border: 2px solid #6E5353;
  color: #6E5353;
  background-color: #fff;
  font-size: 2.3rem;
  font-weight: 500;
  width: 50px;
  height: 50px;
  padding: 1.1rem 1.8rem;
}
@media (max-width: 768px) {
  .pagination__circle-btn {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
}
/* =========================
  コラム記事ページ
========================= */
/* =========================
  column__article
========================= */
.container {
  max-width: 1428px;
  margin: 0 auto;
  width: 74%;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
  }
}
.container .card__category {
  margin: 3.4rem 0 1rem;
}
@media (max-width: 768px) {
  .container .card__category {
    margin: 2rem 0 1rem;
    padding-left: 1.7rem;
  }
}
.container .breadcrumb {
  max-width: initial;
  min-width: initial;
  width: 100%;
} 
.container-title {
  font-size: clamp(2.4rem, 2.2vw, 4.2rem);
  font-weight: 500;
  line-height: calc(57 / 42);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .container-title {
    line-height: calc(33 / 24);
    margin-bottom: 3rem;
    padding-left: 1.7rem;
  }
}
.container-title .pc-only {
  display: block;
}
@media (max-width: 768px) {
  .container-title .pc-only {
    display: none;
  }
}
.wrapper {
  display: flex;
  width: 100%;
}
.column__article {
  width: 72%;
}
@media (max-width: 768px) {
  .column__article {
    width: 100%;
  }
}
.column__article-inner {
  padding-right: min( 1.4vw, 2.7rem);
  padding-bottom: 9rem;
}
@media (max-width: 768px) {
  .column__article-inner {
    padding: 0 1.7rem 5rem;
  }
}
.column__article-image-wrapper {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .column__article-image-wrapper {
    margin-bottom: 1rem;
  }
}
.column__article-image img{
  max-width: 1000px;
  width: 100%;
  object-fit: cover;
  height: auto;
}
.column__article-image-text {
  font-size: 1.4rem;
  text-align: right;
  padding-top: 1.3rem;
}
@media (max-width: 768px) {
  .column__article-image-text {
    padding-top: 1rem;
  }
}
.toc {
  border: 2px solid #6E5353;
  border-radius: 8px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .toc {
    margin-bottom: 2rem;
  }
}
.toc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FAF9F6;
  padding: 1.7rem 3rem;
  padding: min( 0.9vw, 1.7rem) min( 1.6vw, 3rem);
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #6E5353;
}
@media (max-width: 768px) {
  .toc__header {
    padding: 1rem 1.4rem;
  }
}
/* 閉じた状態 (is-openがない状態) の目次ヘッダーの下線を表示しない */
.toc:not(.is-open) .toc__header {
    border-bottom: none ; /* または border-bottom: 0; */
    border-radius: 8px;
}
.toc__header-inner {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: #6E5353;
  margin: 0;
}
@media (max-width: 768px) {
  .toc__header-inner {
    gap: 0.5rem;
  }
}
.toc__header-title {
  font-size: clamp(2rem, 1.5vw, 2.8rem);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .toc__header-title {
    line-height: calc( 33/ 20);
  }
}
.toc__header-subtitle {
  font-size: 1.4rem;
  margin: 0;
}
@media (max-width: 768px) {
  .toc__header-subtitle {
    font-size: 1.3rem;
  }
}
.toc__header-btn {
  width: 33px;
  height: 33px;
}
@media (max-width: 768px) {
  .toc__header-btn {
    width: 26px;
    height: 26px;
  }
}
.toc__list {
  padding: min( 0.8vw, 1.6rem) 0 min( 0.8vw, 1.6rem) min( 2.1vw, 4.1rem);
}
@media (max-width: 768px) {
  .toc__list {
    padding: 1.6rem ;
  }
}
.toc__item {
  color: #6E5353;
}
.toc__link {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-weight: 500;
  margin-bottom: min( 0.5vw, 1rem);
  
}
.toc__link-sub {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  margin-bottom: min( 0.5vw, 1rem);
}
.toc__list--depth2 li::before {
  content: '・';
  color: #6E5353;
}
.toc__list--depth3 li::before {
  content: '-';
  color: #6E5353;
  margin-left: 2rem;
}
/* -------------------------------------- */
/* 目次 (TOC) のアコーディオンCSS */
/* -------------------------------------- */

/* 矢印アイコンの共通スタイル: 変化をスムーズにする */
.js-toc-icon {
    transition: transform 0.3s ease;
}

/* 矢印の初期状態（is-openが付いている状態＝開いている状態） */
/* 画像の向きにもよりますが、ここでは回転なし（開いている状態を示す向き）とします */
.toc.is-open .js-toc-icon {
    transform: rotate(0deg); 
}

/* 閉じた状態の矢印アイコン（is-open が外れた状態）: 矢印を回転させる */
.toc:not(.is-open) .js-toc-icon {
    /* 矢印が下向きの場合、閉じるときに 90度または 180度回転させて閉じた状態を表現します。 */
    /* 一般的な右向きの矢印（＞）が使われていると仮定し、開いたときに下向き、閉じたときに右向きになるよう 90度回転を設定します */
    transform: rotate(180deg); /* 矢印画像を180度回転させます */
}

/* 閉じた状態の目次リストのスタイル */
.toc:not(.is-open) .toc__list {
    display: none; /* コンテンツを非表示にします */
}
.column__article-heading {
  display: flex;
}
.column__article-heading-inner {
  width: 72%;
}
@media (max-width: 768px) {
  .column__article-heading-inner {
    width: 100%;
  }
}
.column__article-heading-box {
  width: 28%;
}
@media (max-width: 768px) {
  .column__article-heading-box {
    display: none;
  }
}
.column__article-content {
  margin-bottom: 6rem;
}
.column__article-content-section {
  position: relative;
}
.anchor-offset {
  position: absolute;
  height: 80px;
  top: -80px;
  visibility: hidden;
}
.column__article-content-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  line-height: calc( 29/ 18);
  /* margin-bottom: 2.8rem; */
}
@media (max-width: 768px) {
  .column__article-content-text {
    line-height: calc( 22/ 14);
    margin-bottom: 3rem;
  }
}
.column__article-content h2 {
  font-size: clamp(2.2rem, 1.8vw, 3.2rem);
  border-top: 2px solid #6E5353;
  border-bottom: 2px solid #6E5353;
  padding: 0.6rem 1rem;
  margin-top: 2.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .column__article-content h2 {
    line-height: calc( 33/ 22);
  }
}
.column__article-content h3 {
  border: none;
  background-color: #FAF9F6;
  font-size: clamp(2rem, 1.5vw, 2.8rem);
  font-weight: 500;
  padding: 10px 6px;
  margin: 28px 0 18px;
}
@media (max-width: 768px) {
  .column__article-content h3 {
    line-height: calc(33/20);
  }
}
.column__article-content h4 {
  border-left: 4px solid #6E5353;
  border-top: none;
  border-bottom: none;
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  padding: 0 0 0 10px;
  margin: 28px 0 15px;
}
.column__article-content img {
    max-width: 100%; /* 親要素から引き継ぐ */
    height: auto;     /* 親要素から引き継ぐ */
    display: block;   /* 大元のスタイルを再指定 */
	margin-bottom: 1.5rem;
}
.article__btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-btn {
  display: flex;
  gap: 1rem;
  padding: .8rem 1.8rem;
  border: 1px solid #6E5353;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .article-btn {
    font-size: 1.8rem;
    gap: 1.1rem;
    background-color: #6E5353;
    color: #fff;
  }
}
.recommend {
  padding-right: min( 1.4vw, 2.7rem);
}
@media (max-width: 768px) {
  .recommend {
    padding: 0 1.7rem;
  }
}
.recommend__content {
  flex-direction: column;
}
.recommend__content .card {
  width: 100%;
  flex-direction: row;
  align-items: start;
  gap: min( 0.7vw, 1.3rem);
}
@media (max-width: 768px) {
  .recommend__content .card {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.recommend__content .card__category {
  margin: 0 0 min( 0.6vw, 1.2rem);
}
@media (max-width: 768px) {
  .recommend__content .card__category {
    padding-left: 0;
  }
}
.column__page-content.recommend__content {
  padding-bottom: 6rem;
}
.recommend__content .card__image {
  max-width: 206px;
}
@media (max-width: 768px) {
  .recommend__content .card__image {
    max-width: 100%;
  }
}
.recommend__image {
  display: flex;
  margin: 0;
  height: -webkit-fill-available;
}
.recommend__image img {
  object-fit: cover;
}
/* =========================
  sidebar
========================= */
.sidebar {
  width: 28%;
  position: sticky;
  top: 72px;
  height: fit-content;
}
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar__inner {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 4px solid #24578E;
}
.sidebar__banner-image {
  max-width: 385px;
}
.sidebar__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.column__page-category.sidebar__category {
  height: auto;
  flex-direction: column;
  gap: 1rem;
}
.sidebar__subtitle {
  font-style: 1.8rem;
  font-weight: 500;
}
.sidebar__recommend-inner {
  padding-bottom: 1rem;
}
.sidebar__card {
  flex-direction: row;
  align-items: top;
  width: 100%;
  gap: .6rem;
  padding: 1rem ;
  border-bottom: 1px solid #fff;
}
.sidebar__card:hover {
  border-bottom: 1px solid #6E5353;
}
.sidebar__card .card__text {
  font-size: min( 1.5vw, 1.5rem);
  line-height: calc( 20/ 15);
}
.sidebar__image {
  width: 30%;
}
.sidebar__text {
  width: 69%;
  font-size: clamp(0.3rem, 2vw, 1.5rem);
  line-height: calc( 20 / 15);
}
/* =========================
  お問い合わせページ
========================= */
/* =========================
  contact__page
========================= */
.contact__page-heading {
  text-align: center;
  border-bottom: 2px solid #24578E;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact__page-heading {
    padding-bottom: 2rem;
    margin-bottom: 0.8rem;
  }
}
.contact__page-heading .section__title {
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
  font-weight: 500;
  color: #24578E;
}

.contact__page-heading .section__heading {
  font-size: 5rem;
  font-size: clamp(3rem, 3.1vw, 7rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .contact__page-heading .section__heading {
   line-height: calc(40 / 30);
   margin: 0;
  }
}
.contact__page-inner {
  max-width: 1428px;
  margin: 0 auto;
  width: 74%;
  padding: 6rem 0 8rem;
}
@media (max-width: 768px) {
  .contact__page-inner {
    width: 100%;
    padding: 3rem 1.7rem 6rem;
  }
}
.contact__page-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  line-height: calc( 22/ 18);
}
.contact__page-text.red {
  display: flex;
  align-items: center;
  padding-top: 0.6rem;
  color: var(--color-3);
}
@media (max-width: 768px) {
  .contact__page-text.red {
    padding-top: 0;
  }
}
.form {
  max-width: 777px;
  margin: 0 auto;
  padding-top: 6rem;
}
@media (max-width: 768px) {
  .form {
    padding-top: 3.3rem
}
}
.form__row {
  display: flex;
}
@media (max-width: 768px) {
  .form__row {
    flex-direction: column;
    margin-bottom: 2.2rem;
  }
  .form__row.last {
    margin-bottom: 0;
  }
}
.form__label {
  display: flex;
  align-items: top;
  width: 25%;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  color: #24578E; 
  padding-bottom: 5.4rem;
}
@media (max-width: 768px) {
  .form__label {
    width: 100%;
    padding-bottom: 0.5rem;
    line-height: calc( 23/ 16);
  }
}
.form__req {
  margin-left: 0.4rem;
  font-size: clamp(0.5rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: calc( 22/ 18);
  color: var(--color-3); 
}
.form__req.top_margin {
  margin-top: 0.2rem;
}
@media (max-width: 768px) {
  .form__req {
    margin-left: 0.5rem;
  }
}
.form__control,
.form__textarea {
  width: 75%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #000000;  
  border-radius: 3px;          
  box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.15) inset;
  padding: 0.3rem 1.2rem;
  outline: none;
}
@media (max-width: 768px) {
  .form__control,
  .form__textarea {
    width: 100%;
  }
}
.form__control {
  height: 100%;
}
@media (max-width: 768px) {
  .form__control {
    height: 3.3rem;
  }
}
.form__textarea {
  min-height: 20rem;
  resize: vertical;
  width: 75%;
}
@media (max-width: 768px) {
  .form__textarea {
    width: 100%;
    min-height: 18.5rem;
  }
}
.wpcf7-textarea { 
    resize: none !important; /* リサイズを無効化 */
}
.policy-wrap {
  padding-top: 2.4rem;
  width: 75%;
  margin-left: auto;
}
@media (max-width: 768px) {
  .policy-wrap {
    width: 100%;
    padding-top: 3.1rem;
  }
}
.policy-box {
  border: 1px solid #B0B0B0;
  border-radius: 3px;
  background: #FFFFFF;
  padding: min(0.8vw,1.5rem) min(1vw, 2rem);
  max-height: 12.8rem;          
  overflow-y: auto;     
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
@media (max-width: 768px) {
  .policy-box {
    padding: 1.5rem 2.3rem 1.3rem 2rem;
    margin-bottom: 1.9rem;
  }
}
.policy-title {
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
  .policy-title {
    margin-bottom: 0.8rem;
  }
}
.policy-text {
  font-style: clamp(1.3rem, 1.5vw 1.4rem);
  line-height: calc( 21/ 14);
  font-weight: 500;
}
@media (max-width: 768px) {
  .policy-text {
    line-height: calc(21 / 13);
  }
}
.check {
  display: flex;
  align-items: start;
  gap: 0.6rem;
  font-size: 1.4rem;
}
.check__2 {
  margin-top: 1.3rem;
}
@media (max-width: 768px) {
  .check:first-child {
    margin-top: 1.9rem;
  }
}
.check input[type="checkbox"] {
  margin-top: 0.4rem;
}
.check input[type="checkbox"],
.check span {
  cursor: pointer;
}
.form__actions { 
  text-align: center; 
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .form__actions {
    margin-top: 3rem;
  }
}
.form__submit {
  display: inline-block;
  width: 420px;
  background: #FFFFFF;
  color: #6E5353;
  border: 2px solid #6E5353;  
  border-radius: 8px;  
  padding: 10px 0;
  font-size: 2rem;
  cursor: pointer;
}
.form__submit:hover {
  background-color: #6E5353;
  color: #fff;
}
@media (max-width: 768px) {
  .form__submit {
    width: 288px;
    background-color: #6E5353;
    color: #fff;
    padding: 8px 0;
  }
}
/* =========================
  製品案内ページ
========================= */
/* =========================
  service
========================= */
.service {
  background-image: url(https://gofool.co.jp/waseda_test/wp-content/themes/wasedapharmacy/assets/image/product-image.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 358px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .service {
    background-image: url(https://gofool.co.jp/waseda_test/wp-content/themes/wasedapharmacy/assets/image/product-image-sp.webp);
    height: 168px;
    margin-bottom: 1rem;
	margin-top: 70px;
  }
}
.service__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  height: 100%;
}
.service__subtitle {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .service__subtitle {
    font-weight: 500;
    margin-bottom: 0;
  }
}
.service__title {
  font-size: clamp(3rem, 4.5vw, 7rem);
  font-weight: 500;
  margin-bottom: 1.7rem;
  color: #fff;
}
@media (max-width: 768px) {
  .service__title {
    margin-bottom: 1.5rem;
    text-align: center;
    width: 78%;
    line-height: 3.7rem;
  }
}
.service__hero-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 6rem 0 6.9rem;
  display: flex;
  align-items: top;
  gap: 4rem;
}
@media (max-width: 768px) {
  .service__hero-inner {
    min-width: initial;
    width: 100%;
    flex-direction: column;
    gap: 1.6rem;
    padding: 3rem 1.7rem 3rem;
  }
}
.service__hero-item {
  display: inline;
  background-color: #C57B1E;
  padding: 0.6rem 0.8rem;
  color: #fff;
  font-size: clamp(1.4rem, 0.8vw, 1.8rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .service__hero-item {
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.5rem;
  }
}
.service__hero-title {
  font-size: clamp(2.6rem, 2.0vw, 3.5rem);
  color: var(--color-1);
}
.service__hero-title.wine,
.service__detail-heading.wine
 {
  color: #82201F;
}
@media (max-width: 768px) {
  .service__hero-title {
    letter-spacing: 0;
    line-height: calc( 33/ 26);
  }
}
.service__hero-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-1);
  margin: 1rem 0 2rem;
}
.service__hero-title.wine::after {
  background-color: #82201F;
}
@media (max-width: 768px) {
  .service__hero-title::after {
    margin: 0.8rem 0 1.2rem;
  }
}
.service__hero-text {
  font-size: clamp(1.4rem, 0.8vw, 1.8rem);
  font-weight: 500;
	padding: 10px 0 20px
}
@media (max-width: 768px) {
  .service__hero-text {
    line-height: calc(22 / 14);
  }
}
.service__section-title {
  font-size: clamp(2.2rem, 2.5vw, 4.2rem);
  font-weight: 500;
  padding: 0.6rem 0;
  background-color: var(--color-1);
  color: #fff;
  text-align: center;
}
.service__section-title.wine,
.service__hero-item.wine {
  background-color: #82201F;
}
@media (max-width: 768px) {
  .service__section-title {
    padding: 0.5rem 1.7rem;
    text-align: left;
  }
}
.service__feature-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}
@media (max-width: 768px) {
  .service__feature-inner {
    min-width: initial;
    width: 100%;
    padding: 2.4rem 1.7rem 3rem;
  }
}
.service__feature-title {
  font-size: clamp(1.8rem,2vw,3.2rem);
  color: var(--color-1);
  margin-bottom: 2rem;
  padding: 1.2rem 2rem;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  .service__feature-title {
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.5rem;
  }
}
.service__feature-text {
  font-size: clamp(1.4rem, 1.2vw, 2.2rem);
  font-weight: 500;
  padding-left: 2rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .service__feature-text {
    padding-left: 1.4rem;
    padding-bottom: 2rem;
    width: 100%;
  }
}
.service__feature-text.text-right {
  padding-left: 0;
  padding-bottom: 0;
  width: 68%;
}
@media (max-width: 768px) {
  .service__feature-text.text-right {
    padding-left: 1.4rem;
  }
}
.service__feature-content {
  display: flex;
  align-items: top;
}
@media (max-width: 768px) {
  .service__feature-content {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.service__feature-image {
  width: 32%;
  margin-right: 2.9rem;
}
@media (max-width: 768px) {
  .service__feature-image {
    width: 100%;
    margin-right: 0;
  }
}
.service__scene-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .service__scene-inner {
    min-width: initial;
    width: 100%;
    padding: 1.5rem 1.7rem 0;
  }
}
.service__scene-content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
	gap: 20px;
}
@media (max-width: 768px) {
  .service__scene-content {
    flex-direction: column;
}
}
.service__scene-card {
  width: calc((100% - min(1.7vw, 3.2rem) * 2) / 3);
  margin-bottom: min(3.1vw, 6rem);
}
@media (max-width: 768px) {
  .service__scene-card {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.service__scene-card-image {
  aspect-ratio: 420/234;
  object-fit: cover;
  height: auto;
  margin-bottom: min(0.7vw, 1.4rem);
}
.service__scene-card-title {
  font-size: clamp(1.8rem,1.5vw,2.7rem);
  line-height: calc(36 / 27);
  font-weight: 500;
  margin-bottom: min(0.7vw, 1.4rem);
}
.service__scene-card-title.title-bottom {
  min-height: 7.2rem;
}
@media (max-width: 768px) {
  .service__scene-card-title.title-bottom {
    margin-bottom: 1.4rem;
    min-height: initial;
  }
}
.service__scene-card-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}
@media (max-width: 768px) {
  .service__scene-card-text {
    line-height: calc( 22/ 14);
  }
}
.service__ingredient-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 768px) {
  .service__ingredient-inner {
    min-width: initial;
    width: 100%;
    padding: 1.5rem 1.7rem 3rem;
    gap: 1.5rem;
  }
}
.service__ingredient-content {
  display: flex;
  gap: min(1.9vw, 3.6rem);
  background-color: #f2f2f2;
  padding: min(2vw, 3.9rem) min(2.3vw, 4.5rem);
}
@media (max-width: 768px) {
  .service__ingredient-content {
    flex-direction: column;
    gap: 1.2rem;
    padding: 2.5rem 1.7rem;
  }
}
.service__ingredient-image {
  width: 33%;
}
@media (max-width: 768px) {
  .service__ingredient-image {
    width: 100%;
  }
}
.service__ingredient-item {
  width: 67%;
  padding-top: 1.1rem;
  padding-top: min(0.5vw, 1.1rem);
}
@media (max-width: 768px) {
  .service__ingredient-item {
    padding-top: 1.2rem;
    width: 100%;
  }
}
.service__ingredient-title {
  font-size: clamp(1.8rem, 1.7vw, 3.2rem);
  font-weight: 500;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .service__ingredient-title {
    margin-bottom: 1.2rem;
  }
}
.service__ingredient-text {
  font-size: clamp( 1.4rem,1vw,1.8rem);
}
.service__detail-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  display: flex;
}
@media (max-width: 768px) {
  .service__detail-inner {
    min-width: initial;
    width: 100%;
    padding: 1.5rem 1.7rem 3rem;
    flex-direction: column;
  }
}
.service__detail-image {
  width: 50%;
}
@media (max-width: 768px) {
  .service__detail-image {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.service__detail-info {
  width: 50%;
  padding-left: min(2.1vw, 3rem);
}
@media (max-width: 768px) {
  .service__detail-info {
    width: 100%;
    padding-left: 0;
  }
}
.service__detail-heading {
  font-size: clamp(1.8rem,1.8vw,3rem);
  color: var(--color-3);
  font-weight: 500;
}
@media (max-width: 768px) {
  .service__detail-heading {
    margin-bottom: 0.8rem;
  }
}
.service__detail-text {
  font-size: clamp(1.4rem,1vw,1.8rem);
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service__detail-text {
    padding-left: 1.4rem;
    margin-bottom: 2.5rem;
  }
}
.service__detail-text.text-bottom {
  margin-bottom: 0;
}
.blue-deep {
  background-color: #24578E;
}
@media (max-width: 768px) {
  .service__detail-text.text-bottom {
    margin-bottom: 2.5rem;
  }
}
/* =========================
  service__seties
========================= */
.service__series-inner {
  max-width: 1312px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 4rem 0 8rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .service__series-inner {
    min-width: initial;
    width: 100%;
    padding: 1.5rem 1.7rem 6rem;
    gap: 1.1rem;
  }
}
.service__series-card {
  padding: min( 1.6vw, 3rem);
  width: calc(100% / 4);
}
@media (max-width: 768px) {
  .service__series-card {
    border: 1px solid var(--color-1);
    padding: 1.4rem 1rem;
   width: calc((100% - 1.1rem) / 2);
  }
}
.service__series-card:hover {
  border: 2px solid #6E5353;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
}
@media (max-width: 768px) {
  .service__series-card:hover {
    box-shadow: none;
    border: 1px solid #24578E;
  }
}
.service__series-card .card__image {
  aspect-ratio: 268/151;
  margin-bottom: 1.9rem;
}
@media (max-width: 768px) {
  .service__series-card .card__image {
    margin-bottom: 0.7rem;
  }
}
.service__series-card .card__body {
  gap: 0.6rem;
}
.service__series-card .card__category-text {
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .service__series-card .card__category-text {
    margin-bottom: 0.6rem;
  }
}
.service__series-card .card__text {
  line-height: calc( 27/ 22);
}
/* =========================
  製品案内ページ
========================= */
/* =========================
  lineup
========================= */
.lineup__heading {
  text-align: center;
  border-bottom: 2px solid #24578E;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .lineup__heading {
    padding-bottom: 2rem;
    margin-bottom: 0.8rem;
  }
}
.lineup__heading .section__title {
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
  font-weight: 500;
  color: #24578E;
}

.lineup__heading .section__heading {
  font-size: 5rem;
  font-size: clamp(3rem, 3.1vw, 7rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .lineup__heading.section__heading {
   line-height: calc(40 / 30);
   margin: 0;
  }
}
.lineup__inner {
  max-width: 1382px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 5.4rem 0 8rem;
}
@media (max-width: 768px) {
  .lineup__inner {
    min-width: initial;
    width: 100%;
    padding: 3rem 1.7rem 6rem;
  }
}
.lineup__inner-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  margin-bottom: 6.2rem;
}
@media (max-width: 768px) {
  .lineup__inner-text {
    line-height: calc(22 / 14);
    margin-bottom: 2.4rem;
  }
}
.lineup__inner-category-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .lineup__inner-category-area {
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
}
.lineup__inner-category {
  display: flex;
  flex-wrap: wrap;
  gap: min( 1vw, 2rem);
}
@media (max-width: 768px) {
  .lineup__inner-category {
    gap: 2rem;
  }
}
.lineup__category {
  color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: clamp(1.6rem, 1vw, 2rem);
  width: fit-content;
}
@media (max-width: 768px) {
  .lineup__category {
    height: 33px;

  }
}
.lineup__category.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .lineup__category.pc-only {
    display: none;
  }
}
.lineup-btn {
  border: 2px solid #000;
  color: #000;
}
.next-btn.lineup__next-btn {
  color: #000;
}
.lineup__category.active,
.pagination__circle-btn.lineup-btn.active {
  color: #fff;
  background-color: #000;
  pointer-events: none;
}
.lineup__category:hover,
.pagination__circle-btn.lineup-btn:hover {
  background-color: #000;
  color: #fff;
}
.lineup-select-btn::before {
   background-color: #000;
}
.lineup-select-btn select {
   border: 1px solid #000;
   color: #000;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.search {
  position: relative;
  width: 100%;
  max-width: 383px;
}
@media (max-width: 768px) {
  .search {
    max-width: 100%;
  }
}
.search__icon {
  position: absolute;
  left: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9C9C9C;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
}
@media (max-width: 768px) {
  .search__icon {
    left: 1.4rem;
  }
}
.search__input {
  box-sizing: border-box;
  width: 100%;
  height: 43px;           
  padding: 1.2rem 0 1.2rem 5.2rem;    
  border: 1px solid #9C9C9C;  
  border-radius: 6px;   
  font-size: clamp(1.4rem, 1vw, 2rem);
  background-color: #fff;
  outline: none;
  -webkit-appearance: none;
}
@media (max-width: 768px) {
  .search__input {
    height: 39px;
    padding: 1.1rem 0 1.1rem 4.2rem;
  }
}
.search__input::placeholder {
  color: #9C9C9C
}
.search__input:focus {
  border-color: #c9c9c9;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.lineup__content {
  max-width: 1382px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 4rem;
  padding-bottom: 16.9rem;
}
@media (max-width: 768px) {
  .lineup__content {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
.lineup__content .card:hover {
  z-index: 1;
  border: 2px solid var(--color-1);
  background-color: var(--color-2);
  box-shadow: 2px 1px 9px rgba(0, 0, 0, 0.72);
}
@media (max-width: 768px) {
  .lineup__content .card {
    border: 1px solid var(--color-1);
  }
  .lineup__content .card:hover {
    border: 1px solid var(--color-1);
  }
}
@media (max-width: 768px) {
  .lineup__content .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .lineup__content .card__body {
    gap: 0.9rem;
  }
}
.btn__lineup {
  display: inline-block;
  padding: min( 1vw, 0.9rem) 0 min( 1vw, 1.1rem);
  background-color: var(--color-1);
  border-radius: 6px;
  font-size: clamp(1.4rem, 1vw, 2rem);
  color: var(--color-2);
  text-align: center;
  width: 100%;
  opacity: 0;
}
.lineup__content .card:hover .btn__lineup {
  opacity: 1;
}
@media (max-width: 768px) {
  .lineup__content .btn__lineup {
    padding: 0.8rem 0 1.1rem;
    opacity: 1;
  }
}
.lineup__content .card__inner {
  padding-bottom: min( 1.5vw, 2.8rem);
}
@media (max-width: 768px) {
  .lineup__content .card__inner {
    padding-bottom: 2.6rem;
  }
}
/* =========================
  メンテナンス中ページ
========================= */
/* =========================
  maintenance
========================= */
.maintenance {
  min-height: 100vh;
}
.maintenance__heading {
  text-align: center;
  border-bottom: 2px solid #24578E;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .maintenance__heading {
    padding-bottom: 2rem;
    margin-bottom: 0.8rem;
  }
}
.maintenance__heading .section__title {
  font-size: clamp(1.4rem, 1.5vw, 2.4rem);
  font-weight: 500;
  color: #24578E;
}

.maintenance__heading .section__heading {
  font-size: 7rem;
  font-size: clamp(3rem, 3.5vw, 7rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .maintenance__heading.section__heading {
   line-height: calc(40 / 30);
   margin: 0;
  }
}
.maintenance__inner {
  max-width: 1428px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  padding: 5.4rem 0 8rem;
}
@media (max-width: 768px) {
  .maintenance__inner {
    min-width: initial;
    width: 100%;
    padding: 3rem 1.7rem 6rem;
  }
}
.maintenance__inner-text {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}
@media (max-width: 768px) {
  .maintenance__inner-text {
    line-height: calc(22 / 14);
  }
}
/* =========================
  footer
========================= */
.footer {
  border-top: 2px solid #000;
  padding: 6rem 0 5rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 0 0 5rem;
  }
}
.footer__inner {
  max-width: 1430px;
  min-width: 740px;
  width: 74%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
} 
@media (max-width: 768px) {
  .footer__inner {
    min-width: 0;
    width: 100%;
  }
}
.footer__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.8rem;
}
@media (max-width: 768px) {
  .footer__heading {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6rem;
  }
}
.footer__logo {
  width: 190px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-left: 1.7rem;
  }
}
.footer__logo-link {
  display: block;
}
@media (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.footer__item {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .footer__item {
    width: 100%;
    border-bottom: 1px solid #6E5353;
  }
}
@media (max-width: 768px) {
  .footer__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.7rem;
  }
}
.footer__link-arrow.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .footer__link-arrow.sp-only {
    display: flex;
  }
} 
.footer__address {
  font-style: normal;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer__address {
    margin: 0 1.7rem 3rem;
  }
}
.footer__address-list {
  display: flex;
  flex-direction: column;
}
.footer__address-item {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: calc( 20 / 14);
}
.footer__copyright {
  display: flex;
  gap: 2rem;
  justify-content: end;
}
@media (max-width: 768px) {
  .footer__copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
  }
}
.footer__copyright-text {
  font-size: 1.4rem;
  font-weight: 500;
}

/* リスト全体の枠 */
.company__list {
  list-style: none; /* ・（ナカグロ）を消す */
  padding: 0;
  margin: 0 0 40px 0;
  border-top: 1px solid #ccc;
}

/* 各行（li）の設定 */
.company__item {
  display: flex; /* 横並びにする */
  border-bottom: 1px solid #ccc;
  width: 100%;
}

/* 左側の項目名 (元dt) */
.company__label {
  width: 200px; /* PCでの幅固定 */
  background-color: #eee;
  padding: 20px;
  font-weight: bold;
  display: flex;
  align-items: center; /* 上下中央揃え */
  box-sizing: border-box;
}

/* 右側の内容 (元dd) */
.company__data {
  flex: 1; /* 残りの幅を全部使う */
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .company__item {
    display: block; /* 縦積みに戻す */
  }
  
  .company__label {
    width: 100%;
    background-color: #e6f2ff;
    padding: 10px 20px;
  }
  
  .company__data {
    width: 100%;
    padding: 10px 20px 20px 20px;
  }
}

