@charset "utf-8";
/* スクリーンリーダー用
sr-only
------------------------------------------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* アニメーション用
animation
------------------------------------------------------------------*/
[data-js-fadeInAnimation] {
  opacity: 0;
  visibility: hidden;
}
[data-js-fadeChain] > * {
  opacity: 0;
  visibility: hidden;
}

/* ボタン1
common__button1
------------------------------------------------------------------*/
.common__button1 {
  display: grid;
  place-content: center;
  min-width: calc(200 / 1920 * 100vw);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-secondary);
  border-radius: 100vmax;
  position: relative;
  margin-inline: auto;
  padding-block: calc(18 / 1920 * 100vw);
  transition: var(--transition);
}
.common__button1-text {
  font-family: var(--ff-en1);
  font-size: var(--fz18);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-secondary);
  transform: translateX(-5px);
  transition: var(--transition);
}
.common__button1:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(23 / 1920 * 100vw);
  -webkit-mask-image: url(../images/common/arrow_icon.svg);
  mask-image: url(../images/common/arrow_icon.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: var(--color-secondary);
  width: calc(11 / 1920 * 100vw);
  height: calc(11 / 1920 * 100vw);
  transition: var(--transition);
}
@media (any-hover: hover) {
  .common__button1:hover {
    background: var(--color-secondary);
    opacity: 1;
  }
  .common__button1:hover .common__button1-text {
    transform: translateX(-10px);
    color: #fff;
  }
  .common__button1:hover:after {
    transform: translate(5px, -50%);
    background: #fff;
  }
}
@media screen and (max-width: 1599px) {
  .common__button1 {
    min-width: calc(200 / 1599 * 100vw);
    padding-block: calc(18 / 1599 * 100vw);
  }
  .common__button1:after {
    right: calc(23 / 1599 * 100vw);
    width: calc(11 / 1599 * 100vw);
    height: calc(11 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .common__button1 {
    min-width: calc(200 / 1440 * 100vw);
    padding-block: calc(18 / 1440 * 100vw);
  }
  .common__button1:after {
    right: calc(23 / 1440 * 100vw);
    width: calc(11 / 1440 * 100vw);
    height: calc(11 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .common__button1 {
    min-width: calc(200 / 375 * 100vw);
    padding-block: calc(20 / 375 * 100vw);
  }
  .common__button1:after {
    right: calc(23 / 375 * 100vw);
    width: calc(11 / 375 * 100vw);
    height: calc(11 / 375 * 100vw);
  }
  .common__button1-text {
    font-size: var(--fz16);
  }
}
/* ボタン2
common__button2
------------------------------------------------------------------*/
.common__button2 {
  padding: calc(10 / 1920 * 100vw);
  border-radius: 100vmax;
  border: 1px solid var(--color-primary);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.common__button2-link {
  display: grid;
  place-content: center;
  width: calc(880 / 1920 * 100vw);
  height: calc(130 / 1920 * 100vw);
  border-radius: 100vmax;
  position: relative;
  padding-block: calc(18 / 1920 * 100vw);
}
.common__button2-text {
  font-weight: 500;
  font-size: var(--fz24);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 1;
}
.common__button2-text--small {
  font-size: var(--fz18);
}
.common__button2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  overflow: hidden;
}
.common__button2-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.common__button2-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(14 / 1920 * 100vw);
  width: calc(106 / 1920 * 100vw);
}
.common__button2-circle-icon {
  width: 100%;
}
.common__button2-circle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/common/arrow_icon.svg) no-repeat center / contain;
  width: calc(14 / 1920 * 100vw);
  height: calc(12 / 1920 * 100vw);
}
@media (any-hover: hover) {
  .common__button2-link:hover {
    opacity: 1;
  }
  /* ホバーで回転開始 */
  .common__button2-link:hover .common__button2-circle-icon {
    -webkit-animation: rotate360 10s linear infinite;
    animation: rotate360 10s linear infinite;
    will-change: transform;
  }
}
/* 回転アニメーション */
@-webkit-keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1599px) {
  .common__button2 {
    padding: calc(10 / 1599 * 100vw);
  }
  .common__button2-link {
    width: calc(880 / 1599 * 100vw);
    height: calc(130 / 1599 * 100vw);
    padding-block: calc(18 / 1599 * 100vw);
  }
  .common__button2-circle {
    right: calc(14 / 1599 * 100vw);
    width: calc(106 / 1599 * 100vw);
  }
  .common__button2-circle:after {
    width: calc(14 / 1599 * 100vw);
    height: calc(12 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .common__button2 {
    padding: calc(10 / 1440 * 100vw);
  }
  .common__button2-link {
    width: calc(880 / 1440 * 100vw);
    height: calc(130 / 1440 * 100vw);
    padding-block: calc(18 / 1440 * 100vw);
  }
  .common__button2-circle {
    right: calc(14 / 1440 * 100vw);
    width: calc(106 / 1440 * 100vw);
  }
  .common__button2-circle:after {
    width: calc(14 / 1440 * 100vw);
    height: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .common__button2 {
    width: 100%;
    padding: calc(8 / 375 * 100vw);
  }
  .common__button2-link {
    width: 100%;
    height: calc(106 / 375 * 100vw);
    padding-block: calc(18 / 375 * 100vw);
  }
  .common__button2-circle {
    right: calc(15 / 375 * 100vw);
    width: calc(72 / 375 * 100vw);
  }
  .common__button2-circle:after {
    width: calc(9 / 375 * 100vw);
    height: calc(8 / 375 * 100vw);
  }
  .common__button2-text {
    font-size: var(--fz17);
  }
  .common__button2-text--small {
    font-size: var(--fz12);
  }
}

/* ボタン3
common__button3
------------------------------------------------------------------*/
.common__button3 {
  display: inline-block;
  width: calc(320 / 1920 * 100vw);
  height: calc(106 / 1920 * 100vw);
  border-radius: 100vmax;
  border: 1px solid var(--color-secondary);
  padding: calc(10 / 1920 * 100vw);
  transition: var(--transition);
}
.common__button3-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border-radius: 100vmax;
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.common__button3-inner:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(22 / 1920 * 100vw);
  background: url(../images/common/arrow_icon.svg) no-repeat center center /
    contain;
  width: calc(15 / 1920 * 100vw);
  height: calc(13 / 1920 * 100vw);
  transition: var(--transition);
}
.common__button3-textEn {
  font-family: var(--ff-en1);
  font-size: var(--fz21);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: calc(5 / 1920 * 100vw);
  padding-top: calc(5 / 1920 * 100vw);
}
.common__button3-textJa {
  font-size: var(--fz12);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  padding-top: calc(5 / 1920 * 100vw);
}
@media (any-hover: hover) {
  .common__button3:hover {
    opacity: 1;
    border: 1px solid var(--color-primary);
  }
  .common__button3:hover .common__button3-inner {
    background: var(--color-primary);
  }
  .common__button3:hover .common__button3-inner:after {
    transform: translate(5px, -50%);
  }
}
@media screen and (max-width: 1599px) {
  .common__button3 {
    width: calc(320 / 1599 * 100vw);
    height: calc(106 / 1599 * 100vw);
    padding: calc(10 / 1599 * 100vw);
  }
  .common__button3-inner:after {
    right: calc(22 / 1599 * 100vw);
    width: calc(15 / 1599 * 100vw);
    height: calc(13 / 1599 * 100vw);
  }
  .common__button3-textEn {
    padding-bottom: calc(5 / 1599 * 100vw);
    padding-top: calc(5 / 1599 * 100vw);
  }
  .common__button3-textJa {
    padding-top: calc(5 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .common__button3 {
    width: calc(320 / 1440 * 100vw);
    height: calc(106 / 1440 * 100vw);
    padding: calc(10 / 1440 * 100vw);
  }
  .common__button3-inner:after {
    right: calc(22 / 1440 * 100vw);
    width: calc(15 / 1440 * 100vw);
    height: calc(13 / 1440 * 100vw);
  }
  .common__button3-textEn {
    padding-bottom: calc(5 / 1440 * 100vw);
    padding-top: calc(5 / 1440 * 100vw);
  }
  .common__button3-textJa {
    padding-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .common__button3 {
    width: calc(280 / 375 * 100vw);
    height: calc(93 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw);
  }
  .common__button3-inner:after {
    right: calc(19 / 375 * 100vw);
    width: calc(13 / 375 * 100vw);
    height: calc(11 / 375 * 100vw);
  }
  .common__button3-textEn {
    font-size: var(--fz18);
    padding-bottom: calc(5 / 375 * 100vw);
    padding-top: calc(5 / 375 * 100vw);
  }
  .common__button3-textJa {
    font-size: var(--fz10);
    padding-top: calc(5 / 375 * 100vw);
  }
}
/* タグリンク
common__tags
------------------------------------------------------------------*/
.common__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 / 1920 * 100vw);
}
.common__tag-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 / 1920 * 100vw);
  background: linear-gradient(180deg, var(--color-secondary) 0%, #c0967e 100%);
  border-radius: calc(20 / 1920 * 100vw);
  box-shadow: 2px 2px 4px 0px #81554233;
  font-weight: 500;
  font-size: var(--fz21);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  height: calc(78 / 1920 * 100vw);
  text-align: center;
  transition: var(--transition);
}
.common__tag-link:before {
  content: "";
  background: #fff;
  width: calc(10 / 1920 * 100vw);
  height: calc(16 / 1920 * 100vw);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media (any-hover: hover) {
  .common__tag-link:hover {
    opacity: 1;
    transform: translate(4px, 4px);
    box-shadow: none;
  }
}
@media screen and (max-width: 1599px) {
  .common__tags {
    gap: calc(32 / 1599 * 100vw);
  }
  .common__tag-link {
    gap: calc(14 / 1599 * 100vw);
    border-radius: calc(20 / 1599 * 100vw);
    height: calc(78 / 1599 * 100vw);
  }
  .common__tag-link:before {
    width: calc(10 / 1599 * 100vw);
    height: calc(16 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .common__tags {
    gap: calc(32 / 1440 * 100vw);
  }
  .common__tag-link {
    gap: calc(14 / 1440 * 100vw);
    border-radius: calc(20 / 1440 * 100vw);
    height: calc(78 / 1440 * 100vw);
  }
  .common__tag-link:before {
    width: calc(10 / 1440 * 100vw);
    height: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .common__tags {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 / 375 * 100vw) calc(10 / 375 * 100vw);
  }
  .common__tag-link {
    font-size: var(--fz14);
    gap: calc(7 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
  }
  .common__tag-link:before {
    width: calc(6 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
  }
}

/* ピンク */
.common__tags--pink .common__tag-link {
  background: linear-gradient(180deg, var(--color-accent) 0%, #cd9891 100%);
}

/* セクションタイトル
section__titleEn
section__titleJa
------------------------------------------------------------------*/
.section__titleEn {
  font-family: var(--ff-en1);
  font-size: var(--fz64);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.section__titleJa {
  font-weight: 500;
  font-size: var(--fz21);
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--color-text);
  position: relative;
  margin-top: calc(5 / 1920 * 100vw);
}
.section__titleJa-text {
  position: relative;
  z-index: 2;
}
.section__titleJa:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../images/common/section_title_bg.svg) no-repeat center center /
    contain;
  width: calc(498 / 1920 * 100vw);
  height: calc(56 / 1920 * 100vw);
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .section__titleJa {
    margin-top: calc(5 / 1599 * 100vw);
  }
  .section__titleJa:before {
    width: calc(498 / 1599 * 100vw);
    height: calc(56 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .section__titleJa {
    margin-top: calc(5 / 1440 * 100vw);
  }
  .section__titleJa:before {
    width: calc(498 / 1440 * 100vw);
    height: calc(56 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .section__titleEn {
    font-size: var(--fz42);
    line-height: 1;
    text-align: center;
  }
  .section__titleJa {
    font-size: var(--fz15);
    text-align: center;
    line-height: 1.6;
    margin-top: calc(10 / 375 * 100vw);
  }
  .section__titleJa:before {
    width: calc(335 / 375 * 100vw);
    height: calc(38 / 375 * 100vw);
  }
}

/* テキスト
section__lead
section__text
------------------------------------------------------------------*/
.section__lead {
  font-weight: 500;
  font-size: var(--fz16);
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
.section__text {
  font-weight: 500;
  font-size: var(--fz14);
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .section__lead {
    font-size: var(--fz14);
  }
}
/* インナー
section__inner
------------------------------------------------------------------*/
.section__inner {
  max-width: calc(1124 / 1920 * 100vw);
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 1599px) {
  .section__inner {
    max-width: calc(1124 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .section__inner {
    max-width: calc(1124 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .section__inner {
    max-width: 100%;
    width: 100%;
    padding-inline: calc(20 / 375 * 100vw);
  }
}

/* 背景
------------------------------------------------------------------*/
body {
  background: var(--color-bg-secondary);
}
body:has(#wrap.home) {
  background: var(--color-bg);
}

/* ヘッダー header
------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(330 / 1920 * 100vw);
  z-index: 1;
  transition: var(--transition);
}
.header__logo img {
  width: 100%;
}
.header__telWrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background: var(--color-tertiary);
  padding-inline: calc(25 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  padding-block: calc(12 / 1920 * 100vw);
  border-radius: 100vmax 0 0 100vmax;
}
.header__tel-text {
  font-weight: 500;
  font-size: var(--fz12);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  padding-right: calc(16 / 1920 * 100vw);
  position: relative;
}
.header__tel-text:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: calc(1 / 1920 * 100vw);
  height: calc(22 / 1920 * 100vw);
  background: #fff;
}
.header__tel {
  font-weight: 500;
  font-size: var(--fz26);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
  padding-left: calc(16 / 1920 * 100vw);
}
.header__tel:before {
  content: "";
  background: url("../images/common/tel_icon.svg") no-repeat center / contain;
  width: calc(14 / 1920 * 100vw);
  height: calc(21 / 1920 * 100vw);
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: var(--opacity);
  }
}
@media screen and (max-width: 1599px) {
  .header__logo {
    width: calc(330 / 1599 * 100vw);
  }
  .header__telWrap {
    padding-inline: calc(25 / 1599 * 100vw) calc(20 / 1599 * 100vw);
    padding-block: calc(12 / 1599 * 100vw);
  }
  .header__tel-text {
    padding-right: calc(16 / 1599 * 100vw);
  }
  .header__tel-text:after {
    width: calc(1 / 1599 * 100vw);
    height: calc(22 / 1599 * 100vw);
  }
  .header__tel {
    gap: calc(8 / 1599 * 100vw);
    padding-left: calc(16 / 1599 * 100vw);
  }
  .header__tel:before {
    width: calc(14 / 1599 * 100vw);
    height: calc(21 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .header__logo {
    width: calc(330 / 1440 * 100vw);
  }
  .header__telWrap {
    padding-inline: calc(25 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    padding-block: calc(12 / 1440 * 100vw);
  }
  .header__tel-text {
    padding-right: calc(16 / 1440 * 100vw);
  }
  .header__tel-text:after {
    width: calc(1 / 1440 * 100vw);
    height: calc(22 / 1440 * 100vw);
  }
  .header__tel {
    gap: calc(8 / 1440 * 100vw);
    padding-left: calc(16 / 1440 * 100vw);
  }
  .header__tel:before {
    width: calc(14 / 1440 * 100vw);
    height: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: calc(210 / 375 * 100vw);
  }
  .header__telWrap {
    display: none;
  }
}
/* グローバルナビゲーション gnav
------------------------------------------------------------------*/
.gnav {
  margin-top: calc(80 / 1920 * 100vw);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
.gnav__description {
  font-weight: 400;
  font-size: var(--fz12);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--color-text);
  height: calc(60 / 1920 * 100vw);
  place-content: center;
  padding-left: calc(312 / 1920 * 100vw);
  background: #fff;
  opacity: 0;
  transition: var(--transition);
}
.gnav.is-active .gnav__description {
  opacity: 1;
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccaa99e5;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  height: calc(60 / 1920 * 100vw);
}
.gnav__link {
  height: calc(60 / 1920 * 100vw);
  padding-inline: calc(20 / 1920 * 100vw);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: calc(6 / 1920 * 100vw);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.gnav__en {
  font-family: var(--ff-en1);
  font-size: var(--fz12);
  line-height: calc(15 / 12);
  letter-spacing: 0.06em;
}
.gnav__ja {
  font-size: var(--fz15);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.gnav__item {
  position: relative;
  transition: var(--transition);
}
.gnav__item.is-open {
  background: var(--color-primary);
}
/* ドロップダウンメニュー */
.gnav__submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  box-shadow: 3px 3px 10px 0px #963f0726;
  z-index: 100;

  /* アニメーション用 */
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

/* 開いた時の状態 */
.has-dropdown.is-open > .gnav__submenu {
  opacity: 1;
  visibility: visible;
  max-height: calc(800 / 1920 * 100vw); /* サブメニュー内容で調整 */
}

/* サブメニューリスト装飾 */
.gnav__submenu li:not(:last-child) {
  border-bottom: 1px solid var(--color-secondary);
}
.gnav__submenu a {
  display: block;
  padding: calc(8 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  font-size: var(--fz12);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: calc(10 / 1920 * 100vw);
  white-space: nowrap;
}
.gnav__submenu a:before {
  content: "";
  width: calc(7 / 1920 * 100vw);
  height: calc(9 / 1920 * 100vw);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: var(--color-text);
  flex-shrink: 0;
  transition: var(--transition);
}
.gnav__submenu a span {
  transition: var(--transition);
}
/* 下層ページのナビゲーション */
.gnav.is-lower {
  margin-top: 0;
}
@media (any-hover: hover) {
  .gnav__item:hover {
    opacity: 1;
    background: var(--color-primary);
  }
  .gnav__submenu a:hover span {
    transform: translateX(5px);
    color: var(--color-secondary);
  }
  .gnav__submenu a:hover:before {
    transform: translateX(5px);
    background: var(--color-secondary);
  }
}
@media screen and (max-width: 1599px) {
  .gnav {
    margin-top: calc(80 / 1599 * 100vw);
  }
  .gnav__description {
    height: calc(60 / 1599 * 100vw);
    padding-left: calc(312 / 1599 * 100vw);
  }
  .gnav__list {
    height: calc(60 / 1599 * 100vw);
  }
  .gnav__link {
    height: calc(60 / 1599 * 100vw);
    padding-inline: calc(20 / 1599 * 100vw);
    gap: calc(6 / 1599 * 100vw);
  }
  /* ドロップダウンメニュー */
  .has-dropdown.is-open > .gnav__submenu {
    max-height: calc(800 / 1599 * 100vw);
  }
  .gnav__submenu a {
    padding: calc(8 / 1599 * 100vw) calc(20 / 1599 * 100vw);
    gap: calc(10 / 1599 * 100vw);
  }
  .gnav__submenu a:before {
    width: calc(7 / 1599 * 100vw);
    height: calc(9 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .gnav {
    margin-top: calc(80 / 1440 * 100vw);
  }
  .gnav__description {
    height: calc(60 / 1440 * 100vw);
    padding-left: calc(312 / 1440 * 100vw);
  }
  .gnav__list {
    height: calc(60 / 1440 * 100vw);
  }
  .gnav__link {
    height: calc(60 / 1440 * 100vw);
    padding-inline: calc(20 / 1440 * 100vw);
    gap: calc(6 / 1440 * 100vw);
  }
  /* ドロップダウンメニュー */
  .has-dropdown.is-open > .gnav__submenu {
    max-height: calc(800 / 1440 * 100vw);
  }
  .gnav__submenu a {
    padding: calc(8 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    gap: calc(10 / 1440 * 100vw);
  }
  .gnav__submenu a:before {
    width: calc(7 / 1440 * 100vw);
    height: calc(9 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    display: none;
  }
}

/* ハンバーガーメニュー
sp-menu-toggle
sp-menu
------------------------------------------------------------------*/
/* ハンバーガーボタン */
.sp-menu-toggle {
  position: fixed;
  top: calc(30 / 375 * 100vw);
  left: calc(-54 / 375 * 100vw);
  z-index: 1000;
  width: calc(55 / 375 * 100vw);
  height: calc(60 / 375 * 100vw);
  background: #ccaa99e5;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: none;
  cursor: pointer;
  border-radius: 100vmax 0 0 100vmax;
  box-shadow: -10px 0px 20px 0px #81554233;
}
.sp-menu-toggle .bar {
  position: absolute;
  transform: rotate(-25deg);
  left: calc(20 / 375 * 100vw);
  width: calc(21 / 375 * 100vw);
  height: 1px;
  background: #fff;
  border-radius: 100vmax;
  transition: var(--transition);
}
.sp-menu-toggle .bar:nth-child(1) {
  top: calc(14 / 375 * 100vw);
}
.sp-menu-toggle .bar:nth-child(2) {
  top: calc(22 / 375 * 100vw);
}
.sp-menu-toggle .bar:nth-child(3) {
  top: calc(30 / 375 * 100vw);
}
.sp-menu-toggle .text {
  position: absolute;
  left: 55%;
  transform: translateX(-50%);
  bottom: calc(10 / 375 * 100vw);
  font-size: var(--fz10);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  transition: var(--transition);
}
/* バツ印アニメーション */
.sp-menu-toggle.is-open .bar:nth-child(1) {
  transform: translateY(calc(8 / 375 * 100vw)) rotate(45deg);
}
.sp-menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}
.sp-menu-toggle.is-open .bar:nth-child(3) {
  transform: translateY(calc(-8 / 375 * 100vw)) rotate(-45deg);
}

/* メニュー本体（右からスライドイン） */
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transform: translateX(100%);
  transition: var(--transition);
  will-change: transform;
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-menu {
    display: block;
  }
}
.sp-menu.is-open {
  transform: translateX(0);
}
body:has(.sp-menu.is-open) {
  overflow: hidden;
}

/* メニューリスト（共通部） */
.sp-menu__list {
  width: calc(320 / 375 * 100vw);
  background: #ccaa99e5;
  border-radius: 0 0 0 55px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding-block: calc(40 / 375 * 100vw) calc(50 / 375 * 100vw);
  padding-inline: calc(20 / 375 * 100vw);
  max-height: 92svh;
  overflow-y: auto;
  position: relative;
  z-index: 1001;
}
.sp-menu__item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.sp-menu__link {
  display: flex;
  flex-direction: column;
  gap: calc(5 / 375 * 100vw);
  width: 100%;
  padding-block: calc(18 / 375 * 100vw);
  padding-inline: calc(10 / 375 * 100vw);
  color: #fff;
  position: relative;
  text-align: left;
}
.sp-menu__en {
  font-family: var(--ff-en1);
  font-size: var(--fz17);
  line-height: 1;
  letter-spacing: 0.06em;
}
.sp-menu__ja {
  font-weight: 600;
  font-size: var(--fz10);
  line-height: 1;
  letter-spacing: 0.06em;
}

/* サブメニューアイコン（三角） */
.sp-menu__item > .sp-menu__link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(10 / 375 * 100vw);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #fff;
  width: calc(7 / 375 * 100vw);
  height: calc(11 / 375 * 100vw);
  transition: var(--transition);
}
.sp-menu__item.has-submenu > .sp-menu__link:after {
  transform: rotate(90deg);
}
.sp-menu__item.is-open > .sp-menu__link:after {
  transform: rotate(270deg);
}

/* サブメニュー本体（アニメつき） */
.sp-menu__submenu {
  background: #a0511d;
  transition: var(--transition);
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
}
.sp-menu__item.is-open > .sp-menu__submenu {
  max-height: calc(1000 / 375 * 100vw);
}
.sp-menu__submenu li:not(:first-child) {
  border-top: 1px solid #fff;
}
.sp-menu__submenu a {
  display: block;
  padding-block: calc(17 / 375 * 100vw);
  padding-inline: calc(10 / 375 * 100vw);
  font-weight: 600;
  font-size: var(--fz12);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(11 / 375 * 100vw);
}
.sp-menu__submenu a:before {
  content: "";
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #fff;
  width: calc(7 / 375 * 100vw);
  height: calc(11 / 375 * 100vw);
}

/* フッター footer
------------------------------------------------------------------*/
.footer {
  position: relative;
  padding-top: calc(138 / 1920 * 100vw);
  padding-bottom: calc(30 / 1920 * 100vw);
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(90 / 1920 * 100vw);
}
.footer__logo {
  width: calc(239 / 1920 * 100vw);
}
.footer__logo img {
  width: 100%;
}
.footer__nav {
  width: calc(795 / 1920 * 100vw);
}
.footer__nav-title {
  font-family: var(--ff-en1);
  font-weight: 400;
  font-size: var(--fz24);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  padding-bottom: calc(26 / 1920 * 100vw);
  border-bottom: 1px solid #fff;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(24 / 1920 * 100vw) calc(70 / 1920 * 100vw);
  margin-top: calc(30 / 1920 * 100vw);
}
.footer__nav-item {
  width: 35%;
}
.footer__nav-item a {
  font-weight: 500;
  font-size: var(--fz16);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: calc(10 / 1920 * 100vw);
}
.footer__nav-item a:before {
  content: "";
  width: calc(8 / 1920 * 100vw);
  height: calc(12 / 1920 * 100vw);
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background: #fff;
}
.footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer__copyright {
  display: block;
  font-family: var(--ff-en1);
  font-size: var(--fz14);
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin-top: calc(86 / 1920 * 100vw);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1599px) {
  .footer {
    padding-top: calc(138 / 1599 * 100vw);
    padding-bottom: calc(30 / 1599 * 100vw);
  }
  .footer__inner {
    gap: calc(90 / 1599 * 100vw);
  }
  .footer__logo {
    width: calc(239 / 1599 * 100vw);
  }
  .footer__nav {
    width: calc(795 / 1599 * 100vw);
  }
  .footer__nav-title {
    padding-bottom: calc(26 / 1599 * 100vw);
  }
  .footer__nav-list {
    gap: calc(24 / 1599 * 100vw) calc(70 / 1599 * 100vw);
    margin-top: calc(30 / 1599 * 100vw);
  }
  .footer__nav-item a {
    gap: calc(10 / 1599 * 100vw);
  }
  .footer__nav-item a:before {
    width: calc(8 / 1599 * 100vw);
    height: calc(12 / 1599 * 100vw);
  }
  .footer__copyright {
    margin-top: calc(86 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .footer {
    padding-top: calc(138 / 1440 * 100vw);
    padding-bottom: calc(30 / 1440 * 100vw);
  }
  .footer__inner {
    gap: calc(90 / 1440 * 100vw);
  }
  .footer__logo {
    width: calc(239 / 1440 * 100vw);
  }
  .footer__nav {
    width: calc(795 / 1440 * 100vw);
  }
  .footer__nav-title {
    padding-bottom: calc(26 / 1440 * 100vw);
  }
  .footer__nav-list {
    gap: calc(24 / 1440 * 100vw) calc(70 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
  .footer__nav-item a {
    gap: calc(10 / 1440 * 100vw);
  }
  .footer__nav-item a:before {
    width: calc(8 / 1440 * 100vw);
    height: calc(12 / 1440 * 100vw);
  }
  .footer__copyright {
    margin-top: calc(86 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: calc(60 / 375 * 100vw);
    padding-bottom: calc(64 / 375 * 100vw);
  }
  .footer__inner {
    gap: calc(30 / 375 * 100vw);
    flex-direction: column;
  }
  .footer__logo {
    width: calc(180 / 375 * 100vw);
  }
  .footer__nav {
    width: 100%;
    padding-inline: calc(10 / 375 * 100vw);
  }
  .footer__nav-title {
    font-size: var(--fz18);
    padding-bottom: calc(20 / 375 * 100vw);
  }
  .footer__nav-list {
    gap: calc(26 / 375 * 100vw) calc(70 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    flex-direction: column;
  }
  .footer__nav-item {
    width: 100%;
  }
  .footer__nav-item a {
    font-size: var(--fz12);
    gap: calc(7 / 375 * 100vw);
  }
  .footer__nav-item a:before {
    width: calc(6 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
  }
  .footer__copyright {
    font-size: var(--fz11);
    margin-top: calc(20 / 375 * 100vw);
  }
}

/* 追従エリア fixed-area
------------------------------------------------------------------*/
.fixed-area {
  position: fixed;
  bottom: 0;
  right: calc(20 / 1920 * 100vw);
  display: flex;
  gap: calc(16 / 1920 * 100vw);
  z-index: 100;
  transform: translateY(100%);
  transition: var(--transition);
}
.fixed-area.is-active {
  transform: translateY(0);
}
.fixed-area__link {
  width: calc(154 / 1920 * 100vw);
  height: calc(174 / 1920 * 100vw);
  border-radius: 100vmax 100vmax 0 0;
  border: 1px solid #fff;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(25 / 1920 * 100vw);
  transform: translateY(calc(20 / 1920 * 100vw));
  transition: var(--transition);
}
.fixed-area__link-textMain {
  font-weight: 500;
  font-size: var(--fz18);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin-top: calc(12 / 1920 * 100vw);
}
.fixed-area__link-textSub {
  font-weight: 500;
  font-size: var(--fz12);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin-top: calc(6 / 1920 * 100vw);
}
.fixed-area__link-icon {
  width: calc(50 / 1920 * 100vw);
}
.fixed-area__link-icon img {
  width: 100%;
}
.fixed-area__link-textWrap {
  display: flex;
  flex-direction: column;
}
@media (any-hover: hover) {
  .fixed-area__link:hover {
    opacity: 1;
    transform: translateY(calc(5 / 1920 * 100vw));
  }
}
@media screen and (max-width: 1599px) {
  .fixed-area {
    right: calc(20 / 1599 * 100vw);
    gap: calc(16 / 1599 * 100vw);
  }
  .fixed-area__link {
    width: calc(154 / 1599 * 100vw);
    height: calc(174 / 1599 * 100vw);
    padding-top: calc(25 / 1599 * 100vw);
    transform: translateY(calc(20 / 1599 * 100vw));
  }
  .fixed-area__link-textMain {
    margin-top: calc(12 / 1599 * 100vw);
  }
  .fixed-area__link-textSub {
    margin-top: calc(6 / 1599 * 100vw);
  }
  .fixed-area__link-icon {
    width: calc(50 / 1599 * 100vw);
  }
}
@media screen and (max-width: 1440px) {
  .fixed-area {
    right: calc(20 / 1440 * 100vw);
    gap: calc(16 / 1440 * 100vw);
  }
  .fixed-area__link {
    width: calc(154 / 1440 * 100vw);
    height: calc(174 / 1440 * 100vw);
    padding-top: calc(25 / 1440 * 100vw);
    transform: translateY(calc(20 / 1440 * 100vw));
  }
  .fixed-area__link-textMain {
    margin-top: calc(12 / 1440 * 100vw);
  }
  .fixed-area__link-textSub {
    margin-top: calc(6 / 1440 * 100vw);
  }
  .fixed-area__link-icon {
    width: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .fixed-area {
    width: 100%;
    gap: calc(5 / 375 * 100vw);
    right: auto;
    left: 0;
  }
  .fixed-area__tel {
    width: calc(60 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    border-radius: 100vmax 100vmax 0 0;
    background: var(--color-tertiary);
    display: grid;
    place-content: center;
    padding-top: calc(5 / 375 * 100vw);
  }
  .fixed-area__tel-icon {
    width: calc(18 / 375 * 100vw);
    height: calc(28 / 375 * 100vw);
  }
  .fixed-area__link {
    width: calc(120 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    padding-top: 0;
    transform: translateY(0);
    border-radius: calc(30 / 375 * 100vw) calc(30 / 375 * 100vw) 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: calc(4 / 375 * 100vw);
    border: none;
    padding-top: calc(4 / 375 * 100vw);
  }
  .fixed-area__link-icon {
    width: calc(24 / 375 * 100vw);
    margin-left: 0;
  }
  .fixed-area__link-textMain {
    font-size: var(--fz13);
    margin-top: 0;
  }
  .fixed-area__link-textSub {
    font-size: var(--fz10);
    margin-top: 0;
  }
  .fixed-area__topBtn {
    width: calc(60 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    border-radius: 100vmax 100vmax 0 0;
    background: #ffffffe5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: calc(10 / 375 * 100vw);
  }
  .fixed-area__topBtn:before {
    content: "";
    width: calc(10 / 375 * 100vw);
    height: calc(9 / 375 * 100vw);
    -webkit-mask-image: url(../images/common/arrow_icon.svg);
    mask-image: url(../images/common/arrow_icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--color-text);
    rotate: -90deg;
  }
  .fixed-area__topBtn-text {
    font-family: var(--font-en1);
    font-size: var(--fz12);
    letter-spacing: 0.04em;
    text-align: center;
    color: var(--color-text);
  }
}

/* メインイメージ main_img
------------------------------------------------------------------*/
.main_img {
  position: relative;
}
.main_img:after {
  content: "";
  background: url("../images/index/frame_main01.svg") no-repeat center / cover;
  width: calc(729 / 1920 * 100vw);
  height: calc(496 / 1920 * 100vw);
  right: 0;
  bottom: -1px;
  position: absolute;
  z-index: 1;
}
.main_img .slide_main {
  opacity: 0;
  transition: opacity 0.3s linear;
}
.main_img .slide_main.slick-initialized {
  opacity: 1;
}
.main_img .slide_main li {
  min-height: calc(840 / 1920 * 100vw);
  height: 100vh;
}
.main_img.tab .slide_main li {
  height: auto;
}
.main01 {
  background: url(../images/index/main01.jpg) no-repeat center / cover;
}
.main02 {
  background: url(../images/index/main02.jpg) no-repeat center / cover;
}
.main03 {
  background: url(../images/index/main03.jpg) no-repeat center / cover;
}
.main04 {
  background: url(../images/index/main04.jpg) no-repeat center / cover;
}
.main05 {
  background: url(../images/index/main05.jpg) no-repeat center / cover;
}
.wrap_main01 {
  left: 6.5%;
  bottom: calc(80 / 1920 * 100vw);
}
.copy_main01 .en {
  width: calc(597 / 1920 * 100vw);
}
.row_main01 .col {
  background: url("../images/index/bg_main01.svg") no-repeat center / cover;
  width: calc(210 / 1920 * 100vw);
  height: calc(262 / 1920 * 100vw);
}
.row_main01 .col:not(:last-child) {
  margin-right: calc(20 / 1920 * 100vw);
}
.bnr_main01 {
  right: calc(90 / 1920 * 100vw);
  bottom: calc(10 / 1920 * 100vw);
  width: calc(340 / 1920 * 100vw);
}
.bnr_pr01 {
  max-width: 350px;
}
.bnr_pr02 {
  max-width: 250px;
}
.bnr_main02 {
  right: calc(28 / 1920 * 100vw);
  top: calc(210 / 1920 * 100vw);
  width: calc(430 / 1920 * 100vw);
}

@media (min-width: 768px) and (max-width: 1599px) {
  .main_img .slide_main li {
    min-height: calc(840 / 1599 * 100vw);
  }
  .main_img:after {
    width: calc(729 / 1599 * 100vw);
    height: calc(496 / 1599 * 100vw);
  }
  .wrap_main01 {
    left: 5%;
    /* bottom: calc(80 / 1599 * 100vw); */
    bottom: calc(20 / 1599 * 100vw);
  }
  .copy_main01 .en {
    width: calc(597 / 1599 * 100vw);
  }
  .row_main01 .col {
    width: calc(210 / 1599 * 100vw);
    height: calc(262 / 1599 * 100vw);
  }
  .row_main01 .col:not(:last-child) {
    margin-right: calc(20 / 1599 * 100vw);
  }
  .bnr_main01 {
    right: calc(90 / 1599 * 100vw);
    bottom: calc(10 / 1599 * 100vw);
    width: calc(340 / 1599 * 100vw);
  }
  .bnr_main02 {
    right: calc(28 / 1599 * 100vw);
    top: calc(210 / 1599 * 100vw);
    width: calc(380 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .main_img .slide_main li {
    min-height: calc(840 / 1299 * 100vw);
    height: auto;
  }
  .main_img:after {
    width: calc(729 / 1299 * 100vw);
    height: calc(496 / 1299 * 100vw);
  }
  .wrap_main01 {
    left: calc(50 / 1299 * 100vw);
    /* bottom: calc(80 / 1299 * 100vw); */
    bottom: calc(20 / 1299 * 100vw);
  }
  .copy_main01 .en {
    width: calc(500 / 1299 * 100vw);
  }
  .copy_main01 .ja {
    text-shadow: 0px 0px 5px #eff3f4, 0px 0px 5px #eff3f4, 0px 0px 10px #eff3f4,
      0px 0px 10px #eff3f4, 0px 0px 15px #eff3f4, 0px 0px 15px #eff3f4;
  }
  .row_main01 .col {
    width: calc(190 / 1299 * 100vw);
    height: calc(237 / 1299 * 100vw);
  }
  .row_main01 .col:not(:last-child) {
    margin-right: calc(20 / 1299 * 100vw);
  }
  .bnr_main01 {
    right: calc(90 / 1299 * 100vw);
    bottom: calc(10 / 1299 * 100vw);
    width: calc(300 / 1299 * 100vw);
  }
  .bnr_main02 {
    right: calc(28 / 1299 * 100vw);
    top: calc(175 / 1299 * 100vw);
    width: calc(320 / 1299 * 100vw);
  }
  .bnr_pr01 {
    max-width: 230px;
  }
  .bnr_pr02 {
    max-width: 230px;
  }
}
@media only screen and (max-width: 767px) {
  .main_img {
    /* padding-bottom: 7vw; */
    padding-bottom: 11vw;
  }
  .main_img .slide_main li {
    min-height: auto;
    height: auto;
  }
  .main01,
  .main02,
  .main03 {
    background: none;
  }
  .main_img:before {
    content: "";
    position: absolute;
    width: 100%;
    /* height: calc(780 / 750 * 100vw); */
    height: calc(270 / 750 * 100vw);
    background: #283466;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .main_img:after {
    width: calc(729 / 750 * 100vw);
    height: calc(496 / 750 * 100vw);
    bottom: auto;
    top: calc(365 / 750 * 100vw);
  }
  .wrap_main01 {
    left: calc(50 / 750 * 100vw);
    bottom: auto;
    top: calc(360 / 750 * 100vw);
  }
  .copy_main01 {
    margin-bottom: 2vw;
  }
  .copy_main01 .en {
    width: calc(511 / 750 * 100vw);
    margin-bottom: 4.5vw;
  }
  .copy_main01 .ja {
    /* font-size: 1.0625rem; */
    font-size: 0.8rem;
    letter-spacing: 0;
    line-height: 1.7;
  }
  .row_main01 {
    width: calc(646 / 750 * 100vw);
    justify-content: space-between !important;
  }
  .row_main01 .col {
    width: calc(310 / 750 * 100vw);
    height: calc(390 / 750 * 100vw);
    margin: 0 !important;
    padding: 9vw 0 0;
  }
  .row_main01 .col:last-child {
    margin: calc(-40 / 750 * 100vw) auto 0 !important;
  }
  .row_main01 .txt01 {
    font-size: 0.75rem;
  }
  .row_main01 .txt01 .fz26 {
    font-size: 1.3125rem;
  }
  .row_main01 .txt01 .fz24 {
    font-size: 1.125rem;
  }
  .row_main01 .txt02 {
    font-size: 0.625rem;
  }
  .row_main01 .col_c {
    font-size: 0.8125rem;
  }
  .row_main01 .col_c em {
    font-size: 1.125rem;
  }
  .row_main01 .col_r {
    font-size: 1rem;
  }
  .row_main01 .col_r em {
    font-size: 1.1875rem;
  }
  .bnr_main01 {
    right: auto;
    bottom: auto;
    position: relative;
    /* margin: 104vw auto 6vw; */
    margin: 28vw auto 6vw;
    width: calc(646 / 750 * 100vw);
  }
  .bnr_main02 {
    right: auto;
    bottom: -16vw;
    position: relative;
    margin: 5vw auto 5vw;
    width: calc(646 / 750 * 100vw);
  }
  .address_main {
    font-size: 0.875rem;
  }
  .top_adress {
    padding-top: 31vw;
  }
  .row_bnr01 {
    max-width: 100%;
  }
  .row_bnr01 .bnr {
    max-width: 100%;
    width: 90%;
  }
  .row_bnr01 .bnr02 {
    max-width: 100%;
    width: 50%;
  }
}

/* 新着情報 index_news
------------------------------------------------------------------*/
.box__news01 {
  border: 1px solid #283466;
}
.row__news01 {
  max-width: 1340px;
}
.ttl__news01 {
  width: calc(160 / 1920 * 100vw);
}
/* ※パーフェクトスクロールバー用基本css ここからデザインに合わせて適宜変更してください */
.index_news ul {
  width: calc(100% - calc(160 / 1920 * 100vw));
  overflow: hidden;
  position: relative;
  padding-right: calc(20 / 1920 * 100vw);
  max-height: 170px;
  height: auto;
  touch-action: auto !important;
  line-height: 1.67;
}
.index_news li:not(:last-of-type) {
  margin-bottom: calc(20 / 1920 * 100vw);
}
.index_news li dt {
}
.index_news li dd {
}
.index_news li dd a {
  color: #e84366; /* コーダーさんへに記載されている★標準テキスト：リンク色に変更*/
  text-decoration: underline;
}
/* パーフェクトスクロールバー */
.ps__thumb-y {
  background: #283466 !important;
  right: 0px !important;
  width: 2px !important;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  background: none !important;
  right: 0px !important;
  width: 2px !important;
  opacity: 1 !important;
}
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-x:focus,
.ps .ps__rail-x:hover,
.ps .ps__rail-y.ps--clicking,
.ps .ps__rail-y:focus,
.ps .ps__rail-y:hover {
  opacity: 1 !important;
}
@media (min-width: 768px) and (max-width: 1599px) {
  .ttl__news01 {
    width: calc(160 / 1599 * 100vw);
  }
  .index_news ul {
    padding-right: calc(20 / 1599 * 100vw);
  }
  .index_news li:not(:last-of-type) {
    margin-bottom: calc(20 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .ttl__news01 {
    width: calc(160 / 1299 * 100vw);
  }
  .index_news ul {
    padding-right: calc(20 / 1299 * 100vw);
  }
  .index_news li:not(:last-of-type) {
    margin-bottom: calc(20 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .index_news {
    padding: calc(60 / 750 * 100vw) 0;
  }
  .box__news01 {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
    padding: 6.5vw 5vw 8vw;
  }
  .ttl__news01 {
    width: 100%;
    text-align: center;
    margin-bottom: 6.5vw;
  }
  .ttl__news01 .ja {
    font-size: 1.25rem;
  }
  .ttl__news01 .en {
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
  }
  .index_news ul {
    width: 100%;
    padding-right: 5vw;
    max-height: calc(510 / 750 * 100vw);
  }
  .index_news li:not(:last-of-type) {
    margin-bottom: 4.5vw;
  }
  .index_news li dl {
    display: block;
  }
  .index_news li dt {
    font-size: 0.875rem;
    letter-spacing: 0;
    width: 100%;
  }
  .index_news li dd {
    width: 100%;
    line-height: 1.5625;
  }
  .ps__thumb-y,
  .ps--active-x > .ps__rail-x,
  .ps--active-y > .ps__rail-y {
    width: 2px !important;
  }
}

/* こんなお悩みはありませんか？ index_type
------------------------------------------------------------------*/
.index_type {
  border-bottom: 2px solid #283466;
}
.index_type:before {
  content: "";
  width: 100%;
  /*height: calc(360 / 1920 * 100vw);*/
  height: calc(1100 / 1920 * 100vw);
  background: rgb(114, 136, 185);
  background: linear-gradient(
    90deg,
    rgba(114, 136, 185, 1) 0%,
    rgba(213, 235, 245, 1) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.ttl__type01 .en {
  font-size: 4.875rem;
}
.row__type01 {
  max-width: 1280px;
}
.row__type01 .col {
  width: 14.0625%;
  margin-right: 3.125%;
}
.row__type01 .col:nth-child(6n),
.row__type01 .col:last-child {
  margin-right: 0;
}
.arw__type01 {
  width: calc(220 / 1920 * 100vw);
}
.row__type02 {
  max-width: 1000px;
}
.row__type02 .col {
  width: 49%;
}
.row__type02 a {
  height: calc(90 / 1920 * 100vw);
}
.row__type02 a:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  /*.index_type:before {
		height: calc(360 / 1599 * 100vw);
	}*/
  .index_type:before {
    height: calc(1100 / 1599 * 100vw);
  }
  .arw__type01 {
    width: calc(220 / 1599 * 100vw);
  }
  .row__type02 a {
    height: calc(90 / 1599 * 100vw);
  }
  .row__type02 a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  /*.index_type:before {
		height: calc(360 / 1299 * 100vw);
	}*/
  .index_type:before {
    height: calc(1100 / 1299 * 100vw);
  }
  .arw__type01 {
    width: calc(220 / 1299 * 100vw);
  }
  .row__type02 a {
    height: calc(90 / 1299 * 100vw);
  }
  .row__type02 a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .index_type {
    padding: 9vw 0 calc(80 / 750 * 100vw);
  }
  /*.index_type:before {
		height: calc(918 / 750 * 100vw);
	}*/
  .index_type:before {
    height: calc(1100 / 750 * 100vw);
  }
  .ttl__type01 {
    margin-bottom: 7vw;
  }
  .ttl__type01 .en {
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }
  .ttl__type01 .ja {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
  .row__type01 {
    max-width: calc(640 / 750 * 100vw);
    margin-bottom: 15vw;
  }
  .row__type01 .col {
    width: 28.125%;
    margin-right: 7.8125% !important;
  }
  .row__type01 .col:nth-child(3n),
  .row__type01 .col:last-child {
    margin-right: 0 !important;
  }
  .row__type01 .col:not(:nth-child(-n + 3)) {
    margin-top: 7vw;
  }
  .row__type01 .icn {
    margin-bottom: 2vw;
  }
  .row__type01 .txt {
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .arw__type01 {
    width: calc(220 / 750 * 100vw);
    margin-bottom: 5vw;
  }
  .ttl__type02 {
    font-size: 1.125rem;
    letter-spacing: 0;
    line-height: 1.56;
    margin-bottom: 4vw;
  }
  .txt__type01 {
    margin-bottom: 6vw;
  }
  .row__type02 {
    max-width: calc(600 / 750 * 100vw);
    display: block;
  }
  .row__type02 .col {
    width: 100%;
  }
  .row__type02 .col_l {
    margin-bottom: calc(20 / 750 * 100vw);
  }
  .row__type02 a {
    height: calc(120 / 750 * 100vw);
    font-size: 1rem;
    letter-spacing: 0;
  }
  .row__type02 a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .bnr__type01 {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
  }
}

/* 毛&毛クリニックが選ばれる5つの理由 index_reason
------------------------------------------------------------------*/
.index_reason {
  border-bottom: 2px solid #283466;
}
.copy_index01 .icn {
  width: calc(34 / 1920 * 100vw);
  height: calc(45 / 1920 * 100vw);
  -webkit-mask-image: url("../images/page/icn_logo.svg");
  mask-image: url("../images/page/icn_logo.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-primary);
}
.copy_index01 .icn img {
  display: none;
}
.index_reason .parallax {
  width: 100%;
  /* height: 74%; */
  height: 66%;
  background: url("../images/index/bg__reason01.jpg") no-repeat center / cover;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.row__reason01 .col {
  width: 30.7%;
  max-width: 460px;
  margin-right: 3.95%;
}
.row__reason01 .col:nth-child(3n),
.row__reason01 .col:last-child {
  margin-right: 0;
}
.row__reason01 .col:not(:nth-child(-n + 3)) {
  margin-top: calc(60 / 1920 * 100vw);
}
.row__reason01 .box {
  height: calc(260 / 1920 * 100vw);
}
.row__reason01 .box:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    var(--color-quaternary) 0%,
    var(--color-text) 100%
  );
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 0;
  opacity: 0.5;
}
.row__reason01 .col:nth-child(2n) .box:before {
  background: linear-gradient(
    0deg,
    var(--color-quaternary) 0%,
    var(--color-text) 100%
  );
}
.row__reason01 .box:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
.row__reason01 .num {
  line-height: 0.9;
}
.btn__reason01 {
  width: calc(660 / 1920 * 100vw);
}
.btn__reason01 a {
  height: calc(120 / 1920 * 100vw);
  border: 1px solid #414245;
}
.btn__reason01 a:after {
  border-width: calc(7 / 1920 * 100vw);
  border-color: transparent var(--color-text) var(--color-text) transparent;
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
.bg__reason02 {
  background: url("../images/index/bg__reason02.svg") no-repeat left top /
      calc(460 / 1920 * 100vw) auto,
    url("../images/index/bg__reason03.svg") no-repeat right bottom /
      calc(460 / 1920 * 100vw) auto;
}
.ttl__reason02 .icn {
  width: calc(34 / 1920 * 100vw);
}
.row__reason02 {
  max-width: 1000px;
}
.row__reason02 .col {
  width: 48%;
}
.row__reason02 .box {
  height: calc(140 / 1920 * 100vw);
}
.row__reason02 .box:before {
  content: "";
  position: absolute;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-left: 2px solid #e84366;
  border-top: 2px solid #e84366;
  left: calc(10 / 1920 * 100vw);
  top: calc(10 / 1920 * 100vw);
}
.row__reason02 .box:after {
  content: "";
  position: absolute;
  width: calc(40 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-right: 2px solid #e84366;
  border-bottom: 2px solid #e84366;
  right: calc(10 / 1920 * 100vw);
  bottom: calc(10 / 1920 * 100vw);
}
@media (min-width: 768px) {
  .row__reason01 .col:nth-child(3n + 2) {
    transition-delay: 0.1s;
  }
  .row__reason01 .col:nth-child(3n) {
    transition-delay: 0.2s;
  }
  .row__reason01 .col a {
    position: relative;
    top: 0;
    transition: 0.3s;
  }
  .row__reason01 .col a:hover {
    top: calc(-20 / 1920 * 100vw);
    transition: 0.3s;
  }
}
@media (min-width: 768px) and (max-width: 1599px) {
  .copy_index01 .icn {
    width: calc(34 / 1599 * 100vw);
    height: calc(45 / 1599 * 100vw);
  }
  .row__reason01 .col:not(:nth-child(-n + 3)) {
    margin-top: calc(60 / 1599 * 100vw);
  }
  .row__reason01 .col a:hover {
    top: calc(-20 / 1599 * 100vw);
  }
  .row__reason01 .box {
    height: calc(260 / 1599 * 100vw);
  }
  .row__reason01 .box:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
  .btn__reason01 {
    width: calc(660 / 1599 * 100vw);
  }
  .btn__reason01 a {
    height: calc(120 / 1599 * 100vw);
  }
  .btn__reason01 a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
  .bg__reason02 {
    background: url("../images/index/bg__reason02.svg") no-repeat left top /
        calc(460 / 1599 * 100vw) auto,
      url("../images/index/bg__reason03.svg") no-repeat right bottom /
        calc(460 / 1599 * 100vw) auto;
  }
  .ttl__reason02 .icn {
    width: calc(34 / 1599 * 100vw);
  }
  .row__reason02 .box {
    height: calc(140 / 1599 * 100vw);
  }
  .row__reason02 .box:before {
    width: calc(40 / 1599 * 100vw);
    height: calc(40 / 1599 * 100vw);
    left: calc(10 / 1599 * 100vw);
    top: calc(10 / 1599 * 100vw);
  }
  .row__reason02 .box:after {
    width: calc(40 / 1599 * 100vw);
    height: calc(40 / 1599 * 100vw);
    right: calc(10 / 1599 * 100vw);
    bottom: calc(10 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .copy_index01 .icn {
    width: calc(34 / 1299 * 100vw);
    height: calc(45 / 1299 * 100vw);
  }
  .row__reason01 .col:not(:nth-child(-n + 3)) {
    margin-top: calc(60 / 1299 * 100vw);
  }
  .row__reason01 .col a:hover {
    top: calc(-20 / 1299 * 100vw);
  }
  .row__reason01 .box {
    height: calc(260 / 1299 * 100vw);
  }
  .row__reason01 .box:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
  .btn__reason01 {
    width: calc(660 / 1299 * 100vw);
  }
  .btn__reason01 a {
    height: calc(120 / 1299 * 100vw);
  }
  .btn__reason01 a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
  .bg__reason02 {
    background: url("../images/index/bg__reason02.svg") no-repeat left top /
        calc(460 / 1299 * 100vw) auto,
      url("../images/index/bg__reason03.svg") no-repeat right bottom /
        calc(460 / 1299 * 100vw) auto;
  }
  .ttl__reason02 .icn {
    width: calc(34 / 1299 * 100vw);
  }
  .row__reason02 .box {
    height: calc(140 / 1299 * 100vw);
  }
  .row__reason02 .box:before {
    width: calc(40 / 1299 * 100vw);
    height: calc(40 / 1299 * 100vw);
    left: calc(10 / 1299 * 100vw);
    top: calc(10 / 1299 * 100vw);
  }
  .row__reason02 .box:after {
    width: calc(40 / 1299 * 100vw);
    height: calc(40 / 1299 * 100vw);
    right: calc(10 / 1299 * 100vw);
    bottom: calc(10 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .bg__reason01 {
    background: url("../images/index/bg__reason01_sp.jpg") no-repeat center
      bottom / 100% auto;
    padding: 10vw 0 13.5vw;
  }
  .ttl__reason01 {
    margin-bottom: 7.5vw;
  }
  .ttl_index01 .ja {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
  .ttl__reason01 .ja {
    line-height: 1.2;
    margin-bottom: 3.5vw;
  }
  .ttl_index01 .ja em {
    font-size: 1.875rem;
    letter-spacing: 0;
  }
  .ttl__reason01 .ja em span {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
  .ttl_index01 .en {
    font-size: 1.25rem;
  }
  .copy__reason01 {
    /* margin-bottom: 4vw; */
    margin-bottom: 8vw;
  }
  .copy_index01 .icn {
    width: calc(68 / 750 * 100vw);
    height: calc(90 / 750 * 100vw);
    margin-bottom: 4vw;
  }
  .copy_index01 .ja {
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .txt__reason01 {
    margin-bottom: 8.5vw;
  }
  .row__reason01 {
    margin-bottom: calc(60 / 750 * 100vw);
  }
  .row__reason01 .col {
    width: 48.5%;
    max-width: 100%;
    margin-right: 3% !important;
  }
  .row__reason01 .col:nth-child(2n) {
    transition-delay: 0.1s;
  }
  .row__reason01 .col:nth-child(2n),
  .row__reason01 .col:last-child {
    margin-right: 0 !important;
  }
  .row__reason01 .col:not(:nth-child(-n + 2)) {
    margin-top: calc(40 / 750 * 100vw);
  }
  .row__reason01 .box {
    height: calc(260 / 750 * 100vw);
  }
  .row__reason01 .box:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .row__reason01 .en {
    font-size: 0.625rem;
  }
  .row__reason01 .num {
    font-size: 1.875rem;
  }
  .row__reason01 .txt {
    font-size: 0.8125rem;
    letter-spacing: 0;
    line-height: 1.46;
  }
  .btn__reason01 {
    width: calc(600 / 750 * 100vw);
  }
  .btn__reason01 a {
    height: calc(140 / 750 * 100vw);
  }
  .btn__reason01 a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .btn__reason01 .ja {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .btn__reason01 .en {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }
  .bg__reason02 {
    padding: 13.5vw 0 12vw;
    background: url("../images/index/bg__reason02.svg") no-repeat left top /
        calc(460 / 750 * 100vw) auto,
      url("../images/index/bg__reason03.svg") no-repeat right bottom /
        calc(460 / 750 * 100vw) auto;
  }
  .ttl__reason02 .icn {
    width: calc(68 / 750 * 100vw);
    margin-bottom: 3.5vw;
  }
  .ttl__reason02 .ja {
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .txt__reason02 {
    margin-bottom: 5.5vw;
  }
  .row__reason02 {
    max-width: calc(646 / 750 * 100vw);
    display: block;
  }
  .row__reason02 .col {
    width: 100%;
  }
  .row__reason02 .col_l {
    margin-bottom: 6.5vw;
  }
  .row__reason02 .box {
    height: calc(180 / 750 * 100vw);
    margin-bottom: 0.5vw;
  }
  .row__reason02 .box:before {
    width: calc(40 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    left: calc(10 / 750 * 100vw);
    top: calc(10 / 750 * 100vw);
  }
  .row__reason02 .box:after {
    width: calc(40 / 750 * 100vw);
    height: calc(40 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .row__reason02 .txt01 {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .row__reason02 .txt01 .fz26 {
    font-size: 1.125rem;
    letter-spacing: 0;
  }
  .row__reason02 .txt01 em {
    font-size: 2.0625rem;
    letter-spacing: 0;
  }
  .row__reason02 .txt02 {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}

/* 症例紹介 index_case
------------------------------------------------------------------*/
.row__case01:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #283466;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
}
.row__case01 .col {
  width: calc(50% - calc(30 / 1920 * 100vw));
}
.row__case01 .wrap {
  max-width: 620px;
}
.ttl__case02 {
  height: calc(100 / 1920 * 100vw);
}
.ttl__case02:after {
  content: "";
  width: 0;
  height: 0;
  border-top: calc(12 / 1920 * 100vw) solid #0d7bc1;
  border-right: calc(16 / 1920 * 100vw) solid transparent;
  border-left: calc(16 / 1920 * 100vw) solid transparent;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: calc(-11 / 1920 * 100vw);
}
.ttl__case02.bg_col02:after {
  border-top-color: #e84366;
}
.row__case02 .col {
  width: calc(50% - calc(10 / 1920 * 100vw));
}
.row__case02 .col:not(:nth-child(-n + 2)) {
  margin-top: calc(20 / 1920 * 100vw);
}
.row__case02 .btn {
  width: calc(200 / 1920 * 100vw);
}
.row__case02 .btn a {
  height: calc(40 / 1920 * 100vw);
}
.row__case02 .btn a:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
.btn_common01 {
  width: calc(420 / 1920 * 100vw);
}
.btn_common01 a {
  height: calc(70 / 1920 * 100vw);
  border: 1px solid #414245;
}
.btn_common01 a.bg_col01 {
  border-color: #283466;
}
.btn_common01 a:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
.btn_common01 a.bg_white:after {
  border-color: transparent #e84366 #e84366 transparent;
}
@media (min-width: 768px) and (max-width: 1599px) {
  .row__case01 .col {
    width: calc(50% - calc(30 / 1599 * 100vw));
  }
  .ttl__case02 {
    height: calc(100 / 1599 * 100vw);
  }
  .ttl__case02:after {
    background: calc(12 / 1599 * 100vw) calc(16 / 1599 * 100vw) 0
      calc(16 / 1599 * 100vw);
    bottom: calc(-11 / 1599 * 100vw);
  }
  .row__case02 .col {
    width: calc(50% - calc(10 / 1599 * 100vw));
  }
  .row__case02 .col:not(:nth-child(-n + 2)) {
    margin-top: calc(20 / 1599 * 100vw);
  }
  .row__case02 .btn {
    width: calc(200 / 1599 * 100vw);
  }
  .row__case02 .btn a {
    height: calc(40 / 1599 * 100vw);
  }
  .row__case02 .btn a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
  .btn_common01 {
    width: calc(420 / 1599 * 100vw);
  }
  .btn_common01 a {
    height: calc(70 / 1599 * 100vw);
  }
  .btn_common01 a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .row__case01 .col {
    width: calc(50% - calc(30 / 1299 * 100vw));
  }
  .ttl__case02 {
    height: calc(100 / 1299 * 100vw);
  }
  .ttl__case02:after {
    background: calc(12 / 1299 * 100vw) calc(16 / 1299 * 100vw) 0
      calc(16 / 1299 * 100vw);
    bottom: calc(-11 / 1299 * 100vw);
  }
  .row__case02 .col {
    width: calc(50% - calc(10 / 1299 * 100vw));
  }
  .row__case02 .col:not(:nth-child(-n + 2)) {
    margin-top: calc(20 / 1299 * 100vw);
  }
  .row__case02 .btn {
    width: calc(200 / 1299 * 100vw);
  }
  .row__case02 .btn a {
    height: calc(40 / 1299 * 100vw);
  }
  .row__case02 .btn a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
  .btn_common01 {
    width: calc(420 / 1299 * 100vw);
  }
  .btn_common01 a {
    height: calc(70 / 1299 * 100vw);
  }
  .btn_common01 a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .ttl__case01 {
    margin-bottom: 6.5vw;
  }
  .copy__case01 {
    margin-bottom: 4vw;
  }
  .row__case01 {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
    display: block;
  }
  .row__case01:after {
    display: none;
  }
  .row__case01 .col {
    width: 100%;
  }
  .row__case01 .col_l {
    padding-bottom: calc(100 / 750 * 100vw);
    margin-bottom: calc(100 / 750 * 100vw);
    border-bottom: 1px solid #283466;
  }
  .row__case01 .wrap {
    max-width: 100%;
  }
  .ttl__case02 {
    height: calc(140 / 750 * 100vw);
    padding: 0 0 1.5vw;
    margin-bottom: 5.5vw;
  }
  .ttl__case02:after {
    border-width: calc(22 / 750 * 100vw) calc(30 / 750 * 100vw) 0
      calc(30 / 750 * 100vw);
    bottom: calc(-21 / 750 * 100vw);
  }
  .ttl__case02 .ja {
    font-size: 1.125rem;
  }
  .ttl__case02 .en {
    font-size: 0.625rem;
  }
  .row__case01 .wrap > .txt {
    margin-bottom: 6vw;
  }
  .row__case02 .col {
    padding: 3.5vw calc(35 / 750 * 100vw) calc(40 / 750 * 100vw);
    width: calc(50% - calc(10 / 750 * 100vw));
  }
  .row__case02 .col:not(:nth-child(-n + 2)) {
    margin-top: calc(20 / 750 * 100vw);
  }
  .row__case02 .ttl {
    font-size: 0.9375rem;
    margin-bottom: 1.5vw;
  }
  .row__case02 .ttl em {
    font-size: 1.25rem;
  }
  .row__case02 .img {
    margin-bottom: 2vw;
  }
  .row__case02 .txt {
    font-size: 0.875rem;
    letter-spacing: 0;
    margin-bottom: 2vw;
  }
  .row__case02 .btn {
    width: calc(240 / 750 * 100vw);
  }
  .row__case02 .btn a {
    height: calc(80 / 750 * 100vw);
    font-size: 0.875rem;
  }
  .row__case02 .btn a:after {
    border-width: calc(7 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .btn_common01 {
    width: calc(600 / 750 * 100vw);
  }
  .btn_common01 a {
    height: calc(120 / 750 * 100vw);
    font-size: 1rem;
    letter-spacing: 0;
  }
  .btn_common01 a.bg_col01 {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
  .btn_common01 a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
}

/* 毛のお悩み一覧 index_trouble
------------------------------------------------------------------*/
.ttl_index02 {
  height: calc(180 / 1920 * 100vw);
  background: url("../images/index/arw__trouble01.svg") no-repeat center top /
    calc(1040 / 1920 * 100vw) auto;
}
.row__trouble01 .col {
  width: 50%;
}
.row__trouble01 .wrap {
  max-width: 760px;
}
.row__trouble01 .ttl {
  border-bottom: 3px solid #283466;
}
.row__trouble01 .ttl:after {
  content: "";
  width: calc(200 / 1920 * 100vw);
  height: 3px;
  background: #e84366;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -3px;
}
.row__trouble02 .col {
  width: 19.4%;
  margin-right: 0.75%;
}
.row__trouble02 .col:nth-child(5n),
.row__trouble02 .col:last-child {
  margin-right: 0;
}
.row__trouble02 .col:not(:nth-child(-n + 5)) {
  margin-top: calc(10 / 1920 * 100vw);
}
.row__trouble02 .col a {
  height: calc(100 / 1920 * 100vw);
  border: 1px solid #414245;
}
.row__trouble02 .col a:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
  border-color: transparent #e84366 #e84366 transparent;
}
@media (min-width: 768px) and (max-width: 1599px) {
  .ttl_index02 {
    height: calc(180 / 1599 * 100vw);
    background: url("../images/index/arw__trouble01.svg") no-repeat center top /
      calc(1040 / 1599 * 100vw) auto;
  }
  .row__trouble01 .ttl:after {
    width: calc(200 / 1599 * 100vw);
  }
  .row__trouble02 .col:not(:nth-child(-n + 5)) {
    margin-top: calc(10 / 1599 * 100vw);
  }

  .row__trouble02 .col a {
    height: calc(100 / 1599 * 100vw);
  }
  .row__trouble02 .col a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .ttl_index02 {
    height: calc(180 / 1299 * 100vw);
    background: url("../images/index/arw__trouble01.svg") no-repeat center top /
      calc(1040 / 1299 * 100vw) auto;
  }
  .row__trouble01 .ttl:after {
    width: calc(200 / 1299 * 100vw);
  }
  .row__trouble02 .col {
    width: 24.4%;
    margin-right: 0.8% !important;
  }
  .row__trouble02 .col:nth-child(4n),
  .row__trouble02 .col:last-child {
    margin-right: 0 !important;
  }
  .row__trouble02 .col:not(:nth-child(-n + 4)) {
    margin-top: calc(10 / 1299 * 100vw);
  }
  .row__trouble02 .col a {
    height: calc(100 / 1299 * 100vw);
    padding: 0 calc(20 / 1299 * 100vw);
  }
  .row__trouble02 .col a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .ttl_index02 {
    height: calc(220 / 750 * 100vw);
    background: url("../images/index/arw__trouble01.svg") no-repeat center top /
      auto calc(170 / 750 * 100vw);
  }
  .ttl_index02 .ja {
    font-size: 1.375rem;
  }
  .ttl_index02 .en {
    font-size: 1.0625rem;
  }
  .row__trouble01 {
    display: block;
  }
  .row__trouble01 .col {
    width: 100%;
  }
  .row__trouble01 .box {
    padding: 8.5vw 3.2vw calc(80 / 750 * 100vw);
  }
  .row__trouble01 .wrap {
    max-width: calc(646 / 750 * 100vw);
  }
  .row__trouble01 .ttl {
    font-size: 1.375rem;
    letter-spacing: 0;
    padding-bottom: 4.5vw;
    margin-bottom: 2vw;
  }
  .row__trouble01 .ttl:after {
    width: calc(200 / 750 * 100vw);
  }
  .row__trouble01 .txt {
    margin-bottom: 6vw;
  }
  .row__trouble02 .col {
    width: 48.5%;
    margin-right: 3% !important;
  }
  .row__trouble02 .col:nth-child(2n),
  .row__trouble02 .col:last-child {
    margin-right: 0 !important;
  }
  .row__trouble02 .col:not(:nth-child(-n + 2)) {
    margin-top: calc(20 / 750 * 100vw);
  }
  .row__trouble02 .col a {
    height: calc(120 / 750 * 100vw);
    font-size: 0.9375rem;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .row__trouble02 .col a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
}

/* 料金表 index_fee
------------------------------------------------------------------*/
.box__fee01 a {
  background: url("../images/index/bg__fee01.png") no-repeat left center / auto
      100%,
    url("../images/index/bg__fee02.png") no-repeat right center / auto 100%;
  height: calc(180 / 1920 * 100vw);
}
.box__fee01 a:after {
  content: "";
  position: absolute;
  width: calc(100% - calc(10 / 1920 * 100vw));
  height: calc(100% - calc(10 / 1920 * 100vw));
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #283466;
  z-index: 0;
}
.btn__fee01 {
  width: calc(200 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
}
.btn__fee01:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .box__fee01 a {
    height: calc(180 / 1599 * 100vw);
  }
  .box__fee01 a:after {
    width: calc(100% - calc(10 / 1599 * 100vw));
    height: calc(100% - calc(10 / 1599 * 100vw));
  }
  .btn__fee01 {
    width: calc(200 / 1599 * 100vw);
    height: calc(40 / 1599 * 100vw);
  }
  .btn__fee01:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .box__fee01 a {
    height: calc(180 / 1299 * 100vw);
  }
  .box__fee01 a:after {
    width: calc(100% - calc(10 / 1299 * 100vw));
    height: calc(100% - calc(10 / 1299 * 100vw));
  }
  .btn__fee01 {
    width: calc(200 / 1299 * 100vw);
    height: calc(40 / 1299 * 100vw);
  }
  .btn__fee01:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .box__fee01 {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
  }
  .box__fee01 a {
    background: url("../images/index/bg__fee01_sp.png") no-repeat left center /
        auto 100%,
      url("../images/index/bg__fee02_sp.png") no-repeat right center / auto 100%;
    height: calc(220 / 750 * 100vw);
  }
  .box__fee01 a:after {
    width: calc(100% - calc(10 / 750 * 100vw));
    height: calc(100% - calc(10 / 750 * 100vw));
  }
  .ttl__fee01 {
    margin-bottom: 2vw;
  }
  .ttl__fee01 .ja {
    font-size: 1.125rem;
    margin-bottom: 2vw;
  }
  .ttl__fee01 .en {
    font-size: 0.625rem;
  }
  .btn__fee01 {
    width: calc(200 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
    font-size: 0.6875rem;
  }
  .btn__fee01:after {
    border-width: calc(7 / 750 * 100vw);
    right: calc(4 / 750 * 100vw);
    bottom: calc(4 / 750 * 100vw);
  }
}

/* 院長メッセージ index_message
------------------------------------------------------------------*/
.row__message01 .col_img {
  width: 46%;
}
.row__message01 .col_img:after {
  content: "";
  width: calc(100% - calc(40 / 1920 * 100vw));
  height: calc(100% - calc(40 / 1920 * 100vw));
  background: rgb(114, 136, 185);
  background: linear-gradient(
    0deg,
    rgba(114, 136, 185, 1) 0%,
    rgba(213, 235, 245, 1) 100%
  );
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.row__message01 .col_img .en {
  width: calc(102 / 1920 * 100vw);
  right: calc(-80 / 1920 * 100vw);
  top: calc(-40 / 1920 * 100vw);
}
.row__message01 .ccl {
  width: calc(190 / 1920 * 100vw);
  height: calc(190 / 1920 * 100vw);
  background: url("../images/index/bg__message01.svg") no-repeat center / cover;
  left: calc(-70 / 1920 * 100vw);
  bottom: calc(190 / 1920 * 100vw);
}
.row__message01 .ccl:before {
  content: "";
  position: absolute;
  width: calc(100% - calc(10 / 1920 * 100vw));
  height: calc(100% - calc(10 / 1920 * 100vw));
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff;
  z-index: 0;
  border-radius: 50%;
}
.row__message01 .deco {
  width: calc(280 / 1920 * 100vw);
  left: 0;
  bottom: calc(80 / 1920 * 100vw);
}
.row__message01 .col_txt {
  width: 49%;
}
.ttl__message01 {
  width: calc(160 / 1920 * 100vw);
  height: calc(40 / 1920 * 100vw);
  border-bottom: 2px solid #e84366;
}
.slide__message01 li {
  margin: 0 calc(20 / 1920 * 100vw);
}
.slide__message01 img {
  width: calc(360 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .row__message01 .col_img:after {
    width: calc(100% - calc(40 / 1599 * 100vw));
    height: calc(100% - calc(40 / 1599 * 100vw));
  }
  .row__message01 .col_img .en {
    width: calc(102 / 1599 * 100vw);
    right: calc(-80 / 1599 * 100vw);
    top: calc(-40 / 1599 * 100vw);
  }
  .row__message01 .ccl {
    width: calc(190 / 1599 * 100vw);
    height: calc(190 / 1599 * 100vw);
    left: calc(-70 / 1599 * 100vw);
    bottom: calc(190 / 1599 * 100vw);
  }
  .row__message01 .ccl:before {
    width: calc(100% - calc(10 / 1599 * 100vw));
    height: calc(100% - calc(10 / 1599 * 100vw));
  }
  .row__message01 .deco {
    width: calc(280 / 1599 * 100vw);
    bottom: calc(80 / 1599 * 100vw);
  }
  .ttl__message01 {
    width: calc(160 / 1599 * 100vw);
    height: calc(40 / 1599 * 100vw);
  }
  .copy__message01 .adjust {
    display: block;
  }
  .slide__message01 li {
    margin: 0 calc(20 / 1599 * 100vw);
  }
  .slide__message01 img {
    width: calc(360 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .row__message01 .col_img:after {
    width: calc(100% - calc(40 / 1299 * 100vw));
    height: calc(100% - calc(40 / 1299 * 100vw));
  }
  .row__message01 .col_img .en {
    width: calc(80 / 1299 * 100vw);
    right: calc(-50 / 1299 * 100vw);
    top: calc(-40 / 1299 * 100vw);
  }
  .row__message01 .ccl {
    width: calc(190 / 1299 * 100vw);
    height: calc(190 / 1299 * 100vw);
    left: calc(-50 / 1299 * 100vw);
    bottom: calc(190 / 1299 * 100vw);
  }
  .row__message01 .ccl:before {
    width: calc(100% - calc(10 / 1299 * 100vw));
    height: calc(100% - calc(10 / 1299 * 100vw));
  }
  .row__message01 .deco {
    width: calc(280 / 1299 * 100vw);
    bottom: calc(80 / 1299 * 100vw);
  }
  .ttl__message01 {
    width: calc(160 / 1299 * 100vw);
    height: calc(40 / 1299 * 100vw);
  }
  .slide__message01 li {
    margin: 0 calc(20 / 1299 * 100vw);
  }
  .slide__message01 img {
    width: calc(360 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .index_message {
    padding: calc(100 / 750 * 100vw) 0;
  }
  .row__message01 {
    display: block;
  }
  .row__message01 .col_img {
    width: calc(600 / 750 * 100vw);
    margin: 0 auto calc(60 / 750 * 100vw);
    padding-right: 0;
    padding-bottom: calc(30 / 750 * 100vw);
  }
  .row__message01 .col_img:after {
    width: 100%;
    height: calc(100% - calc(30 / 750 * 100vw));
    right: calc(-30 / 750 * 100vw);
  }
  .row__message01 .col_img .en {
    width: calc(85 / 750 * 100vw);
    right: calc(-50 / 750 * 100vw);
    top: calc(-20 / 750 * 100vw);
  }
  .row__message01 .ccl {
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.25;
    width: calc(190 / 750 * 100vw);
    height: calc(190 / 750 * 100vw);
    left: calc(-50 / 750 * 100vw);
    bottom: calc(145 / 750 * 100vw);
  }
  .row__message01 .ccl:before {
    width: calc(100% - calc(6 / 750 * 100vw));
    height: calc(100% - calc(6 / 750 * 100vw));
  }
  .row__message01 .deco {
    width: calc(222 / 750 * 100vw);
    bottom: calc(30 / 750 * 100vw);
  }
  .row__message01 .col_txt {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
  }
  .ttl__message01 {
    width: calc(220 / 750 * 100vw);
    height: calc(60 / 750 * 100vw);
    border-bottom: 2px solid #e84366;
    font-size: 0.875rem;
    margin: 0 auto 7vw;
  }
  .copy__message01 {
    font-size: 1.4375rem;
    letter-spacing: 0;
    line-height: 1.43;
    text-align: center;
    margin-bottom: 6.5vw;
  }
  .row__message01 .col_txt .txt {
    margin-bottom: 8vw;
  }
  .name_dr {
    text-align: center;
    margin-bottom: 10vw;
  }
  .name_dr .name01 {
    justify-content: center !important;
    margin-bottom: 4vw;
  }
  .name_dr .name01 .left {
    font-size: 1.25rem;
    margin-right: 3vw;
  }
  .name_dr .name01 .right {
    font-size: 1.875rem;
  }
  .name_dr .name02 {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
  .name_dr .name03 {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
  .btn__message01 {
    margin: 0 auto;
  }
  .slide__message01 li {
    margin: 0 calc(20 / 750 * 100vw);
  }
  .slide__message01 img {
    width: calc(360 / 750 * 100vw);
  }
}

/* 採用情報 index_recruit
------------------------------------------------------------------*/
.index_recruit {
  width: 50%;
}
.index_recruit:before {
  content: "";
  background: url("../images/index/img__recruit01.jpg") no-repeat center / cover;
  width: 100%;
  height: calc(420 / 1920 * 100vw);
  display: block;
  position: relative;
  z-index: 0;
}
.index_recruit:after {
  content: "";
  position: absolute;
  width: calc(100% - calc(20 / 1920 * 100vw));
  height: calc(100% - calc(20 / 1920 * 100vw));
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #fff;
  z-index: 1;
}
.btn__recruit01 {
  width: calc(160 / 1920 * 100vw);
  height: calc(160 / 1920 * 100vw);
  right: calc(160 / 1920 * 100vw);
  top: calc(-30 / 1920 * 100vw);
}
.btn__recruit01 a {
  width: 100%;
  height: 100%;
  background: #283466cc;
}
.btn__recruit01 .arw {
  width: calc(22 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .index_recruit:before {
    height: calc(420 / 1599 * 100vw);
  }
  .index_recruit:after {
    width: calc(100% - calc(20 / 1599 * 100vw));
    height: calc(100% - calc(20 / 1599 * 100vw));
  }
  .btn__recruit01 {
    width: calc(160 / 1599 * 100vw);
    height: calc(160 / 1599 * 100vw);
    right: calc(60 / 1599 * 100vw);
    top: calc(-30 / 1599 * 100vw);
  }
  .btn__recruit01 .arw {
    width: calc(22 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .index_recruit:before {
    height: calc(420 / 1299 * 100vw);
  }
  .index_recruit:after {
    width: calc(100% - calc(20 / 1299 * 100vw));
    height: calc(100% - calc(20 / 1299 * 100vw));
  }
  .btn__recruit01 {
    width: calc(140 / 1299 * 100vw);
    height: calc(140 / 1299 * 100vw);
    right: calc(40 / 1299 * 100vw);
    top: calc(-30 / 1299 * 100vw);
  }
  .btn__recruit01 .arw {
    width: calc(22 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .index_recruit {
    width: 100%;
  }
  .index_recruit:before {
    height: calc(328 / 750 * 100vw);
  }
  .index_recruit:after {
    width: calc(100% - calc(40 / 750 * 100vw));
    height: calc(100% - calc(40 / 750 * 100vw));
  }
  .index_recruit .box {
    padding-bottom: 9.5vw;
  }
  .btn__recruit01 {
    width: calc(160 / 750 * 100vw);
    height: calc(160 / 750 * 100vw);
    right: calc(50 / 750 * 100vw);
    top: calc(-30 / 750 * 100vw);
  }
  .btn__recruit01 a {
    width: 100%;
    height: 100%;
    background: #283466cc;
  }
  .btn__recruit01 .en {
    font-size: 0.9375rem;
  }
  .btn__recruit01 .arw {
    width: calc(44 / 750 * 100vw);
  }
  .ttl__recruit01 {
    margin-bottom: 5vw;
  }
  .ttl__recruit01 .en {
    font-size: 1.875rem;
    margin-bottom: 4vw;
  }
  .ttl__recruit01 .ja {
    font-size: 1.125rem;
  }
  .txt__recruit01 {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.7;
  }
}

/* コラム index_column
------------------------------------------------------------------*/
.index_column {
  width: 50%;
}
.index_column .wrap {
  max-width: 760px;
}
.ttl__column01 {
  border-bottom: 1px solid #fff;
}
.btn__column01 {
  right: 0;
  top: 0;
  width: calc(120 / 1920 * 100vw);
}
.btn__column01 a {
  height: calc(40 / 1920 * 100vw);
}
.btn__column01 a:after {
  border-width: calc(7 / 1920 * 100vw);
}
.list__column01 li:not(:first-child) {
  margin-top: calc(20 / 1920 * 100vw);
}
.list__column01 .txt_post .date {
  font-size: 1.125rem;
}
.list__column01 .txt_post .txt_excerpt {
  line-height: 1.56;
  margin-top: calc(12 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .btn__column01 {
    width: calc(120 / 1599 * 100vw);
  }
  .btn__column01 a {
    height: calc(40 / 1599 * 100vw);
  }
  .btn__column01 a:after {
    border-width: calc(7 / 1599 * 100vw);
  }
  .list__column01 li:not(:first-child) {
    margin-top: calc(20 / 1599 * 100vw);
  }
  .list__column01 .txt_post .txt_excerpt {
    margin-top: calc(12 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .btn__column01 {
    width: calc(120 / 1299 * 100vw);
  }
  .btn__column01 a {
    height: calc(40 / 1299 * 100vw);
  }
  .btn__column01 a:after {
    border-width: calc(7 / 1299 * 100vw);
  }
  .list__column01 li:not(:first-child) {
    margin-top: calc(20 / 1299 * 100vw);
  }
  .list__column01 .txt_post .txt_excerpt {
    margin-top: calc(12 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .index_column {
    width: 100%;
  }
  .index_column .wrap {
    max-width: calc(646 / 750 * 100vw);
  }
  .ttl__column01 {
    padding-bottom: 6vw;
    margin-bottom: 5vw;
  }
  .ttl__column01 .en {
    font-size: 1.5625rem;
  }
  .ttl__column01 .ja {
    font-size: 1rem;
  }
  .btn__column01 {
    width: calc(180 / 750 * 100vw);
  }
  .btn__column01 a {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    height: calc(50 / 750 * 100vw);
  }
  .btn__column01 a:after {
    border-width: calc(7 / 750 * 100vw);
  }
  .list__column01 li:not(:first-child) {
    margin-top: calc(20 / 750 * 100vw);
  }
  .list__column01 li a {
    padding: calc(40 / 750 * 100vw);
  }
  .list__column01 .thmb {
    width: calc(180 / 750 * 100vw);
  }
  .list__column01 .thmb img {
    height: calc(180 / 750 * 100vw);
  }
  .list__column01 .txt_post {
    width: calc(100% - calc(220 / 750 * 100vw));
  }
  .list__column01 .txt_post .date {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
  .list__column01 .txt_post .txt_excerpt {
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 0;
    margin-top: 1vw;
  }
}

/* フッター footer
------------------------------------------------------------------*/
.main_foot {
}
.row_foot01 > .col_l {
  width: 50%;
  max-width: 580px;
}
.logo_foot {
  width: calc(390 / 1920 * 100vw);
}
.tel_foot .box {
  width: calc(106 / 1920 * 100vw);
  height: calc(30 / 1920 * 100vw);
  border: 1px solid var(--color-text);
}
.row_foot02 {
  max-width: 540px;
}
.row_foot02 .col {
  width: 49%;
  max-width: 260px;
}
.row_foot02 .col a {
  height: calc(80 / 1920 * 100vw);
}
.row_foot02 .col_r a {
  background: #3fcd00;
}
.row_foot02 .col a:after {
  border-width: calc(7 / 1920 * 100vw);
  right: calc(4 / 1920 * 100vw);
  bottom: calc(4 / 1920 * 100vw);
}
.row_foot01 > .col_r {
  width: 46%;
  max-width: 530px;
}
.tbl_time01_16px table {
  border-color: var(--color-text);
  border-right: none;
  border-left: none;
}
.tbl_time01_16px thead th {
  background: none;
  color: var(--color-text);
  font-weight: 300;
  border-bottom: 1px solid var(--color-text);
  padding-top: calc(31 / 1920 * 100vw);
  padding-bottom: calc(34 / 1920 * 100vw);
}
.tbl_time01_16px tbody tr:first-child th {
  padding-left: 0;
  font-weight: 300;
  font-size: 1.125rem;
}
.tbl_time01_16px tbody th,
.tbl_time01_16px tbody td {
  padding-top: calc(40 / 1920 * 100vw);
  padding-bottom: calc(42 / 1920 * 100vw);
}
.tbl_time01_16px tbody td span {
  color: var(--color-text);
}
.row_foot03 {
  max-width: 1240px;
}
.row_foot03 .col_l:after {
  content: "";
  width: 1px;
  height: calc(40 / 1920 * 100vw);
  background: #283466;
  right: calc(500 / 1920 * 100vw);
  /* right: 0; */
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.row_foot03 .col_r:after {
  content: "";
  width: 1px;
  height: calc(40 / 1920 * 100vw);
  background: #283466;
  right: calc(-500 / 1920 * 100vw);
  /* right: 0; */
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.row_foot03 .col {
  width: 33%;
  /* width: 50%; */
}
.row_foot03 .col a {
  height: calc(100 / 1920 * 100vw);
}
.row_foot03 .icn {
  width: calc(30 / 1920 * 100vw);
}
.row_foot04 .wrap_map {
  width: 66.6%;
}
.row_foot04 .wrap_map .map {
  padding-top: 0;
  height: 100%;
}
.row_foot04 .col_r {
  width: 33.4%;
  background: url("../images/page/bg_foot01.svg") no-repeat right bottom /
    calc(158 / 1920 * 100vw) auto;
}
.row_foot04 .col_r .img {
  max-width: 520px;
}
.row_foot04 .col_r .img .ttl {
  background: #283466e6;
  width: calc(160 / 1920 * 100vw);
  height: calc(50 / 1920 * 100vw);
  left: calc(-10 / 1920 * 100vw);
  top: calc(-10 / 1920 * 100vw);
  border-left: calc(6 / 1920 * 100vw) solid #e84366e6;
}
.btn_foot01 {
  width: calc(420 / 1920 * 100vw);
}
.btn_foot01 a {
  height: calc(70 / 1920 * 100vw);
  border: 1px solid #414245;
}
.btn_foot01 a:after {
  border-width: calc(7 / 1920 * 100vw);
  border-color: transparent #e84366 #e84366 transparent;
}
.ttl_foot01 {
  border-bottom: 1px solid #fff;
}
.nav_foot .nav {
  line-height: 2.5;
}
.fix_side {
  position: fixed;
  z-index: 1000;
  width: calc(60 / 1920 * 100vw);
  right: 0;
  top: 30%;
}
.fix_side a {
  border: 1px solid #414245e6;
  width: 100%;
  height: calc(360 / 1920 * 100vw);
}
.fix_side a:after {
  border-width: calc(7 / 1920 * 100vw);
  border-color: transparent #e84366 #e84366 transparent;
}
.fix_side .icn {
  width: calc(32 / 1920 * 100vw);
}
.pagetop {
  position: fixed;
  right: calc(20 / 1920 * 100vw);
  bottom: calc(20 / 1920 * 100vw);
  z-index: 1000;
  width: calc(80 / 1920 * 100vw);
}
.row_sns {
  position: fixed;
  right: calc(125 / 1920 * 100vw);
  bottom: calc(20 / 1920 * 100vw);
  z-index: 1000;
  width: calc(280 / 1920 * 100vw);
}
.row_sns .icon {
  max-width: calc(80 / 1920 * 100vw);
}
.fix_sns {
  position: fixed;
  left: 0;
  bottom: var(--size110px);
  z-index: 1000;
}
.fix_sns li {
  width: var(--size80px);
  margin-right: var(--size20px);
}
.fix_sns li:last-child {
  margin-right: 0;
}
.copyright {
  height: calc(80 / 1920 * 100vw);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .logo_foot {
    width: calc(390 / 1599 * 100vw);
  }
  .tel_foot .box {
    width: calc(106 / 1599 * 100vw);
    height: calc(30 / 1599 * 100vw);
  }
  .row_foot02 .col a {
    height: calc(80 / 1599 * 100vw);
  }
  .row_foot02 .col a:after {
    border-width: calc(7 / 1599 * 100vw);
    right: calc(4 / 1599 * 100vw);
    bottom: calc(4 / 1599 * 100vw);
  }
  .tbl_time01_16px thead th {
    padding-top: calc(31 / 1599 * 100vw);
    padding-bottom: calc(34 / 1599 * 100vw);
  }
  .tbl_time01_16px tbody th,
  .tbl_time01_16px tbody td {
    padding-top: calc(40 / 1599 * 100vw);
    padding-bottom: calc(42 / 1599 * 100vw);
  }
  .row_foot03:after {
    height: calc(40 / 1599 * 100vw);
  }
  .row_foot03 .col a {
    height: calc(100 / 1599 * 100vw);
  }
  .row_foot03 .icn {
    width: calc(30 / 1599 * 100vw);
  }
  .row_foot04 .col_r {
    background: url("../images/page/bg_foot01.svg") no-repeat right bottom /
      calc(158 / 1599 * 100vw) auto;
  }
  .row_foot04 .col_r .img .ttl {
    width: calc(160 / 1599 * 100vw);
    height: calc(50 / 1599 * 100vw);
    left: calc(-10 / 1599 * 100vw);
    top: calc(-10 / 1599 * 100vw);
    border-left: calc(6 / 1599 * 100vw) solid #e84366e6;
  }
  .btn_foot01 {
    width: calc(420 / 1599 * 100vw);
  }
  .btn_foot01 a {
    height: calc(70 / 1599 * 100vw);
  }
  .btn_foot01 a:after {
    border-width: calc(7 / 1599 * 100vw);
  }
  .fix_side {
    width: calc(60 / 1599 * 100vw);
  }
  .fix_side a {
    height: calc(360 / 1599 * 100vw);
  }
  .fix_side a:after {
    border-width: calc(7 / 1599 * 100vw);
  }
  .fix_side .icn {
    width: calc(32 / 1599 * 100vw);
  }
  .pagetop {
    right: calc(20 / 1599 * 100vw);
    bottom: calc(20 / 1599 * 100vw);
    width: calc(80 / 1599 * 100vw);
  }
  .row_sns {
    right: calc(125 / 1599 * 100vw);
    bottom: calc(20 / 1599 * 100vw);
    width: calc(280 / 1599 * 100vw);
  }
  .row_sns .icon {
    max-width: calc(80 / 1599 * 100vw);
  }
  .fix_sns {
    width: calc(360 / 750 * 100vw);
    right: auto;
    left: calc(18 / 750 * 100vw);
    bottom: var(--size140px);
  }
  .fix_sns li {
    width: var(--size100px);
    margin-right: var(--size30px);
  }
  .fix a {
    display: block;
  }
  .copyright {
    height: calc(80 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .logo_foot {
    width: calc(390 / 1299 * 100vw);
  }
  .tel_foot .box {
    width: calc(106 / 1299 * 100vw);
    height: calc(30 / 1299 * 100vw);
  }
  .row_foot02 .col a {
    height: calc(80 / 1299 * 100vw);
  }
  .row_foot02 .col a:after {
    border-width: calc(7 / 1299 * 100vw);
    right: calc(4 / 1299 * 100vw);
    bottom: calc(4 / 1299 * 100vw);
  }
  .tbl_time01_16px thead th {
    padding-top: calc(31 / 1299 * 100vw);
    padding-bottom: calc(34 / 1299 * 100vw);
  }
  .tbl_time01_16px tbody th,
  .tbl_time01_16px tbody td {
    padding-top: calc(40 / 1299 * 100vw);
    padding-bottom: calc(42 / 1299 * 100vw);
  }
  .row_foot03:after {
    height: calc(40 / 1299 * 100vw);
  }
  .row_foot03 .col a {
    height: calc(100 / 1299 * 100vw);
  }
  .row_foot03 .icn {
    width: calc(30 / 1299 * 100vw);
  }
  .row_foot04 .col_r {
    background: url("../images/page/bg_foot01.svg") no-repeat right bottom /
      calc(158 / 1299 * 100vw) auto;
  }
  .row_foot04 .col_r .img .ttl {
    width: calc(160 / 1299 * 100vw);
    height: calc(50 / 1299 * 100vw);
    left: calc(-10 / 1299 * 100vw);
    top: calc(-10 / 1299 * 100vw);
    border-left: calc(6 / 1299 * 100vw) solid #e84366e6;
  }
  .btn_foot01 {
    width: calc(420 / 1299 * 100vw);
  }
  .btn_foot01 a {
    height: calc(70 / 1299 * 100vw);
  }
  .btn_foot01 a:after {
    border-width: calc(7 / 1299 * 100vw);
  }
  .fix_side {
    width: calc(60 / 1299 * 100vw);
  }
  .fix_side a {
    height: calc(360 / 1299 * 100vw);
  }
  .fix_side a:after {
    border-width: calc(7 / 1299 * 100vw);
  }
  .fix_side .icn {
    width: calc(32 / 1299 * 100vw);
  }
  .pagetop {
    right: calc(20 / 1299 * 100vw);
    bottom: calc(20 / 1299 * 100vw);
    width: calc(80 / 1299 * 100vw);
  }
  .row_sns {
    right: calc(125 / 1299 * 100vw);
    bottom: calc(20 / 1299 * 100vw);
    width: calc(280 / 1299 * 100vw);
  }
  .row_sns .icon {
    max-width: calc(80 / 1299 * 100vw);
  }
  .copyright {
    height: calc(80 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .main_foot {
    padding-bottom: 6.5vw;
  }
  .row_foot01 {
    display: block;
  }
  .row_foot01 > .col_l {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: calc(60 / 750 * 100vw);
  }
  .logo_foot {
    width: calc(480 / 750 * 100vw);
    margin-bottom: 3.5vw;
  }
  .address_foot {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 4vw;
  }
  .tel_foot {
    width: calc(600 / 750 * 100vw);
    margin: 0 auto calc(30 / 750 * 100vw);
  }
  .tel_foot a {
    background: #fff;
    height: calc(120 / 750 * 100vw);
    padding: 0 0 1vw;
  }
  .tel_foot .box {
    width: calc(146 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
    font-size: 0.6875rem;
  }
  .tel_foot .num {
    font-size: 0.9375rem;
  }
  .tel_foot .num em {
    font-size: 1.4375rem;
  }
  .row_foot02 {
    max-width: calc(600 / 750 * 100vw);
  }
  .row_foot02 .col {
    width: 49%;
    max-width: calc(290 / 750 * 100vw);
  }
  .row_foot02 .col a {
    height: calc(120 / 750 * 100vw);
    font-size: 0.75rem;
  }
  .row_foot02 .col a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .row_foot02 .col em {
    font-size: 1.0625rem;
  }
  .row_foot01 > .col_r {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .tbl_time01_16px.day8 thead th:first-child,
  .tbl_time01_16px.day8 tbody th {
    width: 37%;
  }
  .tbl_time01_16px.day8 thead th:not(:first-child),
  .tbl_time01_16px.day8 tbody td {
    width: calc(53% / 7);
  }
  .tbl_time01_16px.day8 thead th:last-child,
  .tbl_time01_16px.day8 tbody td:last-child {
    width: 10%;
  }
  .tbl_time01_16px th {
    font-size: 1rem;
  }
  .tbl_time01_16px thead th {
    padding-top: 3.5vw;
    padding-bottom: calc(34 / 750 * 100vw);
  }
  .tbl_time01_16px tbody tr:first-child th {
    font-size: 0.875rem;
  }
  .tbl_time01_16px tbody th,
  .tbl_time01_16px tbody td {
    padding-top: 3.5vw;
    padding-bottom: 4.5vw;
  }
  .tbl_time01_16px tbody td {
    font-size: 0.75rem;
  }
  .tbl_time01_16px .tbl_caption {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.64;
    margin-top: 3.5vw;
  }
  .row_foot03 {
    max-width: calc(680 / 750 * 100vw);
  }
  .row_foot03:after {
    height: calc(125 / 750 * 100vw);
  }
  .row_foot03 .col a {
    height: calc(185 / 750 * 100vw);
    flex-direction: column;
  }
  .row_foot03 .icn {
    width: calc(60 / 750 * 100vw);
    margin: 0 auto 1.5vw;
  }
  .row_foot03 .en {
    font-size: 0.875rem;
  }
  .bottom_foot {
    padding: calc(60 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
  }
  .bnr_foot01 {
    width: calc(646 / 750 * 100vw);
    margin: 0 auto;
  }
  .row_foot04 {
    display: block;
  }
  .row_foot04 .wrap_map {
    width: 100%;
    padding-top: calc(40 / 750 * 100vw);
  }
  .row_foot04 .wrap_map .map {
    height: calc(500 / 750 * 100vw);
  }
  .row_foot04 .col_r {
    padding: calc(100 / 750 * 100vw) 0 calc(80 / 750 * 100vw);
    width: 100%;
    background: url("../images/page/bg_foot01.svg") no-repeat right bottom /
      calc(240 / 750 * 100vw) auto;
  }
  .row_foot04 .col_r .img {
    max-width: calc(646 / 750 * 100vw);
  }
  .row_foot04 .col_r .img .ttl {
    font-size: 1rem;
    width: calc(256 / 750 * 100vw);
    height: calc(80 / 750 * 100vw);
    left: calc(-28 / 750 * 100vw);
    top: calc(-20 / 750 * 100vw);
    border-left: calc(10 / 750 * 100vw) solid #e84366e6;
  }
  .row_foot04 .col_r .txt {
    font-size: 1rem;
    margin-bottom: 7vw;
  }
  .btn_foot01 {
    width: calc(600 / 750 * 100vw);
  }
  .btn_foot01 a {
    height: calc(120 / 750 * 100vw);
  }
  .btn_foot01 a:after {
    border-width: calc(11 / 750 * 100vw);
    right: calc(10 / 750 * 100vw);
    bottom: calc(10 / 750 * 100vw);
  }
  .nav_foot {
    padding: 8vw 0 7vw;
  }
  .ttl_foot01 {
    font-size: 1.25rem;
    margin-bottom: 6vw;
    padding-bottom: 2vw;
  }
  .nav_foot nav {
    font-size: 0.875rem;
    line-height: 2.14;
  }
  .copyright {
    font-size: 75%;
    letter-spacing: 0.1em;
    padding: 4vw 0 20vw;
    height: auto;
  }
  .pagetop,
  .fix_side,
  .row_sns {
    display: none !important;
  }
  .fix {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 9;
  }
  .fix > .flex {
    align-items: end;
  }
  .wrap_fix {
    width: calc(550 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
  }
  .fix_tel {
    width: calc(100 / 750 * 100vw);
  }
  .fix_online {
    height: calc(27 / 750 * 100vw);
  }
  .fix_web {
    width: 54.55%;
    background: #283466;
  }
  .fix_line {
    width: 45.45%;
    background: #5cd426;
  }
  .pagetop_sp {
    width: calc(100 / 750 * 100vw);
  }
  .fix a {
    display: block;
  }
}

/* グーグルマップ
------------------------------------------------------------------*/
.map {
  position: relative;
  width: 100%;
  padding: calc(500 / 1920 * 100vw) 0 0 0;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: calc(-150 / 1920 * 100vw);
  height: calc(100% + calc(150 / 1920 * 100vw));
}
.btn_map {
  width: calc(300 / 1920 * 100vw);
  font-size: 111.1%;
  letter-spacing: 0.1em;
  left: calc(30 / 1920 * 100vw);
  top: calc(30 / 1920 * 100vw);
  z-index: 1;
}
.btn_map a {
  height: calc(60 / 1920 * 100vw);
  background: url("../images/page/icn_map.svg") no-repeat left
    calc(30 / 1920 * 100vw) center / calc(16 / 1920 * 100vw) auto;
  border: 1px solid #414245;
}
.btn_map a::after {
  content: "";
  width: calc(10 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
  margin: auto;
  border-right: 1px solid #283466;
  border-bottom: 1px solid #283466;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(30 / 1920 * 100vw);
  transform: rotate(-45deg);
}
@media (min-width: 768px) and (max-width: 1599px) {
  .map {
    padding: calc(500 / 1599 * 100vw) 0 0 0;
  }
  .map iframe {
    margin-top: calc(-150 / 1599 * 100vw);
    height: calc(100% + calc(150 / 1599 * 100vw));
  }
  .btn_map {
    left: calc(30 / 1599 * 100vw);
    top: calc(30 / 1599 * 100vw);
    width: calc(300 / 1599 * 100vw);
  }
  .btn_map a {
    height: calc(60 / 1599 * 100vw);
    background: url("../images/page/icn_map.svg") no-repeat left
      calc(30 / 1599 * 100vw) center / calc(18 / 1599 * 100vw) auto;
  }
  .btn_map a::after {
    width: calc(10 / 1599 * 100vw);
    height: calc(10 / 1599 * 100vw);
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .map {
    padding: calc(500 / 1299 * 100vw) 0 0 0;
  }
  .map iframe {
    margin-top: calc(-150 / 1299 * 100vw);
    height: calc(100% + calc(150 / 1299 * 100vw));
  }
  .btn_map {
    left: calc(30 / 1299 * 100vw);
    top: calc(30 / 1299 * 100vw);
    width: calc(300 / 1299 * 100vw);
  }
  .btn_map a {
    height: calc(60 / 1299 * 100vw);
    background: url("../images/page/icn_map.svg") no-repeat left
      calc(30 / 1299 * 100vw) center / calc(18 / 1299 * 100vw) auto;
  }
  .btn_map a::after {
    width: calc(10 / 1299 * 100vw);
    height: calc(10 / 1299 * 100vw);
  }
}
@media (max-width: 767px) {
  .map {
    padding-top: calc(500 / 750 * 100vw);
  }
  .map iframe {
    margin-top: calc(-200 / 750 * 100vw);
    height: calc(100% + calc(200 / 750 * 100vw));
  }
  .btn_map {
    width: calc(600 / 750 * 100vw);
    height: calc(100 / 750 * 100vw);
    margin: 0 auto calc(40 / 750 * 100vw);
    position: relative;
    left: auto;
    top: auto;
  }
  .btn_map a {
    background-position: left calc(40 / 750 * 100vw) center;
    background-size: calc(36 / 750 * 100vw) auto;
    height: calc(100 / 750 * 100vw);
    border: 1px solid #283466;
    font-size: 1.0625rem;
    letter-spacing: 0.1em;
  }
  .btn_map a::after {
    right: calc(40 / 750 * 100vw);
    width: calc(16 / 750 * 100vw);
    height: calc(16 / 750 * 100vw);
  }
}

/* コピペ用 copy&paste
------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1599px) {
}
@media (min-width: 768px) and (max-width: 1299px) {
}
@media (max-width: 767px) {
}