@charset "UTF-8";
@import url(./detail.css);

:root {
  /* font 
  .noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
  .mulish-<uniquifier> {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
  */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Mulish", sans-serif;

  --color-main: #036a66;
  --color-text: #000000;
  --color-button: #027e7a;
  --color-dark-green: #e1e6e6;
  --color-gray: #edebeb;
  --color-border-gray: #666060;

  --duration: 500ms;

  --base: 375;
  @media screen and (min-width: 768px) {
    --base: 768;
  }
  @media screen and (min-width: 1024px) {
    --base: 1366;
  }
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* -----------------------------------------
body
--------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: calc(80 / var(--base) * 100vw) 0 0 0;
  color: #131313;
  background: #fff;
  line-height: 1.7;
  /*
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
    */
  font-size: 1.4rem;
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;

  &.home {
    padding-top: 0;
  }
  &.tax-workstag,
  &.tax-workscat,
  &.post-type-archive-works {
    background-color: #eee;
  }

  @media screen and (min-width: 1024px) {
    padding: min(120px, calc(120 / var(--base) * 100vw)) 0 0 0;
  }
}

#body_wrapper {
  position: relative;
  overflow: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #131313;
  display: inline-block;
  text-decoration: underline;
  transition: color 200ms;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------------------
common
--------------------------------------------*/
/* --- clearfix --- */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

/* css sprite */
.s {
  background: url(images/sprite@2x.png) no-repeat 0 0;
  background-size: 500px 500px;
  text-indent: 200%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  border-style: none;
}

.sb::before,
.sa::after {
  content: "";
  background-image: url(images/sprite@2x.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 500px 500px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border-style: none;
}

.nobi {
  /*
  margin-right: 5px;
  letter-spacing: -5px;
  */
  transform: scale(2, 1);
  transform-origin: top left;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 1em;
}

/* ----------------- 
reset
----------------- */
@media screen and (min-width: 640px) {
  .xs_only {
    display: none;
  }
}

.sm_only {
  display: none;
}

@media screen and (min-width: 640px) {
  .sm_only {
    display: inline;
  }
}

.md_only {
  display: none;
}

@media screen and (min-width: 768px) {
  .md_only {
    display: inline;
  }
}

.ts_only {
  display: block;
}

@media screen and (min-width: 1024px) {
  .ts_only {
    display: none;
  }
}

.lg_only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .lg_only {
    display: inline;
  }
}

em {
  font-style: normal;
}

b {
  font-weight: 700;
  color: inherit;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#bg_black {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}

.fx {
  transition: opacity 500ms, transform 500ms;
}

.fx--t2b {
  opacity: 0;
  transform: translate(0, -20px);
}

.fx--b2t {
  opacity: 0;
  transform: translate(0, 20px);
}

.fx--l2r {
  opacity: 0;
  transform: translate(-20px, 0);
}

.fx--r2l {
  opacity: 0;
  transform: translate(20px, 0);
}

.fx--active {
  opacity: 1;
  transform: translate(0, 0) scale(1, 1);
}

.fx_r2l {
  opacity: 0;
  transform: translate(20px, 0);
}

.fx_op {
  opacity: 0;
  transition: opacity 500ms 0ms;
}

.fx_sc {
  transform: scale(0.9);
  transition: all 800ms 0ms;
  opacity: 0;
}

.fx_t2b,
.fx_b2t,
.fx_l2r,
.fx_r2l {
  opacity: 0;
  transition: transform 800ms 0ms, opacity 800ms 0ms;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none;
  }
}

/* texttext */

/* ----------------- 
linklink
buttonbutton
----------------- */

.para-button {
  margin: calc(40 / var(--base) * 100vw) 0;

  &.align-center {
    text-align: center;
  }
}

a {
  text-decoration: none;
}

.type-button {
  display: inline-block;
  line-height: 1.5;
  padding: calc(7 / var(--base) * 100vw) calc(25 / var(--base) * 100vw);
  border-style: none;
  -webkit-appearance: none;
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 900;
  font-family: var(--font-en);
  position: relative;
  color: #fff;
  background-color: var(--color-button);
  text-align: center;
  border-radius: calc(50 / var(--base) * 100vw);
  white-space: nowrap;
  text-decoration: none;

  &.bg-color-white {
    color: var(--color-main);
    background-color: #fff;
  }

  @media screen and (min-width: 768px) {
    padding: min(10px, calc(10 / var(--base) * 100vw))
      min(40px, calc(40 / var(--base) * 100vw));
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
}

/* listlist */
.list-news {
  &.bordered {
    .item {
      border-color: var(--color-dark-green);
    }
  }
  .item {
    border-bottom: 2px solid #fff;
    &:not(:last-of-type) {
      margin-bottom: calc(20 / var(--base) * 100vw);
    }
  }
  a {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: calc(7 / var(--base) * 100vw) 0;

    &:hover {
      .title {
        text-decoration: underline;
        color: var(--color-main);
      }
      .circle {
        background-color: transparent;
        svg {
          fill: var(--color-main);
        }
      }
    }
  }
  .date {
    padding-right: calc(10 / var(--base) * 100vw);
    grid-column: 1;
    grid-row: 1;
    font-size: calc(10 / var(--base) * 100vw);
    border-right: 1px solid #fff;
  }
  .category {
    padding-left: calc(10 / var(--base) * 100vw);
    grid-column: 2/4;
    grid-row: 1;
    font-size: calc(10 / var(--base) * 100vw);
  }
  .title {
    grid-column: 1/3;
    grid-row: 2;
    padding-right: calc(30 / var(--base) * 100vw);
    padding-bottom: calc(17 / var(--base) * 100vw);
    font-size: calc(14 / var(--base) * 100vw);
    font-weight: 700;
    line-height: 1.5;
  }
  .circle {
    grid-column: 3;
    grid-row: 2;

    margin: 0 0 0 auto;
    background-color: var(--color-main);
    border-radius: calc(20 / var(--base) * 100vw);
    border: 1px solid var(--color-main);
    width: calc(20 / var(--base) * 100vw);
    height: calc(20 / var(--base) * 100vw);
    overflow: hidden;
    position: relative;
    transition: background-color var(--duration);
    svg {
      width: calc(8 / var(--base) * 100vw);
      height: calc(4 / var(--base) * 100vw);
      fill: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;

      transition: fill var(--duration);
    }
  }

  @media screen and (min-width: 1024px) {
    .item {
      &:not(:last-of-type) {
        margin-bottom: min(40px, calc(40 / var(--base) * 100vw));
      }
    }
    a {
      display: grid;
      grid-template-columns: auto auto 1fr auto;
      gap: min(20px, calc(20 / var(--base) * 100vw)) 0;
    }
    .date {
      padding-right: min(20px, calc(20 / var(--base) * 100vw));
      font-size: min(12px, calc(12 / var(--base) * 100vw));
    }
    .category {
      padding-left: min(20px, calc(20 / var(--base) * 100vw));
      font-size: min(12px, calc(12 / var(--base) * 100vw));
    }
    .title {
      padding-right: min(40px, calc(40 / var(--base) * 100vw));
      padding-bottom: min(40px, calc(40 / var(--base) * 100vw));
      font-size: min(16px, calc(16 / var(--base) * 100vw));
    }
    .circle {
      border-radius: min(30px, calc(30 / var(--base) * 100vw));
      width: min(30px, calc(30 / var(--base) * 100vw));
      height: min(30px, calc(30 / var(--base) * 100vw));
      svg {
        width: min(11px, calc(11 / var(--base) * 100vw));
        height: min(6px, calc(6 / var(--base) * 100vw));
      }
    }
  }
}
.list-column {
  margin: 0;
  padding: calc(30 / var(--base) * 100vw);
  background-color: #fff;

  .item {
    &:not(:last-of-type) {
      margin-bottom: calc(30 / var(--base) * 100vw);
    }

    a {
      display: block;
      box-shadow: 0 calc(3 / var(--base) * 100vw) 6px
        color-mix(in srgb, #000 15%, transparent);
    }
  }
  .text {
    padding: calc(20 / var(--base) * 100vw);
  }
  .category {
    margin-bottom: calc(6 / var(--base) * 100vw);
    padding: 0.2em 0.7em;
    color: #fff;
    background-color: var(--color-main);
    font-size: calc(10 / var(--base) * 100vw);
    width: fit-content;
    border-radius: 300px;
  }
  .title {
    margin-bottom: calc(17 / var(--base) * 100vw);
    font-size: calc(16 / var(--base) * 100vw);
    font-weight: 700;
    line-height: 1.6;
  }
  .date {
    font-size: calc(10 / var(--base) * 100vw);

    .update {
      position: relative;
      padding-left: calc(13 / var(--base) * 100vw);
      &::before {
        display: block;
        content: "";
        background-image: url(../images/common/icon_updated.png);
        background-size: cover;
        width: calc(12 / var(--base) * 100vw);
        height: calc(12 / var(--base) * 100vw);
        position: absolute;
        inset: 50% auto auto 0;
        translate: 0 -50%;
      }
    }
  }
  @media screen and (min-width: 1024px) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    box-sizing: border-box;
    padding: min(60px, calc(60 / var(--base) * 100vw));
    gap: min(30px, calc(30 / var(--base) * 100vw));

    &.col2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .item {
      &:not(:last-of-type) {
        margin-bottom: 0;
      }

      a {
        box-shadow: 0 3px 6px color-mix(in srgb, #000 15%, transparent);
        height: 100%;
      }
    }
    .text {
      padding: min(30px, calc(30 / var(--base) * 100vw));
    }
    .category {
      margin-bottom: min(10px, calc(10 / var(--base) * 100vw));
      font-size: min(14px, calc(14 / var(--base) * 100vw));
    }
    .title {
      margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
      font-size: min(18px, calc(18 / var(--base) * 100vw));
    }
    .date {
      font-size: min(10px, calc(10 / var(--base) * 100vw));

      .update {
        padding-left: min(15px, calc(15 / var(--base) * 100vw));
        &::before {
          width: min(12px, calc(12 / var(--base) * 100vw));
          height: min(12px, calc(12 / var(--base) * 100vw));
        }
      }
    }
  }
}

body {
  position: relative;
}

body::before {
  content: "";
  visibility: hidden;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: background-color 400ms, visibility 500ms;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
}

body.body--menu-open {
  overflow: hidden;
}

body.body--menu-open::before {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 1024px) {
  body.body--menu-open {
    overflow: visible;
  }
  body.body--menu-open::before {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 10;
  transition: background-color 500ms;
  &.header--is-open {
    background-color: #fff;
  }

  .logo {
    width: calc(114 / var(--base) * 100vw);
    position: absolute;
    inset: calc(18 / var(--base) * 100vw) auto auto
      calc(10 / var(--base) * 100vw);
  }

  @media screen and (min-width: 1024px) {
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
    height: min(90px, calc(90 / var(--base) * 100vw));
    width: min(1366px, 100%);
    padding: 0 min(30px, calc(30 / var(--base) * 100vw)) 0
      min(24px, calc(24 / var(--base) * 100vw));
    box-sizing: border-box;

    .logo {
      width: min(164px, calc(164 / var(--base) * 100vw));
      position: static;
    }
  }
}

.menu-sw {
  margin: 0;
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  overflow: hidden;
  position: absolute;
  inset: calc(15 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) auto auto;
  border-radius: calc(40 / var(--base) * 100vw);

  button {
    padding: 0;
    display: block;
    border-style: none;
    border-radius: 0;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--color-main);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background-color 500ms;
    overflow: hidden;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      margin-left: calc(10 / var(--base) * 100vw);
      position: absolute;
      inset: 50% auto auto auto;
      width: calc(20 / var(--base) * 100vw);
      height: calc(1 / var(--base) * 100vw);
      background-color: #fff;
      transition: transform 500ms, opacity 500ms;
      transition: rotate var(--duration), translate var(--duration);
    }

    &::before {
      translate: 0 calc(-2 / var(--base) * 100vw);
    }
    &::after {
      translate: 0 calc(2 / var(--base) * 100vw);
    }
  }

  &.menu-sw--open {
    button {
      &::before {
        translate: 0 0;
        rotate: -45deg;
      }
      &::after {
        translate: 0 0;
        rotate: 45deg;
      }
    }
  }

  @media screen and (min-width: 1024px) {
    display: none;
  }
}

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: calc(100% - 60px);
  width: 100%;
  height: 100vh;
  transform: translate(-100vw, 0);
  transition: transform 500ms;
  transition-delay: 50ms;

  &.header-menu--open {
    transform: none;
  }

  .list {
    margin: 60px 20px 20px 5.55556vw;
    display: flex;
    flex-direction: column;
  }
  .item {
    margin: 0 0 0 0;
    font-weight: 900;
    border-top: 1px solid #d3c9bc;
    text-align: center;
    font-family: var(--font-en);
    &:first-child {
      border-top-style: none;
    }
  }
  a {
    padding: 25px 0;
    font-size: 1.4rem;
    text-align: center;
    transition: color var(--duration);

    &.contact {
      margin-top: 35px;
      padding: 15px 35px;
      display: inline-block;
      background-color: #007d79;
      color: #fff;
      line-height: 1;
      border-radius: 100px;
      font-size: 1.3rem;
      transition: background-color var(--duration);
    }

    &:hover {
      color: var(--color-main);

      &.contact {
        color: #fff;
        background-color: var(--color-text);
      }
    }
  }
  @media screen and (min-width: 1024px) {
    margin: 0 0 0 auto;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background-color: transparent;

    .list {
      margin: 0 0 0 auto;
      flex-direction: row;
      align-items: center;
    }

    .item {
      margin: 0 0 0 32px;
      border-style: none;
    }
    a {
      font-size: min(14px, calc(14 / var(--base) * 100vw));
      &.contact {
        margin-top: 0;
        font-size: 1.4rem;
      }
    }
  }
}

.breadcrumb {
  padding: 10px 0 10px 5.55556vw;
  font-size: 1rem;
  background-color: #edebeb;
  white-space: nowrap;
  overflow: auto;
}

.breadcrumb span[property="itemListElement"] {
  padding-left: 20px;
  position: relative;
}

.breadcrumb span[property="itemListElement"]::before {
  display: block;
  content: "";
  width: 1px;
  height: 10px;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: #666;
}

.breadcrumb span[property="itemListElement"]:first-child {
  padding-left: 0;
}

.breadcrumb span[property="itemListElement"]:first-child::before {
  display: none;
}

.breadcrumb span[property="itemListElement"]:first-child a {
  padding-left: 18px;
  position: relative;
}

.breadcrumb span[property="itemListElement"]:first-child a::before {
  display: block;
  content: "";
  width: 16px;
  height: 12px;
  background-image: url(../images/common/breadcrumb_home.svg);
  background-size: 16px 12px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (min-width: 1024px) {
  .breadcrumb {
    margin: 0;
    padding: 20px 0;
    font-size: 1.2rem;
    overflow: hidden;
    overflow-scrolling: auto;
    -webkit-overflow-scrolling: auto;
  }
  .breadcrumb__wrapper {
    margin: 0 40px;
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .breadcrumb__wrapper {
    width: 1280px;
    margin: 0 auto;
  }
}

.go2pagetop {
  position: fixed;
  bottom: 2.77778vw;
  right: 2.77778vw;
  z-index: 5;
  transition: transform 500ms, opacity 500ms;
  transform: translate(0, 100px);
  opacity: 0;
}

.go2pagetop--on {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .go2pagetop {
    bottom: 50px;
    right: 50px;
  }
}

.footer {
  padding: calc(80 / var(--base) * 100vw) calc(38 / var(--base) * 100vw)
    calc(60 / var(--base) * 100vw) calc(38 / var(--base) * 100vw);
  background-color: #23282a;

  .logo {
    margin-bottom: calc(30 / var(--base) * 100vw);
    width: calc(222 / var(--base) * 100vw);
  }

  .address {
    margin-bottom: calc(40 / var(--base) * 100vw);
    font-size: calc(12 / var(--base) * 100vw);
    line-height: 1.5;
    color: #fff;
  }

  .list-menu {
    display: grid;
    margin-bottom: calc(40 / var(--base) * 100vw);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto 1fr;
    align-items: start;
    gap: calc(10 / var(--base) * 100vw);

    .item {
      font-weight: 700;
      font-family: var(--font-en);
      font-size: calc(16 / var(--base) * 100vw);
      line-height: 1.3;

      &:nth-of-type(3) {
        grid-row: 2/5;
      }
      &:nth-of-type(4) {
        grid-column: 2;
        grid-row: 2;
      }
      &:nth-of-type(5) {
        grid-column: 2;
        grid-row: 3;
      }
      &:nth-of-type(6) {
        grid-column: 2;
        grid-row: 4;
      }
    }

    a {
      color: #fff;
    }
  }

  .list-submenu {
    .item {
      margin-top: calc(13 / var(--base) * 100vw);
      padding-left: calc(14 / var(--base) * 100vw);
      font-weight: 400;
      font-family: var(--font-sans);
      color: #fff;
      font-size: calc(12 / var(--base) * 100vw);
      position: relative;

      &:not(:last-of-type) {
        margin-bottom: calc(9 / var(--base) * 100vw);
      }

      &::before {
        display: block;
        content: "";
        width: calc(3 / var(--base) * 100vw);
        height: calc(1 / var(--base) * 100vw);
        position: absolute;
        inset: 50% auto auto calc(7 / var(--base) * 100vw);
        background-color: #fff;
      }
    }
  }

  .contact {
    padding: 0;
    margin-bottom: calc(40 / var(--base) * 100vw);
    width: min(340px, calc(300 / var(--base) * 100vw));
    a {
      display: block;
      padding: calc(18 / var(--base) * 100vw) calc(25 / var(--base) * 100vw)
        calc(21 / var(--base) * 100vw) calc(25 / var(--base) * 100vw);
      background-color: #fff;
      position: relative;
    }

    .contact-title {
      margin-bottom: 0;
      font-weight: 700;
      text-align: center;
      color: #131313;
      .en {
        display: block;
        margin-bottom: 0;
        font-family: var(--font-en);
        font-size: calc(30 / var(--base) * 100vw);
        font-weight: 800;
        text-align: left;
        color: var(--color-button);
      }
      .ja {
        display: block;
        text-align: left;
        font-size: calc(16 / var(--base) * 100vw);
        font-weight: 800;
        letter-spacing: 0;
      }
    }

    .circle {
      margin: 0 0 0 auto;
      background-color: var(--color-main);
      border-radius: calc(20 / var(--base) * 100vw);
      border: 1px solid var(--color-main);
      width: calc(20 / var(--base) * 100vw);
      height: calc(20 / var(--base) * 100vw);
      overflow: hidden;
      position: absolute;
      inset: auto calc(25 / var(--base) * 100vw) calc(25 / var(--base) * 100vw)
        auto;
      transition: background-color var(--duration);
      svg {
        width: calc(8 / var(--base) * 100vw);
        height: calc(4 / var(--base) * 100vw);
        fill: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;

        transition: fill var(--duration);
      }
    }
  }

  .sns-copyright {
    display: grid;
    padding-top: calc(18 / var(--base) * 100vw);
    grid-template-columns: auto 1fr;
    border-top: calc(1 / var(--base) * 100vw) solid #fff;

    .list-sns {
      display: flex;
      align-items: center;
    }
    .item {
      margin-right: calc(20 / var(--base) * 100vw);
    }
    svg {
      width: calc(15 / var(--base) * 100vw);
      height: calc(15 / var(--base) * 100vw);
      fill: #fff;
    }

    .copyright {
      font-size: calc(10 / var(--base) * 100vw);
      font-weight: 400;
      color: #fff;
      font-family: var(--font-en);
      text-align: right;
    }
  }

  @media screen and (min-width: 1024px) {
    padding: min(97px, calc(97 / var(--base) * 100vw)) 0
      min(52px, calc(52 / var(--base) * 100vw)) 0;
    .content {
      display: grid;
      grid-template-columns: auto auto auto;
      grid-template-rows: auto;
      margin: 0 auto;
      width: min(1040px, calc(1040 / var(--base) * 100vw));
    }

    .logo {
      margin-bottom: min(20px, calc(20 / var(--base) * 100vw));
      width: min(274px, calc(274 / var(--base) * 100vw));
      grid-column: 1/4;
      grid-row: 1;
    }

    .address {
      margin-bottom: 0;
      font-size: min(12px, calc(12 / var(--base) * 100vw));
      line-height: 1.8;
    }

    .list-menu {
      grid-column: 2;
      grid-row: 2;
      margin-bottom: 0;
      gap: 10px;

      .item {
        font-size: 16px;
      }

      a {
        color: #fff;
      }
    }
    .list-submenu {
      .item {
        margin-top: 13px;
        padding-left: 14px;
        font-size: 12px;

        &:not(:last-of-type) {
          margin-bottom: 9px;
        }

        &::before {
          width: 3px;
          height: 1px;
          inset: 50% auto auto min(7px, calc(7 / var(--base) * 100vw));
        }
      }
    }
    .contact {
      padding: 0;
      grid-column: 3;
      grid-row: 2;
      align-self: start;
      a {
        display: block;
        padding: min(16px, calc(16 / var(--base) * 100vw))
          min(25px, calc(25 / var(--base) * 100vw))
          min(21px, calc(21 / var(--base) * 100vw))
          min(25px, calc(25 / var(--base) * 100vw));
        background-color: #fff;
        position: relative;
      }
      .contact-title {
        .en {
          padding-top: 0;
        }
      }

      .contact-title {
        .en {
          font-size: min(36px, calc(36 / var(--base) * 100vw));
        }
        .ja {
          font-size: min(16px, calc(16 / var(--base) * 100vw));
        }
      }

      .circle {
        border-radius: min(30px, calc(30 / var(--base) * 100vw));
        width: min(30px, calc(30 / var(--base) * 100vw));
        height: min(30px, calc(30 / var(--base) * 100vw));
        inset: auto min(30px, calc(30 / var(--base) * 100vw))
          min(30px, calc(30 / var(--base) * 100vw)) auto;
        svg {
          width: min(11px, calc(11 / var(--base) * 100vw));
          height: min(6px, calc(6 / var(--base) * 100vw));
        }
      }
    }

    .sns-copyright {
      grid-column: 1/4;
      grid-row: 3;
      margin-top: min(60px, calc(60 / var(--base) * 100vw));
      padding-top: min(20px, calc(20 / var(--base) * 100vw));
      border-top: 1px solid #fff;

      .item {
        margin-right: calc(20 / var(--base) * 100vw);
      }
      svg {
        width: 20px;
        height: 20px;
      }

      .copyright {
        font-size: 12px;
      }
    }
  }
}

.footer__logo {
  margin: 0 auto;
  width: calc(80 / var(--base) * 100vw);
}

.footer__logo__mark {
  display: block;
  margin: 0 auto 10px auto;
  width: 44px;
  height: 44px;
}

.footer__logo__mark svg {
  fill: #aaa;
}

.footer__logo__type {
  display: block;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #aaa;
  text-align: center;
}

.footer__copyright {
  margin-top: 20px;
  font-size: 1rem;
  text-align: center;
  color: #aaa;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 50px 0;
    /*


    &__logo {
      flex: 1;
    }

    &__copyright {
      margin: 20px auto 0 auto;
      width: 1280px;
      font-size: 1.2rem;
      text-align: left;
    }
    */
  }
  .footer .wrapper {
    display: flex;
    justify-content: space-between;
  }
}

.footer-menu {
  margin: 30px 5.55556vw 0 5.55556vw;
}

.footer-menu__item__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: #aaa;
}

.footer-menu__item__list {
  margin: 10px 10px 20px 10px;
  padding: 0 0 0 10px;
  border-left: 1px solid #aaa;
}

.footer-menu__item__list__item {
  margin: 5px 0;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-menu__item__list__item a {
  color: #aaa;
}

.footer-menu__item--sns {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .footer-menu {
    margin: 0 0 0 auto;
    width: auto;
    display: flex;
  }
  .footer-menu__item {
    margin: 0 0 0 20px;
  }
  .footer-menu__item--sns {
    margin-left: 40px;
  }
}

.footer-sns {
  display: flex;
}

.footer-sns__item {
  margin-right: 15px;
  width: 30px;
}

.footer-sns__item__link {
  width: 30px;
  height: 30px;
  fill: #aaa;
}

#go2pagetop {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transition: all 500ms;
  transform: translate(0, 200px);
  z-index: 2;
}

#go2pagetop.on {
  transform: translate(0, 0);
}

#go2pagetop a {
  display: block;
  height: 40px;
  background-color: rgba(239, 76, 107, 0.8);
  position: relative;
}

#go2pagetop a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%) rotate(45deg);
}

@media screen and (min-width: 640px) {
  #go2pagetop {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
  #go2pagetop a {
    height: 60px;
    width: 60px;
  }
  #go2pagetop a::before {
    width: 26px;
    height: 26px;
  }
}

_:-ms-lang(x)::-ms-backdrop,
.selector {
  /* IE11 のみ適用される */
}

.color_green {
  color: #59a7a3;
}

.para {
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 2.5;

  &:first-child {
    margin-top: 0;
  }

  &.para--center,
  &.center {
    text-align: center;
  }

  @media screen and (min-width: 768px) {
    font-size: calc(14 / var(--base) * 100vw);
    &.center {
      text-align: center;
    }
  }

  @media screen and (min-width: 1024px) {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
    &.center {
      text-align: center;
    }
  }
}

.para-button--center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .para-button {
    margin: 40px 0;
  }
}

.entry-title {
  margin: 0 0 1em 0;
  font-weight: 300;
  font-size: 1.6rem;
  color: #007d79;
}

.entry-content {
  margin-bottom: 2em;
}

.entry-content p {
  font-size: 1.4rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
}

.entry-content a {
}

.post-navigation {
  margin: 40px 5.55556vw 0 5.55556vw;
}

.post-navigation .screen-reader-text {
  display: none;
}

.post-navigation a {
  padding: 5.55556vw 0;
  display: block;
  border-top: 1px solid #ccc;
  text-decoration: none;
}

.post-navigation .meta-nav {
  font-size: 1rem;
  line-height: 1;
}

.post-navigation .meta-nav svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.post-navigation .post-title {
  margin-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.4;
}

.post-navigation .nav-next a {
  text-align: right;
}

.post-navigation .nav-next .meta-nav {
  text-align: right;
}

.nav-links {
  text-align: center;
}

.pagination {
  margin: 32px 0 24px 0;
}
.page-numbers {
  margin: 0 4px;
  display: inline-block;
  width: 36px;
  height: 36px;

  color: #414141;
  background-color: #fff;
  line-height: 36px;
  text-align: center;
  font-size: 1.1rem;
  text-decoration: none;
}
.page-numbers.current {
  background-color: #007d79;
  color: #fff;
}
.page-numbers.next,
.page-numbers.prev {
  display: none;
}

@media screen and (min-width: 768px) {
  .post-navigation {
    margin-top: 60px;
  }
  .post-navigation a {
    padding: 2.60417vw 0;
  }
  .post-navigation .meta-nav {
    font-size: 1.2rem;
  }
  .post-navigation .post-title {
    font-size: 1.4rem;
  }

  .page-number {
    width: 32px;
    height: 32px;
    margin: 0px 4px;
    padding: 7px 0 0;
  }
  .pagination {
    margin: 80px 0 52px 0;
  }
}

@media screen and (min-width: 1024px) {
  .post-navigation {
    margin: 80px auto 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 40px auto;
  }
  .post-navigation a {
    padding: 20px 0;
  }
  .post-navigation .nav-links::after {
    clear: both;
    content: "";
    display: table;
  }
  .post-navigation .nav-previous {
    width: 48%;
    float: left;
  }
  .post-navigation .nav-next {
    width: 48%;
    float: right;
  }
}

.svg-resp {
  width: 100%;
  height: 100%;
}

em {
  font-weight: 700;
  font-style: normal;
}

/* main */
.main {
  &.home {
    padding-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .main {
    padding-top: 100px;
  }
}

article {
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* section */
.unit {
  padding: 60px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .unit {
    padding: 10.41667vw 0;
  }
}

@media screen and (min-width: 1024px) {
  .unit {
    padding: 80px 0;
  }
}

.block {
  padding: 5.55556vw 0;
}

@media screen and (min-width: 768px) {
  .block {
    padding: 30px 0;
  }
}

@media screen and (min-width: 1024px) {
  .wrapper {
    position: relative;
    margin: 0 40px;
    width: calc(100% - 80px);
    max-width: 1200px;
  }
}

@media screen and (min-width: 1280px) {
  .wrapper {
    margin: 0 auto;
    width: 1280px;
  }
}

.content-space {
  margin: 0;
  padding-top: calc(20 / var(--base) * 100vw);
  padding-bottom: calc(80 / var(--base) * 100vw);
  background-color: #fff;

  &.row {
    margin: 0 calc(20 / var(--base) * 100vw);
  }

  @media screen and (min-width: 768px) {
    padding-top: min(40px, calc(40 / var(--base) * 100vw));
    padding-bottom: min(120px, calc(120 / var(--base) * 100vw));

    &.row {
      display: grid;
      margin: 0 calc(40 / var(--base) * 100vw);
      grid-template-columns: 65% 1fr;
      gap: 0 calc(40 / var(--base) * 100vw);
    }
  }
  @media screen and (min-width: 1024px) {
    padding-top: min(40px, calc(40 / var(--base) * 100vw));
    padding-bottom: min(120px, calc(120 / var(--base) * 100vw));
    background-color: #d6e0dc;

    &.row {
      margin: 0 calc(40 / var(--base) * 100vw);
      grid-template-columns: 70% 1fr;
      gap: 0 min(40px, calc(40 / var(--base) * 100vw));
    }
  }

  @media screen and (min-width: 1280px) {
    &.row {
      margin: 0 auto;
      width: 1200px;
    }
  }
}

.content-block {
  position: relative;
  margin: 0 5.55556vw;
}

@media screen and (min-width: 1024px) {
  .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ----------------- 
titletitle
----------------- */

.title-main {
  /* padding-top: calc(80 / var(--base) * 100vw); */
  line-height: 1.5;
  padding-bottom: 1.5em;
  position: relative;
  .en {
    display: block;
    margin-bottom: 0;
    font-family: var(--font-en);
    font-size: calc(42 / var(--base) * 100vw);
    font-weight: 800;
    text-align: center;
    color: var(--color-main);
  }
  .ja {
    display: block;
    text-align: center;
    font-size: calc(16 / var(--base) * 100vw);
    font-weight: 800;
    letter-spacing: 0;
  }

  &.single {
  }

  &.align-left {
    text-align: left;
    .en,
    .ja {
      text-align: left;
    }
  }

  &.color-white {
    .en {
      color: #fff;
    }
    .ja {
      color: #fff;
    }
  }

  @media screen and (min-width: 1024px) {
    /* padding: min(100px, calc(100 / var(--base) * 100vw)) 0 0 0; */
    .en {
      font-size: min(52px, calc(52 / var(--base) * 100vw));
    }
    .ja {
      margin: min(11px, calc(11 / var(--base) * 100vw));
      font-size: min(20px, calc(20 / var(--base) * 100vw));
    }

    &.single {
      .en {
        font-size: min(68px, calc(68 / var(--base) * 100vw));
      }
      .ja {
        margin: min(19px, calc(19 / var(--base) * 100vw));
        font-size: min(36px, calc(36 / var(--base) * 100vw));
      }
    }
  }
}

.title-mid {
  margin-bottom: calc(20 / var(--base) * 100vw);
  font-size: calc(18 / var(--base) * 100vw);
  font-weight: 700;
  text-align: center;
  color: #131313;

  &.en {
    font-size: calc(20 / var(--base) * 100vw);
    font-family: var(--font-en);
    font-weight: 900;
  }

  &.align-left {
    text-align: left;
  }

  @media screen and (min-width: 768px) {
    margin-bottom: calc(11 / var(--base) * 100vw);
    font-size: min(20px, calc(20 / var(--base) * 100vw));
    &.en {
      font-size: min(24px, calc(24 / var(--base) * 100vw));
    }
  }
  @media screen and (min-width: 1024px) {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
    &.en {
      font-size: min(28px, calc(28 / var(--base) * 100vw));
    }
  }
}

.title-mid-bilingual {
  /* margin-bottom: calc(13 / var(--base) * 100vw); */
  margin-bottom: calc(29 / var(--base) * 100vw);

  .en {
    display: block;
    margin-bottom: 10px;
    font-size: calc(28 / var(--base) * 100vw);
    font-family: var(--font-en);
    font-weight: 900;
    line-height: 1;
    text-align: center;
  }
  .ja {
    display: block;
    font-size: calc(14 / var(--base) * 100vw);
    font-weight: 700;
    line-height: 1;
    color: #007d79;
    text-align: center;
  }

  @media screen and (min-width: 768px) {
    margin-bottom: min(37px, calc(37 / var(--base) * 100vw));
    .en {
      margin-bottom: calc(16 / var(--base) * 100vw);
      font-size: calc(32 / var(--base) * 100vw);
    }
    .ja {
      font-size: calc(16 / var(--base) * 100vw);
    }
  }

  @media screen and (min-width: 1024px) {
    .en {
      margin-bottom: min(16px, calc(16 / var(--base) * 100vw));
      font-size: min(36px, calc(36 / var(--base) * 100vw));
    }
    .ja {
      font-size: min(16px, calc(16 / var(--base) * 100vw));
    }
  }
}

.title-main--single {
  padding-top: 30px;
}

.title-main__en {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-size: 5.6rem;
  line-height: 1;
  transition: transform 400ms, opacity 400ms;
  transform: translate(0, -10px);
  opacity: 0;
}

.title-main__en.on {
  transform: translate(0, 0);
  opacity: 1;
}

.title-main__ja {
  display: block;
  margin: 16px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 400ms, opacity 400ms;
  transition-delay: 200ms;
  transform: translate(0, -10px);
  opacity: 0;
}

.title-main__ja.on {
  transform: translate(0, 0);
  opacity: 1;
}

@media screen and (min-width: 1280px) {
}

.title-border {
  margin: 0 0 32px 5.55556vw;
}

.title-border__en {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 300;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  transition: opacity 500ms, transform 500ms;
  opacity: 0;
  transform: translate(0, -10px);
}

.title-border__en.on {
  opacity: 1;
  transform: none;
}

.title-border__ja {
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.title-border__ja__text {
  margin-right: 15px;
  white-space: nowrap;
  font-size: 1.3rem;
  transition: opacity 500ms, transform 500ms;
  opacity: 0;
  transform: translate(0, -10px);
}

.title-border__ja__text.on {
  opacity: 1;
  transform: none;
}

.title-border__ja::after {
  content: "";
  display: block;
  background-color: #282828;
  height: 0;
  width: 0;
  opacity: 0;
  transition: width 400ms, height 300ms, opacity 300ms;
  transition-timing-function: ease-in;
}

.title-border__ja.on::after {
  width: 100%;
  height: 5px;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .title-border {
    margin: 0 0 40px 5.55556vw;
  }
  .title-border__en {
    font-size: 4.2rem;
  }
  .title-border__ja__text {
    font-size: 1.7rem;
  }
  .title-border__ja.on::after {
    height: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .title-border {
    margin: 0 0 50px 40px;
  }
  .title-border__en {
    font-size: 4.8rem;
  }
  .title-border__ja__text {
    font-size: 2rem;
  }
  .title-border__ja.on::after {
    height: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .title-border {
    margin: 0 auto 50px auto;
    width: 1200px;
  }
}

.titlesub-border {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 2rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.titlesub-border--en {
  font-size: 2.2rem;
}

.titlesub-border::after {
  display: block;
  margin-left: 10px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #eee;
}

@media screen and (min-width: 768px) {
  .titlesub-border {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 2.6rem;
  }
  .titlesub-border--en {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .titlesub-border {
    margin-top: 80px;
    margin-bottom: 30px;
    font-size: 3.2rem;
  }
  .titlesub-border--en {
    font-size: 3.4rem;
  }
  .titlesub-border::after {
    margin-left: 20px;
    width: 200px;
  }
}

.title-simple {
  margin: 0 0 32px 5.55556vw;
}

.title-simple__en {
  display: block;
  font-size: 3.6rem;
  font-weight: 300;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  line-height: 1;
  text-align: left;
}

.title-simple__ja {
  display: block;
  margin: 10px 0 0 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .title-simple {
    margin: 0 0 40px 5.55556vw;
  }
  .title-simple__en {
    font-size: 4.2rem;
  }
  .title-simple__ja {
    font-size: 1.7rem;
  }
}

@media screen and (min-width: 1024px) {
  .title-simple {
    margin: 0 0 60px 0;
  }
  .title-simple__en {
    font-size: 4.8rem;
  }
  .title-simple__en--left {
    text-align: left;
  }
  .title-simple__ja {
    font-size: 2rem;
  }
  .title-simple__ja--left {
    text-align: left;
  }
}

/* ----------------- 
linklink
buttonbutton
----------------- */

.type-button--arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

.type-button--arrow:hover::before {
  animation: arrow_anime 1000ms infinite;
}

@keyframes arrow_anime {
  0% {
    transform: translate(-10px, -50%) rotate(45deg);
  }
  100% {
    transform: translate(0, -50%) rotate(45deg);
  }
}

.underline {
  text-decoration: underline;
  cursor: pointer;
}

.space-buttons {
  margin: 30px 0 0 0;
  text-align: center;
}

.list_buttons {
  margin: 30px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.list_buttons li {
  margin: 0 5px;
  max-width: 80%;
}

.list_radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.list_radio li {
  margin: 0.5em 0 0 0;
}

.list_radio input[type="text"] {
  display: inline-block;
}

.list_radio.list_radio--center {
  justify-content: center;
  flex-direction: row;
}

.list_radio.list_radio--center li {
  margin: 0.5em 0 0 1em;
}

@media screen and (min-width: 768px) {
  .list_radio.list_radio--center {
    justify-content: flex-start;
  }
  .list_radio.list_radio--center li {
    margin: 0.5em 1em 0 0;
  }
}

/* tabletable */

.table-simple {
  border-bottom: 1px solid #f2f0e2;

  tbody,
  tr {
    display: block;
    text-align: left;
  }
  th {
    border-top: 1px solid #f2f0e2;
    display: block;
    padding: calc(5 / var(--base) * 100vw) calc(8 / var(--base) * 100vw) 0 0;
    text-align: left;
    font-size: calc(12 / var(--base) * 100vw);
    font-weight: 700;
    line-height: 1.8;
    color: #666;
  }

  td {
    display: block;
    padding: 0 calc(8 / var(--base) * 100vw) calc(5 / var(--base) * 100vw) 0;
    text-align: left;
    font-size: calc(12 / var(--base) * 100vw);
    font-weight: 400;
    line-height: 1.8;
    color: #111;
  }

  @media screen and (min-width: 768px) {
    table {
      width: 100%;
    }
    tbody {
      display: table-row-group;
    }
    tr {
      display: table-row;
    }
    th {
      padding: 25px 25px;
      display: table-cell;
      font-size: calc(14 / var(--base) * 100vw);
      background-color: #fafafa;
    }
    td {
      border-top: 1px solid #f2f0e2;
      padding: 25px 25px;
      display: table-cell;
      font-size: calc(14 / var(--base) * 100vw);
    }
  }
  @media screen and (min-width: 1024px) {
    th,
    td {
      font-size: min(16px, calc(16 / var(--base) * 100vw));
    }
  }
}

.table-price {
  margin: 15px 0 0 0;
  padding-bottom: 15px;
  overflow-x: scroll;
}

.table-price table {
  width: 100%;
  border-bottom: 1px solid #f2f0e2;
}

.table-price tr {
  border-top: 1px solid #f2f0e2;
}

.table-price thead th {
  padding: 10px;
  font-size: 1rem;
  white-space: nowrap;
}

.table-price thead .table-price__price {
  font-size: 1.2rem;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.table-price tbody {
  /*
    tr:nth-of-type(2n-1) {
      th,
      td {
        background-color: #f2f0e2;
      }
    }
    */
}

.table-price tbody th {
  padding: 10px;
  font-size: 1.1rem;
  white-space: nowrap;
  line-height: 1.4;
}

.table-price tbody td {
  padding: 10px;
  font-size: 1.1rem;
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}

.table-price tbody .table-price__price {
  font-size: 1.2rem;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

@media screen and (min-width: 1024px) {
  .table-price {
    margin: 40px auto 0 auto;
    overflow-x: auto;
  }
  .table-price thead th {
    padding: 15px 5px;
    font-size: 1.2rem;
  }
  .table-price tbody th {
    padding: 15px 5px;
    font-size: 1.3rem;
  }
  .table-price tbody td {
    padding: 15px 5px;
    font-size: 1.2rem;
    text-align: center;
  }
  .table-price tbody .table-price__price {
    font-size: 1.4rem;
  }
}

.news-table tr {
  margin-top: 25px;
  display: block;
}

.news-table tr:first-child {
  margin-top: 0;
}

.news-table th {
  margin-bottom: 10px;
  display: block;
  text-align: left;
  font-size: 1.2rem;
  color: #666;
}

.news-table td {
  display: block;
  text-align: left;
  font-size: 1.2rem;
  color: #131313;
}

.news-table__link:hover {
  text-decoration: underline;
}

.news-table__catlink {
  margin-left: 10px;
  display: inline-block;
  padding: 0.6em 0.8em;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid #ccc;
  border-radius: 20px;
  color: #999;
  background-color: #fff;
}

.news-table--border {
  margin: 0 5.55556vw 40px 5.55556vw;
}

.news-table--border table {
  width: 100%;
}

.news-table--border tr {
  padding-top: 20px;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .news-table--home {
    flex: 1;
  }
  .news-table table {
    width: 100%;
  }
  .news-table tr {
    display: table-row;
  }
  .news-table th {
    padding: 20px 30px 20px 0;
    font-size: 1.4rem;
    display: table-cell;
    width: 180px;
  }
  .news-table td {
    padding: 20px 0 20px 0;
    font-size: 1.4rem;
    display: table-cell;
  }
  .news-table--border {
    margin: 0 5.55556vw 60px 5.55556vw;
  }
  .news-table--border tr:first-child {
    border-top-style: none;
  }
}

@media screen and (min-width: 1024px) {
  .news-table th {
    width: 240px;
  }
  .news-table__catlink {
    margin-left: 20px;
    font-size: 1.2rem;
  }
  .news-table--border {
    margin: 0 0 60px 0;
  }
}

/* for inline */
label {
  cursor: pointer;
  position: relative;
  display: block;
}

input[type="tel"],
input[type="date"],
input[type="text"],
input[type="url"],
input[type="number"],
input[type="email"],
textarea {
  margin: 0;
  padding: 0.6em 0.4em;
  border: 1px solid #ddd;
  background: #fff;
  line-height: 1;
  outline: medium none;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  border-radius: 4px;
  appearance: none;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

input[type="tel"] + input[type="tel"],
input[type="date"] + input[type="tel"],
input[type="text"] + input[type="tel"],
input[type="url"] + input[type="tel"],
input[type="number"] + input[type="tel"],
input[type="email"] + input[type="tel"],
textarea + input[type="tel"],
input[type="tel"] + input[type="date"],
input[type="date"] + input[type="date"],
input[type="text"] + input[type="date"],
input[type="url"] + input[type="date"],
input[type="number"] + input[type="date"],
input[type="email"] + input[type="date"],
textarea + input[type="date"],
input[type="tel"] + input[type="text"],
input[type="date"] + input[type="text"],
input[type="text"] + input[type="text"],
input[type="url"] + input[type="text"],
input[type="number"] + input[type="text"],
input[type="email"] + input[type="text"],
textarea + input[type="text"],
input[type="tel"] + input[type="url"],
input[type="date"] + input[type="url"],
input[type="text"] + input[type="url"],
input[type="url"] + input[type="url"],
input[type="number"] + input[type="url"],
input[type="email"] + input[type="url"],
textarea + input[type="url"],
input[type="tel"] + input[type="number"],
input[type="date"] + input[type="number"],
input[type="text"] + input[type="number"],
input[type="url"] + input[type="number"],
input[type="number"] + input[type="number"],
input[type="email"] + input[type="number"],
textarea + input[type="number"],
input[type="tel"] + input[type="email"],
input[type="date"] + input[type="email"],
input[type="text"] + input[type="email"],
input[type="url"] + input[type="email"],
input[type="number"] + input[type="email"],
input[type="email"] + input[type="email"],
textarea + input[type="email"],
input[type="tel"] + textarea,
input[type="date"] + textarea,
input[type="text"] + textarea,
input[type="url"] + textarea,
input[type="number"] + textarea,
input[type="email"] + textarea,
textarea + textarea {
  margin-top: 5px;
}

input[type="tel"]:focus,
input[type="date"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1px solid #999;
  transition: all 500ms;
}

input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #ccc;
}

@media screen and (min-width: 1024px) {
  input[type="tel"],
  input[type="date"],
  input[type="text"],
  input[type="url"],
  input[type="number"],
  input[type="email"],
  textarea {
    width: auto;
  }
}

input[type="number"],
input[type="date"] {
  width: auto;
}

textarea {
  min-height: 2em;
  line-height: 1.6;
}

.radio,
.checkbox {
  margin: 0 0 5px 0;
}

.radio li,
.checkbox li {
  list-style-type: none;
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .radio,
  .checkbox {
    display: flex;
    flex-wrap: wrap;
  }
  .radio li,
  .checkbox li {
    margin-right: 10px;
  }
}

select {
  appearance: none;
  border: 0;
  margin: 0 0 5px 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  color: inherit;
  box-sizing: content-box;
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  select {
    width: auto;
  }
}

.select {
  margin-bottom: 5px;
  padding: 0;
  overflow: hidden;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  border: 1px solid #ccc;
  line-height: 1;
  vertical-align: middle;
  background: #fff;
}

.select > select {
  margin: 0;
  width: 130%;
  display: block;
  line-height: 1;
  padding: 0.6em 3em 0.6em 0.6em;
  z-index: 2;
  position: relative;
}

.select::after {
  margin: -6px 0 0 5px;
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #666;
  border-left: 2px solid #666;
  transform: rotate(-135deg);
}

.select option {
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
}

.blog-list {
  margin: 0 5.55556vw;
  padding: 0 0 0 0;
}

.blog-list__item {
  margin: 0 0 30px 0;
  padding-top: 30px;
  position: relative;
}

.blog-list__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.blog-list__item:first-child {
  padding-top: 0;
}

.blog-list__item:first-child::before {
  display: none;
}

.blog-list__item:hover .blog-list__photo img {
  transform: scale(1.1);
}

.blog-list__photo {
  margin: 0 0 10px 0;
  overflow: hidden;
}

.blog-list__photo img {
  transition: transform 400ms;
}

.blog-list__category {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #007d79;
}

.blog-list__category--works {
  font-size: 1.2rem;
}

.blog-list__clientname {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
}

.blog-list__title {
  font-size: 1.6rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
}

.blog-list__excerpt {
  font-size: 1.2rem;
}

.blog-list__date {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
  text-align: right;
}

.blog-list__date__inner {
  display: inline-block;
  padding: 0 0 0 20px;
  position: relative;
}

.blog-list__date__icon {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .blog-list {
    display: flex;
    flex-wrap: wrap;
  }
  .blog-list__item {
    margin: 0 0 40px 4%;
    padding-top: 0;
    width: 48%;
  }
  .blog-list__item::before {
    display: none;
  }
  .blog-list__item:nth-of-type(2n-1) {
    margin-left: 0;
  }
  .blog-list__date {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .blog-list {
    margin: 0;
  }
  .blog-list__item {
    margin: 0 0 50px 4%;
    width: 48%;
  }
  .blog-list__item:nth-of-type(2n-1) {
    margin-left: 0;
  }
  .blog-list__category {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  .blog-list__title {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  .blog-list__excerpt {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .blog-list__item {
    margin: 0 0 50px 60px;
    width: 360px;
  }
  .blog-list__item:nth-of-type(2n-1) {
    margin-left: 0;
  }
}

.archive-categories {
  margin: 0 5.55556vw 20px 5.55556vw;
  display: flex;
  flex-wrap: wrap;
}

.archive-categories__item {
  margin: 0 10px 10px 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.archive-categories__link {
  color: #999;
}

.archive-categories__link--on {
  color: #131313;
}

@media screen and (min-width: 768px) {
  .archive-categories__item {
    margin: 0 15px 10px 0;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .archive-categories {
    margin: 0 0 30px 0;
  }
}

.entry-main {
  padding: 40px 0 0 0;
  &.no-title {
    padding-top: 0;
  }
  @media screen and (min-width: 768px) {
    padding-top: 0;
  }
  @media screen and (min-width: 1024px) {
  }
  @media screen and (min-width: 1280px) {
  }
}

#toc_container {
  margin: 30px 0;
  padding: 5.55556vw;
  border: 4px solid #dbdbdb;
  background-color: #fff;
}

#toc_container p.toc_title {
  padding-left: 30px;
  text-align: left;
  position: relative;
}

#toc_container p.toc_title::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 18px;
  background-image: url(../images/common/toc_icon.svg);
  background-repeat: no-repeat;
  background-size: 20px 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

#toc_container .toc_list {
  font-size: 1.2rem;
  border-style: none;
}

#toc_container .toc_list li::before {
  display: none;
}

#toc_container .toc_list ul {
  border-style: none;
  display: block;
}

#toc_container .toc_list a {
  margin: 0.5em 0;
}

@media screen and (min-width: 768px) {
  #toc_container p.toc_title {
    font-size: 1.4rem;
  }
  #toc_container .toc_list {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  #toc_container {
    margin: 40px 0;
    padding: 30px;
    display: block;
  }
}

.entry-header .entry-category {
  margin: 0 5.55556vw 10px 5.55556vw;
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #007d79;

  a {
    color: #007d79;
    text-decoration: none;
    &:hover {
      text-decoration: underline;
    }
  }
}

.entry-header .entry-category--works {
  font-size: 1.6rem;
}

.entry-header .entry-clientname {
  margin: -5px 5.55556vw 10px 5.55556vw;
  margin: 0 0 10px 0;
  font-size: 1.6rem;
}

.entry-header .entry-title {
  margin: 0 5.55556vw 5px 5.55556vw;
  margin: 0 0 5px 0;
  color: #131313;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
}

.entry-header .entry-title--works {
  margin-bottom: 20px;
}

.entry-header .date-author {
  margin: 0 5.55556vw 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.entry-header .date-author__date {
  margin-right: 15px;
  color: #131313;
  font-size: 1.6rem;
  font-family: var(--font-en);
}

.entry-header .date-author__author {
  color: #131313;
  font-size: 1.4rem;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
}

.entry-header .tag-list {
  margin: 0 5.55556vw 25px 5.55556vw;
  display: flex;
  flex-wrap: wrap;
}

.entry-header .tag-list__item {
  margin-right: 5px;
}

.entry-header .tag-list__link {
  padding: 0.5em 1.6em;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #414141;
  background-color: #f2f0e2;
  border-radius: 20px;
}

.entry-header .post-thumbnail {
  margin: 0 5.55556vw 20px 5.55556vw;
  margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
  .entry-header .entry-category {
    font-size: 1.5rem;
  }
  .entry-header .entry-category--works {
    font-size: 1.8rem;
  }
  .entry-header .entry-clientname {
    font-size: 1.8rem;
  }
  .entry-header .entry-title {
    font-size: 2.8rem;
  }
  .entry-header .date-author__date {
    font-size: 1.7rem;
  }
  .entry-header .date-author__author {
    font-size: 1.5rem;
  }
  .entry-header .tag-list__link {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px) {
  .entry-header {
    padding: 0 0 20px 0;
  }
  .entry-header .entry-category-client {
    margin: 0 0 10px 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .entry-header .entry-category {
    margin: 0;
    font-size: 1.6rem;
  }
  .entry-header .entry-category--works {
    font-size: 2rem;
  }
  .entry-header .entry-clientname {
    margin: 0 0 0 20px;
    padding-left: 20px;
    font-size: 2rem;
    border-left: 1px solid #ccc;
  }
  .entry-header .entry-title {
    margin: 0 0 20px 30px;
    font-size: 3.2rem;
  }
  .entry-header .date-author-tag {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
  }
  .entry-header .date-author {
    margin: 0 0 0 30px;
  }
  .entry-header .date-author__date {
    margin-right: 20px;
    font-size: 1.8rem;
  }
  .entry-header .date-author__author {
    font-size: 1.6rem;
  }
  .entry-header .tag-list {
    margin: 0 0 0 30px;
  }
  .entry-header .post-thumbnail {
    margin: 0 0 0 0;
  }
}

.entry-content {
  margin: 0 0;
}
.entry-content a {
  color: var(--color-main);
}
.entry-content h2 {
  background-color: #007d79;
  color: #fff;
  margin: 50px 0 30px 0;
  padding: 15px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}

.entry-content h3 {
  margin: 30px 0 20px 0;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.5;
  border-left: 0.3em solid #007d79;
  padding-left: 1rem;
}

.entry-content h4 {
  margin: 30px 0 10px 0;
  padding: 0.1em 10px;
  border-left: 2px solid #007d79;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.5;
}
.entry-content h5 {
  margin: 15px 0 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.entry-content p {
  margin: 1em 0;
  font-size: 1.7rem;
  font-family: "Segoe UI", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "游ゴシック", "游ゴシック体", YuGothic, sans-serif;
  line-height: 1.7;
  font-weight: 500;
}

.entry-content ul {
  /* display: inline-block; */
  margin: 20px 0;
  padding: 10px 0;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #131313;
  background-color: #f2f1e9;
  width: 96%;
}

.entry-content .wp-block-list .wp-block-list {
  margin: 5px 0;
  padding: 0;
  border-style: none;
}

.entry-content ul.wp-block-list > li {
  padding-left: 2em;
  padding-right: 1em;
  margin: 0.5em 0;
  font-size: 1.7rem;
  position: relative;
}

.entry-content ul.wp-block-list > li::before {
  /* display: inline-block; */
  content: "";
  width: 6px;
  height: 6px;
  background-color: #007d79;
  border-radius: 3px;
  position: absolute;
  inset: 0.6em auto auto 10px;
  /* left: 10px;
  top: 50%;
  transform: translate(0, -50%); */
}

.entry-content ol {
  /* display: inline-block; */
  margin: 20px 0;
  padding: 10px 0;
  border-top: 1px solid #131313;
  border-bottom: 1px solid #131313;
  counter-reset: counter_li;
}

.entry-content ol li {
  padding-left: 2em;
  padding-right: 1em;
  margin: 0.5em 0;
  font-size: 1.7rem;
  position: relative;
}

.entry-content ol li::before {
  display: inline-block;
  counter-increment: counter_li;
  content: counter(counter_li) ")";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .entry-content h2 {
    font-size: 2.2rem;
  }
  .entry-content h3 {
    font-size: 1.9rem;
  }
  .entry-content h4 {
    font-size: 1.5rem;
  }
  .entry-content p {
    font-size: 1.4rem;
  }
  .entry-content ul li {
    font-size: 1.4rem;
  }
  .entry-content ol li {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .entry-content {
    margin: 0 30px;
  }
  .entry-content h2 {
    margin: 60px 0 30px 0;
    font-size: 2.8rem;
  }
  .entry-content h3 {
    margin-top: 40px;
    font-size: 2.4rem;
    border-left: 0.3em solid #007d79;
    padding-left: 1rem;
  }
  .entry-content h4 {
    margin-top: 40px;
    font-size: 2.1rem;
  }
  .entry-content h5 {
    margin-top: 10px;
    font-size: 1.9rem;
  }
  .entry-content p {
    font-size: 1.6rem;
  }
  .entry-content ul li {
    font-size: 1.6rem;
  }
  .entry-content ol li {
    font-size: 1.6rem;
  }
}

.wp-block-image {
  margin: 30px 0;
}

@media screen and (min-width: 1024px) {
  .wp-block-image {
    margin: 40px 0;
  }
}

.wp-block-table {
  margin: 30px 0;
  background-color: #fff;
  overflow: auto;
}

.wp-block-table thead {
  border-bottom: 1px solid #f4f4f4;
}

.wp-block-table thead th {
  padding: 10px 15px;
  font-size: 1.2rem;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left: 1px solid #eee;

  /* .has-fixed-layout {
    white-space: nowrap;
  } */
}

.wp-block-table thead th:nth-of-type(1) {
  border-left-style: none;
}

.wp-block-table tbody {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  /*
    border-top: 2px solid $color_main;
    border-bottom: 2px solid $color_main;
    */
}

.wp-block-table tbody td {
  padding: 10px 15px;
  border-style: none;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left: 1px solid #eee;
  font-size: 1.2rem;

  /* .has-fixed-layout tbody td {
    white-space: nowrap;
  } */
}
.wp-block-table tr {
  border-bottom: 1px solid #e9e9e9;
}
.wp-block-table tbody td:nth-of-type(1) {
  border-left-style: none;
  background-color: #4b9993;
  color: #fff;
}

.wp-block-table tbody td strong {
  font-size: 1.2rem;
}

/*
.wp-block-table tbody tr:nth-of-type(2n) th,
.wp-block-table tbody tr:nth-of-type(2n) td {
  background-color: #f4f4f4;
}
 */

@media screen and (min-width: 768px) {
  .wp-block-table thead th {
    font-size: 1.4rem;
  }
  .wp-block-table tbody td {
    font-size: 1.2rem;
  }
  .wp-block-table tbody td strong {
    font-size: 1.4rem;
  }
}

.post-author {
  margin: 50px 5.55556vw;
  padding: 20px;
  border: 5px solid #dbdbdb;
  background-color: #fff;

  .list-sns {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
    gap: 12px;

    a {
      display: block;
      width: 20px;
      height: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      text-indent: -1000%;
      overflow: hidden;
      white-space: nowrap;
    }

    .item {
      &.site {
        a {
          background-image: url(../images/common/icon-site.png);
        }
      }
      &.twitter {
        a {
          background-image: url(../images/common/icon-x.png);
        }
      }
      &.facebook {
        a {
          background-image: url(../images/common/icon-facebook.png);
        }
      }
      &.instagram {
        a {
          background-image: url(../images/common/icon-instagram.png);
        }
      }
      &.linkedin {
        a {
          background-image: url(../images/common/icon-linkedin.png);
        }
      }
      &.youtube {
        a {
          background-image: url(../images/common/icon-youtube.png);
        }
      }
    }
  }
}

.post-author__photo {
  margin: 0 auto 15px auto;
  width: 120px;
}

.post-author__photo img {
  display: block;
  width: 120px;
  border-radius: 60px;
  overflow: hidden;
}

.post-author__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #007d79;
  text-align: center;
}

.post-author__name {
  margin-bottom: 11px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.post-author__comment {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .post-author {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    padding: 30px;

    .list-sns {
      justify-content: start;
    }
  }
  .post-author__photo {
    width: 120px;
    border-radius: 60px;
  }
  .post-author__text {
    margin: 0 0 0 20px;
    flex: 1;
  }
  .post-author__title {
    margin-bottom: 5px;
    color: #007d79;
    text-align: left;
  }
  .post-author__name {
    text-align: left;
  }
  .post-author__comment {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .post-author {
    margin: 50px 0;
    .list-sns {
      margin-bottom: 18px;
    }
  }
  .post-author__text {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 24px;
    align-items: end;
  }
  .post-author__title {
    grid-column: 1/3;
  }
  .post-author__comment {
    grid-column: 1/3;
  }
}

.archive-links {
  margin: 30px 0;
  padding: 20px;
  background-color: #fff;

  .title {
    padding-bottom: calc(11 / var(--base) * 100vw);
    font-size: calc(20 / var(--base) * 100vw);
    font-family: var(--font-en);
    font-weight: 900;
  }

  .list {
    .item {
      padding: 10px 0;
      border-top: 1px solid #ccc;
    }
    a {
      display: block;
      margin: calc(5 / var(--base) * 100vw) 0;
      font-size: min(14px, calc(14 / var(--base) * 100vw));
      font-family: var(--font-en);
    }
    .arrow {
      position: relative;
      &::after {
        display: block;
        content: "";
        width: 5px;
        height: 5px;
        border-top: 3px solid #007d79;
        border-right: 3px solid #007d79;
        transform: rotate(45deg) translate(0, -50%);
        position: absolute;
        right: 10px;
        top: 50%;
      }
    }

    .catlink {
      margin-left: 10px;
      display: inline-block;
      padding: 0.6em 0.8em;
      font-size: 1rem;
      line-height: 1;
      border: 1px solid #ccc;
      border-radius: 20px;
      color: #999;
      background-color: #fff;
    }
  }

  @media screen and (min-width: 768px) {
    margin-top: 0;
    .list {
      .item {
        padding: 15px 0;
      }
    }
  }
  @media screen and (min-width: 1024px) {
    .title {
      padding-bottom: min(11px, calc(11 / var(--base) * 100vw));
      font-size: min(20px, calc(20 / var(--base) * 100vw));
    }
    .list {
      a {
        margin: 0;
      }
    }
  }
}

.sg-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.sg-title-sub {
  margin: 3em 0 1em 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.body--company {
  background-color: #f9f9f9;
}

.content-block--philosophy {
  margin-top: 50px;
}

.content-block--mission {
  margin: 50px 0 0 22.22222vw;
  padding-bottom: 30px;
}

.content-block--ceo {
  margin-right: 0;
}

@media screen and (min-width: 1024px) {
  .content-block--mission {
    margin: 0 0 0 auto;
    width: 800px;
    padding-bottom: 40px;
  }
}

.company-mission-textblock {
  margin-right: 22.22222vw;
}

.company-philosophy__philosophy {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 500ms, transform 500ms;
  transition-delay: 100ms;
}

.company-philosophy__philosophy.on {
  opacity: 1;
  transform: none;
}

.company-philosophy__para-message {
  margin-top: 15px;
  margin-left: 8.33333vw;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 500ms, transform 500ms;
  transition-delay: 200ms;
}

.company-philosophy__para-message.on {
  opacity: 1;
  transform: none;
}

.company-philosophy__para-mission {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.company-philosophy__logo-mission {
  position: absolute;
  width: 139px;
  top: 50px;
  left: -60px;
  z-index: 1;
}

.company-philosophy__photo-ceo {
  margin-bottom: 45px;
  width: 55.55556vw;
  position: relative;
}

.company-philosophy__photo-ceo::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  position: absolute;
  top: 15px;
  left: 15px;
}

.company-philosophy__photo-ceo img {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .company-philosophy__philosophy {
    margin-bottom: 30px;
    text-align: center;
  }
  .company-philosophy__philosophy img {
    width: 62.5vw;
    max-width: 732px;
  }
  .company-philosophy__para-message {
    font-size: 1.6rem;
    text-align: center;
  }
  .company-philosophy__para-mission {
    font-size: 2.2rem;
  }
  .company-philosophy__photo-ceo {
    width: 39.0625vw;
  }
  .company-philosophy__photo-ceo::after {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .company-philosophy {
    padding-top: 140px;
  }
  .company-philosophy--info {
    padding-top: 170px;
  }
  .company-philosophy__para-message {
    margin-left: 0;
    font-size: 1.6rem;
  }
  .company-philosophy__para-mission {
    font-size: 2.6rem;
  }
  .company-philosophy__logo-mission {
    width: 170px;
    top: 20px;
    left: -120px;
  }
  .company-philosophy__photo-ceo {
    margin-right: 60px;
    margin-bottom: 0;
    width: 400px;
  }
  .company-philosophy__photo-ceo::after {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
  }
}

.company-ceo-textblock {
  margin-right: 16.66667vw;
}

@media screen and (min-width: 1024px) {
  .company-ceo-textblock {
    margin-right: auto;
    width: 580px;
  }
}

.content-space--contact {
  background-color: #f9f9f9;
}

.contact {
  padding: 40px 0;
}

.contact__title-sub {
  margin-bottom: 12px;
  text-align: center;
  font-size: 16px;
  color: #131313;
}

.contact__form br {
  display: none;
}
.contact__form {
  margin: 40px calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
  padding: 40px 0;
  background-color: #fff;
  box-sizing: border-box;
}
.contact__form fieldset {
  margin: 0 0 30px 0;
}

.contact__form label {
  padding: 0 0 10px 0;
  font-size: 1.2rem;
}

.contact__form .mwform-tel-field input[type="text"] + input[type="text"] {
  margin-top: 0;
}

.contact__form .mwform-radio-field {
  display: inline-block;
  margin: 10px 20px 0 0;
}
.contact__form .mwform-radio-field label {
  display: flex;
  align-items: center;
  input[type="radio"] {
    width: 20px;
  }
  .mwform-radio-field-text {
    flex: 1;
  }
}

.contact__form .required {
  margin-left: 10px;
  display: inline-block;
  padding: 3px 5px;
  font-size: 1rem;
  color: #fff;
  background-color: #007d79;
  border-radius: 3px;
}

.contact__form button[name="submitConfirm"],
.contact__form button[name="send"],
.contact__form button[name="submitBack"] {
  display: inline-block;
  padding: 12px 35px;
  border-style: none;
  -webkit-appearance: none;
  font-size: 1.2rem;
  position: relative;
  color: #222;
  background-color: #ccc;
  cursor: pointer;
}

.contact__form button[name="submitConfirm"],
.contact__form button[name="send"] {
  margin: 0 5px;
  background-color: #282828;
  color: #fff;
}

.contact__form button[name="submitConfirm"]::before,
.contact__form button[name="send"]::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .contact {
    padding: 0px 0;
  }
  .contact__title-sub {
    margin-bottom: 18px;
    font-size: 24px;
  }
  .contact__form {
    margin: 60px 5.55556vw 0 5.55556vw;
    padding: 40px 5.55556vw;
    background-color: #fff;
  }
  .contact__form br {
    display: none;
  }
  .contact__form .row {
    margin-top: 30px;
  }
  .contact__form fieldset {
    margin: 30px 0 0 0;
  }

  .contact__form label {
    padding: 0 0 10px 0;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact {
    padding: 0px 0;
  }

  .contact__form {
    width: 970px;
    margin: 0px auto 0 auto;
    padding: 50px 60px;
  }
  .contact__form .fieldset-textarea {
    margin-bottom: 35px;
  }
  .contact__form fieldset {
    margin-top: 0;
    margin-bottom: 35px;
    width: 400px;
  }
  .contact__form fieldset input {
    width: 400px;
  }
  .contact__form label {
    font-size: 1.4rem;
  }
  .contact__form button[name="submitConfirm"],
  .contact__form button[name="send"],
  .contact__form button[name="submitBack"] {
    padding: 15px 70px;
    font-size: 1.3rem;
  }
  .contact__form #contact_message {
    width: 860px;
    height: 200px;
  }
}

.body--column {
  background-color: #eee;
}

.content-space--column {
  background-color: #f9f9f9;
}

@media screen and (min-width: 768px) {
  .home-top {
    height: 55.33854vw;
  }
  .home-top__copy {
    margin: 0;
    position: absolute;
    width: 35.80729vw;
    left: 5.85938vw;
    bottom: 7.8125vw;
  }
  .home-top__scroll {
    font-size: 1.6rem;
    width: 20.83333vw;
    bottom: 0;
  }
  .home-top__list {
    margin: 0;
    padding: 0;
    font-size: 2.4rem;
    line-height: 2.3;
    position: absolute;
    top: 16.92708vw;
    right: 18.22917vw;
  }
}

@media screen and (min-width: 1024px) {
  .home-top {
    height: 740px;
  }
  .home-top__wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1500px;
  }
  .home-top__copy {
    width: 540px;
    left: 100px;
    bottom: 115px;
  }
  .home-top__scroll {
    font-size: 2rem;
    width: 200px;
  }
  .home-top__list {
    font-size: 4.5rem;
    top: 20%;
    right: 275px;
  }
}

@keyframes scroll_anime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.home-mission {
  margin: 65px 0 0 0;
  padding-bottom: 30px;
  background-color: #eee;
}

.home-mission__title {
  margin: 0 5.55556vw 20px 5.55556vw;
  font-size: 2rem;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1;
  transform: translate(0, 0px);
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
}

.home-mission__title.on {
  transform: translate(0, -10px);
  opacity: 1;
}

.home-mission__comment {
  margin: 0 5.55556vw 0 5.55556vw;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 2.6;
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
  transform: translate(0, 10px);
}

.home-mission__comment.on {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .home-mission__title {
    font-size: 3rem;
    transition-delay: 500ms;
  }
  .home-mission__title.on {
    transform: translate(0, -15px);
  }
  .home-mission__comment {
    margin: 0 5.55556vw 0 5.55556vw;
    font-size: 1.8rem;
    transition-delay: 600ms;
  }
}

@media screen and (min-width: 1024px) {
  .home-mission {
    margin: 65px 0 0 0;
    padding-bottom: 80px;
  }
  .home-mission__wrapper {
    margin: 0 40px;
  }
  .home-mission__title {
    margin: 0 0 20px 0;
    font-size: 4rem;
    line-height: 1;
  }
  .home-mission__title.on {
    transform: translate(0, -20px);
  }
  .home-mission__comment {
    margin: 0 5.55556vw 0 0;
    font-size: 2.2rem;
    line-height: 2.6;
  }
}

@media screen and (min-width: 1280px) {
  .home-mission__wrapper {
    margin: 0 auto;
    width: 1200px;
  }
}

@media screen and (min-width: 768px) {
  .home-services__wrapper {
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .home-services__wrapper {
    margin: 0 40px;
  }
}

@media screen and (min-width: 1280px) {
  .home-services__wrapper {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .title-border--services {
    width: 25%;
  }
  .title-border__ja--services::after {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .title-border--services {
    margin-left: 0;
    width: 20%;
  }
}

.service-list {
  margin: 0 5.55556vw;
  display: flex;
  flex-wrap: wrap;
}

.service-list__item {
  margin: 0 0 2px 2px;
  width: calc(50% - 1px);
}

.service-list__item:nth-of-type(2n-1) {
  margin-left: 0;
}

.service-list__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.service-list__photo {
  display: block;
  width: 41.38889vw;
  height: 100%;
  width: 100%;
  position: relative;
  transition: transform 500ms;
}

.service-list__photo img {
  object-fit: cover;
}

.service-list__photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  transition: opacity 500ms;
}

.service-list__title {
  position: absolute;
  top: 50%;
  left: 5.55556vw;
  transform: translate(0, -50%);
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.service-list__title__en {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  display: block;
}

.service-list__title__ja {
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", sans-serif;
  display: block;
}

.service-list__title__arrow {
  width: 4.44444vw;
  height: 4.44444vw;
}

.service-list__title__arrow svg {
  width: 100%;
  height: 100%;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 377;
  }
  99.9%,
  to {
    stroke-dasharray: 377 377;
  }
}

@media screen and (min-width: 768px) {
  .service-list {
    margin-left: 0;
    flex: 1;
  }
  .service-list__item {
    margin: 0 0 2px 2px;
    width: calc(50% - 1px);
  }
  .service-list__item:nth-of-type(2n-1) {
    margin-left: 0;
  }
  .service-list__item:hover .service-list__photo {
    transform: scale(1.1);
  }
  .service-list__item:hover .service-list__photo::after {
    opacity: 0.5;
  }
  .service-list__link {
    display: block;
  }
  .service-list__title__en {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }
  .service-list__title__ja {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .service-list {
    margin: 0;
  }
  .service-list__title__en {
    margin-bottom: 10px;
    font-size: 3.6rem;
  }
  .service-list__title__ja {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .service-list__title__arrow {
    width: 46px;
    height: 46px;
  }
}

@media screen and (min-width: 1280px) {
  .service-list {
    margin: 0 auto;
    width: 960px;
  }
}

@media screen and (min-width: 1024px) {
  .home-works {
    padding: 0 0 80px 0;
  }
}

.works-list {
  margin: 0 5.55556vw;
  display: flex;
  flex-wrap: wrap;
}

.works-list__item {
  margin: 30px 0 0 5.55556vw;
  width: 41.66667vw;
}

.works-list__item:nth-of-type(2n-1) {
  margin-left: 0;
}

.works-list__item:nth-of-type(1) {
  margin-top: 0;
}

.works-list__item:nth-of-type(2) {
  margin-top: 0;
}

.works-list__photo {
  margin-bottom: 10px;
  overflow: hidden;
}

.works-list__photo img {
  transition: transform 500ms;
}

.works-list__category {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.works-list__clientname {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .works-list__link:hover .works-list__photo img {
    transform: scale(1.1);
  }
}

@media screen and (min-width: 1024px) {
  .works-list {
    margin: 0 40px;
    flex-wrap: wrap;
  }
  .works-list__item {
    margin: 30px 0 0 calc(1 / 30 * 100%);
    width: 22.5%;
  }
  .works-list__item:nth-of-type(2n-1) {
    margin-left: calc(1 / 30 * 100%);
  }
  .works-list__item:nth-of-type(4n-3) {
    margin-left: 0;
  }
  .works-list__item:nth-of-type(3) {
    margin-top: 0;
  }
  .works-list__item:nth-of-type(4) {
    margin-top: 0;
  }
  .works-list__category {
    font-size: 1.4rem;
  }
  .works-list__clientname {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .works-list {
    margin: 0 auto;
    width: 1200px;
  }
}

.home-news {
  background-color: #eee;
}

.home-news__wrapper {
  margin: 0 5.55556vw;
  padding: 30px 5.55556vw;
  background-color: #fff;
}

.home-news .title-simple__en--home-news {
  text-align: center;
}

.home-news .title-simple__ja--home-news {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .home-news__wrapper {
    margin: 0 40px;
    padding: 65px 65px 25px 65px;
    box-sizing: border-box;
  }
  .home-news__row {
    display: flex;
    justify-content: space-between;
  }
  .home-news .title-simple {
    width: 265px;
  }
  .home-news .title-simple__en--home-news {
    text-align: left;
  }
  .home-news .title-simple__ja--home-news {
    text-align: left;
  }
  .home-news .title-simple {
    width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .home-news__wrapper {
    margin: 0 auto;
    width: 1200px;
  }
}

.column-list {
  margin: 0 5.55556vw;
}

.column-list__item {
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.column-list__item:first-child {
  padding-top: 0;
  border-top-style: none;
}

.column-list__link {
  display: flex;
  justify-content: space-between;
}

.column-list__photo {
  margin: 0 20px 0 0;
  width: 38.88889vw;
}

.column-list__text {
  flex: 1;
}

.column-list__category {
  color: #007d79;
  font-weight: 700;
  font-size: 1rem;
}

.column-list__title {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.column-list__date {
  padding: 0 0 0 20px;
  font-size: 1rem;
  position: relative;
  color: #666;
}

.column-list__date__icon {
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .column-list__category {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  .column-list__title {
    font-size: 1.4rem;
  }
  .column-list__link:hover .column-list__photo img {
    transform: scale(1.1);
  }
  .column-list__photo {
    overflow: hidden;
  }
  .column-list__photo img {
    transition: transform 400ms;
  }
}

@media screen and (min-width: 1024px) {
  .column-list {
    margin: 0 40px;
    display: flex;
    flex-wrap: wrap;
  }
  .column-list__item {
    width: 50%;
  }
  .column-list__item:nth-of-type(2) {
    padding-top: 0;
    border-style: none;
  }
  .column-list__photo {
    width: 47%;
  }
  .column-list__text {
    width: 47%;
  }
}

@media screen and (min-width: 1280px) {
  .column-list {
    margin: 0 auto;
    width: 1200px;
  }
}

.title-simple__en--home-company {
  text-align: center;
  color: #fff;
}

.title-simple__ja--home-company {
  text-align: center;
  color: #fff;
}

.home-company {
  background-color: #999;
}

.home-company__philosophy {
  margin: 30px 5.55556vw;
  opacity: 0;
  transition: transform 500ms, opacity 500ms;
  transform: translate(0, 10px);
}

.home-company__philosophy.on {
  opacity: 1;
  transform: none;
}

.home-company__comment {
  margin: 30px 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .home-company__philosophy {
    margin: 30px auto;
    width: 400px;
  }
  .home-company__comment {
    margin: 30px 0;
    font-size: 1.4rem;
  }
}

.body--services {
  background-color: #eee;
}

.content-space--services-archive {
  margin: 0;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .content-space--services-archive {
    padding: 50px 0;
  }
}

@media screen and (min-width: 1024px) {
  .content-space--services-archive {
    padding: 75px 0;
  }
}

.content-space--services {
  margin: 0;
  padding: 30px 0 0 0;
}

@media screen and (min-width: 768px) {
  .content-space--services {
    padding: 50px 0 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .content-space--services {
    padding: 75px 0 0 0;
  }
}

.service-archive__intro {
  margin: 0 5.55556vw;
  font-size: 1.2rem;
  line-height: 1.7;
}

.service-archive__block {
  margin: 40px 5.55556vw 60px 5.55556vw;
}

.service-archive__block__title {
  margin: 20px 0;
  padding-bottom: 20px;
  position: relative;
}

.service-archive__block__title__en {
  display: block;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 300;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  position: relative;
  z-index: 2;
}

.service-archive__block__title__ja {
  display: block;
  margin: 10px 0 0 0;
  line-height: 1;
  font-size: 1.3rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.service-archive__block__title::before {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #131313;
  position: absolute;
  left: 0;
  bottom: 0;
}

.service-archive__block__title::after {
  display: block;
  content: "";
  width: 33.33333vw;
  height: 33.33333vw;
  background-image: url(../images/common/logo_mono_bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -20%;
  right: 20px;
}

.service-archive__block__comment {
  position: relative;
  z-index: 2;
}

.service-archive__block__para-button {
  margin: 20px 0 0 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .service-archive__intro {
    font-size: 1.3rem;
    text-align: center;
  }
  .service-archive__block {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .service-archive__block:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  .service-archive__block__photo {
    width: 43%;
  }
  .service-archive__block__text {
    width: 52%;
  }
  .service-archive__block__title {
    margin: 0 0 25px 0;
    padding-bottom: 25px;
  }
  .service-archive__block__title__en {
    font-size: 4.2rem;
  }
  .service-archive__block__title__ja {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
  }
  .service-archive__block__title::after {
    width: 180px;
    height: 180px;
  }
  .service-archive__block__para-button {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .service-archive__intro {
    font-size: 1.4rem;
  }
  .service-archive__block {
    justify-content: space-between;
    margin: 80px 120px 80px 40px;
  }
  .service-archive__block:hover .service-archive__block__title::after {
    opacity: 1;
    transform: none;
  }
  .service-archive__block:nth-of-type(2n) {
    margin: 80px 40px 80px 120px;
  }
  .service-archive__block__title {
    margin: 0 0 30px 0;
    padding-bottom: 30px;
  }
  .service-archive__block__title__en {
    font-size: 4.8rem;
  }
  .service-archive__block__title__ja {
    margin: 14px 0 0 0;
    font-size: 2rem;
  }
  .service-archive__block__title::after {
    right: 40%;
    opacity: 0;
    transform: translate(-20px, -20px);
    transition: opacity 500ms, transform 500ms;
  }
  .service-archive__block__para-button {
    text-align: left;
  }
}

@media screen and (min-width: 1280px) {
  .service-archive__block-wrapper {
    margin: 0 auto;
    width: 1100px;
  }
  .service-archive__block {
    margin: 100px auto 100px 0;
    width: 1035px;
  }
  .service-archive__block:nth-of-type(2n) {
    margin: 100px 0 100px auto;
  }
  .service-archive__block__title {
    margin: 0 0 30px 0;
    padding-bottom: 30px;
  }
  .service-archive__block__title__en {
    font-size: 4.8rem;
  }
  .service-archive__block__title__ja {
    margin: 14px 0 0 0;
    font-size: 2rem;
  }
  .service-archive__block__para-button {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .service-detail__title {
    margin: 0 5.55556vw 60px 5.55556vw;
  }
  .service-detail__title__en {
    margin-bottom: 20px;
    font-size: 5.2rem;
    text-align: center;
  }
  .service-detail__title__ja {
    font-size: 1.8rem;
    text-align: center;
  }
  .service-detail__title-2nd {
    margin-bottom: 30px;
    font-size: 2.3rem;
  }
  .service-detail__title-2nd__en {
    font-size: 3.3rem;
  }
  .service-detail__title-2nd__ja {
    font-size: 1.5rem;
  }
  .service-detail__title-3rd {
    font-size: 1.8rem;
  }
  .service-detail__title-4th {
    font-size: 1.7rem;
  }
  .service-detail__title-4th--center {
    text-align: center;
  }
  .service-detail__main-copy {
    margin-bottom: 50px;
    font-size: 2rem;
    text-align: center;
  }
  .service-detail__intro {
    display: flex;
    padding-bottom: 3.25521vw;
  }
  .service-detail__intro__photo {
    margin: 0 5% 0 0;
    width: 45%;
  }
  .service-detail__intro__text {
    flex: 1;
  }
  .service-detail__unit {
    padding: 4.55729vw 0;
  }
  .service-detail__unit--works {
    margin: 0 0 4.55729vw 0;
    padding-top: 6.51042vw;
  }
  .service-detail__row {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 45px;
  }
  .service-detail__row:nth-of-type(2n) {
    flex-direction: row;
  }
  .service-detail__row__text {
    width: 65%;
  }
  .service-detail__row__text--square {
    width: 70%;
  }
  .service-detail__row__photo {
    margin: 0;
    width: 30%;
  }
  .service-detail__row__photo--square {
    width: 25%;
  }
  .service-detail__check-list {
    margin: 30px 5.55556vw;
  }
  .service-detail__check-list__item {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 1024px) {
  .service-detail__title {
    margin: 0 40px 75px 40px;
  }
  .service-detail__title__en {
    margin-bottom: 30px;
    font-size: 6.4rem;
  }
  .service-detail__title__ja {
    font-size: 2rem;
  }
  .service-detail__title-2nd {
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .service-detail__title-2nd__en {
    font-size: 3.6rem;
  }
  .service-detail__title-2nd__ja {
    font-size: 1.6rem;
  }
  .service-detail__title-3rd {
    margin-bottom: -0.5em;
    font-size: 2rem;
  }
  .service-detail__title-4th {
    font-size: 1.7rem;
  }
  .service-detail__title-4th--center {
    text-align: center;
  }
  .service-detail__main-copy {
    margin-bottom: 75px;
    font-size: 2.6rem;
  }
  .service-detail__intro {
    margin: 0 40px;
    padding-bottom: 40px;
  }
  .service-detail__intro__photo {
    margin: 0 50px 0 0;
  }
  .service-detail__unit {
    margin: 0 auto;
    padding: 50px 0;
    width: 970px;
  }
  .service-detail__unit--works {
    margin: 50px auto;
    padding-top: 80px;
    width: 100%;
  }
  .service-detail__row {
    margin: 50px auto 0 auto;
    width: 970px;
  }
  .service-detail__row--square {
    width: 870px;
  }
  .service-detail__narrow {
    margin: 0 auto;
    width: 740px;
  }
  .service-detail__check-list {
    margin: 30px auto;
  }
  .service-detail__check-list__item {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .service-detail__intro {
    margin: 0 auto;
    width: 1200px;
  }
}

.unit-diagnosis {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.unit-diagnosis__para {
  text-align: center;
  font-weight: 700;
}

.unit-diagnosis__button {
  padding: 12px 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  font-size: 1.4rem;
  position: relative;
  color: #fff;
  background-color: #007d79;
  position: relative;
}

.unit-diagnosis__button__svg {
  margin: 0 10px 0 0;
  width: 34px;
  height: 34px;
  display: inline-block;
  vertical-align: bottom;
}

@media screen and (min-width: 768px) {
  .unit-diagnosis {
    padding: 50px 0;
  }
  .unit-diagnosis__button {
    padding: 12px 70px;
    font-size: 1.4rem;
  }
  .unit-diagnosis__button__svg {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .unit-diagnosis {
    padding: 75px 0;
  }
  .unit-diagnosis__button {
    font-size: 1.6rem;
  }
}

.inquiry {
  padding-top: 40px;

  @media screen and (min-width: 768px) {
    padding-top: 60px;
  }
  @media screen and (min-width: 1024px) {
    padding-top: 80px;
  }
}

.list-contact {
  display: grid;
  gap: 20px;
  margin: 0;
  .item {
  }
  .link {
    display: block;
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      background-color: color-mix(in srgb, #000 20%, transparent);
      z-index: 2;
      transition: background-color 500ms;
    }

    &:hover {
      &::before {
        background-color: color-mix(in srgb, #000 0%, transparent);
      }

      .photo {
        img {
          scale: 1.2;
        }
      }
    }
  }
  .photo {
    position: relative;
    z-index: 1;
    overflow: hidden;
    img {
      object-fit: cover;
      aspect-ratio: 16/9;
      transition: scale 800ms;
    }
  }

  .title {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px color-mix(in srgb, #000 80%, transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 3;

    img {
      width: 20%;
    }
  }
  @media screen and (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  @media screen and (min-width: 1024px) {
    .title {
      font-size: 20px;
    }
  }
}
