/* ---------------------------------------------------------------------------------------------------- */
/* FONTS */
.noto__r {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.noto__m {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.noto__b {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.oswald__r {
  font-family: "oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.oswald__m {
  font-family: "oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.oswald__b {
  font-family: "oswald", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.century__b {
  font-family: "century-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.century__r {
  font-family: "century-gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body * {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;

  color: #222222;
  letter-spacing: 0;
}

body {
  overflow-x: hidden;
}

.c__red {
  color: #d5040a;
}
.c__white {
  color: #ffffff;
}
.c__gray {
  color: #666666;
}

.c__gray2 {
  color: #747474;
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* 共通 */
.new__line {
  display: none;
}

a {
  transition: all 0.3s;
  display: block;
}
a:hover {
  opacity: 0.6;
}

.common__btn {
  width: 300px;
  border-radius: 100px;
  box-shadow: 0, 0, 0, rgb(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 20px 0;
  border: 1px solid #ffffff;
  transition: all 0.3s linear;
  text-align: center;
  position: relative;
}
.common__btn::after {
  position: absolute;
  content: "";
  background-image: url(../../img/TOP/red__arrow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 5px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s linear;
}

.common__btn:hover {
  background-color: #d5040a;
  color: #ffffff;
  opacity: 1;
}

.common__btn:hover::after {
  background-image: url(../../img/TOP/arrow__icon.png);
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* header */
#header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
}

/* left */
#header .container .left {
  width: 170px;
  height: auto;
  display: block;
  position: relative;
  z-index: 20;
}
#header .container .left img {
  width: 100%;
  height: auto;
}

#header .container .link__area {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* leftここまで */

/* link__area */
#header .container .link__area a.link__item {
  position: relative;
  display: block;
  transition: all 0.2s;
  font-size: calc(12px + 2 * (100vw - 320px) / 1080);
  line-height: 1.7;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1440px) {
  #header .container .link__area a.link__item {
    font-size: 14px;
  }
}

#header .container .link__area a.link__item::after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #d5040a;
  transform: translate(0, -200%);
  opacity: 0;
  transition: all 0.6s;
}

#header .container .link__area a.link__item:nth-child(n + 1) {
  margin-right: 35px;
}

#header .container .link__area a.link__item:last-child {
  margin-right: 0;
}

#header .container .link__area a.link__item:hover {
  color: #d5040a;
}

#header .container .link__area a.link__item:hover::after {
  transform: translate(0, 0);
  opacity: 1;
}
/* link__areaここまで */

/* right */
#header .container .right {
  display: flex;
  align-items: center;
}

#header .container .right .right__link {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 0 15px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

#header .container .right .right__link:first-child {
  padding-left: 0;
  border-left: 0;
}

#header .container .right .right__link:last-child {
  padding-right: 0;
  border-right: 0;
}
/* rightここまで */

/* ハンバーガー */
.hamburger {
  z-index: 20;
  display: none;
  width: 80px;
  height: 100%;
  background-color: red;
  position: absolute;
  right: 0;
  top: 0;
}

.hamburger span:nth-child(1) {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  top: 38%;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
}

.hamburger span:nth-child(2) {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
}

.hamburger span:nth-child(3) {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  top: 62%;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.show span:nth-child(2) {
  display: none;
}

.hamburger.show span:nth-child(1) {
  transform: rotate(-45deg);
  top: 38px;
}

.hamburger.show span:nth-child(3) {
  transform: rotate(45deg);
  top: 38px;
}
/* ハンバーガーここまで */

/* hamburger__menu */
.hamburger__menu {
  width: 100vw;
  height: 100%;
  padding: 150px 60px;
  right: 0;
  top: 0;
  background-color: #eeeeee;
  transition: all 0.4s ease-in-out;
  transform: translate(100%, 0);
  opacity: 0;
  position: fixed;
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.hamburger__menu.show {
  transform: translate(0, 0);
  z-index: 15;
  opacity: 1;
}

.hamburger__menu .link__area a.link__item {
  position: relative;
  display: block;
  font-size: calc(14px + 4 * (100vw - 320px) / 480);
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  margin-top: 20px;
  transition: all 0.3s;
}

.hamburger__menu .link__area a.link__item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #dddddd;
  transform: translate(0, 0);
  opacity: 1;
  transition: all 0.6s;
}

.hamburger__menu .link__area a.link__item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #d5040a;
  transform: translate(-200%, 0);
  opacity: 0;
  transition: all 0.6s;
}

.hamburger__menu .link__area a.link__item:hover {
  color: #d5040a;
}

.hamburger__menu .link__area a.link__item:hover::before {
  transform: translate(200%, 0);
  opacity: 0;
}

.hamburger__menu .link__area a.link__item:hover::after {
  transform: translate(0, 0);
  opacity: 1;
}

.hamburger__menu .right {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger__menu .right a.right__link {
  font-size: calc(14px + 4 * (100vw - 320px) / 480);
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: block;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  width: 33%;
  text-align: center;
}

.hamburger__menu .right .right__link:first-child {
  padding-left: 0;
  border-left: 0;
}

.hamburger__menu .right .right__link:last-child {
  padding-right: 0;
  border-right: 0;
}
/* hamburger__menuここまで */

/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* responsive(header) */
@media screen and (max-width: 1280px) {
  #header .container {
    padding: 20px;
  }

  #header .container .left {
    width: 120px;
  }

  #header .container .link__area a.link__item:nth-child(n + 1) {
    margin-right: 15px;
  }

  #header .container .right .right__link {
    padding: 0 10px;
  }

  #header .container .link__area a.link__item::after {
    bottom: -23px;
  }
}

@media screen and (max-width: 1024px) {
  #header .container {
    padding: 20px 10px;
  }

  #header .container .left {
    width: 100px;
  }

  #header .container .link__area a.link__item:nth-child(n + 1) {
    margin-right: 1vw;
  }

  #header .container .right .right__link {
    padding: 0 5px;
  }
}

@media screen and (max-width: 900px) {
  .hamburger {
    display: block;
  }

  #header .container .link__area {
    display: none;
  }

  #header .container .right {
    display: none;
  }

  #header .container .left {
    width: 150px;
    margin: 20px 30px;
  }

  #header .container {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  #header .container .left {
    width: 120px;
    margin: 15px;
  }

  .hamburger {
    width: 60px;
  }

  .hamburger.show span:nth-child(1) {
    top: 28px;
  }

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

  .hamburger__menu {
    padding: 80px 30px 120px 30px;
  }

  .hamburger__menu .right {
    flex-direction: column;
  }

  .hamburger__menu .right a.right__link {
    text-align: unset;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
    margin-top: 20px;
  }
}

/* active__link */
.active__link.active {
  color: #d5040a;
  pointer-events: none;
}
#header .container .link__area a.link__item.active::after {
  transform: translate(0, 0);
  opacity: 1;
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* footer */
#colophon {
  background-color: #f6f6f6;
  width: 100%;
}

#colophon .footer__top {
  padding-top: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid #dddddd;
}

#colophon .footer__top .inner {
  max-width: 1180px;
  width: 90%;
  margin: auto;
}

#colophon .footer__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#colophon .footer__top .container .left {
  display: flex;
}

#colophon .footer__top .container .left .footer__logo {
  width: 170px;
  height: auto;
  margin-right: 4.28vw;
}

#colophon .footer__top .container .left .footer__logo img {
  width: 100%;
  height: auto;
}

#colophon .footer__top .container .left .company__info {
  padding-left: 4.28vw;
  border-left: 1px solid #dddddd;
}

@media screen and (min-width: 1440px) {
  #colophon .footer__top .container .left .company__info {
    padding-left: 60px;
  }

  #colophon .footer__top .container .left .footer__logo {
    margin-right: 60px;
  }
}

#colophon .footer__top .container .left .company__info .footer__text {
  font-size: calc(12px + 2 * (100vw - 320px) / 1080);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

#colophon
  .footer__top
  .container
  .left
  .company__info
  .footer__text.footer__text2 {
  padding-top: 10px;
}

#colophon .footer__top .container .right {
  display: flex;
  align-items: center;
}

#colophon .footer__top .container .right a.link__item {
  font-size: calc(12px + 2 * (100vw - 320px) / 1080);
  line-height: 1.4;
  letter-spacing: 0.08em;
  transition: all 0.4s;
}
@media screen and (min-width: 1440px) {
  #colophon .footer__top .container .right a.link__item {
    font-size: 14px;
  }
}

#colophon .footer__top .container .right a.link__item:hover {
  color: #d5040a;
  opacity: 1;
}

#colophon .footer__top .container .right a.link__item:not(:last-child) {
  margin-right: 15px;
}

#colophon .footer__top .mark_block .img__box {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
#colophon .footer__top .mark_block .img__box .img__item {
  max-height: 70px;
  height: 7.14vw;
  margin-right: 2%;
  width: auto;
}
#colophon .footer__top .mark_block .img__box .img__item:last-child {
  margin-right: 0;
}
#colophon .footer__top .mark_block .img__box .img__item img {
    width: auto;
    height: 100%;
}

#colophon .footer__bottom {
  margin-top: 40px;
  padding-bottom: 80px;
}

#colophon .footer__bottom .inner {
  max-width: 1180px;
  width: 90%;
  margin: auto;
}

#colophon .footer__bottom .bottom__links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#colophon .footer__bottom .bottom__links .bottom__link {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-right: 30px;
}

#colophon .footer__bottom p.copyright {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: right;
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* responsive(footer) */
@media screen and (max-width: 1280px) {
  #colophon .footer__top {
    padding: 60px 0;
  }

  #colophon .footer__top .container {
    flex-direction: column;
  }

  #colophon .footer__top .container .left .footer__logo {
    margin-right: 10vw;
  }

  #colophon .footer__top .container .left .company__info {
    padding-left: 10vw;
  }

  #colophon .footer__top .container .right {
    margin-top: 60px;
  }

  #colophon .footer__top .container .right a.link__item:not(:last-child) {
    margin-right: 5vw;
  }
}

@media screen and (max-width: 900px) {
  #colophon .footer__top .container .right a.link__item:not(:last-child) {
    margin-right: 2vw;
  }
}

@media screen and (max-width: 600px) {
  #colophon .footer__top {
    padding-bottom: unset;
    padding-top: 40px;
    width: 90%;
    margin: auto;
  }

  #colophon .footer__top .container .left {
    flex-direction: column;
    width: 100%;
  }

  #colophon .footer__top .container .left .footer__logo {
    margin: auto;
    padding-bottom: 20px;
  }

  #colophon .footer__top .container .left .company__info {
    padding-left: 0;
    text-align: center;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
    width: 100%;
  }

  #colophon .footer__top .container .right {
    margin-top: 15px;
  }

  #colophon .footer__top .container .right {
    flex-wrap: wrap;
  }

  #colophon .footer__top .container .right a.link__item:not(:last-child) {
    margin-right: 0;
  }

  #colophon .footer__top .container .right a.link__item {
    padding: 3% 0;
    width: 50%;
    text-align: center;
  }

  #colophon .footer__bottom {
    padding-bottom: 40px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* contact */
.contact {
  background-color: #d5040a;
  width: 100%;
}

.contact .inner {
  max-width: 1050px;
  width: 90%;
  margin: auto;
  padding: 100px 0;
}

.contact .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact .container .sec__title {
  margin-right: 11%;
  width: 21.42%;
}

.contact .container .right__box {
  width: calc(100% - (21.42% + 11%));
}

.contact .container .right__box p {
  font-size: calc(12px + 4 * (100vw - 320px) / 1046);
  line-height: 1.68;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 1440px) {
  .contact .container .right__box p {
    font-size: 16px;
  }
}

.contact .container .right__box .btn__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.contact .container .right__box .btn__wrap .tel__wrap {
  display: flex;
  align-items: center;
  width: 50%;
  border-right: 1px solid #ffffff;
}

.contact .container .right__box .btn__wrap .tel__wrap .tel__logo {
  width: 34px;
  height: auto;
  margin-right: 15px;
}

.contact .container .right__box .btn__wrap .tel__wrap .tel__num {
  font-size: calc(20px + 16 * (100vw - 320px) / 1080);
  line-height: 1.47;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1440px) {
  .contact .container .right__box .btn__wrap .tel__wrap .tel__num {
    font-size: 36px;
  }
}

.contact .container .right__box .btn__wrap .common__btn {
  max-width: 300px;
  width: 42%;
  border-radius: 100px;
  box-shadow: 0, 0, 0, rgb(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding: 20px 0;
  border: 1px solid #ffffff;
  transition: all 0.3s linear;
  text-align: center;
  position: relative;
}
.contact .container .right__box .btn__wrap .common__btn::after {
  position: absolute;
  content: "";
  background-image: url(../../img/TOP/red__arrow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 5px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s linear;
}

.contact .container .right__box .btn__wrap .common__btn:hover {
  background-color: #d5040a;
  color: #ffffff;
  opacity: 1;
}

.contact .container .right__box .btn__wrap .common__btn:hover::after {
  background-image: url(../../img/TOP/arrow__icon.png);
}

.sec__title .sub {
  font-size: calc(16px + 8 * (100vw - 320px) / 1080);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.sec__title .main {
  font-size: calc(26px + 30 * (100vw - 320px) / 1080);
  line-height: 1.482;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 1440px) {
  .sec__title .sub {
    font-size: 24px;
  }
  .sec__title .main {
    font-size: 56px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* responsive(contact) */
@media screen and (max-width: 768px) {
  .contact .inner {
    padding: 20px 0;
  }

  .contact .container {
    flex-direction: column;
  }

  .contact .container .sec__title {
    margin-right: auto;
    width: 100%;
    text-align: center;
  }

  .contact .container .right__box {
    margin-top: 35px;
    width: 90%;
  }

  .contact .container .right__box .btn__wrap {
    margin-top: 20px;
  }

  .contact .container .right__box .btn__wrap .common__btn {
    padding: 12px 0;
  }
}

@media screen and (max-width: 480px) {
  .contact .container .right__box {
    margin-top: 20px;
  }

  .contact .container .right__box p .new__line {
    display: block;
  }

  .contact .container .right__box .btn__wrap {
    flex-direction: column;
  }

  .contact .container .right__box .btn__wrap .tel__wrap {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 15px;
    justify-content: center;
  }

  .contact .container .right__box .btn__wrap .common__btn {
    width: 100%;
    margin-top: 15px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------- */
/* 下層ページ共通 */
.lower__mv {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.lower__mv .inner {
  max-width: 1180px;
  width: 90%;
  margin: auto;
}

.lower__mv .inner .sec__title {
  padding: 55px 0;
}

@media screen and (max-width: 480px) {
  .lower__mv .inner .sec__title {
    padding: 40px 0;
  }
}

.post__name {
  font-size: calc(16px + 9 * (100vw - 320px) / 1080);
  line-height: 0.96;
  letter-spacing: 0.08em;
  position: relative;
}
.post__name::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #cfcfcf;
  bottom: -30px;
  left: 0;
}

.post__name::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #cfcfcf;
  bottom: -30px;
  left: 35px;
}

@media screen and (min-width: 1440px) {
  .post__name {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  #colophon .footer__top .mark_block .img__box .img__item {
    height: 45px;
  }
  #colophon .footer__top .mark_block .img__box {
    justify-content: center;
  }
  #colophon .footer__top .mark_block {
    margin-bottom: 30px;
  }
  
}
/* -------------------------------------------------------------------------------------------------- */
