/* ---------------------------------
▼▼共通設定
--------------------------------- */
.inner {
  max-width: 1400px;
  width: 95%;
  margin: auto;
}

.section-ttl-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: calc(68px + 40 * (100vw - 320px)/1600);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 30px;
}

.section-ttl-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(23px + 7 * (100vw - 320px)/1600);
  line-height: 1;
  font-weight: bold;
  padding: 0 0 0 calc(34px + 10 * (100vw - 320px)/1600);
  position: relative;
}

.section-ttl-ja::after {
  content: "";
  position: absolute;
  width: calc(18px + 6 * (100vw - 320px)/1600);
  height: calc(18px + 6 * (100vw - 320px)/1600);
  background: #CC1335;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.section-txt {
  font-size: calc(14px + 4 * (100vw - 320px)/1600);
  font-family: "Noto Sans JP", sans-serif;
}

.barlow-font {
  font-family: "Barlow Condensed", sans-serif;
}

.button {
  display: block;
  font-weight: bold;
  border-radius: 50px;
  position: relative;
  transition: all .3s;
  line-height: 1;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}

.button.red {
  background: #CC1335;
  border: solid 1px #CC1335;
  color: #fff;
}

.button.red::before,
.button.red::after {
  width: 37px;
  height: 37px;
  right: 22px;
}

.button.red::before {
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  opacity: 1;
}

.button.red::after {
  background: url(../img/common/button-arrow-red.svg) no-repeat center center/cover;
  opacity: 0;
}

.button.normal {
  border: solid 1px #fff;
}

.button.normal::before {
  background: url(../img/common/button-arrow-white.svg) no-repeat center center/cover;
  width: 20px;
  height: 20px;
  right: 12px;
}

input {
  background-color: initial;
  cursor: default;
  appearance: auto;
}

@media screen and (max-width: 767px) {

  .section-ttl-en {
    margin: 0 0 24px;
  }

  .button.red::before,
  .button.red::after {
    width: 27px;
    height: 27px;
    right: 16px;
  }

  .button.normal::before {
    width: 16px;
    height: 16px;
    right: 9px;
  }
}

/* ---------------------------------
▼▼ヘッダー用css
--------------------------------- */
.header--wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  transition: all 0.5s;
}

.header--wrapper .header--back {
  width: 90%;
  padding: 15px 44px;
  margin: auto;
  background: #fff;
  border-radius: 0 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.header--wrapper .header--logo {
  margin: 0;
}

.header--wrapper .header--logo a {
  display: flex;
}

.header--wrapper nav {
  margin: 0 0 0 auto;
}

.header--wrapper nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--wrapper nav ul a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  color: #000;
}

.header--wrapper .header--pc .header--contact {
  margin: 0 0 16px;
  justify-content: flex-end;
  gap: 60px;
}

.header--wrapper .header--pc .header--contact__tel a {
  position: relative;
  line-height: 1;
  font-size: 26px;
}

.header--wrapper .header--pc .header--contact__tel a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../img/common/tel.svg) no-repeat center center/cover;
  top: calc(50% - 12px);
  left: -30px;
}

.header--wrapper .header--pc .header--lang {
  display: flex;
  gap: 38px;
  position: relative;
}

.header--wrapper .header--pc .header--lang::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  background: #707070;
  top: 0;
  left: 50%;
}

.header--wrapper .header--pc .header--link {
  padding: 16px 0 0;
  border-top: solid 1px #707070;
  gap: 50px;
  transition: all .3s;
}

.header--wrapper .header--pc .header--link .header--link-contact {
  background: #CC1335;
  color: #fff;
  border: solid 1px #CC1335;
  border-radius: 30px;
  padding: 15px 54px;
  transition: all .3s;
}

.header--wrapper .header--sp,
.header--wrapper .header--hamburger .header--lang {
  display: none;
}

.header--sp .header--sp__inner .header-copy {
  text-align: center;
  font-size: 10px;
  margin: 22px 0 0;
}

@media screen and (max-width: 1605px) {
  .header--wrapper .header--logo .logo {
    width: 200px;
  }

  .header--wrapper .header--pc .header--link {
    gap: 25px;
  }

  .header--wrapper .header--pc .header--link .header--link-contact {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 1330px) {
  .header--wrapper .header--pc {
    display: none;
  }

  .header--wrapper nav ul a {
    color: #000;
  }

  .header--wrapper .header--hamburger {
    background-color: transparent;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header--wrapper .header--hamburger .header--contact {
    margin: 0;
  }

  .header--wrapper .header--hamburger .header--lang {
    display: flex;
    gap: 28px;
    position: relative;
  }

  .header--wrapper .header--hamburger .header--lang a {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #000;
  }

  .header--wrapper .header--hamburger .header--lang::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 24px;
    background: #707070;
    top: 0;
    left: 50%;
  }

  .header--wrapper .header--hamburger__icon {
    position: relative;
    cursor: pointer;
    height: 50px;
    width: 50px;
    background: #CC1335;
    border-radius: 50%;
  }

  .header--wrapper .header--hamburger__icon span {
    position: absolute;
    width: 22px;
    height: 1px;
    background-color: white;
    transition: ease 0.4s;
    left: 14px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(1) {
    top: 16px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(2) {
    top: 24px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(3) {
    bottom: 16px;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 24px;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(2) {
    opacity: 0;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 24px;
  }

  .header--wrapper .header--sp {
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100svh;
    background-color: #fff;
    padding: 140px 0 0;
  }

  .header--wrapper .header--sp__inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0 0 50px;
  }

  .header--wrapper .header--sp__inner ul {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
  }

  .header--wrapper .header--sp__inner ul li {
    max-width: 280px;
    width: 100%;
  }

  .header--wrapper .header--sp__item {
    position: relative;
    text-align: center;
    margin: 0 0 34px;
  }

  .header--wrapper .contact-link {
    margin: 0 0 18px;
  }

  .header--wrapper .header--sp__btn {
    width: 200px;
    margin: auto;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: #CC1335;
    border: solid 1px #CC1335;
    border-radius: 30px;
    transition: all .3s;
  }

  .header--wrapper .page-link a {
    position: relative;
    text-align: center;
    width: 154px;
    margin: 0 auto 18px;
    font-size: 12px;
    border-left: solid 1px #707070;
    border-right: solid 1px #707070;
  }

  .header--wrapper .header-address {
    display: flex;
    justify-content: center;
    font-size: 14px;
  }

  .header--wrapper .header--sp__inner ul .header--contact__tel {
    margin: 0;
    padding: 0 0 0 60px;
  }

  .header--wrapper .header--sp__inner ul .header--contact__tel a {
    position: relative;
    font-size: 26px;
  }

  .header--wrapper .header--sp__inner ul .header--contact__tel a::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../img/common/tel.svg) no-repeat center center/cover;
    top: calc(50% - 12px);
    left: -30px;
  }

  .header--wrapper .header--sp .header--contact li {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .header--wrapper .header--logo .logo {
    width: 92px;
  }

  .header--wrapper .header--hamburger__icon {
    height: 32px;
    width: 32px;
  }

  .header--wrapper .header--hamburger .header--lang a {
    font-size: 10px;
  }

  .header--wrapper .header--hamburger .header--lang::before {
    height: 16px;
  }

  .header--wrapper .header--hamburger__icon span {
    width: 14px;
    height: 1px;
    left: 9px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(1) {
    top: 9px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(2) {
    top: 15px;
  }

  .header--wrapper .header--hamburger__icon span:nth-of-type(3) {
    bottom: 9px;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 15px;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(2) {
    opacity: 0;
  }

  .header--wrapper .header--hamburger__icon.js-close span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: 15px;
  }

  .header--wrapper .header--sp {
    padding: 120px 0 0;
  }
}

/* ---------------------------------
▼▼ホバーの実装用
--------------------------------- */
@media screen and (min-width: 767px) {

  /* 共通設定用 */
  .button.red:hover {
    background: #fff;
    color: #CC1335;
  }

  .button.red:hover::before {
    opacity: 0;
  }

  .button.red:hover::after {
    opacity: 1;
  }

  /* ヘッダー用 */
  .header--wrapper nav ul a:hover {
    color: #CC1335;
  }

  .header--wrapper .header--hamburger .header--lang a:hover {
    color: #CC1335;
  }

  .header--wrapper .header--pc .header--link .header--link-contact:hover {
    background: #fff;
    color: #CC1335;
  }

  .header--wrapper .header--sp__btn:hover {
    background: #fff;
  }
}

/* ---------------------------------
▼▼フッター用css
--------------------------------- */
#footer {
  padding-top: calc(60px + 60 * (100vw - 320px)/1600);
  padding-bottom: calc(54px + 90 * (100vw - 320px)/1600);
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  width: 730px;
  height: 1236px;
  background: url(../img/common/c-bg.svg) no-repeat center center/cover;
  top: -60px;
  left: 50%;
  transform: translateX(-105%);
  z-index: 0;
}

#footer .footer-inner {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

#footer .footer-info .foot-logo {
  width: 230px;
  display: block;
}

#footer .footer-info .foot-logo img {
  width: 100%;
}

#footer .footer-info .footer-address {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin: 0 0 20px;
}

#footer .footer-info .footer-tel {
  display: block;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  padding: 0 0 0 30px;
  margin: 0 0 22px;
  transition: all .3s;
}

#footer .footer-info .footer-tel span {
  position: relative;
}

#footer .footer-info .footer-tel span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(../img/common/tel.svg) no-repeat center center / cover;
  top: calc(50% - 12px);
  left: -30px;
}

#footer .footer-info .footer-copy {
  font-size: 10px;
  color: #000;
  margin: 0;
}

#footer .footer-links {
  display: flex;
  flex-direction: column;
}

#footer .footer-links .footer-links-lists {
  display: flex;
  flex-wrap: wrap;
}

#footer .footer-links .footer-links-lists.anker {
  margin: 0;
}

#footer .footer-links .footer-links-lists .anker-item {
  width: 25%;
  margin: 0 0 calc(34px + 26 * (100vw - 320px)/1600);
}

#footer .footer-links .footer-links-lists .anker-item a {
  color: #000;
}

#footer .footer-links .footer-links-lists.under {
  margin: auto 0 0 auto;
}

#footer .footer-links .footer-links-lists .under-item {
  width: 154px;
  font-size: 12px;
  text-align: center;
  border-left: solid 1px #707070;
}

#footer .footer-links .footer-links-lists .under-item:last-child {
  border-right: solid 1px #707070;
}

#footer .footer-links .footer-links-lists .under-item a {
  color: #000;
}

/* タブレット用css */
@media screen and (max-width: 1024px) {
  #footer::before {
    width: 432px;
    height: 732px;
    background: url(../img/common/c-bg_sp.svg) no-repeat center center/cover;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  #footer .footer-inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  #footer .footer-info {
    display: grid;
  }

  #footer .footer-info .foot-logo {
    margin: auto;
  }

  #footer .footer-info .footer-address {
    margin: 0 auto 20px;
  }

  #footer .footer-info .footer-tel {
    margin: 0 auto 22px;
  }

  #footer .footer-info .footer-copy {
    margin: auto;
  }

  #footer .footer-links .footer-links-lists.under {
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 699px) {
  #footer::before {
    top: auto;
    bottom: 0;
  }

  #footer .footer-links .footer-links-lists .anker-item {
    width: 100%;
    text-align: center;
  }

  #footer .footer-links .footer-links-lists.under {
    flex-direction: column;
  }

  #footer .footer-links .footer-links-lists .under-item {
    margin: 0 auto 18px;
    border-right: solid 1px #707070;
  }
}

/* ホバーの挙動用 */
@media screen and (min-width: 767px) {
  #footer .footer-info .footer-tel:hover {
    color: #CC1335;
  }

  #footer .footer-links .footer-links-lists .anker-item a:hover {
    color: #CC1335;
  }

  #footer .footer-links .footer-links-lists .under-item a:hover {
    color: #CC1335;
  }
}

/* ---------------------------------
▼▼フィックスのリンク用css
--------------------------------- */
#fix-link {
  position: fixed;
  top: 250px;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

#fix-link .fixed-link {
  background: #CC1335;
  border: solid 1px #CC1335;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
  border-radius: 10px 0 0 10px;
  transition: all .3s;
}

#fix-link .fixed-link.con {
  padding: 62px 32px;
  margin: 0 0 15px;
}

#fix-link .fixed-link.res {
  padding: 42px 32px;
}

/* スマホ用 */
@media screen and (max-width: 767px) {
  #fix-link {
    display: none;
    visibility: hidden;
  }
}

/* ホバーの実装用 */
@media screen and (min-width: 767px) {
  #fix-link .fixed-link:hover {
    background: #fff;
    color: #CC1335;
  }
}