@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ヘッダー高さ調整 */

@media screen and (max-width: 750px) {
  main {
    padding-top: 150px;
  }
}


/* ヘッダー */
.header {
  position: static;
  width: 100%;
  height: auto;
  padding: 0 150px;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .header {
    position: fixed;
    z-index: 1;
    background-color: #fff;
  }
  .header.change-color {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}
@media screen and (max-width: 1000px) {
  .header__container {
    margin: 10px 30px;
  }
}

.header__title {
  font-size: clamp(2rem, -0.565rem + 4.1vw, 3.125rem);
  font-family: math;
}

.header__title a {
  color: #006064;
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .header__title {
    font-size: clamp(2.125rem, -0.137rem + 4.82vw, 2.875rem);
  }
}
@media screen and (max-width: 750px) {
  .header__title {
    font-size: clamp(2.313rem, -0.063rem + 10.13vw, 4.688rem);
  }
}

.header__nav {
  height: inherit;
}

.header__nav-list {
  display: flex;
  height: inherit;
  gap: 80px;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  font-size: 18px;
  color: #000;
  display: inline-block;
  padding: 12px 0;
  height: inherit;
}

.header__nav-link.active {
  color: #006064;
}

.header__button,
.header__button-sp {
  background-color: #4B4B4B;
}

.header__button {
  width: 160px;
  height: inherit;
}

.header__button-sp {
  height: 34px;
}

.header__button:hover,
.header__button-sp:hover {
  background-color: #006064;
}

.header__cta {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: inherit;
  padding: 15px;
  transition: all 0.2s ease, visibility 0s;
  gap: 8px;
}

.header__cta-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
  padding: 5px 15px;
  transition: all 0.2s ease, visibility 0s;
}

.header__cta:hover,
.header__cta-sp:hover {
  opacity: 1;
  transform: scale(0.9, 0.9);
}

.header__cta-img {
  max-width: 35px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 35 / 26;
}
@media screen and (max-width: 1000px) {
  .header__cta-img {
    margin: 0;
    max-width: 27px;
    height: auto;
  }
}

.header__cta-name {
  font-size: 16px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4em;
}
@media screen and (max-width: 1000px) {
  .header__cta-name {
    margin-left: 5px;
    font-weight: normal;
  }
}

.header__logo-img {
  max-width: 124px;
  width: 100%;
  height: auto;
  aspect-ratio: 124 / 53;
  object-fit: cover;
}

/* ヘッダーメニュー */
.menu-item a {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #000;
  display: inline-block;
  height: inherit;
  cursor: pointer;
}

.menu-item a:hover,
.menu-item a:focus,
.menu-item:hover > a {
  color: #006064;
  opacity: 1;
}

.menu-item.menu-item--current a {
  color: #006064;
}

.menu-item-has-children {
  position: relative;
}

.sub-menu {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  margin-top: 0px;
  padding: 0;
  background: #006064;
  white-space: nowrap;
  height: auto;
}

/* サブメニューのリストアイテムのスタイル */
.sub-menu li:nth-child(n + 2) {
  border-top: 1px solid white;
}

/* サブメニューのリンクのスタイル */
.sub-menu li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  height: auto;
  padding: 6px;
}

/* サブメニューのリンクがホバーされたときのスタイル */
.sub-menu li a:hover {
  color: #fff;
  opacity: 1;
  height: auto;
}

/* サブメニューがホバーされたときに全てのリンクの色を白にする */
.sub-menu:hover li a {
  color: #fff;
}

/* 親メニューのホバーでサブメニューを表示 */
.menu-item:hover > .sub-menu {
  display: block;
}

/* ハンバーガーメニュー */

.hamburger {
  position: -webkit-sticky;
  position: sticky;
  z-index: 9999;
  right: 30px;
  width: 28.8px;
  height: 16px;
  cursor: pointer;
}
.hamburger.is-active {
  z-index: -1;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 5.45px;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, background-color 0.3s;
  background-color: #006064;
}

.hamburger.is-active span {
  background-color: #006064;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.is-active span:nth-child(1),
.hamburger.is-active span:nth-child(2),
.hamburger.is-active span:nth-child(3) {
  opacity: 1;
}

/* ドロワー */

.drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1000px) {
  .drawer__inner {
    width: 49.9%;
    height: 100%;
    margin: 0 auto;
    background-color: rgba(236, 236, 236, 0.89);
  }
}
@media screen and (max-width: 750px) {
  .drawer__inner {
    width: 100%;
  }
}

.drawer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 66.75px;
  height: 66.75px;
  transition: 0.2s;
}

.drawer__button:hover {
  transition: 0.1s;
  transform: rotate(90deg);
}

.drawer__button:hover .drawer__button-img {
  fill: #000;
}

.drawer__button-img {
  width: 20px;
  height: 20px;
  fill: #006064;
}

.drawer__nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.drawer__items {
  max-width: 351px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .drawer__items {
    max-width: 675px;
    width: 100%;
  }
}

.drawer__item {
  text-align: center;
  position: relative;
}

.drawer__sub-items {
  display: none;
  padding: 0;
  list-style: none;
}

.drawer__sub-item {
  margin-top: 5px;
}

.drawer__link {
  font-size: 18px;
  color: #000;
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  opacity: 1;
}
.drawer__link:hover {
  opacity: 1;
}

.drawer__link.js-accordion::after {
  position: absolute;
  top: 50%;
  left: 80%; /* 右寄せ */
  transform: translateY(-50%) rotate(135deg); /* 中央に垂直に揃え、回転 */
  display: block;
  width: 8px;
  height: 8px;
  content: "";
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.js-accordion.is-open::after {
  transform: translateY(-50%) rotate(-45deg); /* 開いたときの矢印の向き */
}

.drawer__link--current {
  color: #006064;
}

.drawer__sub-link {
  font-size: 17px;
  color: #414e64;
  display: block;
  padding: 5px 0;
}
.drawer__sub-link:hover {
  opacity: 1;
}

.drawer__button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 66.75px;
  height: 66.75px;
  transition: 0.2s;
}

.drawer__button:hover {
  transition: 0.1s;
  transform: rotate(90deg);
}

.drawer__button:hover .drawer__button-img {
  fill: #000;
}

.drawer__button-img {
  width: 20px;
  height: 20px;
  fill: #006064;
}

.fixed {
  overflow: hidden;
  height: 100vh;
}

/* メインビュー */

.mv {
  width: 100%;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.mv__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1125px;
  width: 100%;
  text-align: center;
}

.mv__sub-title {
  font-size: clamp(1.538rem, 0.012rem + 3.25vw, 2.938rem);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .mv__sub-title {
    font-size: clamp(1.188rem, -0.031rem + 5.2vw, 2.406rem);
  }
}

.mv__title {
  font-size: clamp(2.438rem, 0.871rem + 3.34vw, 3.875rem);
  font-weight: 600;
  margin-top: 2.721669006347656%;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .mv__title {
    margin-top: 16px;
    font-size: clamp(2.125rem, 0.375rem + 7.47vw, 3.875rem);
  }
}

.mv__border {
  position: relative;
  /* margin-top: clamp(1.313rem, -0.05rem + 2.9vw, 2.563rem); */
  margin-top: 3.65%;
}
@media screen and (max-width: 750px) {
  .mv__border {
    margin-top: clamp(0.688rem, -0.063rem + 3.2vw, 1.438rem);
  }
}

.mv__border::before {
  content: "";
  position: relative;
  display: block;
  width: clamp(3.3rem, 0.085rem + 6.85vw, 6.25rem);
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
  top: 10px;
}
@media screen and (max-width: 750px) {
  .mv__border::before {
    width: clamp(1.625rem, -0.062rem + 7.2vw, 3.313rem);
  }
}

.mv__last-title {
  font-size: clamp(0.875rem, -0.011rem + 1.89vw, 1.688rem);
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 3.7%;
}
@media screen and (max-width: 750px) {
  .mv__last-title {
    margin-top: 17px;
    font-size: clamp(0.938rem, 4vw, 1.875rem);
  }
}

/* ABOUT USセクション */

.about {
  margin: 100px 0;
}
@media screen and (max-width: 750px) {
  .about {
    margin: 50px 0;
  }
}

.about__inner {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 1000px) {
  .about__inner {
    padding: 0px 29px;
    max-width: 870px;
  }
}
@media screen and (max-width: 750px) {
  .about__inner {
    padding: 0 15px;
  }
}

.about__container {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .about__container {
    flex-direction: column;
  }
}

.about__body {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 54%;
}
.about__body.fade-in {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .about__body {
    width: 100%;
  }
}

.about__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #006064;
}
@media screen and (max-width: 1000px) {
  .about__title {
    font-size: 20px;
  }
}

.about__sub-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 8.98px;
}

.about__img {
  max-width: 455px;
  width: 100%;
  aspect-ratio: 455/390;
  height: auto;
  margin-top: 30px;
  margin-left: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  background-image: url("../images/tp_image_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1000px) {
  .about__img {
    max-width: 100%;
    aspect-ratio: 811/456;
    margin-top: 58px;
    margin-left: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 750px) {
  .about__img {
    aspect-ratio: 1/1;
    margin-top: clamp(3.063rem, 0.75rem + 9.87vw, 5.375rem);
  }
}

.about__img,
.service__img {
  opacity: 0;
  -webkit-clip-path: inset(50% 0 50% 0);
  clip-path: inset(50% 0 50% 0);
  transition: opacity 0.9s ease-in-out, -webkit-clip-path 0.3s ease-in-out,
    clip-path 0.3s ease-in-out;
}

.about__img.fade,
.service__img.fade {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.about__text {
  font-size: 18px;
  line-height: 2.111;
  color: #000;
  margin-top: 39px;
/*   font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100; */
}

.about__detail {
  margin-top: 36px;
}

.about__detail-link:hover {
  opacity: 1;
}

/* SERVICEセクション */

.service {
  background: url("../images/tp_service_bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding: 100px 0 233px 0;
}
@media screen and (max-width: 750px) {
  .service {
    padding: 30px 0 50px 0;
  }
}

.service__inner {
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 1000px) {
  .service__inner {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
  }
}

.service__title-wrap {
  text-align: center;
}

.service__container {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .service__container {
    max-width: 359px;
    width: 100%;
    margin: 0 auto;
  }
}

.service__content--first,
.service__content--second,
.service__content--third {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.service__content--first.fade-in,
.service__content--second.fade-in,
.service__content--third.fade-in {
  opacity: 1;
}

.service__content-body {
  display: flex;
  margin-top: 5.555555555555555%;
}
@media screen and (max-width: 750px) {
  .service__content-body {
    flex-direction: column;
    margin-top: 13.555556%;
  }
}

.service__content-body--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .service__content-body--reverse {
    flex-direction: column;
  }
}

@media screen and (max-width: 750px) {
  .service__img--first,
  .service__img--second,
  .service__img--third {
    aspect-ratio: 2/1.4;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* .service__img--first {
  width: 100%;
  height: auto;
  background-image: url("../images/tp_image_service01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
} */

.service__img--first img,
.service__img--second img,
.service__img--third img {
  max-width: 525px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 525 / 325;
}

/* .service__img--second {
  width: 100%;
  height: auto;
  background-image: url("../images/tp_image_service02.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.service__img--third {
  width: 100%;
  height: auto;
  background-image: url("../images/tp_image_service03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
} */

.service__content,
.service__img--reverse {
  width: 100%;
  margin-left: 30px;
}
@media screen and (max-width: 750px) {
  .service__content,
  .service__img--reverse {
    margin-left: 0;
  }
}

.service__content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  max-width: 425px;
}
@media screen and (max-width: 750px) {
  .service__content {
    margin-top: 5.555812706310497%;
  }
}
.service__content.fade-in {
  opacity: 1;
}

.service__content--reverse {
  margin-left: 0;
}

.service__content-title {
  font-size: 25px;
/*   font-family: "Noto Sans JP Reqular", sans-serif; */
/*   font-weight: 100; */
  font-weight: 500;
  line-height: 1.48;
  color: #006064;
}
@media screen and (max-width: 1000px) {
  .service__content-title {
    font-size: clamp(1.188rem, -0.132rem + 2.81vw, 1.625rem);
    font-weight: 600;
  }
}
@media screen and (max-width: 750px) {
  .service__content-title {
    font-size: clamp(1.188rem, 5.07vw, 2.375rem);
  }
}

.service__border {
  position: relative;
  padding: 25px 0;
}
@media screen and (max-width: 1000px) {
  .service__border {
    padding: 24px 0;
  }
}

.service__border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #006064;
}

.service__content-list {
  padding-left: 30px;
}

.service__content-item {
  list-style: disc;
}

.service__content-text {
  font-size: 20px;
/*   font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100; */
  line-height: 1.9;
}

/* Blogセクション */
.blogs {
  margin-top: 100px;
  margin-bottom: 220px;
}

.blogs__title-wrap {
  text-align: center;
}

.blogs__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 14px;
  column-gap: 14px;
}
@media screen and (max-width: 1000px) {
  .blogs__cards {
    grid-template-columns: repeat(2, minmax(253px, 1fr));
  }
}
@media screen and (max-width: 750px) {
  .blogs__cards {
    grid-template-columns: repeat(auto-fit, minmax(253px, 1fr));
  }
}

.blogs__card a:hover {
  opacity: 1; /* 不透明度を1に設定 */
}

.blogs__card a:hover .card__content {
  color: rgb(0, 80, 180);
}

/* card__contentと同じ色になるように設定 */
.blogs__card a:hover .card__title,
.blogs__card a:hover .card__text {
  color: inherit;
}

.card__img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.card__date {
  font-size: 12px;
  color: #000;
}

.card__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.389;
  color: #000;
}

.card__text {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
  color: #000;

  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ABOUT USページ */
.about-greeting {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  .about-greeting {
    padding: 45px 0 37px;
  }
}

.about-greeting__inner {
  max-width: 850px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 1000px) {
  .about-greeting__inner {
    max-width: clamp(39.375rem, -9.636rem + 104.42vw, 55.625rem);
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* padding: 0 clamp(0rem, -3.563rem + 5.69vw, 1.563rem); */
  }
}
@media screen and (max-width: 750px) {
  .about-greeting__inner {
    max-width: clamp(21.688rem, 92.53vw, 43.375rem);
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* padding: 0 25px; */
  }
}

.about-section__inner {
  max-width: 850px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 1000px) {
  .about-section__inner {
    padding: 0 clamp(5.5rem, 9.512rem - 11.24vw, 3.75rem);
  }
}
@media screen and (max-width: 750px) {
  .about-section__inner {
    padding: 0 clamp(0.875rem, 0.188rem + 2.93vw, 1.563rem);
  }
}

.about-section__title {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
/*   font-weight: 100; */
  color: #006064;
  line-height: 1.233;
  text-align: center;
}

.about-greeting__text {
  font-size: 18px;
  line-height: 2.111;
  text-align: justify;
  margin-top: 6%;
}
@media screen and (max-width: 1000px) {
  .about-greeting__text {
    font-size: clamp(1.125rem, 0.182rem + 2.01vw, 1.438rem);
  }
}
@media screen and (max-width: 750px) {
  .about-greeting__text {
    font-size: 18px;
  }
}

.about-greeting__author {
  margin-top: 40px;
  text-align: right;
}

.about-campany {
  padding: 100px 0;
  background-color: #EBF2F3;
}


.company-info {
  background-color: #fff;
  margin-top: 57px;
  padding: 30px;
}

.company-info__group {
  display: flex;
  padding-bottom: 12px;
  border-bottom: 1px dashed #B0B0B0;
}

.company-info__group + .company-info__group {
  margin-top: 20px;
}

.company-info__group.company-info__group--last {
  margin-top: 64px;
  padding-bottom: 0;
}

.company-info__item {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
/*   font-weight: 100; */
  line-height: 1.6;
  min-width: 20%;
  max-width: 20%;
  color: #000;
}
@media screen and (max-width: 850px) {
  .company-info__item {
    font-size: 16px;
  }
}

@media screen and (max-width: 580px) {
  .company-info__item {
    min-width: 42%;
  }
}

.company-info__item--spacing-2 {
  letter-spacing: 2em;
}

.company-info__item--spacing-05 {
  letter-spacing: 0.5em;
}

.company-info__item--spacing005 {
  letter-spacing: 0.05em;
}

.company-info__description {
  font-size: 20px;
/*   font-family: "Noto Sans JP Reqular", sans-serif; */
/*   font-weight: 100; */
  color: #000;
  line-height: 1.6;
}
@media screen and (max-width: 835px) {
  .company-info__description {
    font-size: 16px;
  }
}

.about-access {
  padding: 70px 0 50px 0;
}

.about-access__inner {
  max-width: 1002px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 25px;
}

.about-access__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .about-access__body {
    flex-direction: column-reverse;
  }
}

.about-access__img {
  width: 100%;
  height: auto;
  background-image: url("../images/tp_image_about01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  aspect-ratio: 424/252;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 22px;
}
@media screen and (max-width: 750px) {
  .about-access__img {
    margin-left: 0;
    border-radius: 0;
    margin-top: 8.849435721075798%;
  }
}

.about-access__content {
  max-width: 100%;
  width: 100%;
}

.about-access__address {
  font-size: 18px;
}

.about-access__detail {
  font-size: 18px;
  line-height: 1.7em;
}

.about-access__border {
  position: relative;
  padding: 20px 0;
}

.about-access__border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  border-top: 1px dashed black;
}

@media screen and (max-width: 750px) {
  .service-detail__img--first,
  .service__img--second,
  .service__img--third {
    aspect-ratio: 2/1.4;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.google-map {
  padding: 40px 0 70px;
}

.google-map__frame {
  max-width: 1490px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .google-map__frame {
    padding: 0 10px;
    height: 375px;
  }
}

/* SERVICEページ */
.service-detail {
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  .service-detail {
    padding: 60px 0;
  }
}

.service-detail__inner {
  max-width: 900px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 750px) {
  .service-detail__inner {
    max-width: 375px;
    padding: 0;
    padding: 0 25px;
  }
}

.service-detail__wrap {
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 750px) {
  .service-detail__wrap {
    max-width: 410px;
    padding: 0 9px;
  }
}

.service-detail__text {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
/*   font-weight: 100; */
  margin-top: 3.4693877551%;
  line-height: 2.111;
}
@media screen and (max-width: 750px) {
  .service-detail__text {
    padding: 0;
    text-align: justify;
  }
}

.service-detail__border {
  position: relative;
  padding: 80px 0;
}
.service-detail__border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #323232;
}

.service-detail__content-wrap {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.09375%;
}
@media screen and (max-width: 750px) {
  .service-detail__content-wrap {
    flex-direction: column;
    margin-top: 25px;
  }
}


.service-detail__content-body {
  display: flex;
  margin-top: 4.09375%;
}
@media screen and (max-width: 750px) {
  .service-detail__content-body {
    flex-direction: column;
  }
}
.service-detail__content-main {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 750px) {
  .service-detail__content-main {
    width: 100%;
    padding-left: 0;
    margin-top: 5.563024493911283%;
  }
}


.service-section__title {
  /* font-size: clamp(1.563rem, 0.85rem + 1.14vw, 1.875rem); */
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #006064;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .service-section__title {
    font-size: 21px;
    text-align: justify;
  }
}

.service-detail__img--first {
  width: 50%;
  height: auto;
  background-image: url("../images/tp_image_service_detail01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 400 / 250;
}
@media screen and (max-width: 750px) {
  .service-detail__img--first {
    width: 100%;
    aspect-ratio: 357 / 250;
    border-radius: 0;
    margin-top: 5.593884147463584%;
  }
}


.service-detail__img--second {
  width: 50%;
  height: auto;
  background-image: url("../images/tp_image_service_detail02.webp");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 400/285;
}
@media screen and (max-width: 750px) {
  .service-detail__img--second {
    width: 100%;
    /* aspect-ratio: 357 / 220; */
    margin-top: 5.593884147463584%;
    margin-left: 0;
  }
}

.service-detail__img--third {
  width: 50%;
  height: auto;
  background-image: url("../images/tp_image_service_detail03.webp");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 400/285;
}
@media screen and (max-width: 750px) {
  .service-detail__img--third {
    width: 100%;
    /* aspect-ratio: 357 / 220; */
    margin-top: 5.593884147463584%;
    margin-left: 0;
  }
}

.service-detail__img--fourth {
  width: 50%;
  height: auto;
  background-image: url("../images/tp_image_service_detail04.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  aspect-ratio: 400/250;
}
@media screen and (max-width: 750px) {
  .service-detail__img--fourth {
    width: 100%;
    /* aspect-ratio: 357 / 220; */
    margin-top: 5.593884147463584%;
    margin-left: 0;
  }
}

.service-detail__content-title {
  font-size: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #006064;
  line-height: 1.28;
}


.service-detail__content-items {
  margin-top: 25px;
}

.content-item--main {
	font-weight: bold;
}

.service-detail__content-items.items--first,
.service-detail__content-items.items--second,
.service-detail__content-items.items--third {
  width: calc(50% - 30px);
  margin-right: 30px;
}
@media screen and (max-width: 750px) {
  .service-detail__content-items.items--first,
  .service-detail__content-items.items--second,
  .service-detail__content-items.items--third {
    width: 100%;
  }
}

.service-detail__content-item {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
/*   font-weight: 100; */
  text-align: left;
  line-height: 1.612;
  list-style: inside;
}

.service-detail__content-item:not(:first-child) {
  margin-top: 25px;
}

.service-detail__content-item.item--first,
.service-detail__content-item.item--second,
.service-detail__content-item.item--third {
  font-size: 18px;
  line-height: 2.111;
}

.service-detail__content {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .service-detail__content {
    width: 100%;
  }
}


.service-detail__content-text {
  font-size: clamp(1rem, 0.715rem + 0.46vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .service-detail__content-text {
    font-size: 16px;
    width: 100%;
  }
}

/* BLOGページ */

.blogs-list {
  padding: 120px 0;
}

.blogs-list__inner {
  max-width: 1296px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.blogs-list__genre {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
}

.blogs-list__cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 76px;
}

/* フッター */

.footer {
  background-color: #323232;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    padding-bottom: 50px;
  }
}

.footer__wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 60px;
  margin-left: 150px;
}
@media screen and (max-width: 1000px) {
  .footer__brand {
    margin-top: 60px;
    margin-left: 110px;
  }
}
@media screen and (max-width: 750px) {
  .footer__brand {
    margin-left: 0;
  }
}

.footer__company {
  margin-top: 60px;
  margin-right: 150px;
  max-width: 375px;
  width: 100%;
  word-wrap: break-word;
  white-space: normal;
}
@media screen and (max-width: 1000px) {
  .footer__company {
    margin-right: 110px;
    max-width: 250px;
  }
}
@media screen and (max-width: 750px) {
  .footer__company {
    margin-top: 30px;
    margin-right: 0;
    max-width: fit-content;
  }
}

.footer__name {
  font-size: 62px;
  font-family: math;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .footer__name {
    font-size: 48px;
  }
}

.footer__company-name {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.9;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .footer__company-name {
    font-size: 16px;
  }
}

.footer__company-post-code,
.footer__company-address {
  font-size: 18px;
  font-weight: 300;
  line-height: 2.111;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .footer__company-address {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .footer__company-address {
    margin-top: 10px;
  }
}

.footer__company-post-code {
  margin-top: 20px;
}

.footer__company-tel {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .footer__company-tel {
    font-size: 16px;
  }
}

.footer__copyright {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  margin-top: 105px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .footer__copyright {
    margin-top: 10px;
  }
}

.footer__item + .footer__item {
  margin-top: 12px;
}

.footer__link {
  font-size: 16px;
  color: #fff;
}

/* 共通パーツ */

.inner {
  max-width: 1104px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.flex {
  display: flex;
}

.flex__wrap {
  flex-wrap: wrap;
}

.mt_60 {
  margin-top: 60px;
}

.mt_6p {
  margin-top: 6.09375%;
}

.section__title {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.563;
  color: #006064;
}
@media screen and (max-width: 1000px) {
  .section__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  .section__title {
    font-size: clamp(0.938rem, 4vw, 1.875rem);
  }
}

.section__sub-title.sub-title--about {
  font-size: 31px;
  line-height: 1.29;
  letter-spacing: normal;
/*   font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100; */
}

.section__sub-title.sub-title--service,
.section__sub-title.sub-title--blog {
  font-size: 38px;
/*   font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100; */
  line-height: 1.316;
  letter-spacing: 0.07em;
}

.section__sub-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.316;
  letter-spacing: 0.07em;
  margin-top: 8.98px;
}
@media screen and (max-width: 1000px) {
  .section__sub-title {
    font-size: clamp(1.813rem, -0.073rem + 4.02vw, 2.438rem);
  }
}
@media screen and (max-width: 750px) {
  .section__sub-title {
    font-size: clamp(1.563rem, -0.063rem + 6.93vw, 3.188rem);
  }
}

.detail-button {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5px;
  background-color: #006064;
  transition: all 0.2s ease, visibility 0s;
  border: 0px solid #ffffff;
  box-shadow: 0 3px rgba(0, 0, 0, 0.75);
  border-radius: 20px;
}

.detail-button:hover {
  opacity: 0.7;
  border: 0px solid #ffffff;
  box-shadow: 0 3px rgba(0, 0, 0, 0);
}

.detail-link:hover {
  opacity: 1;
}

.detail-link__body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-link__name {
  color: #fff;
  font-size: 18px;
  font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100;
  line-height: 2.111;
}

.page-title {
  background-color: #006064;
  text-align: center;
  padding: clamp(0.875rem, 0.449rem + 0.68vw, 1.063rem);
}

.page-main--title {
  /* font-size: clamp(0.781rem, -0.003rem + 1.25vw, 1.125rem); */
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #fff;
  line-height: 1.565;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1000px) {
  .page-main--title {
    font-size: clamp(0.912rem, 0.285rem + 1vw, 1.188rem);
  }
}
@media screen and (max-width: 750px) {
  .page-main--title {
    font-size: clamp(0.838rem, -0.012rem + 3.63vw, 1.688rem);
  }
}

.page-sub--title {
  font-size: 31px;
  font-family: "Roboto", "Noto Sans JP Regular", sans-serif;
/*   font-weight: 100; */
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1.613;
  margin-top: clamp(0.375rem, -0.051rem + 0.68vw, 0.563rem);
}
@media screen and (max-width: 1000px) {
  .page-sub--title {
    font-size: clamp(1.525rem, -0.002rem + 3.25vw, 2.031rem);
  }
}
@media screen and (max-width: 750px) {
  .page-sub--title {
    font-size: clamp(1.375rem, 5.87vw, 2.75rem);
  }
}

.md-none {
  display: block;
}
@media screen and (max-width: 750px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .md-show {
    display: block;
  }
}

.lg-none {
  display: block;
}
@media screen and (max-width: 1000px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media screen and (max-width: 1000px) {
  .lg-show {
    display: block;
  }
}

/* ページネーション */
.pagination {
  margin-top: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: system-ui, sans-serif;
  font-size: 16px;
  gap: 5px;
}

.pagination__arrow {
  display: inline-block;
  width: 7px;
  height: 12px;
}

.page-numbers {
  color: #000;
}

.page-numbers.current {
  color: #006064;
}


/* お問い合わせページで使用するクラス */
.page-contact__layout {
  max-width: 950px;
  width: 100%;
  height: auto;
  margin: 50px auto 0;
  padding: 0 25px;
}

.page-contact__layout--privacy {
  margin-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  .page-contact__layout {
    margin-top: 100px;
    padding: 0 clamp(5.5rem, 9.512rem - 11.24vw, 3.75rem);
  }

  .page-contact__layout--privacy {
    margin-top: 125px;
    margin-bottom: 85px;
  }
}
@media screen and (max-width: 750px) {
  .page-contact__layout {
    margin-top: 50px;
    padding: 0 clamp(0.875rem, 0.188rem + 2.93vw, 1.563rem);
  }

  .page-contact__layout--privacy {
    margin-top: 100px;
    margin-bottom: 70px;
  }
}

.page-contact__text {
  font-size: 16px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 750px) {
  .page-contact__text {
    font-size: 14px;
  }
}

.page-contact__text--right {
  text-align: right;
}

.page-contact__the-content {
  margin-top: 15px;
}
@media screen and (max-width: 1000px) {
  .page-contact__the-content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .page-contact__the-content {
    margin-top: 30px;
  }
}

.c-form7__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 750px) {
  .c-form7__items {
    gap: 24px;
  }
}

.c-form7__item--half {
  display: flex;
  gap: 30px;
}

.c-form7__item--half .c-form7__item {
  width: calc((100% - 30px) / 2);
}

@media screen and (max-width: 750px) {
  .c-form7__item--half {
    flex-direction: column;
    gap: 24px;
  }

  .c-form7__item--half .c-form7__item {
    width: 100%;
  }
}

.c-form7__title {
  padding-left: 2px;
  font-size: 16px;
}

@media (max-width: 750px) {
  .c-form7__title {
    font-size: 14px;
  }
}

.c-form7__required {
  position: relative;
  display: inline-block;
}

.c-form7__required::before {
  content: "*";
  position: absolute;
  top: 0;
  right: -12px;
  font-size: 14px;
  color: #C40000;
}

.c-form7__text-field,
.c-form7__textarea-field {
  margin-top: 10px;
  padding-bottom: 20px;
}

.wpcf7-form-control-wrap {
  display: block;
  height: auto;
}

.c-form7__textarea-field .wpcf7-form-control-wrap {
  max-height: 262px;
}

.wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  text-align: left;
  color: #ed45a0;
  font-size: 16px;
}

@media (max-width: 750px) {
  .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}

.c-form7__text-field input {
  width: 100%;
  height: 40px;
  padding-right: 12px;
  padding-left: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.c-form7__text-field input:focus {
  background-color: #fafafa;
}

.c-form7__textarea-field textarea {
  resize: none;
  width: 100%;
  max-height: 262px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.c-form7__textarea-field textarea:focus {
  background-color: #fafafa;
}

.c-form7__text-field input::placeholder,
.c-form7__text-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.wpcf7-not-valid {
  border: 1px solid #ed45a0 !important;
}

.c-form7__button {
  margin: 60px auto 0;
  max-width: 300px;
  width: 100%;
}

.c-form7__button input {
  width: 100%;
  background-color: #006064;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100;
  font-size: 36px;
  line-height: 2.111;
  margin: 0 auto;
  border-radius: calc(90px / 2);
  transition: all 0.2s ease, visibility 0s;
  box-shadow: 0 4px rgba(0, 0, 0, 0.75);
}

.c-form7__button input:hover {
  opacity: 0.7;
  border: 0px solid #ffffff;
  box-shadow: 0 3px rgba(0, 0, 0, 0);
}

@media (max-width: 750px) {
  .c-form7__button {
    margin-top: 40px;
  }
}

.wpcf7-response-output {
  margin: 0 !important;
}

.page-contact__required {
  color: #C40000;
}

/* お問い合わせページのプライバシーポリシー部分 */

.privacy__heading {
  font-size: 30px;
  font-weight: bold;
/*   font-family: "Noto Sans JP Reqular", sans-serif; */
/*   font-weight: 100; */
  color: #006064;
  text-align: center;
  line-height: 1.233;
}

@media screen and (max-width: 750px) {
  .privacy__heading {
    font-size: 24px;
  }
}

.privacy__items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy__item {
  font-size: 18px;
  font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100;
  line-height: 2.111;
}

.privacy__item--right {
  text-align: right;
}

.privacy__title {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .privacy__title {
    font-size: 16px;
  }
}

.privacy__texts {
  margin-top: 8px;
}

.privacy__text {
  /* font-size: 16px;
  line-height: calc(30 / 16);
  font-weight: 300; */
}

@media screen and (max-width: 750px) {
  .privacy__text {
    font-size: 14px;
  }
}

.privacy__border {
  border: 1px solid #333;
  padding: 70px;
}

@media screen and (max-width: 1000px) {
  .privacy__border {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 750px) {
  .privacy__border {
    padding: 50px 24px;
  }
}

/* ブログページ(archive.php)で使用するクラス*/
.archive__layout {
  max-width: calc(1440px + 50px * 2);
  width: 100%;
  padding: 0 50px;
  margin: 150px auto 100px;
}

@media screen and (max-width: 1000px) {
  .archive__layout {
    padding: 0 40px;
    margin: 100px auto 85px;
  }
}

@media screen and (max-width: 750px) {
  .archive__layout {
    margin: 70px auto;
    padding: 0 20px;
  }
}

.archive__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media screen and (max-width: 750px) {
  .archive__head {
    flex-direction: column-reverse;
  }
}

.archive__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 750px) {
  .archive__categories {
    gap: 10px;
  }
}

.archive__category a {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 2px 16px 0;
  font-size: 16px;
  border-radius: calc(30px / 2);
  border: 1px solid #006064;
  color: #006064;
  transition: all 0.3s;
}

@media screen and (max-width: 750px) {
  .archive__category a {
    display: flex;
    align-items: center;
    height: 24px;
    padding: 2px 12px 0;
    font-size: 14px;
    border-radius: calc(24px / 2);
  }
}

.archive__category--active a {
  background-color: #006064;
  color: white;
  cursor: default;
}

.archive__category a:hover {
  background-color: #006064;
  color: white;
  opacity: 1;
}

.archive__articles {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  /* ここで横の枚数を制御*/
  gap: 50px 30px;
  width: 100%;
}

.archive__articles--related {
  margin-top: 24px;
  gap: 30px;
}

@media screen and (max-width: 480px) {
  .archive__articles {
    margin-top: 40px;
    gap: 30px;
  }

  .archive__articles--related {
    margin-top: 20px;
    gap: 20px;
  }
}

.archive__article {
  display: flex;
  /* 100% - archive__articlesのgapの数 / 横並びの投稿の枚数 */
  width: calc((100% - 30px * 3) / 4);

  border: 1px solid rgba(240, 240, 240, 0.75);
}

.archive__articles--related .archive__article {
  width: calc((100% - 30px * 2) / 3);
}

@media screen and (max-width: 1000px) {
  .archive__article {
    width: calc((100% - 30px * 2) / 3);
  }
}

@media screen and (max-width: 750px) {
  .archive__article {
    width: calc((100% - 30px * 1) / 2);
  }

  .archive__articles--related .archive__article {
    width: calc((100% - 30px * 1) / 2);
  }
}

@media screen and (max-width: 480px) {
  .archive__article,
  .archive__articles--related .archive__article {
    width: 100%;
  }
}

.archive__article a {
  display: flex;
  flex-direction: column;
  color: #000;
  width: 100%;
  height: 100%;
}

.archive__body {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* タイトルを揃えたいなら下記を指定 */
  justify-content: space-between;

  padding: 0 24px 25px;
}

@media screen and (max-width: 750px) {
  .archive__body {
    margin-top: 10px;
  }
}

.archive__article img {
  /* ここでサムネイルの比率を管理 */
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 1000px) {
  .archive__article img {
    height: 160px;
  }
}

@media screen and (max-width: 750px) {
  .archive__article img {
    height: 175px;
  }
}

.archive__the-title {
  display: flex;
  font-size: 20px;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  .archive__the-title {
    font-size: 18px;
  }
}

.archive__the-content {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  /*
    ここから下で...を作成
    -webkit-line-clamp で行数を管理
  */
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 750px) {
  .archive__the-content {
    margin-top: 8px;
    font-size: 14px;
  }
}

.archive__search-heading {
  margin-top: 50px;
  font-size: 32px;
}

@media screen and (max-width: 750px) {
  .archive__search-heading {
    margin-top: 40px;
    font-size: 28px;
  }
}

@media screen and (max-width: 489px) {
  .archive__search-heading {
    font-size: 24px;
  }
}

.archive__pagination {
  margin-top: 50px;
}

@media screen and (max-width: 750px) {
  .archive__pagination {
    margin-top: 32px;
  }
}

.archive__article a:hover {
  opacity: 1; /* ホバー時の透明度 */
}

.archive__article:hover .archive__the-content,
.archive__article:hover .archive__the-title {
  color: rgb(0, 80, 180); /* ホバー時の文字色 */
}


/* ブログのページネーションで使用 */

.c-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-pagination .page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px;
  color: #8d8d8d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 32px;
}

.c-pagination .page-numbers:hover {
  border-color: #000;
  color: #006064;
  opacity: 1;
}

.c-pagination .prev,
.c-pagination .next {
  height: 32px;
  padding: 0;
  position: relative;
  width: 32px;
}

.c-pagination .prev::before,
.c-pagination .next::before {
  background-color: #8d8d8d;
  border-radius: 1px;
  content: "";
  height: 2px;
  position: absolute;
  top: calc(50% - 4px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 8px;
}

.c-pagination .prev::after,
.c-pagination .next::after {
  background-color: #8d8d8d;
  border-radius: 1px;
  bottom: calc(50% - 3px);
  content: "";
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 8px;
}

.c-pagination .prev::before {
  left: calc(50% - 4px);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-pagination .prev::after {
  left: calc(50% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-pagination .next::before {
  right: calc(50% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-pagination .next::after {
  right: calc(50% - 4px);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-pagination .current {
  border-color: #000;
  color: #006064;
}

.c-pagination .current:hover {
  opacity: 1;
  color: #006064;
}

.c-pagination .prev:hover::before,
.c-pagination .next:hover::before {
  background-color: #006064;
  opacity: 1;
}

.c-pagination .prev:hover::after,
.c-pagination .next:hover::after {
  background-color: #006064;
  opacity: 1;
}

/* ブログ詳細ページ(single.php)で使用するクラス */

.single__layout {
  margin: 120px auto;
  max-width: calc(1000px + 50px);
  padding: 0 50px;
}

@media screen and (max-width: 750px) {
  .single__layout {
    margin: 100px auto;
    padding: 0 30px;
  }
}

@media screen and (max-width: 489px) {
  .single__layout {
    margin: 80px auto;
    padding: 0 20px;
  }
}

.single__border {
  /* border: 1px solid #f0f0f0;
  padding: 80px 70px; */
}

@media screen and (max-width: 1000px) {
  .single__border {
    padding: 70px 50px;
  }
}

@media screen and (max-width: 750px) {
  .single__border {
    padding: 60px 32px;
  }
}

@media screen and (max-width: 489px) {
  .single__border {
    padding: 50px 20px;
  }
}

.single__time {
  font-size: 18px;
  font-family: "Noto Sans JP Reqular", sans-serif;
  font-weight: 100;
  line-height: 2.056;
  letter-spacing: 0.07em;
}

.single__heading {
  margin-top: 24px;
  font-size: 32px;
  font-weight: bold;
}

.single__thumbnail {
  margin-top: 32px;
}

.single__thumbnail img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

.single__article-title {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 400;
}

/* 投稿のタグで使うスタイル */
.single__the-date {
  margin-top: 34px;
}

.single__the-content {
  margin-top: 34px;
}

.single__the-content {
  margin-top: 34px;
}

@media (max-width: 750px) {
  .single__the-content {
    margin-top: 26px;
  }
}

@media (max-width: 489px) {
  .single__the-content {
    margin-top: 18px;
  }
}

.single__the-content p {
  font-size: 18px;
  line-height: 2.2222; /* calc(40 / 18) */
}

@media (max-width: 750px) {
  .single__the-content p {
    line-height: 1.9444; /* calc(35 / 18) */
  }
}

.single__the-content p a {
  color: #5395ca;
  text-decoration: underline;
}

.single__the-content blockquote {
  position: relative;
  display: block;
  background-color: #f7f7f7;
  padding: 50px 9.8%;
}

@media (max-width: 750px) {
  .single__the-content blockquote {
    padding: 40px 32px;
  }
}

@media (max-width: 489px) {
  .single__the-content blockquote {
    padding: 30px 24px;
  }
}

.single__the-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 50px 0;
}

@media (max-width: 750px) {
  .single__the-content img {
    margin: 40px 0;
  }
}

@media (max-width: 489px) {
  .single__the-content img {
    margin: 32px 0;
  }
}

.single__the-content h2 {
  border-left: 2px solid #000;
  font-size: 24px;
  line-height: 1.5; /* calc(36 / 24) */
  padding: 12px 34px;
  background-color: #f7f7f7;
  margin: 40px 0 24px;
}

@media (max-width: 750px) {
  .single__the-content h2 {
    font-size: 22px;
    padding: 10px 24px;
    margin: 36px 0 21px;
  }
}

.single__the-content h3 {
  font-size: 22px;
  line-height: 1.3636; /* calc(30 / 22) */
  padding: 14px 0;
  border-bottom: 1px solid #c4c4c4;
  margin: 40px 0 24px;
}

@media (max-width: 750px) {
  .single__the-content h3 {
    font-size: 20px;
    margin: 36px 0 21px;
    padding: 12px 0;
  }
}

.single__the-content h4 {
  font-size: 20px;
  line-height: 1.3636; /* calc(30 / 22) */
  margin: 40px 0 24px;
  padding: 7px 0;
}

@media (max-width: 750px) {
  .single__the-content h4 {
    font-size: 18px;
    margin: 36px 0 21px;
    padding: 6px 0;
  }
}

.single__the-content ul {
  padding-left: 20px;
  font-size: 18px;
  margin: 20px 0;
  line-height: 2.2222; /* calc(40 / 18) */
}

@media (max-width: 750px) {
  .single__the-content ul {
    line-height: 1.9444; /* calc(35 / 18) */
  }
}

.single__the-content ul li {
  position: relative;
}

.single__the-content ul li::before {
  content: "・";
  position: absolute;
  font-size: 18px;
  top: 0px;
  left: -23px;
}

.single__the-content ol {
  list-style-type: decimal;
  padding-left: 20px;
  font-size: 18px;
  margin: 20px 0;
  line-height: 2.2222; /* calc(40 / 18) */
}

@media (max-width: 750px) {
  .single__the-content ol {
    line-height: 1.9444; /* calc(35 / 18) */
  }
}

.single__the-content ol li {
  padding-left: 3px;
}

.single__button {
  margin-top: 80px;
}

@media (max-width: 1000px) {
  .single__button {
    margin-top: 60px;
  }
}

@media (max-width: 750px) {
  .single__button {
    margin-top: 40px;
  }
}

.c-form7__button:hover {
  opacity: 0.7;
}

/* 検索フォームで使用するクラス */
.search-form__layout {
  display: flex;
  gap: 17px;
  height: 40px;
}

@media screen and (max-width: 750px) {
  .search-form__layout {
    gap: 16px;
  }
}

@media screen and (max-width: 489px) {
  .search-form__layout {
    gap: 15px;
  }
}

.search-form__input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  max-width: 300px;
  width: 100%;
  padding: 0 8px;
  border-bottom: 1px solid #333;
  font-size: 16px;
}

.search-form__input input[type="search"] {
  border: none;
  display: block;
  width: calc(100% - 20px - 12px * 2 - 10px);
  height: 100%;
}

.search-form__magnifying-glass svg {
  display: block;
  width: 20px;
  height: 20px;
}

.search-form__punishment svg {
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

/* 404ページ */
.error__fv {
  padding-top: 216px;
  padding-bottom: 216px;
}
@media screen and (max-width: 428px) {
  .error__fv {
    padding-top: 110px;
    padding-bottom: 80px;
  }
}

.error__fv-inner {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.error__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error__fv-main-title {
  color: #006064;
  font-size: 80px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .error__fv-main-title {
    font-size: 36px;
  }
}

.error__fv-sub-title {
  color: #006064;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.375;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .error__fv-sub-title {
    font-size: 16px;
  }
}

.error__button-area {
  margin-top: 20px;
}

.error__button {
  color: #006064;
}

/* ページトップボタン */
.page-top-button__img {
  max-width: 50px;
  width: 100%;
  height: auto;
}

.page-top-button {
  position: fixed;
  z-index: 9000;
  right: 50px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page-top-button {
    right: 10px;
  }
}

.page-top-button::after {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  align-items: center;
  margin: 20px 60px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 10px 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 428px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.breadcrumb__between {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 8px;
  background-color: #a9a9a9;
}

/* recaptcha アイコンを非表示 */
.grecaptcha-badge { visibility: hidden; }

.none__mt {
  margin-top: 0;
}


.single__prev-next-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 428px) {
  .single__prev-next-body {
    margin-top: 8px;
  }
}

.single__link-next-text,
.single__link-prev-text {
  margin: 10px;
}

.single__prev,
.single__next {
  color: #006064;
  display: inline-block;
  font-weight: 500;
}