@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-text: #333;
  --color-main: #d6231f;
  --color-pink: #edcdcd;
  --color-lightpink: #efeaea;
  --color-blue: #123d83;
  --color-lightblue: #d6dfef;
  --color-lightgray: #f8f8f7;
  /*

  // <weight>: Use a value from 100 to 900
  // <uniquifier>: Use a unique and descriptive class name

  .montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

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

  .zen-kaku-gothic-new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .zen-kaku-gothic-new-medium {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .zen-kaku-gothic-new-bold {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .zen-kaku-gothic-new-black {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  .cabin-<uniquifier> {
    font-family: "Cabin", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }

  .commissioner-<uniquifier> {
    font-family: "Commissioner", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "slnt" 0,
      "FLAR" 0,
      "VOLM" 0;
    }

    // <weight>: Use a value from 100 to 900
  // <uniquifier>: Use a unique and descriptive class name

  .overpass-<uniquifier> {
    font-family: "Overpass", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  .epilogue-<uniquifier> {
    font-family: "Epilogue", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

    */
  --font-sans: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Commissioner", sans-serif;
  --font-cabin: "cabin", sans-serif;
  --font-decoration: "Gantari", sans-serif;
  --fontshadow: 1px 0 var(--color-main), -1px 0 var(--color-main),
    0 1px var(--color-main), 0 -1px var(--color-main), 1px 1px var(--color-main),
    -1px -1px var(--color-main), 1px -1px var(--color-main),
    -1px 1px var(--color-main);
  --transition-duration: 800ms;
  --base: 375;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --base: 768;
    --radius: 16px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --base: 1366;
  }
}

html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-sans);
  font-feature-settings: "palt";
}
body.overlayed {
  overflow: hidden;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  body {
    scroll-padding-top: min(130px, calc(130 / var(--base) * 100vw));
  }
  body.overlayed {
    overflow: visible;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.header.open .content {
  visibility: visible;
  pointer-events: auto;
  translate: 0 0;
  opacity: 1;
  overflow-y: scroll;
}
.header .logo {
  margin: min(20px, calc(20 / var(--base) * 100vw)) min(15px, calc(15 / var(--base) * 100vw));
  text-align: left;
  width: min(40px, calc(40 / var(--base) * 100vw));
  position: relative;
  z-index: 2;
}
.header .content {
  padding: calc(80 / var(--base) * 100vw) calc(50 / var(--base) * 100vw);
  background-color: var(--color-main);
  position: fixed;
  inset: 0 0 0 0;
  z-index: 10;
  pointer-events: none;
  translate: 0 calc(-300 / var(--base) * 100vw);
  opacity: 0;
  z-index: 1;
  transition: opacity var(--duration-transition), translate var(--duration-transition);
}
.header .list-menu {
  margin: 0 auto;
  font-weight: 600;
  font-size: calc(16 / var(--base) * 100vw);
}
.header .list-menu li {
  text-align: left;
  border-bottom: 1px solid #fff;
}
.header .list-menu li.has-sub-categories button,
.header .list-menu li.has-sub-categories a {
  position: relative;
}
.header .list-menu li.has-sub-categories button .mark,
.header .list-menu li.has-sub-categories a .mark {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
  inset: 50% 0 auto auto;
  translate: 0 -50%;
  transition: background-color var(--duration-transition);
}
.header .list-menu li.has-sub-categories button .mark::before, .header .list-menu li.has-sub-categories button .mark::after,
.header .list-menu li.has-sub-categories a .mark::before,
.header .list-menu li.has-sub-categories a .mark::after {
  display: block;
  content: "";
  width: 8px;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  transition: background-color var(--duration-transition), rotate var(--duration-transition);
}
.header .list-menu li.has-sub-categories button .mark::after,
.header .list-menu li.has-sub-categories a .mark::after {
  rotate: 90deg;
}
.header .list-menu li.has-sub-categories button.open .mark,
.header .list-menu li.has-sub-categories a.open .mark {
  background-color: var(--color-text);
}
.header .list-menu li.has-sub-categories button.open .mark::before,
.header .list-menu li.has-sub-categories a.open .mark::before {
  background-color: #fff;
  rotate: 180deg;
}
.header .list-menu li.has-sub-categories button.open .mark::after,
.header .list-menu li.has-sub-categories a.open .mark::after {
  background-color: #fff;
  rotate: 0deg;
}
.header .list-menu button,
.header .list-menu a {
  display: block;
  padding: calc(24 / var(--base) * 100vw) 0;
  width: 100%;
  color: #fff;
  border-style: none;
  background-color: transparent;
  text-decoration: none;
  transition: color var(--duration-transition);
}
.header .list-menu-sub {
  margin-top: 0;
  padding: 0;
  font-size: calc(14 / var(--base) * 100vw);
  transition: margin var(--duration-transition), padding var(--duration-transition);
}
.header .list-menu-sub li {
  border-bottom-style: none;
  opacity: 0;
  line-height: 0;
  transition: opacity var(--duration-transition), line-height var(--duration-transition);
}
.header .list-menu-sub a {
  padding: 0 0;
  transition: padding var(--duration-transition);
}
.header .list-menu-sub.open {
  margin-top: calc(-12 / var(--base) * 100vw);
  padding: 0 0 calc(15 / var(--base) * 100vw) 0;
}
.header .list-menu-sub.open li {
  opacity: 1;
  line-height: 1.5;
}
.header .list-menu-sub.open a {
  padding: calc(9 / var(--base) * 100vw) 0;
}
.header .menu-contact-xs {
  margin-top: calc(30 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 700;
}
.header .menu-contact-xs a {
  display: flex;
  padding: calc(10 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  gap: calc(10 / var(--base) * 100vw);
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--color-main);
  border-radius: calc(40 / var(--base) * 100vw);
  text-decoration: none;
}
.header .menu-contact-xs a::after {
  display: block;
  content: "";
  width: calc(16 / var(--base) * 100vw);
  height: calc(16 / var(--base) * 100vw);
  background-image: url(../images/common/arrow-mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header .information-xs {
  display: grid;
  grid-template-columns: calc(66 / var(--base) * 100vw) 1fr;
  margin: calc(50 / var(--base) * 100vw) 0 0 0;
  gap: calc(20 / var(--base) * 100vw);
  align-items: start;
}
.header .information-xs .logo {
  margin: 0;
  width: min(66px, calc(66 / var(--base) * 100vw));
}
.header .information-xs .information {
  grid-column: 2;
}
.header .information-xs .information li {
  font-size: calc(13 / var(--base) * 100vw);
  color: #fff;
}
.header .information-xs .information li a {
  color: #fff;
}
.header .information-xs .information li.address {
  margin-bottom: calc(20 / var(--base) * 100vw);
}
.header .menu-contact {
  margin: 0;
  position: fixed;
  inset: calc(20 / var(--base) * 100vw) calc(60 / var(--base) * 100vw) auto auto;
  z-index: 10;
  --radius: 40px;
  border: 1px solid var(--color-main);
  border-radius: var(--radius);
}
.header .menu-contact a {
  display: block;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  height: calc(40 / var(--base) * 100vw);
  box-sizing: content-box;
  position: relative;
}
.header .menu-contact a .text-fixed,
.header .menu-contact a .text-hidden {
  display: flex;
  padding: 0 calc(20 / var(--base) * 100vw);
  gap: calc(5 / var(--base) * 100vw);
  align-items: center;
  justify-content: center;
  background-color: var(--color-main);
  height: 100%;
  width: 100%;
  color: #fff;
  border-radius: var(--radius);
  font-size: calc(13 / var(--base) * 100vw);
  font-weight: 700;
  position: relative;
}
.header .menu-contact a .text-fixed::after,
.header .menu-contact a .text-hidden::after {
  display: block;
  content: "";
  width: calc(16 / var(--base) * 100vw);
  height: calc(16 / var(--base) * 100vw);
  background-image: url(../images/common/arrow-mark.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header .menu-contact a .text-hidden {
  position: absolute;
  inset: 0 0 0 0;
  background-color: #fff;
  color: var(--color-main);
  clip-path: inset(0 100% 0 0 round var(--radius));
  transition: clip-path var(--duration-transition);
}
.header .menu-contact a .text-hidden::after {
  background-image: url(../images/common/arrow-mark-red.svg);
}
@media screen and (min-width: 768px) {
  .header .information-xs {
    margin: calc(50 / var(--base) * 100vw) auto 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    display: flex;
    margin: 0 auto;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    width: min(1286px, calc(1286 / var(--base) * 100vw));
    height: min(130px, calc(130 / var(--base) * 100vw));
    background-color: transparent;
    overflow: visible;
    gap: min(20px, calc(20 / var(--base) * 100vw));
  }
  .header .logo {
    margin: 0;
    width: min(70px, calc(70 / var(--base) * 100vw));
  }
  .header .content {
    margin: 0 0 0 auto;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    position: static;
    translate: 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    width: auto;
    overflow: visible;
  }
  .header .content.open .content {
    overflow: visible;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: min(70px, calc(70 / var(--base) * 100vw));
    padding: 0 min(50px, calc(50 / var(--base) * 100vw));
    gap: min(46px, calc(46 / var(--base) * 100vw));
    border: 1px solid var(--color-main);
    border-radius: 70px;
    background-color: #fff;
  }
  .header .list-menu li {
    margin: 0 0 0 0;
    padding: 0;
    border-style: none;
    position: relative;
    font-size: 13px;
  }
  .header .list-menu li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .header .list-menu li:not(:last-of-type)::before {
    content: "";
    width: 1px;
    height: 13px;
    background-color: currentColor;
    position: absolute;
    inset: 50% max(-23px, -23 / var(--base) * 100vw) auto auto;
    translate: 0 -50%;
  }
  .header .list-menu li.has-sub-categories > button,
  .header .list-menu li.has-sub-categories > a {
    padding-right: min(26px, calc(26 / var(--base) * 100vw));
  }
  .header .list-menu li.has-sub-categories > button .mark,
  .header .list-menu li.has-sub-categories > a .mark {
    width: 16px;
    height: 16px;
    background-color: var(--color-lightpink);
  }
  .header .list-menu li.has-sub-categories > button .mark::before, .header .list-menu li.has-sub-categories > button .mark::after,
  .header .list-menu li.has-sub-categories > a .mark::before,
  .header .list-menu li.has-sub-categories > a .mark::after {
    width: 6px;
  }
  .header .list-menu li button,
  .header .list-menu li a {
    padding: min(5px, calc(5 / var(--base) * 100vw)) 0;
    color: var(--color-text);
    width: auto;
  }
  .header .list-menu li button:hover,
  .header .list-menu li a:hover {
    color: var(--color-main);
  }
  .header .list-menu-sub {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
    padding: min(30px, calc(30 / var(--base) * 100vw)) min(32px, calc(32 / var(--base) * 100vw));
    position: absolute;
    inset: min(65px, calc(65 / var(--base) * 100vw)) auto auto 0;
    border: 1px solid var(--color-main);
    background-color: #fff;
    border-radius: 8px;
    transition: opacity var(--duration-transition);
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
  }
  .header .list-menu-sub li {
    transition: none;
    font-size: 12px;
    opacity: 1;
    line-height: 1.5;
  }
  .header .list-menu-sub li::before {
    display: none;
  }
  .header .list-menu-sub li a {
    padding: 0 0;
  }
  .header .list-menu-sub.open {
    margin-top: 0;
    padding: min(30px, calc(30 / var(--base) * 100vw)) min(32px, calc(32 / var(--base) * 100vw));
    opacity: 1;
    pointer-events: all;
  }
  .header .list-menu-sub.open li {
    opacity: 1;
    line-height: 1.5;
  }
  .header .list-menu-sub.open li a {
    padding: 0 0;
  }
  .header .menu-contact-xs {
    display: none;
  }
  .header .information-xs {
    display: none;
  }
  .header .menu-contact {
    position: static;
  }
  .header .menu-contact a {
    height: min(70px, calc(70 / var(--base) * 100vw));
    width: min(230px, calc(230 / var(--base) * 100vw));
  }
  .header .menu-contact a .text-fixed,
  .header .menu-contact a .text-hidden {
    padding: 0 0;
    gap: min(15px, calc(15 / var(--base) * 100vw));
    font-size: 16px;
  }
  .header .menu-contact a .text-fixed::after,
  .header .menu-contact a .text-hidden::after {
    width: 20px;
    height: 20px;
  }
  .header .menu-contact a:hover .text-hidden {
    clip-path: inset(0 0 0 0 round var(--radius));
  }
}

.menu-sw {
  margin: 0;
  position: fixed;
  inset: calc(20 / var(--base) * 100vw) calc(15 / var(--base) * 100vw) auto auto;
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  z-index: 10;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border: 1px solid var(--color-main);
  background-color: #fff;
  border-radius: calc(20 / var(--base) * 100vw);
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
}
.menu-sw span {
  position: absolute;
  width: calc(12 / var(--base) * 100vw);
  height: calc(12 / var(--base) * 100vw);
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  margin: calc(-1 / var(--base) * 100vw) 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, calc(-4 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, calc(4 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(30deg);
}
.menu-sw.open span i {
  transform: rotate(-30deg);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(-30deg);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.common-header {
  position: relative;
  height: calc(270 / var(--base) * 100vw);
  overflow: hidden;
}
.common-header .bg {
  position: relative;
  height: 100%;
}
.common-header .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common-header .bg::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background-color: rgba(51, 51, 51, 0.7);
}
.common-header .space-text {
  position: absolute;
  inset: auto 0 calc(24 / var(--base) * 100vw) 0;
  z-index: 2;
}
.common-header .title-en {
  font-family: var(--font-decoration);
  font-weight: 400;
  font-size: calc(50 / var(--base) * 100vw);
  font-style: italic;
  color: var(--color-pink);
  opacity: 0.3;
  line-height: 0.8;
  position: absolute;
  bottom: calc(60 / var(--base) * 100vw);
}
.common-header .title-en .align-left {
  display: block;
  white-space: nowrap;
  line-height: 0.8;
}
.common-header .title-en .align-right {
  display: block;
  white-space: nowrap;
  text-align: right;
  line-height: 0.8;
}
.common-header .title-ja {
  margin: 0 calc(10 / var(--base) * 100vw);
  font-size: calc(24 / var(--base) * 100vw);
  font-weight: 700;
  color: #fff;
}
.common-header.lower {
  height: calc(240 / var(--base) * 100vw);
}
.common-header.lower .space-text {
  inset: auto 0 calc(24 / var(--base) * 100vw) calc(14 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .common-header {
    height: calc(224 / var(--base) * 100vw);
  }
  .common-header .bg {
    position: relative;
  }
  .common-header .space-text {
    inset: auto 0 calc(30 / var(--base) * 100vw) 0;
  }
  .common-header .title-en {
    font-size: min(66px, calc(66 / var(--base) * 100vw));
    bottom: min(10px, calc(10 / var(--base) * 100vw));
    width: 100%;
  }
  .common-header .title-en .align-right {
    margin: 0 min(20px, calc(20 / var(--base) * 100vw)) 0 auto;
  }
  .common-header .title-ja {
    font-size: calc(24 / var(--base) * 100vw);
  }
  .common-header.lower .title-en {
    bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .common-header.lower .title-ja {
    font-size: min(32px, calc(32 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .common-header {
    height: min(400px, 400 / 1206 * 100vw);
  }
  .common-header .space-text {
    width: min(100%, 1366px);
    inset: auto auto min(53px, 53 / 1206 * 100vw) 50%;
    translate: -50% 0;
  }
  .common-header .title-en {
    bottom: min(20px, 20 / 1366 * 100vw);
    font-size: min(118px, 118 / 1366 * 100vw);
  }
  .common-header .title-ja {
    margin-left: min(40px, 40 / 1366 * 100vw);
    font-size: min(42px, 42 / 1366 * 100vw);
  }
  .common-header.pharmacies .title-en {
    font-size: min(105px, 105 / 1366 * 100vw);
    bottom: min(5px, calc(5 / var(--base) * 100vw));
  }
  .common-header.lower {
    height: min(320px, 320 / 1206 * 100vw);
  }
  .common-header.lower .space-text {
    inset: auto auto min(53px, 53 / 1206 * 100vw) 50%;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .common-header.lower .title-en {
    bottom: min(50px, 50 / 1366 * 100vw);
    font-size: min(80px, 80 / 1366 * 100vw);
  }
  .common-header.lower .title-ja {
    margin-left: 0;
  }
}

.common-cta a {
  display: block;
  background-image: url(../images/common/contact-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-decoration: none;
}
.common-cta a::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background-color: rgba(51, 51, 51, 0.6);
  z-index: 2;
  transition: opacity var(--duration-transition);
}
.common-cta a:hover::before {
  opacity: 0;
}
.common-cta .content {
  position: relative;
  z-index: 2;
  padding: calc(104 / var(--base) * 100vw) 0 calc(80 / var(--base) * 100vw) 0;
}
.common-cta .title-en {
  margin: 0;
  font-family: var(--font-decoration);
  font-size: calc(51 / var(--base) * 100vw);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  -webkit-text-stroke: 1px var(--color-main);
  line-height: 1;
  position: absolute;
  inset: 0 auto auto calc(19 / var(--base) * 100vw);
  translate: 0 -50%;
}
.common-cta .title-ja {
  margin-bottom: calc(22 / var(--base) * 100vw);
  color: #fff;
  text-align: center;
  font-size: calc(26 / var(--base) * 100vw);
  font-weight: 700;
}
.common-cta p {
  margin: 0 calc(65 / var(--base) * 100vw) 0 calc(50 / var(--base) * 100vw);
  color: #fff;
}
.common-cta .para-button {
  margin-top: calc(28 / var(--base) * 100vw);
}
.common-cta .para-button span {
  display: block;
  margin: 0 auto;
  padding-top: calc(66 / var(--base) * 100vw);
  width: calc(170 / var(--base) * 100vw);
  height: calc(170 / var(--base) * 100vw);
  border-radius: calc(85 / var(--base) * 100vw);
  border: 1px solid #fff;
  text-decoration: none;
  position: relative;
  font-size: calc(16 / var(--base) * 100vw);
  color: #fff;
  text-align: center;
}
.common-cta .para-button span::before, .common-cta .para-button span::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  inset: auto auto calc(32 / var(--base) * 100vw) 50%;
  translate: -50% 0;
}
.common-cta .para-button span::after {
  width: 12px;
  height: 12px;
  background-color: var(--color-text);
  border-radius: 0;
  bottom: calc(40 / var(--base) * 100vw);
  -webkit-mask-image: url(../images/common/cta-arrow.svg);
          mask-image: url(../images/common/cta-arrow.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
}
@media screen and (min-width: 768px) {
  .common-cta a {
    background-image: url(../images/common/contact-bg-lg.webp);
    background-position: center bottom;
  }
  .common-cta .content {
    display: grid;
    align-items: end;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    padding: min(132px, 132 / 1206 * 100vw) min(80px, 80 / 1206 * 100vw) min(123px, 123 / 1206 * 100vw) min(80px, 80 / 1206 * 100vw);
  }
  .common-cta .title-en {
    font-size: min(112px, 112 / 1206 * 100vw);
    inset: 0 auto auto min(53px, 53 / 1206 * 100vw);
    grid-column: auto;
    grid-row: auto;
  }
  .common-cta .title-ja {
    margin-bottom: calc(22 / var(--base) * 100vw);
    text-align: left;
    font-size: min(36px, 36 / 1206 * 100vw);
    grid-column: 1;
    grid-row: 1;
  }
  .common-cta p {
    margin: 0;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }
  .common-cta .para-button {
    margin-top: 0;
    grid-column: 2;
    grid-row: 1/3;
    align-self: end;
  }
  .common-cta .para-button span {
    margin: 0 0 0 auto;
    padding-top: min(68px, 68 / 1206 * 100vw);
    width: min(200px, 200 / 1206 * 100vw);
    height: min(200px, 200 / 1206 * 100vw);
    border-radius: 100px;
    font-size: min(20px, 20 / 1206 * 100vw);
  }
  .common-cta .para-button span::before, .common-cta .para-button span::after {
    width: min(30px, 30 / 1206 * 100vw);
    height: min(30px, 30 / 1206 * 100vw);
    inset: auto auto min(41px, 41 / 1206 * 100vw) 50%;
  }
  .common-cta .para-button span::after {
    width: min(12px, 12 / 1206 * 100vw);
    height: min(12px, 12 / 1206 * 100vw);
    bottom: min(49px, 49 / 1206 * 100vw);
  }
}
@media screen and (min-width: 1366px) {
  .common-cta .content {
    margin: 0 auto;
    width: 1366px;
    padding-left: 160px;
    padding-right: 160px;
  }
}

.footer {
  background-color: var(--color-main);
  padding: calc(80 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) calc(50 / var(--base) * 100vw);
}
.footer .content {
  display: grid;
  grid-template-columns: calc(60 / var(--base) * 100vw) 1fr;
  gap: 0 calc(20 / var(--base) * 100vw);
}
.footer .logo {
  width: min(60px, calc(60 / var(--base) * 100vw));
}
.footer .information {
  grid-column: 2;
}
.footer .information li {
  font-size: calc(13 / var(--base) * 100vw);
  color: #fff;
}
.footer .information li a {
  color: #fff;
}
.footer .information li.address {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.footer .menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: calc(38 / var(--base) * 100vw);
  margin-bottom: calc(20 / var(--base) * 100vw);
  padding: calc(32 / var(--base) * 100vw) 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  grid-column: 1/3;
}
.footer .list-menu {
  font-size: calc(13 / var(--base) * 100vw);
  font-weight: 700;
}
.footer .list-menu li:not(:first-of-type) {
  margin-top: calc(22 / var(--base) * 100vw);
}
.footer .list-menu a {
  text-decoration: none;
  color: #fff;
}
.footer .list-menu .list-menu-sub {
  margin-top: calc(4 / var(--base) * 100vw);
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 400;
}
.footer .list-menu .list-menu-sub li {
  margin-top: calc(3 / var(--base) * 100vw);
}
.footer .rights {
  grid-column: 1/3;
  text-align: center;
  font-size: calc(10 / var(--base) * 100vw);
  font-family: var(--font-en);
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: min(102px, calc(102 / var(--base) * 100vw)) 0 min(46px, calc(46 / var(--base) * 100vw)) 0;
  }
  .footer .content {
    margin: 0 auto;
    width: min(1050px, calc(1050 / var(--base) * 100vw));
    grid-template-columns: min(60px, calc(60 / var(--base) * 100vw)) auto 1fr;
    align-items: start;
  }
  .footer .information li {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .footer .information li.address {
    margin-bottom: min(10px, calc(10 / var(--base) * 100vw));
  }
  .footer .menus {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
    padding: 0;
    display: flex;
    gap: min(60px, calc(60 / var(--base) * 100vw));
    border-style: none;
  }
  .footer .list-menu {
    display: flex;
    gap: min(60px, calc(60 / var(--base) * 100vw));
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .footer .list-menu li:not(:first-of-type) {
    margin: 0;
  }
  .footer .list-menu .list-menu-sub {
    margin-top: min(5px, calc(5 / var(--base) * 100vw));
    font-size: min(12px, calc(12 / var(--base) * 100vw));
  }
  .footer .list-menu .list-menu-sub li {
    margin-top: min(5px, calc(5 / var(--base) * 100vw));
  }
  .footer .rights {
    grid-column: 1/4;
    margin-top: min(38px, calc(38 / var(--base) * 100vw));
    padding-top: min(20px, calc(20 / var(--base) * 100vw));
    border-top: 1px solid #fff;
    font-size: calc(10 / var(--base) * 100vw);
    width: 100%;
  }
}

@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;
  }
}

.b2t {
  transition: translate var(--duration-transition), opacity var(--duration-transition);
  translate: 0 20px;
  opacity: 0;
}
.b2t.open {
  translate: 0 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .b2t {
    translate: 0 40px;
  }
}

p {
  margin-bottom: 1em;
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 2;
  font-weight: 400;
  color: var(--color-text);
  text-align: justify;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 16px;
  }
}

.post .content h2,
.post .content h3,
.post .content h4 {
  text-wrap: auto;
}
.post .content h2 {
  margin-top: calc(25 / var(--base) * 100vw);
  margin-bottom: calc(11 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
}
.post .content h3 {
  margin-top: calc(18 / var(--base) * 100vw);
  margin-bottom: calc(12 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
}
.post .content h4 {
  margin-top: calc(18 / var(--base) * 100vw);
  margin-bottom: calc(12 / var(--base) * 100vw);
  padding: 0.4em;
  border-left: 5px solid var(--color-main);
  font-size: calc(14 / var(--base) * 100vw);
}
@media screen and (min-width: 1024px) {
  .post .content h2 {
    margin-top: 26px;
    margin-bottom: 16px;
    font-size: 24px;
  }
  .post .content h3 {
    margin-top: 27px;
    margin-bottom: 19px;
    font-size: 20px;
  }
  .post .content h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 16px;
  }
}

figure {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
}

/* section */
@media screen and (min-width: 1024px) {
  .layout {
    display: grid;
    margin: min(110px, 110 / 1206 * 100vw) auto 40px auto;
    grid-template-columns: min(717px, 717 / 1206 * 100vw) 1fr;
    width: min(1050px, 1050 / 1206 * 100vw);
    gap: 0 min(52px, 52 / 1206 * 100vw);
  }
}

.content-main {
  padding: calc(40 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
}
@media screen and (min-width: 1024px) {
  .content-main {
    padding: 0;
  }
}

.entry-aside {
  padding: calc(20 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
}
@media screen and (min-width: 1024px) {
  .entry-aside {
    padding: 0;
  }
}

.aside-list {
  margin-bottom: calc(40 / var(--base) * 100vw);
  padding: calc(30 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
}
.aside-list dt {
  margin-bottom: calc(15 / var(--base) * 100vw);
  font-family: var(--font-decoration);
  font-size: calc(32 / var(--base) * 100vw);
  font-style: italic;
  line-height: 1.2;
  font-weight: 900;
}
.aside-list.category {
  background-color: var(--color-pink);
}
.aside-list.category dt {
  color: #fff;
}
.aside-list.recently {
  background-color: var(--color-lightpink);
}
.aside-list.recently dt {
  color: var(--color-pink);
}
.aside-list .category-item:not(:last-of-type) {
  margin-bottom: min(13px, calc(13 / var(--base) * 100vw));
}
.aside-list .category-item a {
  display: block;
  padding: min(4px, calc(4 / var(--base) * 100vw)) min(30px, calc(30 / var(--base) * 100vw));
  color: var(--color-main);
  background-color: #fff;
  font-size: min(15px, calc(15 / var(--base) * 100vw));
  font-weight: 700;
  border-radius: 40px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  transition: color var(--duration-transition), background-color var(--duration-transition);
}
.aside-list .category-item a.on, .aside-list .category-item a:hover {
  color: #fff;
  background-color: var(--color-main);
}
.aside-list .news-item {
  display: grid;
  padding: min(20px, calc(20 / var(--base) * 100vw)) 0;
  grid-template-columns: auto 1fr;
  gap: 0 min(8px, calc(8 / var(--base) * 100vw));
  align-items: center;
}
.aside-list .news-item:not(:last-of-type) {
  border-bottom: 1px solid var(--color-pink);
}
.aside-list .news-item .date {
  margin-bottom: 2px;
  grid-column: 1;
  font-family: var(--font-en);
  color: var(--color-blue);
  font-size: calc(12 / var(--base) * 100vw);
}
.aside-list .news-item .category {
  margin-bottom: 2px;
  grid-column: 2;
  grid-row: 1;
}
.aside-list .news-item .category a {
  display: block;
  padding: calc(2 / var(--base) * 100vw) calc(8 / var(--base) * 100vw);
  color: var(--color-main);
  background-color: #fff;
  font-size: calc(10 / var(--base) * 100vw);
  font-weight: 700;
  text-decoration: none;
  border-radius: calc(30 / var(--base) * 100vw);
  width: -moz-fit-content;
  width: fit-content;
}
.aside-list .news-item .title {
  grid-column: 1/3;
  grid-row: 2;
  font-size: calc(14 / var(--base) * 100vw);
}
.aside-list .news-item .title a {
  display: block;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .aside-list .news-item .date {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .aside-list .news-item .category a {
    padding: min(6px, calc(6 / var(--base) * 100vw)) min(10px, calc(10 / var(--base) * 100vw));
    font-size: min(10px, calc(10 / var(--base) * 100vw));
    border-radius: 40px;
  }
  .aside-list .news-item .title {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
}

/* youtube */
#overlay {
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  min-height: 700px;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--duration-transition);
}

.video-content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 51;
}
.video-content .stage {
  width: 100%;
  padding: 50px 10px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-content .inner {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.video-content .video-close {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: 0;
  white-space: nowrap;
}
.video-content .video-close button {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  border-style: none;
  background-color: transparent;
  white-space: nowrap;
}
.video-content .video-close button::before, .video-content .video-close button::after {
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.video-content .video-close button::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.video-content .video-close button::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-content .video {
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .video-content .video-close {
    width: 50px;
    height: 50px;
    top: -60px;
  }
}
@media screen and (min-width: 768px) {
  .video-content .stage {
    max-width: 130vh;
    width: 100%;
  }
  .video-content .video-close {
    width: 60px;
    height: 60px;
    top: -70px;
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 0 calc(55 / var(--base) * 100vw) 0;
}
.title-mid .en {
  display: block;
  padding: 0 0 0 calc(26 / var(--base) * 100vw);
  margin-bottom: calc(12 / var(--base) * 100vw);
  font-size: calc(32 / var(--base) * 100vw);
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  position: relative;
}
.title-mid .en::before {
  display: block;
  content: "";
  width: calc(16 / var(--base) * 100vw);
  height: calc(16 / var(--base) * 100vw);
  background-image: url(../images/common/title-mark.svg);
  background-size: cover;
  position: absolute;
  inset: calc(10 / var(--base) * 100vw) auto auto 0;
}
.title-mid .ja {
  display: block;
  padding: 0 0 0 calc(26 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-blue);
}
@media screen and (min-width: 1024px) {
  .title-mid {
    margin: 0 0 min(64px, calc(64 / var(--base) * 100vw)) 0;
  }
  .title-mid .en {
    padding: 0 0 0 min(40px, 40 / 1206 * 100vw);
    margin-bottom: min(30px, 30 / 1206 * 100vw);
    font-size: min(48px, 48 / 1206 * 100vw);
  }
  .title-mid .en::before {
    width: min(22px, 22 / 1206 * 100vw);
    height: min(22px, 22 / 1206 * 100vw);
    inset: min(16px, 16 / 1206 * 100vw) auto auto 0;
  }
  .title-mid .ja {
    display: block;
    padding: 0 0 0 min(40px, 40 / 1206 * 100vw);
    font-size: min(20px, 20 / 1206 * 100vw);
  }
}

.title-bold {
  margin: 0 0 calc(19 / var(--base) * 100vw) 0;
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .title-bold {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
}

.title-outline {
  margin-bottom: calc(25 / var(--base) * 100vw);
}
.title-outline .en {
  display: block;
  line-height: 1.2;
  font-family: var(--font-decoration);
  font-style: italic;
  font-size: calc(34 / var(--base) * 100vw);
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  color: transparent;
}
.title-outline .ja {
  margin-top: calc(-17 / var(--base) * 100vw);
  display: block;
  line-height: 1.5;
  font-size: calc(24 / var(--base) * 100vw);
  color: #fff;
  text-wrap: auto;
}
@media screen and (min-width: 768px) {
  .title-outline {
    margin-bottom: min(48px, 48 / 1206 * 100vw);
  }
  .title-outline .en {
    font-size: min(95px, 95 / 1206 * 100vw);
  }
  .title-outline .ja {
    margin-top: min(-25px, -25 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
  }
}

.title-layered {
  margin-bottom: calc(34 / var(--base) * 100vw);
  position: relative;
}
.title-layered .en {
  font-family: var(--font-decoration);
  font-style: italic;
  color: color-mix(in srgb, var(--color-pink) 50%, transparent);
  font-size: calc(44 / var(--base) * 100vw);
  position: relative;
  line-height: 1.03;
  z-index: 1;
}
.title-layered .en.smaller {
  font-size: calc(28 / var(--base) * 100vw);
}
.title-layered .ja {
  color: #fff;
  z-index: 2;
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .title-layered {
    margin-bottom: min(40px, 40 / 1206 * 100vw);
  }
  .title-layered .en {
    font-size: min(94px, 94 / 1206 * 100vw);
  }
  .title-layered .en.smaller {
    font-size: min(94px, 94 / 1206 * 100vw);
  }
  .title-layered .ja {
    font-size: min(36px, 36 / 1206 * 100vw);
    left: min(100px, 100 / 1206 * 100vw);
  }
}

/* ----------------- 
linklink
----------------- */
a {
  text-decoration: underline;
  color: var(--color-text);
}

button {
  cursor: pointer;
}

.button-detail {
  --radius: 40px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-main);
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  height: calc(50 / var(--base) * 100vw);
  box-sizing: content-box;
  position: relative;
}
.button-detail .text-fixed,
.button-detail .text-hidden {
  display: flex;
  padding: 0 calc(40 / var(--base) * 100vw);
  gap: calc(10 / var(--base) * 100vw);
  align-items: center;
  background-color: #fff;
  border-radius: calc(40 / var(--base) * 100vw);
  font-size: calc(13 / var(--base) * 100vw);
  font-weight: 700;
  color: var(--color-main);
  text-decoration: none;
  white-space: nowrap;
  height: 100%;
}
.button-detail .text-fixed::after,
.button-detail .text-hidden::after {
  display: block;
  content: "";
  width: calc(16 / var(--base) * 100vw);
  height: calc(16 / var(--base) * 100vw);
  background-image: url(../images/common/button-mark.svg);
  background-size: contain;
}
.button-detail .text-fixed .text-hidden,
.button-detail .text-hidden .text-hidden {
  position: absolute;
  inset: 0 0 0 0;
  background-color: #fff;
  color: var(--color-main);
  clip-path: inset(0 100% 0 0 round var(--radius));
  transition: clip-path var(--duration-transition);
}
.button-detail .text-fixed .text-hidden::after,
.button-detail .text-hidden .text-hidden::after {
  background-image: url(../images/common/arrow-mark-red.svg);
}
.button-detail .text-hidden {
  position: absolute;
  inset: 0 0 0 0;
  background-color: var(--color-main);
  color: #fff;
  clip-path: inset(0 100% 0 0 round var(--radius));
  transition: clip-path var(--duration-transition);
}
.button-detail .text-hidden::after {
  background-image: url(../images/common/arrow-mark-white.svg);
}
@media screen and (min-width: 768px) {
  .button-detail {
    height: min(60px, calc(60 / var(--base) * 100vw));
  }
  .button-detail .text-fixed,
  .button-detail .text-hidden {
    padding: 0 min(46px, 46 / 1206 * 100vw);
    gap: min(20px, 20 / 1206 * 100vw);
    font-size: min(14px, 14 / 1206 * 100vw);
  }
  .button-detail .text-fixed::after,
  .button-detail .text-hidden::after {
    width: min(18px, 18 / 1206 * 100vw);
    height: min(18px, 18 / 1206 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .button-detail:hover .text-hidden {
    clip-path: inset(0 0 0 0 round var(--radius));
  }
}

.label-category {
  display: block;
  padding: 0.8em 1.6em;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: min(11px, calc(11 / var(--base) * 100vw));
  font-weight: 700;
  line-height: 1;
  background-color: #fff;
  text-decoration: none;
  border-radius: 40px;
}
.label-category.bg-gray {
  background-color: #eee;
}

dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-news-categories {
  display: flex;
  margin: calc(-30 / var(--base) * 100vw) 0 calc(40 / var(--base) * 100vw) 0;
  flex-wrap: wrap;
  gap: calc(5 / var(--base) * 100vw);
}
.list-news-categories li {
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 700;
}
.list-news-categories a {
  display: block;
  padding: calc(2 / var(--base) * 100vw) calc(8 / var(--base) * 100vw);
  color: var(--color-main);
  background-color: var(--color-pink);
  text-decoration: none;
  border-radius: calc(30 / var(--base) * 100vw);
}
.list-news-categories a.on {
  background-color: var(--color-main);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .list-news-categories {
    margin: 0 0 min(30px, 30 / 1206 * 100vw) min(38px, 38 / 1206 * 100vw);
    flex-direction: column;
  }
  .list-news-categories li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .list-news-categories li {
    font-size: 12px;
  }
}

.navigation.pagination {
  margin: calc(22 / var(--base) * 100vw) 0 0 0;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: calc(16 / var(--base) * 100vw);
}
.navigation.pagination .page-numbers {
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
  background-color: var(--color-lightpink);
  color: var(--color-text);
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(15 / var(--base) * 100vw);
  line-height: calc(40 / var(--base) * 100vw);
  border-radius: calc(40 / var(--base) * 100vw);
  transition: background-color var(--duration-transition), color var(--duration-transition);
}
.navigation.pagination .page-numbers:hover, .navigation.pagination .page-numbers.current {
  background-color: var(--color-pink);
}
.navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next {
  position: relative;
  text-indent: -1000px;
  white-space: nowrap;
  overflow: hidden;
}
.navigation.pagination .page-numbers.prev::before, .navigation.pagination .page-numbers.next::before {
  display: block;
  content: "";
  width: calc(10 / var(--base) * 100vw);
  height: calc(10 / var(--base) * 100vw);
  background-color: #fff;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  -webkit-mask-image: url(../images/common/icon-nav-next.svg);
          mask-image: url(../images/common/icon-nav-next.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.navigation.pagination .page-numbers.prev.prev::before, .navigation.pagination .page-numbers.next.prev::before {
  scale: -1 -1;
}
.navigation.pagination .page-numbers.prev:hover, .navigation.pagination .page-numbers.next:hover {
  background-color: transparent;
  color: var(--color-text);
}
.navigation.post-navigation {
  display: grid;
  margin: calc(32 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) 0 calc(32 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: calc(24 / var(--base) * 100vw);
  position: relative;
}
.navigation.post-navigation::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  inset: 0 0 0 50%;
  translate: -50% 0;
}
.navigation.post-navigation a {
  display: block;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.5;
  text-decoration: none;
}
.navigation.post-navigation .prev-post a {
  padding-left: min(32px, calc(32 / var(--base) * 100vw));
  position: relative;
}
.navigation.post-navigation .prev-post a::before {
  display: block;
  content: "";
  width: min(16px, calc(16 / var(--base) * 100vw));
  height: min(16px, calc(16 / var(--base) * 100vw));
  border-top: 4px solid #999;
  border-left: 4px solid #999;
  position: absolute;
  inset: auto auto 50% 0;
  translate: 0 50%;
  rotate: -45deg;
}
.navigation.post-navigation .next-post a {
  padding-right: min(32px, calc(32 / var(--base) * 100vw));
  position: relative;
  text-align: right;
}
.navigation.post-navigation .next-post a::after {
  display: block;
  content: "";
  width: min(16px, calc(16 / var(--base) * 100vw));
  height: min(16px, calc(16 / var(--base) * 100vw));
  border-top: 4px solid #999;
  border-left: 4px solid #999;
  position: absolute;
  inset: auto 0 50% auto;
  translate: 0 50%;
  rotate: 135deg;
}
.navigation.prev-next {
  margin: calc(32 / var(--base) * 100vw) 0;
  padding: calc(20 / var(--base) * 100vw) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-lightblue);
}
.navigation.prev-next .arrow {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  position: relative;
  background-color: var(--color-lightpink);
}
.navigation.prev-next .arrow::after {
  display: block;
  content: "";
  background-color: #fff;
  width: 10px;
  height: 10px;
  -webkit-mask-image: url(../images/common/icon-nav-next.svg);
          mask-image: url(../images/common/icon-nav-next.svg);
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
.navigation.prev-next .prev-post a {
  display: grid;
  text-decoration: none;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
}
.navigation.prev-next .prev-post .arrow::after {
  scale: -1 -1;
}
.navigation.prev-next .next-post a {
  display: grid;
  text-decoration: none;
  grid-template-columns: 1fr 40px;
  gap: 10px;
  align-items: center;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .navigation.pagination {
    margin: min(48px, calc(48 / var(--base) * 100vw)) 0 0 0;
  }
  .navigation.pagination .nav-links {
    gap: min(24px, calc(24 / var(--base) * 100vw));
  }
  .navigation.pagination .page-numbers {
    width: min(32px, calc(32 / var(--base) * 100vw));
    height: min(32px, calc(32 / var(--base) * 100vw));
    font-size: min(14px, calc(14 / var(--base) * 100vw));
    line-height: min(32px, calc(32 / var(--base) * 100vw));
    border-radius: min(32px, calc(32 / var(--base) * 100vw));
  }
  .navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .navigation.post-navigation {
    margin: calc(32 / var(--base) * 100vw) calc(48 / var(--base) * 100vw) 0 calc(48 / var(--base) * 100vw);
    gap: calc(64 / var(--base) * 100vw);
  }
  .navigation.post-navigation a {
    font-size: calc(14 / var(--base) * 100vw);
  }
  .navigation.prev-next {
    display: flex;
    margin: 40px 0;
    padding: 24px 0 0 0;
    gap: 96px;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .navigation.pagination {
    margin: min(48px, calc(48 / var(--base) * 100vw)) 0 0 0;
  }
  .navigation.pagination .nav-links {
    gap: min(24px, calc(24 / var(--base) * 100vw));
  }
  .navigation.pagination .page-numbers {
    width: min(40px, calc(40 / var(--base) * 100vw));
    height: min(40px, calc(40 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
    line-height: min(40px, calc(40 / var(--base) * 100vw));
    border-radius: min(40px, calc(40 / var(--base) * 100vw));
  }
  .navigation.pagination .page-numbers.prev, .navigation.pagination .page-numbers.next {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .navigation.post-navigation {
    margin: min(64px, calc(64 / var(--base) * 100vw)) auto 0 auto;
    gap: min(64px, calc(64 / var(--base) * 100vw));
    width: min(814px, calc(814 / var(--base) * 100vw));
  }
  .navigation.post-navigation a {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .navigation.post-navigation .prev-post a {
    padding-left: min(40px, calc(40 / var(--base) * 100vw));
  }
  .navigation.post-navigation .prev-post a::before {
    width: min(24px, calc(24 / var(--base) * 100vw));
    height: min(24px, calc(24 / var(--base) * 100vw));
  }
  .navigation.post-navigation .next-post a {
    padding-right: min(40px, calc(40 / var(--base) * 100vw));
  }
  .navigation.post-navigation .next-post a::after {
    width: min(24px, calc(24 / var(--base) * 100vw));
    height: min(24px, calc(24 / var(--base) * 100vw));
  }
}

.list-news {
  margin-bottom: calc(60 / var(--base) * 100vw);
  border-top: 1px solid var(--color-lightblue);
}
.list-news li {
  display: grid;
  padding: calc(30 / var(--base) * 100vw) 0;
  grid-template-columns: auto 1fr;
  gap: calc(16 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  border-bottom: 1px solid var(--color-lightblue);
  align-items: center;
}
.list-news time {
  grid-column: 1;
  font-family: var(--font-en);
  color: var(--color-blue);
  font-size: calc(12 / var(--base) * 100vw);
}
.list-news .news-category {
  display: block;
  grid-column: 2;
  grid-row: 1;
  padding: calc(2 / var(--base) * 100vw) calc(8 / var(--base) * 100vw);
  color: var(--color-main);
  background-color: var(--color-pink);
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 700;
  text-decoration: none;
  border-radius: calc(30 / var(--base) * 100vw);
  width: -moz-fit-content;
  width: fit-content;
}
.list-news .title {
  display: block;
  padding-right: calc(68 / var(--base) * 100vw);
  font-size: calc(15 / var(--base) * 100vw);
  grid-column: 1/3;
  grid-row: 2;
  text-decoration: none;
  position: relative;
}
.list-news .title::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow-mark.svg);
  background-size: contain;
  position: absolute;
  inset: 50% 0 auto auto;
  translate: 0 -50%;
}
.list-news.archive {
  margin-bottom: calc(22 / var(--base) * 100vw);
}
.list-news.archive .title {
  padding-right: 0;
}
.list-news.archive .title::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .list-news {
    margin-right: min(38px, 38 / 1206 * 100vw);
    grid-column: 2;
    grid-row: 1/4;
    margin-bottom: 0;
  }
  .list-news li {
    padding: 25px 0;
    gap: 18px 24px;
  }
  .list-news time {
    font-size: 12px;
  }
  .list-news .news-category {
    padding: 4px 26px;
    font-size: 12px;
    border-radius: 30px;
  }
  .list-news .title {
    padding-right: 70px;
    font-size: 15px;
  }
}

/* tabletable */
.table-form {
  margin-bottom: calc(14 / var(--base) * 100vw);
}
.table-form table,
.table-form tr,
.table-form td,
.table-form th,
.table-form tbody {
  display: block;
}
.table-form table {
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 700;
  border-bottom: 1px solid var(--color-lightblue);
}
.table-form p {
  margin: 0;
  padding: 0;
}
.table-form th {
  padding: calc(14 / var(--base) * 100vw) 0 calc(6 / var(--base) * 100vw) 0;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid var(--color-lightblue);
  vertical-align: top;
}
.table-form th p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-form th .required {
  color: var(--color-main);
}
.table-form td {
  padding: 0 0 calc(24 / var(--base) * 100vw) 0;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
}
.table-form dt {
  font-weight: 700;
}
.table-form dt:not(:first-of-type) {
  margin-top: calc(13 / var(--base) * 100vw);
}
.table-form dd {
  line-height: 1.8;
}
.table-form ul {
  line-height: 1.8;
}
.table-form ul li {
  margin-left: 1.5em;
  list-style-type: disc;
}
@media screen and (min-width: 768px) {
  .table-form {
    margin: 0 auto min(23px, calc(23 / var(--base) * 100vw)) auto;
  }
  .table-form table {
    display: table;
    font-size: min(14px, calc(14 / var(--base) * 100vw));
    width: 100%;
    border-collapse: collapse;
  }
  .table-form tr {
    display: table-row;
  }
  .table-form tr:not(:last-of-type) th,
  .table-form tr:not(:last-of-type) td {
    border-top: 1px solid var(--color-lightblue);
  }
  .table-form tbody {
    display: table-row-group;
  }
  .table-form th {
    display: table-cell;
    padding: min(13px, calc(13 / var(--base) * 100vw)) 0 min(13px, calc(13 / var(--base) * 100vw)) 0;
    width: min(160px, calc(160 / var(--base) * 100vw));
    white-space: nowrap;
    border-top: 1px solid var(--color-lightblue);
  }
  .table-form th p {
    display: block;
  }
  .table-form td {
    display: table-cell;
    padding: min(13px, calc(13 / var(--base) * 100vw)) 0 min(13px, calc(13 / var(--base) * 100vw)) 0;
    border-top: 1px solid var(--color-lightblue);
  }
  .table-form dt {
    font-weight: 700;
  }
  .table-form dt:not(:first-of-type) {
    margin-top: calc(13 / var(--base) * 100vw);
  }
  .table-form dd {
    line-height: 1.8;
  }
  .table-form ul {
    line-height: 1.8;
  }
  .table-form ul li {
    margin-left: 1.5em;
    list-style-type: disc;
  }
}
@media screen and (min-width: 1024px) {
  .table-form table {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .table-form th {
    padding: min(16px, calc(16 / var(--base) * 100vw)) 0;
    width: min(215px, calc(215 / var(--base) * 100vw));
    font-weight: 700;
  }
  .table-form td {
    padding: min(13px, calc(13 / var(--base) * 100vw)) 0;
    font-weight: 700;
  }
}

/* for inline */
input[type=text],
input[type=email],
input[type=tel] {
  padding: 0.4em 0.4em;
  font-size: calc(14 / var(--base) * 100vw);
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder {
  color: #aaa;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #aaa;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    padding: 0.6em 0.6em;
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

select {
  padding: 0.8em 0.4em;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ccc;
  font-size: calc(14 / var(--base) * 100vw);
  background-color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  select {
    padding: 0.6em 0.6em;
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

textarea {
  padding: 0.4em 0.4em;
  font-size: min(14px, calc(14 / var(--base) * 100vw));
  line-height: 1.5;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  height: 216px;
}
@media screen and (min-width: 768px) {
  textarea {
    padding: 0.6em 0.6em;
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

.type-button {
  display: block;
  padding: 0.6em 2em;
  background-color: #ccc;
  border-style: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  font-size: calc(18 / var(--base) * 100vw);
  font-weight: 700;
  cursor: pointer;
}
.type-button.submit {
  color: #fff;
  padding: 0.6em 1em;
  background-color: var(--color-main);
  font-size: calc(18 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .type-button {
    padding: 0.4em 3em;
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .type-button.submit {
    padding: 0.4em 3em;
  }
}
@media screen and (min-width: 1024px) {
  .type-button {
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .type-button.submit {
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
}

.list-buttons {
  display: flex;
  justify-content: center;
  gap: calc(24 / var(--base) * 100vw);
  margin: calc(26 / var(--base) * 100vw) auto;
}
@media screen and (min-width: 768px) {
  .list-buttons {
    gap: min(24px, calc(24 / var(--base) * 100vw));
    margin: min(40px, calc(40 / var(--base) * 100vw)) auto;
  }
}

.radio {
  display: flex;
  gap: 12px;
}

.page-home {
  padding: calc(80 / var(--base) * 100vw) 0 0;
}
.page-home .top {
  margin: 0;
  padding: calc(28 / var(--base) * 100vw) 0 calc(52 / var(--base) * 100vw) 0;
  position: relative;
  overflow: hidden;
}
.page-home .top .capsule {
  margin: 0 calc(30 / var(--base) * 100vw);
  padding-bottom: calc(300 / var(--base) * 100vw);
  width: calc(315 / var(--base) * 100vw);
  height: calc(590 / var(--base) * 100vw);
  position: relative;
  box-sizing: border-box;
}
.page-home .top .capsule .copy-ja {
  display: flex;
  padding-top: calc(58 / var(--base) * 100vw);
  align-items: center;
  background-color: var(--color-main);
  border-radius: calc(158 / var(--base) * 100vw) calc(158 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) calc(10 / var(--base) * 100vw);
  color: #fff;
  font-weight: 900;
  font-size: calc(30 / var(--base) * 100vw);
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
  line-height: 1.6;
  position: absolute;
  inset: 0 auto auto 50%;
  width: 100%;
  height: calc(290 / var(--base) * 100vw);
  box-sizing: border-box;
  translate: -50% -80%;
  opacity: 0;
  animation: capsule-red 800ms ease-out 400ms forwards;
}
.page-home .top .capsule .copy-ja span {
  opacity: 0;
  animation: capsule-opacity 800ms ease-out 1400ms forwards;
}
.page-home .top .capsule::after {
  display: block;
  content: "";
  background-image: url(../images/home/top-image-1.webp);
  background-size: cover;
  width: calc(315 / var(--base) * 100vw);
  height: calc(290 / var(--base) * 100vw);
  position: absolute;
  inset: auto 0 0 0;
  border-radius: calc(10 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) calc(158 / var(--base) * 100vw) calc(158 / var(--base) * 100vw);
  box-sizing: border-box;
  z-index: 1;
  opacity: 0;
  animation: capsule-opacity 800ms ease-out 1900ms forwards;
}
.page-home .top .capsule::before {
  display: block;
  content: "";
  border-radius: calc(10 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) calc(158 / var(--base) * 100vw) calc(158 / var(--base) * 100vw);
  border: 3px solid var(--color-main);
  box-sizing: border-box;
  width: calc(315 / var(--base) * 100vw);
  height: calc(290 / var(--base) * 100vw);
  position: absolute;
  inset: auto 0 0 0;
  border: 3px solid var(--color-main);
  z-index: 2;
  translate: 0 80%;
  opacity: 0;
  animation: capsule-border 800ms ease-out 800ms forwards;
}
.page-home .top .copy-en {
  position: absolute;
  padding: 0;
  inset: auto 0 0 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
}
.page-home .top .copy-en p {
  display: flex;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding: 0;
  transform: translateX(0%); /* アニメーション開始位置（左寄せ） */
  animation: marquee-right 12s linear infinite;
  will-change: transform;
  font-family: var(--font-decoration);
  font-style: italic;
  font-size: calc(92 / var(--base) * 100vw);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-pink);
}
.page-home .top .copy-en p span {
  display: inline-block;
  padding-right: 2rem;
  box-sizing: border-box;
}
@keyframes capsule-red {
  to {
    translate: -50% 0;
    opacity: 1;
  }
}
@keyframes capsule-text {
  to {
    opacity: 1;
  }
}
@keyframes capsule-border {
  to {
    translate: 0 0%;
    opacity: 1;
  }
}
@keyframes capsule-opacity {
  to {
    opacity: 1;
  }
}
@keyframes marquee-right {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.page-home .services {
  padding: calc(72 / var(--base) * 100vw) 0 calc(36 / var(--base) * 100vw) 0;
}
.page-home .services .content {
  padding: 0 calc(19 / var(--base) * 100vw);
}
.page-home .service-block {
  margin-bottom: calc(72 / var(--base) * 100vw);
}
.page-home .service-block .title-sub {
  margin: 0 calc(19 / var(--base) * 100vw) calc(32 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-home .service-block .title-sub .ja {
  display: block;
  margin: 0 0 calc(7 / var(--base) * 100vw) 0;
  font-size: calc(26 / var(--base) * 100vw);
  line-height: 1;
}
.page-home .service-block .title-sub .ja.katakana {
  margin-left: calc(-7 / var(--base) * 100vw);
}
.page-home .service-block .title-sub .en {
  display: block;
  font-size: calc(13 / var(--base) * 100vw);
  color: var(--color-main);
  line-height: 1;
}
.page-home .service-block .para {
  margin: 0 calc(40 / var(--base) * 100vw) calc(28 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  font-size: calc(13 / var(--base) * 100vw);
  line-height: 2;
}
.page-home .service-block .para-button {
  margin: 0 calc(19 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-home .service-block .photo {
  margin: 0 0 0 calc(50 / var(--base) * 100vw);
}
.page-home .service-block:nth-of-type(2n) .title-sub .ja {
  text-align: right;
}
.page-home .service-block:nth-of-type(2n) .title-sub .en {
  text-align: right;
}
.page-home .service-block:nth-of-type(2n) .para-button {
  text-align: right;
}
.page-home .service-block:nth-of-type(2n) .photo {
  margin: 0 calc(50 / var(--base) * 100vw) 0 0;
}
.page-home .staffs {
  position: relative;
  padding-bottom: calc(100 / var(--base) * 100vw);
}
.page-home .staffs::after {
  display: block;
  content: "";
  background-color: var(--color-pink);
  position: absolute;
  inset: calc(36 / var(--base) * 100vw) 0 0 0;
  width: 100%;
  height: calc(100% -cw(36));
}
.page-home .staffs .content {
  position: relative;
  z-index: 1;
}
.page-home .staffs .title {
  margin: 0 calc(15 / var(--base) * 100vw) calc(35 / var(--base) * 100vw) calc(15 / var(--base) * 100vw);
  color: #fff;
  font-family: var(--font-decoration);
  font-size: calc(48 / var(--base) * 100vw);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 0 var(--color-main), -1px 0 var(--color-main), 0 1px var(--color-main), 0 -1px var(--color-main), 1px 1px var(--color-main), -1px -1px var(--color-main), 1px -1px var(--color-main), -1px 1px var(--color-main);
}
.page-home .staffs .lead {
  margin: 0 0 calc(50 / var(--base) * 100vw) 0;
}
.page-home .staffs .lead .marker {
  padding: calc(2 / var(--base) * 100vw) 0 calc(2 / var(--base) * 100vw) calc(15 / var(--base) * 100vw);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  background-color: var(--color-main);
  color: #fff;
  font-size: calc(26 / var(--base) * 100vw);
  font-weight: 700;
  line-height: 1.5;
}
.page-home .staff-block:not(:last-of-type) {
  margin-bottom: calc(70 / var(--base) * 100vw);
}
.page-home .staff-block .photo {
  margin: 0 calc(19 / var(--base) * 100vw);
  position: relative;
  border: 3px solid var(--color-main);
  z-index: 2;
  height: calc(220 / var(--base) * 100vw);
}
.page-home .staff-block .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: center top;
     object-position: center top;
}
.page-home .staff-block .text {
  margin: calc(-20 / var(--base) * 100vw) 0 0 calc(38 / var(--base) * 100vw);
  padding: calc(50 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) calc(38 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.page-home .staff-block .information {
  display: grid;
  padding-bottom: calc(20 / var(--base) * 100vw);
  margin-bottom: calc(20 / var(--base) * 100vw);
  grid-template-columns: calc(68 / var(--base) * 100vw) 1fr;
  gap: calc(8 / var(--base) * 100vw) calc(12 / var(--base) * 100vw);
  position: relative;
}
.page-home .staff-block .information::after {
  display: block;
  content: "";
  height: 2px;
  background-image: radial-gradient(circle, var(--color-blue) 1px, transparent 1px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
}
.page-home .staff-block .flag {
  margin: 0;
  padding: 0;
  grid-column: 1;
  grid-row: 1/3;
}
.page-home .staff-block .name {
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
}
.page-home .staff-block .list-certification {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.page-home .staff-block .list-certification li {
  padding: calc(1 / var(--base) * 100vw) calc(10 / var(--base) * 100vw);
  font-size: calc(14 / var(--base) * 100vw);
  color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 30px;
  font-weight: 700;
}
.page-home .staff-block .q {
  font-size: calc(16 / var(--base) * 100vw);
  color: var(--color-main);
  font-weight: 700;
}
.page-home .staff-block .a {
  font-size: calc(14 / var(--base) * 100vw);
}
.page-home .about {
  padding: calc(80 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-home .about .list-about li:not(:last-of-type) {
  margin-bottom: 3px;
}
.page-home .about .list-about li a {
  display: block;
  background-image: url(../images/home/about-1.webp);
  background-size: cover;
  height: calc(180 / var(--base) * 100vw);
  position: relative;
  text-decoration: none;
}
.page-home .about .list-about li a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.4);
  position: absolute;
  inset: 0 0 0 0;
}
.page-home .about .list-about li a::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  inset: calc(110 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) auto auto;
  background-image: url(../images/common/arrow-mark-white.svg);
  background-size: cover;
}
.page-home .about .list-about li:nth-of-type(2) a {
  background-image: url(../images/home/about-2.webp);
}
.page-home .about .list-about li:nth-of-type(3) a {
  background-image: url(../images/home/about-3.webp);
}
.page-home .about .list-about li .title {
  padding: calc(40 / var(--base) * 100vw) 0 0 calc(30 / var(--base) * 100vw);
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.page-home .about .list-about li .title .en {
  display: block;
  margin-bottom: calc(5 / var(--base) * 100vw);
  font-family: var(--font-decoration);
  font-weight: 900;
  font-size: calc(28 / var(--base) * 100vw);
}
.page-home .about .list-about li .title .ja {
  display: block;
  font-weight: 700;
  font-size: calc(14 / var(--base) * 100vw);
}
.page-home .news {
  padding: calc(80 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  background-color: #f8f8f7;
}
@media screen and (min-width: 768px) {
  .page-home .top {
    padding: calc(28 / var(--base) * 100vw) 0 min(85px, 85 / 1206 * 100vw) 0;
  }
  .page-home .top .capsule {
    margin: 0 auto;
    padding-bottom: 0;
    width: min(1130px, 1130 / 1206 * 100vw);
    height: min(560px, 560 / 1206 * 100vw);
    position: relative;
  }
  .page-home .top .capsule .copy-ja {
    padding-top: min(96px, 96 / 1206 * 100vw);
    padding-left: min(60px, 60 / 1206 * 100vw);
    border-radius: min(280px, 280 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw) min(280px, 280 / 1206 * 100vw);
    font-size: min(58px, 58 / 1206 * 100vw);
    width: min(550px, 550 / 1206 * 100vw);
    height: 100%;
    position: absolute;
    inset: 0 auto 0 0;
    translate: -80% 0;
    animation: capsule-red-md 800ms ease-out 400ms forwards;
  }
  .page-home .top .capsule::before {
    width: min(550px, 550 / 1206 * 100vw);
    height: 100%;
    inset: 0 0 0 auto;
    border-radius: min(30px, 30 / 1206 * 100vw) min(280px, 280 / 1206 * 100vw) min(280px, 280 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
    translate: 80% 0;
  }
  .page-home .top .capsule::after {
    background-image: url(../images/home/top-image-1-lg.webp);
    width: min(550px, 550 / 1206 * 100vw);
    height: 100%;
    inset: 0 0 0 auto;
    border-radius: min(30px, 30 / 1206 * 100vw) min(280px, 280 / 1206 * 100vw) min(280px, 280 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
  }
  .page-home .top .copy-en {
    font-size: min(132px, 132 / 1206 * 100vw);
    inset: auto 0 0 0;
    text-align: center;
  }
  @keyframes capsule-red-md {
    to {
      translate: 0 0;
      opacity: 1;
    }
  }
  .page-home .services {
    padding: min(40px, 40 / 1206 * 100vw) 0 calc(36 / var(--base) * 100vw) 0;
  }
  .page-home .services .content {
    padding: 0 calc(40 / 1206 * 100vw);
  }
  .page-home .service-block {
    display: grid;
    margin-bottom: min(120px, 120 / 1206 * 100vw);
    grid-template-columns: min(460px, 460 / 1206 * 100vw) 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 0 min(90px, 90 / 1206 * 100vw);
    align-items: center;
  }
  .page-home .service-block .title-sub {
    margin: 0 auto min(43px, 43 / 1206 * 100vw) min(76px, 76 / 1206 * 100vw);
    align-self: end;
  }
  .page-home .service-block .title-sub .ja {
    margin: 0 0 min(17px, 17 / 1366 * 100vw) 0;
    font-size: min(36px, 36 / 1366 * 100vw);
  }
  .page-home .service-block .title-sub .ja.katakana {
    margin-left: max(-13px, -13 / 1366 * 100vw);
  }
  .page-home .service-block .title-sub .en {
    font-size: min(20px, 20 / 1366 * 100vw);
  }
  .page-home .service-block .para {
    margin: 0 0 min(31px, 31 / 1366 * 100vw) min(76px, 76 / 1206 * 100vw);
    grid-column: 1;
    grid-row: 2;
  }
  .page-home .service-block .para-button {
    margin: 0 0 0 min(76px, 76 / 1206 * 100vw);
    grid-column: 1;
    grid-row: 3;
  }
  .page-home .service-block .photo {
    margin: 0;
    grid-column: 2;
    grid-row: 1/4;
  }
  .page-home .service-block .photo img {
    height: min(460px, 460 / 1206 * 100vw);
  }
  .page-home .service-block:nth-of-type(2n) {
    grid-template-columns: 1fr min(460px, 460 / 1206 * 100vw);
  }
  .page-home .service-block:nth-of-type(2n) .photo {
    margin: 0;
    grid-column: 1;
    grid-row: 1/4;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub {
    margin: 0 min(96px, 96 / 1206 * 100vw) min(43px, 43 / 1206 * 100vw) 0;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub .ja {
    text-align: left;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub .en {
    text-align: left;
  }
  .page-home .service-block:nth-of-type(2n) .para {
    margin: 0 min(96px, 96 / 1206 * 100vw) min(31px, 31 / 1206 * 100vw) 0;
    grid-column: 2;
    grid-row: 2;
  }
  .page-home .service-block:nth-of-type(2n) .para-button {
    margin: 0;
    grid-column: 2;
    grid-row: 3;
    text-align: left;
  }
  .page-home .staffs {
    padding-bottom: min(130px, 130 / 1206 * 100vw);
  }
  .page-home .staffs::after {
    inset: calc(36 / var(--base) * 100vw) 0 0 0;
    width: 100%;
    height: calc(100% -cw(36));
  }
  .page-home .staffs .title {
    margin: 0 auto min(34px, 34 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
    font-size: min(104px, 104 / 1206 * 100vw);
  }
  .page-home .staffs .lead {
    margin: 0 0 min(60px, 60 / 1206 * 100vw) 0;
  }
  .page-home .staffs .lead .marker {
    padding: min(4px, 4 / 1206 * 100vw) min(26px, 26 / 1206 * 100vw) min(4px, 4 / 1206 * 100vw) min(78px, 78 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-home .staff-block {
    display: grid;
    grid-template-columns: min(380px, 380 / 1206 * 100vw) 1fr;
    margin: 0 min(40px, 40 / 1206 * 100vw);
    position: relative;
  }
  .page-home .staff-block:not(:last-of-type) {
    margin-bottom: min(100px, 100 / 1206 * 100vw);
  }
  .page-home .staff-block:nth-of-type(2n) {
    grid-template-columns: 1fr min(380px, 380 / 1206 * 100vw);
  }
  .page-home .staff-block:nth-of-type(2n) .photo {
    grid-column: 2;
  }
  .page-home .staff-block:nth-of-type(2n) .text {
    grid-column: 1;
    grid-row: 1;
    margin: max(60px, 60 / 1206 * 100vw) max(-52px, -52 / 1206 * 100vw) 0 0;
    padding: min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw);
  }
  .page-home .staff-block .photo {
    margin: 0 0;
    width: min(380px, 380 / 1206 * 100vw);
    height: min(300px, 300 / 1206 * 100vw);
  }
  .page-home .staff-block .text {
    margin: max(60px, 60 / 1206 * 100vw) 0 0 max(-52px, -52 / 1206 * 100vw);
    padding: min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw);
  }
  .page-home .staff-block .information {
    grid-template-columns: min(136px, 136 / 1206 * 100vw) 1fr;
    gap: min(8px, 8 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
  }
  .page-home .staff-block .flag {
    grid-column: 1;
    grid-row: 1/3;
  }
  .page-home .staff-block .list-certification {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .page-home .staff-block .list-certification li {
    padding: calc(1 / var(--base) * 100vw) calc(10 / var(--base) * 100vw);
    font-size: min(16px, 16 / 1206 * 100vw);
  }
  .page-home .about {
    padding: min(100px, 100 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-home .about .list-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-home .about .list-about li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-home .about .list-about li a {
    background-image: url(../images/home/about-1-lg.webp);
    height: min(440px, 440 / 1206 * 100vw);
  }
  .page-home .about .list-about li a::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.4);
    position: absolute;
    inset: 0 0 0 0;
  }
  .page-home .about .list-about li a::after {
    inset: auto min(30px, 30 / 1206 * 100vw) min(80px, 80 / 1206 * 100vw) auto;
  }
  .page-home .about .list-about li:nth-of-type(2) a {
    background-image: url(../images/home/about-2-lg.webp);
  }
  .page-home .about .list-about li:nth-of-type(3) a {
    background-image: url(../images/home/about-3-lg.webp);
  }
  .page-home .about .list-about li .title {
    padding: min(93px, 93 / 1206 * 100vw) 0 0 min(30px, 30 / 1206 * 100vw);
  }
  .page-home .about .list-about li .title .en {
    display: block;
    margin-bottom: calc(5 / var(--base) * 100vw);
    font-family: var(--font-decoration);
    font-weight: 900;
    font-size: calc(28 / var(--base) * 100vw);
  }
  .page-home .about .list-about li .title .ja {
    display: block;
    font-weight: 700;
    font-size: calc(14 / var(--base) * 100vw);
  }
  .page-home .news {
    padding: min(100px, 100 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-home .news .content {
    display: grid;
    grid-template-columns: 1fr min(720px, 720 / 1206 * 100vw);
    grid-template-rows: auto auto 1fr;
    align-items: start;
  }
  .page-home .news .title-mid {
    margin-bottom: min(38px, 38 / 1206 * 100vw);
    grid-row: 1;
  }
  .page-home .news .para-button {
    margin-left: min(38px, 38 / 1206 * 100vw);
    grid-row: 3;
  }
}
@media screen and (min-width: 1024px) {
  .page-home {
    padding: min(130px, calc(130 / var(--base) * 100vw)) 0 0 0;
  }
  .page-home .top {
    padding: min(12px, calc(12 / var(--base) * 100vw)) 0 min(65px, 65 / 1206 * 100vw) 0;
  }
  .page-home .top .copy-en {
    font-size: min(132px, 132 / 1206 * 100vw);
    inset: auto 0 0 0;
  }
  .page-home .service-block .para {
    font-size: 14px;
  }
  .page-home .staff-block:nth-of-type(2n) {
    grid-template-columns: 1fr min(380px, 380 / 1206 * 100vw);
  }
  .page-home .staff-block:nth-of-type(2n) .photo {
    grid-column: 2;
  }
  .page-home .staff-block:nth-of-type(2n) .text {
    grid-column: 1;
    grid-row: 1;
    margin: max(60px, 60 / 1206 * 100vw) max(-52px, -52 / 1206 * 100vw) 0 0;
    padding: min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw);
  }
  .page-home .staff-block .photo {
    margin: 0 0;
    width: min(380px, 380 / 1206 * 100vw);
    height: min(300px, 300 / 1206 * 100vw);
  }
  .page-home .staff-block .text {
    margin: max(60px, 60 / 1206 * 100vw) 0 0 max(-52px, -52 / 1206 * 100vw);
    padding: min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw);
  }
  .page-home .staff-block .name {
    font-size: 24px;
  }
  .page-home .staff-block .information {
    padding-bottom: 20px;
    margin-bottom: min(23px, calc(23 / var(--base) * 100vw));
  }
  .page-home .staff-block .flag {
    grid-column: 1;
    grid-row: 1/3;
  }
  .page-home .staff-block .list-certification {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .page-home .staff-block .list-certification li {
    padding: 4px 10px 0 10px;
    font-size: min(16px, 16 / 1206 * 100vw);
  }
  .page-home .staff-block .q {
    font-size: 18px;
  }
  .page-home .staff-block .a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1366px) {
  .page-home .services {
    padding: min(65px, 65 / 1206 * 100vw) 0 min(100px, 100 / 1206 * 100vw) 0;
  }
  .page-home .services .content {
    margin: 0 auto;
    padding: 0;
    width: min(1126px, calc(1126 / var(--base) * 100vw));
  }
  .page-home .service-block {
    margin: 0 auto;
    width: min(1366px, calc(1366 / var(--base) * 100vw));
    grid-template-columns: 1fr min(700px, calc(700 / var(--base) * 100vw));
  }
  .page-home .service-block:not(:last-of-type) {
    margin-bottom: min(120px, calc(120 / var(--base) * 100vw));
  }
  .page-home .service-block:nth-of-type(2n) {
    grid-template-columns: min(700px, calc(700 / var(--base) * 100vw)) 1fr;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub {
    margin: 0 min(96px, 96 / 1206 * 100vw) min(43px, 43 / 1206 * 100vw) 0;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub .ja {
    text-align: left;
  }
  .page-home .service-block:nth-of-type(2n) .title-sub .en {
    text-align: left;
  }
  .page-home .service-block:nth-of-type(2n) .para {
    margin: 0 min(96px, 96 / 1206 * 100vw) min(31px, 31 / 1206 * 100vw) 0;
    grid-column: 2;
    grid-row: 2;
  }
  .page-home .service-block:nth-of-type(2n) .para-button {
    margin: 0;
    grid-column: 2;
    grid-row: 3;
    text-align: left;
  }
  .page-home .service-block .title-sub {
    margin: 0 auto min(43px, 43 / 1206 * 100vw) min(156px, calc(156 / var(--base) * 100vw));
  }
  .page-home .service-block .title-sub .ja {
    margin: 0 0 min(17px, 17 / 1366 * 100vw) 0;
    font-size: min(36px, 36 / 1366 * 100vw);
  }
  .page-home .service-block .title-sub .ja.katakana {
    margin-left: max(-13px, -13 / 1366 * 100vw);
  }
  .page-home .service-block .title-sub .en {
    font-size: min(20px, 20 / 1366 * 100vw);
  }
  .page-home .service-block .para {
    margin: 0 0 min(31px, 31 / 1366 * 100vw) min(156px, calc(156 / var(--base) * 100vw));
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
  }
  .page-home .service-block .para-button {
    margin: 0 0 0 min(156px, calc(156 / var(--base) * 100vw));
    grid-column: 1;
    grid-row: 3;
  }
  .page-home .service-block .photo {
    margin: 0;
    grid-column: 2;
    grid-row: 1/4;
  }
  .page-home .service-block .photo img {
    height: min(460px, 460 / 1206 * 100vw);
  }
  .page-home .staffs::after {
    inset: min(64px, calc(64 / var(--base) * 100vw)) 0 0 0;
    width: 100%;
    height: calc(100% - min(64px, calc(64 / var(--base) * 100vw)));
  }
  .page-home .staffs .lead .marker {
    padding-left: min(158px, calc(158 / var(--base) * 100vw));
  }
  .page-home .staffs .content {
    margin: 0 auto;
    width: min(1366px, calc(1366 / var(--base) * 100vw));
  }
  .page-home .staff-block {
    margin: 0 auto;
    width: min(1048px, calc(1048 / var(--base) * 100vw));
  }
  .page-home .staff-block:nth-of-type(2n) {
    grid-template-columns: 1fr min(380px, 380 / 1206 * 100vw);
  }
  .page-home .staff-block:nth-of-type(2n) .photo {
    grid-column: 2;
  }
  .page-home .staff-block:nth-of-type(2n) .text {
    grid-column: 1;
    grid-row: 1;
    margin: max(60px, 60 / 1206 * 100vw) max(-52px, -52 / 1206 * 100vw) 0 0;
    padding: min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw);
  }
  .page-home .staff-block .photo {
    margin: 0 0;
    width: min(380px, 380 / 1206 * 100vw);
    height: min(300px, 300 / 1206 * 100vw);
  }
  .page-home .staff-block .text {
    margin: max(60px, 60 / 1206 * 100vw) 0 0 max(-52px, -52 / 1206 * 100vw);
    padding: min(60px, 60 / 1206 * 100vw) min(45px, 45 / 1206 * 100vw) min(60px, 60 / 1206 * 100vw) min(95px, 95 / 1206 * 100vw);
  }
  .page-home .staff-block .information {
    grid-template-columns: min(136px, 136 / 1206 * 100vw) 1fr;
    gap: min(8px, 8 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
  }
  .page-home .staff-block .flag {
    grid-column: 1;
    grid-row: 1/3;
  }
  .page-home .about .content {
    margin: 0 auto;
    padding: 0;
    width: min(1126px, calc(1126 / var(--base) * 100vw));
  }
  .page-home .news .content {
    margin: 0 auto;
    padding: 0;
    width: min(1126px, calc(1126 / var(--base) * 100vw));
  }
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
}
.page-service-drugstores .common-header .title-en {
  margin-left: min(11px, calc(11 / var(--base) * 100vw));
}
.page-service-drugstores .unit-merit {
  padding: calc(84 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  background-color: var(--color-lightpink);
}
.page-service-drugstores .unit-merit .list {
  display: grid;
  margin: 0 calc(11 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  gap: calc(7 / var(--base) * 100vw);
}
.page-service-drugstores .unit-merit .list li {
  padding: calc(30 / var(--base) * 100vw) 0 calc(25 / var(--base) * 100vw) 0;
  border: 3px solid var(--color-main);
  background-color: #fff;
}
.page-service-drugstores .unit-merit .list .icon {
  margin: 0 auto calc(19 / var(--base) * 100vw) auto;
  width: calc(48 / var(--base) * 100vw);
}
.page-service-drugstores .unit-merit .list .title-ja {
  margin: 0 0 calc(1 / var(--base) * 100vw) 0;
  text-align: center;
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 700;
  line-height: 1.5;
}
.page-service-drugstores .unit-merit .list .title-en {
  margin: 0;
  text-align: center;
  font-size: calc(8 / var(--base) * 100vw);
  font-weight: 400;
  font-family: var(--font-en);
  color: var(--color-blue);
  line-height: 1.5;
}
.page-service-drugstores .unit-faq {
  padding: calc(184 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(50 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  background-image: url(../images/services/drugstore-faq-bg.webp);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.page-service-drugstores .list-faq details {
  margin-bottom: calc(20 / var(--base) * 100vw);
}
.page-service-drugstores .list-faq details[open] .mark::before {
  rotate: 180deg;
}
.page-service-drugstores .list-faq details[open] .mark::after {
  rotate: 0deg;
}
.page-service-drugstores .list-faq details[open] summary {
  margin-bottom: calc(20 / var(--base) * 100vw);
}
.page-service-drugstores .list-faq details[open] .a {
  opacity: 1;
  overflow: visible;
  height: auto;
  transition: height var(--duration-transition), opacity var(--duration-transition), content-visibility var(--duration-transition) allow-discrete;
}
.page-service-drugstores .list-faq summary {
  display: grid;
  grid-template-columns: calc(28 / var(--base) * 100vw) 1fr calc(20 / var(--base) * 100vw);
  transition: margin-bottom var(--duration-transition);
  padding-bottom: calc(20 / var(--base) * 100vw);
  gap: calc(10 / var(--base) * 100vw);
  align-items: start;
  border-bottom: 1px solid var(--color-lightblue);
  color: var(--color-main);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 700;
  line-height: 1.5;
}
.page-service-drugstores .list-faq summary::marker {
  content: "";
}
.page-service-drugstores .list-faq summary::before {
  content: "Q";
  font-size: calc(22 / var(--base) * 100vw);
  font-family: var(--font-en);
  font-weight: 400;
  translate: 0 0;
  line-height: 1;
}
.page-service-drugstores .list-faq summary .mark {
  display: block;
  margin: calc(4 / var(--base) * 100vw) 0 auto auto;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: var(--color-lightpink);
  transition: background-color var(--duration-transition);
  position: relative;
}
.page-service-drugstores .list-faq summary .mark::before, .page-service-drugstores .list-faq summary .mark::after {
  display: block;
  content: "";
  width: 8px;
  height: 1px;
  background-color: var(--color-text);
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  transition: background-color var(--duration-transition), rotate var(--duration-transition);
}
.page-service-drugstores .list-faq summary .mark::after {
  rotate: 90deg;
}
.page-service-drugstores .list-faq .a {
  display: flex;
  padding: 0 calc(36 / var(--base) * 100vw) calc(40 / var(--base) * 100vw) calc(15 / var(--base) * 100vw);
  gap: calc(11 / var(--base) * 100vw);
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
  height: 0;
  opacity: 0;
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
}
.page-service-drugstores .list-faq .a::before {
  content: "A";
  font-size: calc(22 / var(--base) * 100vw);
  font-family: var(--font-en);
  font-weight: 400;
  translate: 0 0;
  line-height: 1;
}
.page-service-drugstores .unit-features {
  padding: calc(104 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(100 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  background-image: url(../images/services/drugstore-features-bg.webp);
  background-size: cover;
  position: relative;
}
.page-service-drugstores .unit-features::before {
  display: block;
  content: "";
  background-color: var(--color-main);
  opacity: 0.78;
  position: absolute;
  inset: 0 0 0 0;
}
.page-service-drugstores .unit-features .content {
  position: relative;
  z-index: 2;
}
.page-service-drugstores .unit-features .title-mid .en {
  color: #fff;
}
.page-service-drugstores .unit-features .title-mid .ja {
  color: #fff;
}
.page-service-drugstores .unit-features .features {
  margin: 0 calc(11 / var(--base) * 100vw) calc(60 / var(--base) * 100vw) calc(11 / var(--base) * 100vw);
}
.page-service-drugstores .unit-features .list {
  margin: 0 0 calc(36 / var(--base) * 100vw) 0;
  font-size: calc(24 / var(--base) * 100vw);
  font-weight: 700;
  color: #fff;
  counter-reset: count-list;
}
.page-service-drugstores .unit-features .list li {
  display: grid;
  grid-template-columns: calc(40 / var(--base) * 100vw) 1fr;
  gap: calc(10 / var(--base) * 100vw);
  counter-increment: counter-list;
}
.page-service-drugstores .unit-features .list li:not(:last-of-type) {
  margin-bottom: calc(30 / var(--base) * 100vw);
}
.page-service-drugstores .unit-features .list li::before {
  display: block;
  content: counter(counter-list);
  color: var(--color-main);
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  border-radius: 30px;
  background-color: #fff;
  text-align: center;
}
.page-service-drugstores .unit-features .graph {
  margin: 0;
}
.page-service-drugstores .unit-features .certified-seller .title {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.page-service-drugstores .unit-features .certified-seller .title .en {
  display: block;
  font-family: var(--font-en);
  font-family: var(--font-decoration);
  font-weight: 900;
  font-size: calc(44 / var(--base) * 100vw);
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px white;
  line-height: 1;
}
.page-service-drugstores .unit-features .certified-seller .title .ja {
  display: block;
  margin: calc(-6 / var(--base) * 100vw) 0 0 0;
  padding: calc(2 / var(--base) * 100vw) calc(5 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
  color: var(--color-main);
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.page-service-drugstores .unit-features .certified-seller p {
  margin-right: calc(11 / var(--base) * 100vw);
  font-weight: 700;
  color: #fff;
}
.page-service-drugstores .unit-features .certified-seller .answer {
  font-size: calc(24 / var(--base) * 100vw);
  line-height: 1.5;
}
.page-service-drugstores .unit-features .certified-seller .otc {
  margin-top: calc(18 / var(--base) * 100vw);
  padding: calc(28 / var(--base) * 100vw) calc(38 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: var(--color-lightpink);
  font-size: calc(13 / var(--base) * 100vw);
  line-height: 2;
}
.page-service-drugstores .unit-features .certified-seller .otc dt {
  margin-bottom: calc(5 / var(--base) * 100vw);
  font-weight: 700;
}
.page-service-drugstores .unit-features .certified-seller .otc dd {
  font-weight: 500;
}
.page-service-drugstores .unit-training {
  padding: calc(80 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(100 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training p {
  margin-right: calc(33 / var(--base) * 100vw);
  margin-left: calc(11 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training p.para-comment {
  font-weight: 500;
}
.page-service-drugstores .unit-training .schedule {
  margin-left: calc(11 / var(--base) * 100vw);
  margin-bottom: calc(56 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training .schedule figcaption {
  margin: calc(40 / var(--base) * 100vw) calc(11 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) 0;
  padding: calc(5 / var(--base) * 100vw) 0 calc(5 / var(--base) * 100vw) calc(7 / var(--base) * 100vw);
  background-color: var(--color-main);
  color: #fff;
  font-size: calc(22 / var(--base) * 100vw);
  font-weight: 700;
}
.page-service-drugstores .unit-training .schedule figcaption .note {
  font-size: calc(18 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training .schedule .space-schedule {
  margin: 0 calc(-19 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) 0;
  padding-bottom: calc(18 / var(--base) * 100vw);
  overflow: auto;
  scrollbar-color: var(--color-main) var(--color-lightpink);
  scrollbar-width: thin;
}
.page-service-drugstores .unit-training .schedule .space-schedule::-webkit-scrollbar {
  height: 3px;
}
.page-service-drugstores .unit-training .schedule .space-schedule::-webkit-scrollbar-track {
  background: var(--color-lightpink);
  background: #f0f0f0;
}
.page-service-drugstores .unit-training .schedule .space-schedule::-webkit-scrollbar-thumb {
  background-color: var(--color-main);
}
.page-service-drugstores .unit-training .schedule .space-schedule img {
  display: block;
  margin-bottom: calc(10 / var(--base) * 100vw);
  min-width: calc(1050 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training .schedule .note {
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 400;
}
.page-service-drugstores .unit-training .certifications {
  margin: 0 calc(11 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training .certifications .title {
  margin-bottom: calc(25 / var(--base) * 100vw);
  position: relative;
}
.page-service-drugstores .unit-training .certifications .title .en {
  display: block;
  font-family: var(--font-decoration);
  font-size: calc(40 / var(--base) * 100vw);
  font-style: italic;
  color: var(--color-pink);
  line-height: 1;
}
.page-service-drugstores .unit-training .certifications .title .ja {
  display: block;
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 700;
  color: var(--color-main);
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
.page-service-drugstores .unit-training .certifications .swiper-certifications {
  margin: 0 calc(-30 / var(--base) * 100vw);
}
.page-service-drugstores .unit-training .certifications .swiper-certifications .swiper-wrapper {
  transition-timing-function: linear;
}
.page-service-drugstores .unit-training .certifications .swiper-certifications .swiper-slide {
  padding: calc(24 / var(--base) * 100vw);
  border: 3px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .page-service-drugstores .unit-merit {
    padding: calc(84 / var(--base) * 100vw) calc(40 / 1206 * 100vw) calc(80 / var(--base) * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-merit .list {
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
    grid-template-columns: repeat(4, 1fr);
    gap: min(13px, 13 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-merit .list li {
    padding: min(50px, 50 / 1206 * 100vw) 0 min(40px, 40 / 1206 * 100vw) 0;
  }
  .page-service-drugstores .unit-merit .list .icon {
    margin: 0 auto min(24px, 24 / 1206 * 100vw) auto;
    width: min(80px, 80 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-merit .list .title-ja {
    margin: 0 0 min(6px, 6 / 1206 * 100vw) 0;
    font-size: min(20px, 20 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-merit .list .title-en {
    font-size: min(14px, 14 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-faq {
    padding: calc(184 / var(--base) * 100vw) calc(40 / 1206 * 100vw) calc(50 / var(--base) * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq {
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features {
    padding: calc(104 / var(--base) * 100vw) calc(40 / 1206 * 100vw) calc(100 / var(--base) * 100vw) calc(40 / 1206 * 100vw);
    background-image: url(../images/services/drugstore-features-bg-lg.webp);
  }
  .page-service-drugstores .unit-features .features {
    display: grid;
    grid-template-columns: 1fr min(470px, 470 / 1206 * 100vw);
    gap: min(36px, 36 / 1206 * 100vw);
    margin: 0 auto min(60px, 60 / 1206 * 100vw) auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list {
    margin-top: min(60px, 60 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li {
    grid-template-columns: min(50px, 50 / 1206 * 100vw) 1fr;
    gap: min(17px, 17 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li:not(:last-of-type) {
    margin-bottom: min(40px, 40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li::before {
    width: min(50px, 50 / 1206 * 100vw);
    height: min(50px, 50 / 1206 * 100vw);
    font-size: min(28px, 28 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .graph {
    margin: 0;
  }
  .page-service-drugstores .unit-features .certified-seller .title {
    margin-bottom: calc(25 / var(--base) * 100vw);
    text-align: center;
  }
  .page-service-drugstores .unit-features .certified-seller .title .en {
    font-size: calc(50 / var(--base) * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .title .ja {
    margin: calc(-7 / var(--base) * 100vw) auto 0 auto;
    padding: 0 calc(5 / var(--base) * 100vw);
    font-size: calc(14 / var(--base) * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller p {
    margin-right: calc(80 / 1206 * 100vw);
    margin-left: calc(80 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .answer {
    font-size: calc(20 / var(--base) * 100vw);
    text-align: center;
  }
  .page-service-drugstores .unit-features .certified-seller .otc {
    margin-top: min(28px, calc(28 / var(--base) * 100vw));
    margin-right: calc(80 / 1206 * 100vw);
    margin-left: calc(80 / 1206 * 100vw);
    padding: min(28px, calc(28 / var(--base) * 100vw));
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .page-service-drugstores .unit-features .certified-seller .otc dt {
    margin-bottom: min(8px, calc(8 / var(--base) * 100vw));
  }
  .page-service-drugstores .unit-training {
    padding: calc(80 / var(--base) * 100vw) calc(40 / 1206 * 100vw) calc(100 / var(--base) * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training p {
    margin-right: calc(38 / 1206 * 100vw);
    margin-left: calc(38 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .schedule {
    margin-right: calc(38 / 1206 * 100vw);
    margin-left: calc(38 / 1206 * 100vw);
    margin-bottom: calc(85 / var(--base) * 100vw);
  }
  .page-service-drugstores .unit-training .schedule figcaption {
    margin: min(46px, 46 / 1206 * 100vw) 0 10px 0;
    font-size: min(36px, 36 / 1206 * 100vw);
    width: -moz-fit-content;
    width: fit-content;
  }
  .page-service-drugstores .unit-training .schedule figcaption .note {
    font-size: min(26px, 26 / 1206 * 100vw);
    font-weight: 700;
  }
  .page-service-drugstores .unit-training .schedule .space-schedule {
    margin: 0 0;
    padding-bottom: calc(18 / var(--base) * 100vw);
    overflow: hidden;
  }
  .page-service-drugstores .unit-training .schedule .space-schedule img {
    margin-bottom: 12px;
    min-width: 100%;
  }
  .page-service-drugstores .unit-training .schedule .note {
    font-size: min(12px, calc(12 / var(--base) * 100vw));
  }
  .page-service-drugstores .unit-training .certifications {
    margin: 0 calc(-40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .title {
    margin-bottom: calc(25 / var(--base) * 100vw);
    position: relative;
  }
  .page-service-drugstores .unit-training .certifications .title .en {
    font-size: calc(50 / var(--base) * 100vw);
    font-size: calc(64 / var(--base) * 100vw);
    margin-left: calc(40 / var(--base) * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .title .ja {
    display: block;
    font-size: calc(18 / var(--base) * 100vw);
    font-size: calc(24 / var(--base) * 100vw);
    margin-left: calc(40 / var(--base) * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .swiper-certifications .swiper-slide {
    padding: calc(40 / 1206 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .page-service-drugstores .unit-merit {
    padding: min(120px, 120 / 1206 * 100vw) calc(40 / 1206 * 100vw) min(100px, 100 / 1206 * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-faq {
    padding: 0;
    background-image: none;
  }
  .page-service-drugstores .unit-faq .content {
    padding: min(100px, 100 / 1260 * 100vw) min(80px, 80 / 1206 * 100vw) min(110px, 110 / 1206 * 100vw) min(488px, 488 / 1206 * 100vw);
    position: relative;
  }
  .page-service-drugstores .unit-faq .content::before {
    display: block;
    content: "";
    width: min(470px, calc(470 / var(--base) * 100vw));
    height: 100%;
    background-image: url(../images/services/drugstore-faq-bg-lg.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left top;
    position: absolute;
    inset: 0 auto 0 0;
  }
  .page-service-drugstores .list-faq {
    margin: 0 auto 0 min(31px, calc(31 / var(--base) * 100vw));
    width: auto;
  }
  .page-service-drugstores .list-faq details {
    margin-bottom: min(40px, 40 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq details[open] .mark::before {
    rotate: 180deg;
  }
  .page-service-drugstores .list-faq details[open] .mark::after {
    rotate: 0deg;
  }
  .page-service-drugstores .list-faq details[open] summary {
    margin-bottom: min(30px, 30 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq details[open] .a {
    opacity: 1;
    overflow: visible;
    height: auto;
    transition: height var(--duration-transition), opacity var(--duration-transition), content-visibility var(--duration-transition) allow-discrete;
  }
  .page-service-drugstores .list-faq summary {
    grid-template-columns: min(22px, 22 / 1206 * 100vw) 1fr min(30px, 30 / 1206 * 100vw);
    padding-bottom: min(22px, 22 / 1206 * 100vw);
    gap: min(20px, 20 / 1206 * 100vw);
    font-size: min(18px, 18 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq summary::before {
    font-size: min(28px, 28 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq summary .mark {
    margin: 0 0 auto auto;
    width: 30px;
    height: 30px;
    border-radius: 20px;
  }
  .page-service-drugstores .list-faq summary .mark::before, .page-service-drugstores .list-faq summary .mark::after {
    width: 12px;
  }
  .page-service-drugstores .list-faq .a {
    display: flex;
    padding: 0 min(54px, 54 / 1206 * 100vw) min(32px, 32 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
    gap: min(20px, 20 / 1206 * 100vw);
    font-size: min(14px, 14 / 1206 * 100vw);
  }
  .page-service-drugstores .list-faq .a::before {
    font-size: min(28px, 28 / 1206 * 100vw);
    translate: 0 -9px;
  }
  .page-service-drugstores .unit-features {
    padding: min(130px, 130 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw) min(130px, 130 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .title {
    margin-bottom: min(46px, 46 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .title .en {
    font-size: min(80px, 80 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .title .ja {
    margin: max(-14px, -14 / var(--base) * 100vw) auto 0 auto;
    padding: min(2px, calc(2 / var(--base) * 100vw)) min(5px, calc(5 / var(--base) * 100vw));
    font-size: min(24px, 24 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller p {
    margin-right: calc(80 / 1206 * 100vw);
    margin-left: calc(80 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .answer {
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training {
    padding: min(100px, 100 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw) min(130px, 130 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training p {
    margin-right: calc(38 / 1206 * 100vw);
    margin-left: calc(38 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .schedule {
    margin-right: min(38px, 38 / 1206 * 100vw);
    margin-left: min(38px, 38 / 1206 * 100vw);
    margin-bottom: min(85px, 85 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .schedule .space-schedule {
    padding-bottom: min(18px, calc(18 / var(--base) * 100vw));
  }
  .page-service-drugstores .unit-training .certifications {
    margin: 0 max(-40px, -40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .title {
    margin-bottom: min(49px, 49 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .title .en {
    margin-left: min(80px, 80 / 1206 * 100vw);
    font-size: min(80px, 80 / 1206 * 100vw);
    font-size: min(96px, 96 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .title .ja {
    margin-left: min(103px, 103 / 1206 * 100vw);
    margin-left: min(80px, 80 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .swiper-certifications {
    margin: 0 max(-40px, -40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-training .certifications .swiper-certifications .swiper-slide {
    padding: min(40px, 40 / 1206 * 100vw);
  }
}
@media screen and (min-width: 1366px) {
  .page-service-drugstores .unit-merit {
    padding-right: 0;
    padding-left: 0;
  }
  .page-service-drugstores .unit-merit .content {
    margin: 0 auto;
    width: 1126px;
  }
  .page-service-drugstores .unit-merit .list-merit {
    padding: 0;
  }
  .page-service-drugstores .unit-faq {
    padding: 0;
    background-image: none;
  }
  .page-service-drugstores .unit-faq .content {
    margin: 0 auto;
    padding: 110px 150px 100px 576px;
    width: 1366px;
    box-sizing: border-box;
  }
  .page-service-drugstores .unit-features {
    padding: min(130px, 130 / 1206 * 100vw) 0;
  }
  .page-service-drugstores .unit-features .content {
    margin: 0 auto;
    width: 1126px;
  }
  .page-service-drugstores .unit-features .list {
    margin-top: min(60px, 60 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li {
    grid-template-columns: min(50px, 50 / 1206 * 100vw) 1fr;
    gap: min(17px, 17 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li:not(:last-of-type) {
    margin-bottom: min(40px, 40 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .list li::before {
    width: min(50px, 50 / 1206 * 100vw);
    height: min(50px, 50 / 1206 * 100vw);
    font-size: min(28px, 28 / 1206 * 100vw);
  }
  .page-service-drugstores .unit-features .certified-seller .title {
    margin: 0 -40px 46px -40px;
  }
  .page-service-drugstores .unit-features .certified-seller .title .en {
    font-size: 88px;
  }
  .page-service-drugstores .unit-training {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    width: 1126px;
  }
  .page-service-drugstores .unit-training .certifications .swiper-certifications {
    margin: 0 calc((-100vw + 1206px) / 2);
  }
}

.page-service-pharmacies .common-header .title-en {
  margin-left: calc(11 / var(--base) * 100vw);
  width: 90%;
}
.page-service-pharmacies .common-header .title-en span {
  display: block;
}
.page-service-pharmacies .common-header .title-en span:nth-of-type(2) {
  text-align: right;
}
.page-service-pharmacies .unit-problem {
  padding: calc(71 / var(--base) * 100vw) 0 calc(40 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-problem .content {
  padding: calc(64 / var(--base) * 100vw) calc(51 / var(--base) * 100vw) calc(58 / var(--base) * 100vw) calc(34 / var(--base) * 100vw);
  background-color: var(--color-lightpink);
  position: relative;
  z-index: 2;
}
.page-service-pharmacies .unit-problem .title-en {
  margin-bottom: calc(-8 / var(--base) * 100vw);
  font-size: calc(68 / var(--base) * 100vw);
  font-size: calc(48 / var(--base) * 100vw);
  font-family: var(--font-decoration);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-pink);
  line-height: 1;
}
.page-service-pharmacies .unit-problem .title-ja {
  margin: 0 0 calc(27 / var(--base) * 100vw) 0;
  color: var(--color-main);
  font-size: calc(26 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-problem .bg {
  margin: calc(-60 / var(--base) * 100vw) auto 0 calc(-30 / var(--base) * 100vw);
  width: calc(325 / var(--base) * 100vw);
  position: relative;
}
.page-service-pharmacies .unit-problem p {
  font-weight: 700;
}
.page-service-pharmacies .unit-patients {
  margin: 0 calc(19 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-patients .text {
  margin: 0 calc(50 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(11 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-patients .table {
  margin: 0 calc(11 / var(--base) * 100vw) calc(63 / var(--base) * 100vw) calc(11 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-patients .table table {
  table-layout: fixed;
  width: 100%;
  counter-reset: count-cell;
}
.page-service-pharmacies .unit-patients .table th {
  background-color: var(--color-main);
  color: #fff;
  font-size: calc(12 / var(--base) * 100vw);
  text-align: center;
  vertical-align: middle;
  height: calc(65 / var(--base) * 100vw);
  counter-increment: count-cell;
  position: relative;
}
.page-service-pharmacies .unit-patients .table th::before {
  display: block;
  content: counter(count-cell);
  font-family: var(--font-decoration);
  font-size: calc(34 / var(--base) * 100vw);
  text-shadow: var(--fontshadow);
  position: absolute;
  inset: calc(-30 / var(--base) * 100vw) auto auto calc(6 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-patients .table td {
  padding: 0 calc(14 / var(--base) * 100vw);
  height: calc(100 / var(--base) * 100vw);
  background-color: var(--color-lightgray);
  vertical-align: middle;
  font-size: calc(12 / var(--base) * 100vw);
  font-weight: 700;
}
.page-service-pharmacies .unit-patients .space-graph {
  margin: 0 0 calc(63 / var(--base) * 100vw) 0;
  padding-bottom: 17px;
  overflow: auto;
  width: 100%;
  scrollbar-color: var(--color-main) var(--color-lightpink);
}
.page-service-pharmacies .unit-patients .space-graph .graph {
  min-width: 486px;
}
.page-service-pharmacies .unit-patients .space-graph .graph img {
  display: block;
  margin-bottom: calc(13 / var(--base) * 100vw);
  margin-left: calc(11 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-patients .space-graph .graph figcaption {
  display: block;
  font-size: min(18px, calc(18 / var(--base) * 100vw));
  font-weight: 700;
  text-align: center;
}
.page-service-pharmacies .unit-clerks {
  padding: calc(40 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  position: relative;
}
.page-service-pharmacies .unit-clerks::before {
  display: block;
  content: "";
  width: 100%;
  height: calc(1100 / var(--base) * 100vw);
  background-color: var(--color-main);
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
}
.page-service-pharmacies .unit-clerks .content {
  position: relative;
  z-index: 2;
}
.page-service-pharmacies .unit-training-center {
  padding: calc(30 / var(--base) * 100vw) 0 calc(80 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  position: relative;
  z-index: 2;
}
.page-service-pharmacies .unit-training-center .swiper-center-photos {
  margin: 0 0 0 calc(-30 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-training-center .swiper-center-photos .swiper-wrapper {
  transition-timing-function: linear;
}
.page-service-pharmacies .unit-curriculum {
  padding-bottom: calc(90 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-curriculum .content {
  padding: 0 0 0 calc(19 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-curriculum .list-flow .flow-item {
  display: grid;
  gap: 0 calc(10 / var(--base) * 100vw);
  grid-template-columns: calc(90 / var(--base) * 100vw) 1fr;
  grid-template-rows: auto 1fr;
  position: relative;
}
.page-service-pharmacies .unit-curriculum .list-flow .flow-item::after {
  display: block;
  content: "";
  background-color: var(--color-main);
  position: absolute;
  inset: calc(110 / var(--base) * 100vw) 0 0 calc(45 / var(--base) * 100vw);
  width: 1px;
  height: calc(100% - 130 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-curriculum .list-flow .flow-item:nth-of-type(3)::after {
  display: none;
}
.page-service-pharmacies .unit-curriculum .list-flow .num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  width: calc(90 / var(--base) * 100vw);
  height: calc(90 / var(--base) * 100vw);
  border-radius: calc(45 / var(--base) * 100vw);
  background-color: var(--color-main);
  color: #fff;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 0.8;
}
.page-service-pharmacies .unit-curriculum .list-flow .num .day {
  justify-self: end;
  font-size: calc(18 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-curriculum .list-flow .title {
  margin-top: calc(20 / var(--base) * 100vw);
  margin-bottom: calc(22 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  line-height: 1.4;
}
.page-service-pharmacies .unit-curriculum .list-flow .text {
  padding-right: calc(30 / var(--base) * 100vw);
  grid-column: 2;
  grid-row: 1;
}
.page-service-pharmacies .unit-curriculum .list-flow .list {
  margin-bottom: calc(38 / var(--base) * 100vw);
  font-size: calc(13 / var(--base) * 100vw);
  line-height: 2;
  font-weight: 400;
}
.page-service-pharmacies .unit-curriculum .list-flow .photo {
  padding-bottom: calc(40 / var(--base) * 100vw);
  grid-column: 2;
  grid-row: 2;
}
.page-service-pharmacies .unit-assistant {
  padding: calc(30 / var(--base) * 100vw) calc(57 / var(--base) * 100vw) calc(80 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  background-color: var(--color-lightgray);
}
.page-service-pharmacies .unit-assistant .certification {
  margin: calc(23 / var(--base) * 100vw) calc(-27 / var(--base) * 100vw) calc(63 / var(--base) * 100vw) 0;
}
.page-service-pharmacies .unit-assistant .flow {
  margin-right: calc(-27 / var(--base) * 100vw);
}
.page-service-pharmacies .unit-assistant .flow .title {
  margin: 0 0 calc(30 / var(--base) * 100vw) 0;
  padding: calc(11 / var(--base) * 100vw) 0;
  background-color: var(--color-lightpink);
  text-align: center;
  font-size: calc(22 / var(--base) * 100vw);
  font-weight: 700;
}
.page-service-pharmacies .unit-assistant .flow .flow-image {
  margin: 0 0 calc(30 / var(--base) * 100vw) 0;
}
.page-service-pharmacies .unit-assistant .flow .note {
  background-color: var(--color-lightpink);
  padding: calc(32 / var(--base) * 100vw) calc(45 / var(--base) * 100vw) calc(25 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  font-size: calc(12 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .page-service-pharmacies .common-header .title-en {
    font-size: min(55px, calc(55 / var(--base) * 100vw));
    bottom: min(5px, calc(5 / var(--base) * 100vw));
  }
  .page-service-pharmacies .common-header .title-en span:nth-of-type(2) {
    text-align: left;
  }
  .page-service-pharmacies .unit-problem {
    margin: min(120px, 120 / 1206 * 100vw) 0 min(55px, 55 / 1206 * 100vw) 0;
    padding: 0 0 min(40px, 40 / 1206 * 100vw) 0;
    position: relative;
  }
  .page-service-pharmacies .unit-problem .content {
    margin: 0 0 0 auto;
    padding: calc(106 / 1206 * 100vw) calc(80 / 1206 * 100vw) calc(100 / 1206 * 100vw) calc(80 / 1206 * 100vw);
    width: calc(720 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-problem .title-en {
    margin-top: calc(28 / 1206 * 100vw);
    margin-right: calc(45 / 1206 * 100vw);
    margin-left: auto;
    font-size: min(132px, 132 / 1206 * 100vw);
    font-size: min(102px, 102 / 1206 * 100vw);
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    z-index: 3;
  }
  .page-service-pharmacies .unit-problem .title-ja {
    word-break: normal;
  }
  .page-service-pharmacies .unit-problem .bg {
    margin: 0;
    width: calc(620 / 1206 * 100vw);
    position: absolute;
    inset: 0 auto auto 0;
  }
  .page-service-pharmacies .unit-patients {
    margin: min(55px, 55 / 1206 * 100vw) calc(40 / 1206 * 100vw) min(128px, 128 / 1206 * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-patients .content {
    margin: 0 calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-patients .text {
    margin: 0 calc(50 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(11 / var(--base) * 100vw);
  }
  .page-service-pharmacies .unit-patients .text p {
    font-size: 14px;
  }
  .page-service-pharmacies .unit-patients .space-graph {
    overflow: hidden;
  }
  .page-service-pharmacies .unit-patients .space-graph .graph img {
    margin-bottom: 14px;
    margin-left: 0;
  }
  .page-service-pharmacies .unit-clerks {
    padding: calc(40 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
    position: relative;
  }
  .page-service-pharmacies .unit-clerks::before {
    height: calc(1160 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-clerks .photo {
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .content {
    padding: 0 0 0 min(40px, 40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow {
    margin-left: min(40px, 40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .flow-item {
    gap: 0 min(40px, 40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .list {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .page-service-pharmacies .unit-assistant {
    padding-left: calc(40 / 1206 * 100vw);
    padding-right: calc(80 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .content {
    display: grid;
    grid-template-columns: 1fr min(400px, 400 / 1206 * 100vw);
    margin: 0 0 0 calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .certification {
    margin: 0;
  }
  .page-service-pharmacies .unit-assistant p {
    margin-right: min(122px, 122 / 1206 * 100vw);
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .page-service-pharmacies .unit-assistant .flow {
    margin: min(60px, 60 / 1206 * 100vw) auto 0 auto;
  }
  .page-service-pharmacies .unit-assistant .flow .title {
    margin: 0 0 calc(30 / var(--base) * 100vw) 0;
    padding: calc(11 / var(--base) * 100vw) 0;
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .flow .flow-note {
    margin: 0 auto 0 auto;
    position: relative;
    width: min(884px, 884 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .flow .flow-image {
    margin: 0 auto 0 auto;
    width: 100%;
  }
  .page-service-pharmacies .unit-assistant .flow .note {
    padding: min(35px, 35 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
    font-size: min(14px, 14 / 1206 * 100vw);
    width: min(400px, 400 / 1206 * 100vw);
    position: absolute;
    inset: auto auto 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-service-pharmacies .common-header .title-en {
    font-size: min(100px, 100 / 1366 * 100vw);
    bottom: min(5px, calc(5 / var(--base) * 100vw));
  }
  .page-service-pharmacies .common-header .title-en span:nth-of-type(2) {
    text-align: left;
  }
  .page-service-pharmacies .unit-problem .title-ja {
    font-size: min(36px, 36 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-patients .content {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr min(490px, 490 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-patients .content:nth-of-type(2) {
    margin-top: min(117px, calc(117 / var(--base) * 100vw));
    grid-template-columns: min(490px, 490 / 1206 * 100vw) 1fr;
  }
  .page-service-pharmacies .unit-patients .content:nth-of-type(2) .text {
    margin: 0 0 0 min(112px, 112 / 1206 * 100vw);
    grid-column: 2;
  }
  .page-service-pharmacies .unit-patients .text {
    margin: 0 min(112px, 112 / 1206 * 100vw) 0 0;
  }
  .page-service-pharmacies .unit-patients .table {
    margin: 0;
    padding-top: 30px;
  }
  .page-service-pharmacies .unit-patients .table th {
    font-size: min(18px, calc(18 / var(--base) * 100vw));
    height: min(100px, calc(100 / var(--base) * 100vw));
  }
  .page-service-pharmacies .unit-patients .table th::before {
    font-size: min(52px, calc(52 / var(--base) * 100vw));
    inset: -30px auto auto 10px;
  }
  .page-service-pharmacies .unit-patients .table td {
    padding: 0 min(24px, calc(24 / var(--base) * 100vw));
    height: min(130px, calc(130 / var(--base) * 100vw));
    font-size: 14px;
  }
  .page-service-pharmacies .unit-patients .space-graph {
    margin: 0;
    padding: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .page-service-pharmacies .unit-patients .space-graph .graph img {
    margin-bottom: 14px;
    margin-left: 0;
  }
  .page-service-pharmacies .unit-clerks {
    padding: min(40px, calc(40 / var(--base) * 100vw)) calc(40 / var(--base) * 100vw) min(48px, calc(48 / var(--base) * 100vw)) calc(40 / var(--base) * 100vw);
  }
  .page-service-pharmacies .unit-clerks::before {
    height: calc(1040 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-clerks .photo {
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-training-center {
    padding: min(48px, calc(48 / var(--base) * 100vw)) calc(40 / 1206 * 100vw) min(50px, calc(50 / var(--base) * 100vw)) calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-training-center .swiper-center-photos {
    margin: 0 calc(-40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum {
    padding: min(48px, calc(48 / var(--base) * 100vw)) calc(40 / 1206 * 100vw) min(100px, 100 / 1206 * 100vw) calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .content {
    padding: 0;
  }
  .page-service-pharmacies .unit-curriculum .list-flow {
    margin-left: min(40px, 40 / 1206 * 100vw);
    margin-right: calc(-40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .flow-item {
    grid-template-columns: min(140px, 140 / 1206 * 100vw) 1fr min(430px, 430 / 1206 * 100vw);
    gap: 0 min(20px, 20 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .num {
    width: min(140px, 140 / 1206 * 100vw);
    height: min(140px, 140 / 1206 * 100vw);
    border-radius: 70px;
    font-size: 14px;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .num .day {
    font-size: min(26px, calc(26 / var(--base) * 100vw));
    font-weight: 700;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .title {
    font-size: min(26px, 26 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .list {
    margin-bottom: min(58px, calc(58 / var(--base) * 100vw));
    font-size: 14px;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .photo {
    padding-bottom: calc(40 / var(--base) * 100vw);
    grid-column: 3;
    grid-row: 1;
  }
  .page-service-pharmacies .unit-assistant {
    padding: min(100px, 100 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw) min(190px, 190 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .content {
    display: grid;
    grid-template-columns: 1fr min(400px, 400 / 1206 * 100vw);
    margin: 0 calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .certification {
    margin: 0;
  }
  .page-service-pharmacies .unit-assistant p {
    margin-right: min(122px, 122 / 1206 * 100vw);
    font-size: 16px;
  }
  .page-service-pharmacies .unit-assistant .flow .title {
    margin: 0 auto min(30px, 30 / 1206 * 100vw) auto;
    padding: min(10px, 10 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1366px) {
  .page-service-pharmacies .unit-problem {
    margin: 120px auto 0 auto;
    width: 1366px;
  }
  .page-service-pharmacies .unit-problem .content {
    margin: 0 0 0 auto;
    padding: 100px 124px 100px 100px;
    width: 800px;
  }
  .page-service-pharmacies .unit-problem .title-en {
    margin: 28px 90px -16px auto;
  }
  .page-service-pharmacies .unit-problem .title-ja {
    margin-bottom: 57px;
  }
  .page-service-pharmacies .unit-problem .bg {
    margin: 0;
    width: 700px;
  }
  .page-service-pharmacies .unit-patients {
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 128px;
    width: 1126px;
  }
  .page-service-pharmacies .unit-clerks {
    padding: 40px 0 48px 0;
  }
  .page-service-pharmacies .unit-clerks .content {
    margin: 0 auto;
    width: 1366px;
  }
  .page-service-pharmacies .unit-clerks::before {
    height: calc(980 / var(--base) * 100vw);
  }
  .page-service-pharmacies .unit-training-center {
    padding: 48px 0;
  }
  .page-service-pharmacies .unit-training-center .title-layered {
    margin-left: auto;
    margin-right: auto;
    width: 1366px;
  }
  .page-service-pharmacies .unit-training-center .swiper-center-photos {
    margin: 0 calc(-40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum {
    padding: 48px 0 100px 0;
    margin: 0 auto;
    width: 1366px;
  }
  .page-service-pharmacies .unit-curriculum .content {
    padding: 0 0 0 120px;
  }
  .page-service-pharmacies .unit-curriculum .list-flow {
    margin-right: 0;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .flow-item {
    grid-template-columns: 140px 1fr 508px;
    gap: 0 20px;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .flow-item::after {
    inset: 160px 0 0 70px;
    height: calc(100% - 200px);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .title {
    font-size: min(26px, 26 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-curriculum .list-flow .list {
    margin: 0 72px 58px 0;
  }
  .page-service-pharmacies .unit-curriculum .list-flow .photo {
    padding-bottom: 0;
  }
  .page-service-pharmacies .unit-assistant {
    padding: 100px 0 190px 0;
    margin: 0 auto;
    width: 1126px;
  }
  .page-service-pharmacies .unit-assistant .content {
    display: grid;
    grid-template-columns: 1fr min(400px, 400 / 1206 * 100vw);
    margin: 0 calc(40 / 1206 * 100vw);
  }
  .page-service-pharmacies .unit-assistant .certification {
    margin: 0;
  }
  .page-service-pharmacies .unit-assistant p {
    margin-right: min(122px, 122 / 1206 * 100vw);
    font-size: 16px;
  }
  .page-service-pharmacies .unit-assistant .flow .title {
    margin: 0 auto min(30px, 30 / 1206 * 100vw) auto;
    padding: min(10px, 10 / 1206 * 100vw) min(30px, 30 / 1206 * 100vw);
    font-size: min(36px, 36 / 1206 * 100vw);
    width: -moz-fit-content;
    width: fit-content;
  }
}

.page-service-1123 .common-header .title-en {
  padding-left: calc(11 / var(--base) * 100vw);
  text-align: left;
  bottom: -5px;
}
.page-service-1123 .unit-about {
  padding: calc(70 / var(--base) * 100vw) 0 calc(56 / var(--base) * 100vw) 0;
}
.page-service-1123 .unit-about .bg {
  margin: 0 0 0 auto;
  width: calc(345 / var(--base) * 100vw);
}
.page-service-1123 .unit-about .content {
  margin: calc(-30 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) 0 0;
  padding: calc(72 / var(--base) * 100vw) calc(60 / var(--base) * 100vw) calc(48 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  background-color: var(--color-lightpink);
}
.page-service-1123 .unit-about .title {
  font-size: calc(26 / var(--base) * 100vw);
  color: var(--color-main);
  margin-bottom: calc(18 / var(--base) * 100vw);
  text-wrap: nowrap;
}
.page-service-1123 .unit-about p {
  font-size: 13px;
}
.page-service-1123 .unit-reasons {
  padding-bottom: calc(72 / var(--base) * 100vw);
}
.page-service-1123 .unit-reasons .photo {
  margin: 0 0 calc(18 / var(--base) * 100vw) 0;
}
.page-service-1123 .unit-reasons .text {
  padding: 0 calc(19 / var(--base) * 100vw);
}
.page-service-1123 .unit-reasons .list {
  margin: 0 calc(54 / var(--base) * 100vw) 0 calc(11 / var(--base) * 100vw);
  counter-reset: count-li;
}
.page-service-1123 .unit-reasons .list li {
  counter-increment: count-li;
}
.page-service-1123 .unit-reasons .list li:not(:last-of-type) {
  margin-bottom: calc(32 / var(--base) * 100vw);
}
.page-service-1123 .unit-reasons .list .title {
  margin: 0 0 calc(10 / var(--base) * 100vw) 0;
  padding: calc(5 / var(--base) * 100vw) 0 calc(13 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  color: var(--color-main);
  font-size: calc(20 / var(--base) * 100vw);
  position: relative;
  font-weight: 700;
  border-bottom: 1px solid var(--color-pink);
  text-wrap: auto;
}
.page-service-1123 .unit-reasons .list .title::before {
  content: counter(count-li);
  position: absolute;
  inset: 0 auto auto 0;
  font-size: calc(40 / var(--base) * 100vw);
  font-family: var(--font-decoration);
  font-style: italic;
}
.page-service-1123 .unit-reasons .list p {
  font-size: calc(14 / var(--base) * 100vw);
}
.page-service-1123 .unit-mission {
  padding: calc(40 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
  background-color: var(--color-main);
}
.page-service-1123 .unit-mission .list li {
  padding: 0 0 calc(24 / var(--base) * 100vw) 0;
  background-color: #fff;
}
.page-service-1123 .unit-mission .list li:not(:last-of-type) {
  margin-bottom: calc(25 / var(--base) * 100vw);
}
.page-service-1123 .unit-mission .list .photo {
  margin-bottom: calc(13 / var(--base) * 100vw);
}
.page-service-1123 .unit-mission .list .title {
  margin: 0 calc(24 / var(--base) * 100vw) calc(9 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(28 / var(--base) * 100vw);
  color: var(--color-main);
}
.page-service-1123 .unit-mission .list .lead {
  margin: 0 calc(24 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  font-size: calc(20 / var(--base) * 100vw);
  text-align: center;
  color: var(--color-main);
  line-height: 1.5;
  font-weight: 700;
}
.page-service-1123 .unit-mission .list .para {
  margin: 0 calc(24 / var(--base) * 100vw);
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.8;
}
.page-service-1123 .unit-buttons {
  padding: calc(56 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
}
.page-service-1123 .unit-buttons .list li:not(:last-of-type) {
  margin-bottom: calc(20 / var(--base) * 100vw);
}
.page-service-1123 .unit-buttons .list a {
  display: block;
  position: relative;
}
.page-service-1123 .unit-buttons .list a::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: 2;
  transition: opacity var(--duration-transition);
}
.page-service-1123 .unit-buttons .list a:hover::after {
  opacity: 0;
}
.page-service-1123 .unit-buttons .list .photo {
  position: relative;
  z-index: 1;
}
.page-service-1123 .unit-buttons .list p {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-size: calc(13 / var(--base) * 100vw);
  color: #fff;
  z-index: 3;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-service-1123 .common-header .title-en {
    padding-right: min(30px, 30 / 1206 * 100vw);
    text-align: left;
    bottom: min(10px, 10 / 1206 * 100vw);
  }
  .page-service-1123 .common-header .title-ja {
    margin-left: min(80px, 80 / 1206 * 100vw);
  }
  .page-service-1123 .unit-about {
    margin: calc(104 / 1206 * 100vw) 0 0 0;
    padding: 0 0 min(88px, 88 / 1206 * 100vw) calc(40 / 1206 * 100vw);
    position: relative;
    box-sizing: border-box;
  }
  .page-service-1123 .unit-about .bg {
    margin: 0;
    width: calc(480 / 1206 * 100vw);
    position: absolute;
    inset: min(54px, 54 / 1206 * 100vw) 0 auto auto;
    z-index: 2;
  }
  .page-service-1123 .unit-about .content {
    margin: 0;
    padding: min(92px, 92 / 1206 * 100vw) calc(148 / 1206 * 100vw) min(88px, 88 / 1206 * 100vw) min(100px, 100 / 1206 * 100vw);
    width: min(800px, 800 / 1206 * 100vw);
    position: relative;
    z-index: 1;
  }
  .page-service-1123 .unit-about .title {
    font-size: calc(26 / var(--base) * 100vw);
    color: var(--color-main);
    margin-bottom: calc(18 / var(--base) * 100vw);
    text-wrap: nowrap;
  }
  .page-service-1123 .unit-about p {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .page-service-1123 .unit-reasons {
    padding-bottom: calc(72 / var(--base) * 100vw);
    /*



    .list {
      margin: 0 cw(54) 0 cw(11);
      counter-reset: count-li;

      li {
        counter-increment: count-li;
        &:not(:last-of-type) {
          margin-bottom: cw(32);
        }
      }

      .title {
        margin: 0 0 cw(10) 0;
        padding: cw(5) 0 cw(13) cw(30);
        color: var(--color-main);
        font-weight: cw(20);
        position: relative;
        font-weight: 700;
        border-bottom: 1px solid var(--color-pink);
        text-wrap: auto;
        &::before {
          content: counter(count-li);
          position: absolute;
          inset: 0 auto auto 0;
          font-size: cw(40);
          font-family: var(--font-decoration);
          font-style: italic;
        }
      }
      p {
        font-size: cw(14);
      }
    }
      */
  }
  .page-service-1123 .unit-reasons .content {
    display: grid;
    grid-template-columns: min(470px, 470 / 1206 * 100vw) 1fr;
    gap: min(48px, 48 / 1206 * 100vw);
  }
  .page-service-1123 .unit-reasons .photo {
    margin: 0;
  }
  .page-service-1123 .unit-reasons .text {
    padding: 0;
  }
  .page-service-1123 .unit-mission {
    padding: min(56px, 56 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-service-1123 .unit-mission .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(30px, 30 / 1206 * 100vw);
  }
  .page-service-1123 .unit-mission .list li {
    padding: 0 0 min(32px, 32 / 1206 * 100vw) 0;
  }
  .page-service-1123 .unit-mission .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-service-1123 .unit-mission .list .photo {
    margin-bottom: min(16px, 16 / 1206 * 100vw);
  }
  .page-service-1123 .unit-mission .list .title {
    margin: 0 0 min(13px, 13 / 1206 * 100vw) 0;
    font-size: min(28px, calc(28 / var(--base) * 100vw));
  }
  .page-service-1123 .unit-mission .list .lead {
    margin: 0 0 min(13px, 13 / 1206 * 100vw) 0;
    font-size: min(20px, 20 / 1206 * 100vw);
  }
  .page-service-1123 .unit-mission .list .para {
    margin: 0 min(40px, 40 / 1206 * 100vw);
    font-size: 14px;
  }
  .page-service-1123 .unit-buttons {
    padding: min(104px, 104 / 1206 * 100vw) 0;
  }
  .page-service-1123 .unit-buttons .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(42px, 42 / 1206 * 100vw);
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
  .page-service-1123 .unit-buttons .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-service-1123 .unit-buttons .list p {
    font-size: min(18px, 18 / 1206 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .page-service-1123 .unit-about {
    margin: min(104px, calc(104 / var(--base) * 100vw)) auto 0 auto;
    width: min(1366px, calc(1366 / var(--base) * 100vw));
    padding: 0 0 min(88px, calc(88 / var(--base) * 100vw)) 0;
  }
  .page-service-1123 .unit-about .bg {
    width: min(552px, calc(552 / var(--base) * 100vw));
  }
  .page-service-1123 .unit-about .content {
    margin: 0;
    padding: min(92px, calc(92 / var(--base) * 100vw)) min(128px, calc(128 / var(--base) * 100vw)) min(88px, calc(88 / var(--base) * 100vw)) min(100px, calc(100 / var(--base) * 100vw));
    width: min(800px, calc(800 / var(--base) * 100vw));
    translate: min(80px, calc(80 / var(--base) * 100vw)) 0;
  }
  .page-service-1123 .unit-about .title {
    font-size: min(32px, calc(32 / var(--base) * 100vw));
    margin-bottom: min(28px, calc(28 / var(--base) * 100vw));
  }
  .page-service-1123 .unit-about .title br {
    display: none;
  }
  .page-service-1123 .unit-reasons {
    margin: 0 auto;
    width: min(1366px, calc(1366 / var(--base) * 100vw));
    padding-bottom: cwmiin(105);
  }
  .page-service-1123 .unit-reasons .content {
    display: grid;
    grid-template-columns: min(470px, 470 / 1206 * 100vw) 1fr;
    gap: min(106px, 106 / 1206 * 100vw);
  }
  .page-service-1123 .unit-reasons .text {
    padding: 0;
  }
  .page-service-1123 .unit-reasons .list {
    margin: 0 min(158px, 158 / 1366 * 100vw) 0 min(40px, 40 / 1366 * 100vw);
  }
  .page-service-1123 .unit-reasons .list li:not(:last-of-type) {
    margin-bottom: min(32px, 32 / 1366 * 100vw);
  }
  .page-service-1123 .unit-reasons .list .title {
    margin: 0 0 min(9px, 9 / 1366 * 100vw) 0;
    padding: min(5px, 5 / 1366 * 100vw) 0 min(9px, 9 / 1366 * 100vw) min(48px, 48 / 1366 * 100vw);
    font-size: min(24px, 24 / 1336 * 100vw);
  }
  .page-service-1123 .unit-reasons .list .title::before {
    font-size: min(52px, 52 / 1336 * 100vw);
  }
  .page-service-1123 .unit-reasons .list p {
    font-size: min(16px, 16 / 1336 * 100vw);
  }
  .page-service-1123 .unit-mission .content {
    margin: 0 auto;
    padding: 0 min(30px, calc(30 / var(--base) * 100vw));
    width: min(1206px, calc(1206 / var(--base) * 100vw));
  }
  .page-service-1123 .unit-mission .list {
    margin: 0 auto;
    width: min(1050px, calc(1050 / var(--base) * 100vw));
  }
}

.page-contact .content {
  padding: calc(80 / var(--base) * 100vw) calc(30 / var(--base) * 100vw);
}
.page-contact .intro {
  margin-bottom: calc(45 / var(--base) * 100vw);
}
.page-contact .notice {
  color: var(--color-main);
  font-weight: 700;
  font-style: normal;
}
.page-contact .privacy-notice {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-contact .content {
    margin: 0 auto;
    padding: calc(80 / var(--base) * 100vw) 0;
    width: min(795px, 795 / 1206 * 100vw);
  }
}

.page-about .unit-ceo {
  margin: calc(33 / var(--base) * 100vw) 0 calc(60 / var(--base) * 100vw) 0;
}
.page-about .unit-ceo .title-en {
  margin: 0 0 calc(-15 / var(--base) * 100vw) calc(23 / var(--base) * 100vw);
  font-family: var(--font-decoration);
  font-size: calc(68 / var(--base) * 100vw);
  color: var(--color-pink);
  font-style: italic;
}
.page-about .unit-ceo .content {
  margin: 0 0 0 calc(30 / var(--base) * 100vw);
  padding: calc(22 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(116 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  background-image: url(../images/about/ceo-bg.webp);
  background-color: var(--color-lightpink);
  background-size: calc(260 / var(--base) * 100vw) auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-about .unit-ceo .title-ja {
  font-size: calc(40 / var(--base) * 100vw);
  margin-bottom: calc(12 / var(--base) * 100vw);
  color: var(--color-main);
  font-weight: 700;
}
.page-about .unit-ceo .title-ja .role {
  font-size: calc(24 / var(--base) * 100vw);
}
.page-about .unit-ceo p {
  font-size: calc(13 / var(--base) * 100vw);
  font-weight: 700;
}
.page-about .unit-ceo .photo {
  margin-top: calc(-72 / var(--base) * 100vw);
  width: calc(297 / var(--base) * 100vw);
  position: relative;
}
.page-about .unit-information {
  padding: 0 calc(19 / var(--base) * 100vw) calc(64 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
}
.page-about .unit-information .content {
  margin: 0 calc(11 / var(--base) * 100vw);
}
.page-about .unit-information .table table {
  width: 100%;
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-lightblue);
}
.page-about .unit-information .table th {
  padding: 16px 16px 20px 0;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  border-top: 1px solid var(--color-lightblue);
  white-space: nowrap;
  width: 7.5em;
}
.page-about .unit-information .table td {
  padding: 16px 0;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  border-top: 1px solid var(--color-lightblue);
}
.page-about .unit-information .table dt:not(:first-of-type) {
  margin-top: 1em;
}
.page-about .unit-access {
  padding: calc(72 / var(--base) * 100vw) calc(19 / var(--base) * 100vw) calc(64 / var(--base) * 100vw) calc(19 / var(--base) * 100vw);
  background-color: var(--color-lightpink);
}
.page-about .unit-access .content {
  margin: 0 calc(11 / var(--base) * 100vw);
}
.page-about .unit-access .map {
  margin: 0 0 calc(19 / var(--base) * 100vw) 0;
  width: 100%;
  height: 315px;
}
.page-about .unit-access .map iframe {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-about .unit-access .access-note {
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-about .unit-ceo {
    margin: min(125px, 125 / 1206 * 100vw) auto min(70px, 70 / 1206 * 100vw) auto;
    width: min(918px, 918 / 1206 * 100vw);
    position: relative;
  }
  .page-about .unit-ceo .title-en {
    margin: 0 0 min(-15px, -15 / 1206 * 100vw) min(67px, 67 / 1206 * 100vw);
    font-size: min(132px, 132 / 1206 * 100vw);
  }
  .page-about .unit-ceo .content {
    margin: 0 auto 0 0;
    padding: min(64px, 64 / 1205 * 100vw) min(64px, 64 / 1205 * 100vw) min(64px, 64 / 1205 * 100vw) min(64px, 64 / 1205 * 100vw);
    width: min(615px, 615 / 1206 * 100vw);
    background-size: 360px auto;
  }
  .page-about .unit-ceo .title-ja {
    font-size: min(40px, 40 / 1206 * 100vw);
  }
  .page-about .unit-ceo .title-ja .role {
    font-size: min(24px, 24 / 1206 * 100vw);
  }
  .page-about .unit-ceo p {
    font-size: 14px;
    font-weight: 700;
  }
  .page-about .unit-ceo .photo {
    margin: 0;
    width: min(344px, 344 / 1206 * 100vw);
    position: absolute;
    inset: 0 0 0 auto;
  }
  .page-about .unit-information {
    padding: min(72px, 72 / 1205 * 100vw) min(40px, 40 / 1205 * 100vw);
  }
  .page-about .unit-information .content {
    margin: 0 min(40px, 40 / 1206 * 100vw);
  }
  .page-about .unit-information .table table {
    font-size: 14px;
  }
  .page-about .unit-information .table th {
    padding: 16px 16px 20px 0;
    width: 7.5em;
  }
  .page-about .unit-information .table td {
    padding: 16px 0;
  }
  .page-about .unit-access {
    padding: min(102px, 102 / 1206 * 100vw) min(40px, 40 / 1206 * 100vw);
  }
  .page-about .unit-access .content {
    margin: 0 min(40px, 40 / 1206 * 100vw);
  }
  .page-about .unit-access .map {
    margin: 0 0 min(21px, 21 / 1206 * 100vw) 0;
    height: min(412px, 412 / 1206 * 100vw);
  }
  .page-about .unit-access .access-note {
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .page-about .unit-information {
    margin: 0 auto;
    width: min(1126px, 1126 / 1206 * 100vw);
    padding-right: 0;
    padding-left: 0;
  }
  .page-about .unit-information .content {
    display: grid;
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
    grid-template-columns: repeat(2, 1fr);
    gap: min(80px, 80 / 1206 * 100vw);
  }
  .page-about .unit-information .table table {
    font-size: 14px;
  }
  .page-about .unit-information .table th {
    padding: 16px 16px 20px 0;
    width: 7.5em;
  }
  .page-about .unit-information .table td {
    padding: 16px 0;
  }
  .page-about .unit-access .title-mid {
    width: min(1126px, 1126 / 1206 * 100vw);
    padding-right: 0;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .page-about .unit-access .content {
    margin: 0 auto;
    width: min(1050px, 1050 / 1206 * 100vw);
  }
}

.page-news .post-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(15 / var(--base) * 100vw) calc(21 / var(--base) * 100vw);
  margin-bottom: calc(16 / var(--base) * 100vw);
  padding-bottom: calc(15 / var(--base) * 100vw);
  border-bottom: 1px solid var(--color-lightblue);
}
.page-news .date {
  font-size: calc(16 / var(--base) * 100vw);
  color: var(--color-blue);
  font-family: var(--font-en);
}
.page-news .categories {
  grid-column: 2;
  grid-row: 1;
  font-size: calc(15 / var(--base) * 100vw);
}
.page-news .categories a {
  display: block;
  padding: 0.2em 2em;
  background-color: var(--color-pink);
  color: var(--color-main);
  border-radius: 30px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.page-news .post-title {
  grid-column: 1/3;
  text-wrap: auto;
  font-size: calc(24 / var(--base) * 100vw);
}
@media screen and (min-width: 1024px) {
  .page-news .post-header {
    gap: 16px 21px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .page-news .date {
    font-size: 16px;
  }
  .page-news .categories {
    font-size: 15px;
  }
  .page-news .post-title {
    font-size: 32px;
  }
}

.page-job-list {
  background-color: var(--color-pink);
}
.page-job-list .unit-sq {
  margin: calc(40 / var(--base) * 100vw) calc(30 / var(--base) * 100vw) 0 calc(30 / var(--base) * 100vw);
  padding: calc(24 / var(--base) * 100vw);
  background-color: #fff;
}
.page-job-list .unit-sq .type-button {
  width: 100%;
  box-sizing: border-box;
}
.page-job-list .unit-sq .content {
  display: grid;
  gap: calc(8 / var(--base) * 100vw);
}
.page-job-list .navigation.pagination .page-numbers {
  background-color: #fff;
  color: var(--color-main);
}
.page-job-list .navigation.pagination .page-numbers:hover, .page-job-list .navigation.pagination .page-numbers.current, .page-job-list .navigation.pagination .page-numbers.prev, .page-job-list .navigation.pagination .page-numbers.next {
  background-color: var(--color-main);
  color: #fff;
}
.page-job-list .navigation.pagination .page-numbers:hover:hover, .page-job-list .navigation.pagination .page-numbers.current:hover, .page-job-list .navigation.pagination .page-numbers.prev:hover, .page-job-list .navigation.pagination .page-numbers.next:hover {
  background-color: #fff;
  color: var(--color-text);
}
@media screen and (min-width: 768px) {
  .page-job-list .unit-sq .content {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: min(16px, calc(16 / var(--base) * 100vw));
  }
  .page-job-list .unit-sq .select select {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .page-job-list .unit-sq .type-button {
    height: min(44px, 44 / 1366 * 100vw);
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .page-job-list .unit-sq {
    margin: min(70px, calc(70 / var(--base) * 100vw)) auto 0 auto;
    padding: min(40px, calc(40 / var(--base) * 100vw));
    width: min(795px, 795 / 1366 * 100vw);
  }
  .page-job-list .unit-sq .content {
    grid-template-columns: 26% 26% 1fr 20%;
  }
}

.list-job-item {
  padding: calc(40 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 1024px) {
  .list-job-item {
    padding: min(70px, calc(70 / var(--base) * 100vw)) 0;
  }
}

.job-item {
  margin: 0 calc(30 / var(--base) * 100vw);
  padding: calc(20 / var(--base) * 100vw);
  background-color: #fff;
}
.job-item:not(:last-of-type) {
  margin-bottom: calc(30 / var(--base) * 100vw);
}
.job-item .photo {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.job-item .company {
  margin: 0 0 calc(5 / var(--base) * 100vw) 0;
  font-size: calc(14 / var(--base) * 100vw);
  color: var(--color-blue);
  font-family: var(--font-en);
}
.job-item .title {
  margin-bottom: calc(11 / var(--base) * 100vw);
  text-wrap: auto;
  font-size: calc(18 / var(--base) * 100vw);
}
.job-item .list-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 / var(--base) * 100vw);
}
.job-item .list-contact button,
.job-item .list-contact a {
  display: block;
  padding: 0.6em 0;
  background-color: #ccc;
  border-style: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
}
.job-item .list-contact button.go2detail,
.job-item .list-contact a.go2detail {
  color: #fff;
  background-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .job-item {
    margin: 0 auto;
    padding: min(32px, calc(32 / var(--base) * 100vw));
    width: min(795px, 795 / 1206 * 100vw);
  }
  .job-item .photo {
    margin-bottom: min(22px, calc(22 / var(--base) * 100vw));
  }
  .job-item .company {
    margin: 0 0 min(5px, calc(5 / var(--base) * 100vw)) 0;
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .job-item .title {
    margin-bottom: min(18px, calc(18 / var(--base) * 100vw));
    font-size: min(24px, calc(24 / var(--base) * 100vw));
  }
  .job-item .list-contact button,
  .job-item .list-contact a {
    padding: 0.6em 0;
    font-size: min(18px, calc(18 / var(--base) * 100vw));
  }
}

.table-job {
  margin-bottom: calc(24 / var(--base) * 100vw);
}
.table-job table {
  width: 100%;
  border-collapse: collapse;
}
.table-job th {
  vertical-align: top;
  padding: calc(13 / var(--base) * 100vw) calc(16 / var(--base) * 100vw) calc(13 / var(--base) * 100vw) 0;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.5;
  white-space: nowrap;
  text-align: left;
  border-top: 1px solid var(--color-lightblue);
  border-bottom: 1px solid var(--color-lightblue);
}
.table-job td {
  vertical-align: top;
  padding: calc(13 / var(--base) * 100vw) 0;
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.5;
  border-top: 1px solid var(--color-lightblue);
  border-bottom: 1px solid var(--color-lightblue);
}
.table-job p {
  font-size: calc(12 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .table-job {
    margin-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .table-job th {
    padding: 13px 16px 13px 0;
    font-size: 14px;
  }
  .table-job td {
    padding: 13px 0;
    font-size: 14px;
  }
  .table-job p {
    font-size: 14px;
  }
}

.page-job-item {
  background-color: var(--color-pink);
}
.page-job-item .content {
  padding: calc(40 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 1024px) {
  .page-job-item .content {
    padding: min(70px, calc(70 / var(--base) * 100vw)) 0;
  }
}/*# sourceMappingURL=style.css.map */