@charset "UTF-8";
/*=========================*/
/*==　　　　変数　　　　　 ==*/
/*=========================*/
:root {
  --color_bg01:#000;
  --color_bg02:#EBEBEB;
  --color_bg03:#ebecf4;
  --color_bg04:#dfe2f6;
  --color_mono01:#000;
  --color_mono02:#fff;
  --color_mono03:#707070;
  --color_mono03:#575757;
  --color_mono04:#4b4b4b;
  --color_mono05:#443f3d;
  --color_mono06:#dedede;
  --color_mono07:#d4d0d0;
  --color_main01:#4f5aa1;
  --color_sub01:#e8ebfb;
  --color_sub02:#C83030;
  --color_sub03:#D89715;
  --color_sub04:#508D36;
  --color_sub05:#DC6EB8;
  --f12:clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  --f16:clamp(0.625rem, 0.55rem + 0.38vw, 1rem);
  --f18:clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  --f20:clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --f23:clamp(1.2rem, 0.912rem + 0.44vw, 1.438rem);
  --f24:clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem);
  --f26:clamp(1.2rem, 0.875rem + 0.63vw, 1.625rem);
  --f28:clamp(1.2rem, 0.85rem + 0.75vw, 1.75rem);
  --f30:clamp(1.5rem, 0.825rem + 0.88vw, 1.875rem);
  --f38:clamp(1.5rem, 0.725rem + 1.38vw, 2.375rem);
  --f42:clamp(1.5rem, 0.675rem + 1.63vw, 2.625rem);
  --f47:clamp(2rem, 0.612rem + 1.94vw, 2.938rem);
  --f57:clamp(2rem, 0.488rem + 2.56vw, 3.563rem);
  --f67:clamp(3rem, 0.362rem + 3.19vw, 4.188rem);
  --f127:clamp(4rem, -0.388rem + 6.94vw, 7.938rem);
}

/*=========================*/
/*==　　　　パーツ　　　　 ==*/
/*=========================*/
.p-md {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-md {
    display: block;
  }
}
.p-lg {
  display: none;
}

@media screen and (min-width: 992px) {
  .p-lg {
    display: block;
  }
}
.p-scale_image {
  background-color: var(--white);
  overflow: hidden;
}
.p-scale_image:hover img {
  transform: scale(1.05);
  opacity: 0.8;
  transition: 0.3s;
}

.p-section_title {
  padding-bottom: 0.5rem;
  position: relative;
}
.p-section_title:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  position: absolute;
  left: calc((100vw - 100%) / 2 * -1);
  bottom: 0;
  background-color: var(--color_mono03);
}
.p-section_title .eng {
  color: var(--color_main01);
  font-size: var(--f67);
  display: block;
  font-weight: 700;
  line-height: 1;
}
.p-section_title .jpn {
  display: block;
  font-size: var(--f20);
}

@media screen and (min-width: 768px) {
  .p-section_title {
    display: flex;
    align-items: baseline;
    padding-bottom: 1rem;
  }
  .p-section_title .eng {
    margin-right: clamp(1rem, 2.8125vw, 3.375rem);
  }
}
.p-button {
  padding: 1em 2em;
  position: relative;
  background-color: var(--color_main01);
  color: var(--color_mono02);
  border-radius: clamp(0.25rem, 0.2604166667vw, 5px);
  text-align: center;
  border: 2px solid var(--color_main01);
  z-index: 0;
}
.p-button__area {
  display: flex;
  justify-content: center;
}
.p-button:hover {
  color: var(--color_main01);
  background-color: var(--color_mono02);
}
@media screen and (min-width: 768px) {
  .p-button {
    min-width: 16.125rem;
    padding: 0.5em 2em;
    font-size: var(--f20);
  }
}
.p-radius_buton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 5rem;
  line-height: 1;
}
.p-radius_buton:before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.5rem;
  line-height: 1.5;
  margin-right: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 768px) {
  .p-radius_buton:before {
    height: 2rem;
  }
}
/*=========================*/
/*==　　　レイアウト　　　 ==*/
/*=========================*/
.l-container {
  width: 95vw;
  max-width: 1200px;
  margin: auto;
}

.c-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
.c-header .header__logo {
  margin-right: 2rem;
}
.c-header .header__logo img {
  display: block;
  width: 25vw;
}
.c-header .header__inner {
  display: flex;
  align-items: end;
}
.c-header .header__copy {
  width: 50vw;
  line-height: 1;
}
.c-header .header__copy .eng img {
  height: 1.2rem;
}
.c-header .header__copy .jpn img {
  height: 0.7rem;
}
.c-header .header__gnav {
  width: 100%;
  padding: 5rem 5vw 5rem;
  position: fixed;
  top: 0;
  bottom: 0;
  right: -95vw;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
}
.c-header .header__gnav .gnav__page_list li {
  margin-bottom: 0.5rem;
}
.c-header .header__gnav .gnav__page_list li:nth-of-type(1) {
  background-color: var(--color_main01);
}
.c-header .header__gnav .gnav__page_list li:nth-of-type(2) {
  background-color: var(--color_sub02);
}
.c-header .header__gnav .gnav__page_list li:nth-of-type(3) {
  background-color: var(--color_sub03);
}
.c-header .header__gnav .gnav__page_list li:nth-of-type(4) {
  background-color: var(--color_sub04);
}
.c-header .header__gnav .gnav__page_list li:nth-of-type(5) {
  background-color: var(--color_sub05);
}
.c-header .header__gnav .gnav__page_list li a {
  height: 5rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color_mono02);
  line-height: 1.5;
}
.c-header .header__gnav .gnav__page_list li a:hover {
  opacity: 0.5;
}
.c-header .header__gnav .gnav__page_list li a .jpn {
  font-size: 1.1rem;
  font-weight: 700;
}
.c-header .header__gnav .gnav__page_list li a .eng {
  opacity: 0.5;
}
.c-header.active .header__gnav {
  right: 0;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .c-header .header__inner {
    padding: 1rem 0;
  }
  .c-header .header__logo {
    margin-right: auto;
  }
  .c-header .header__logo img {
    width: clamp(1rem, 9.6875vw, 11.625rem);
  }
  .c-header .header__copy {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-right: 3.75rem;
  }
  .c-header .header__copy .eng {
    margin-right: 1rem;
  }
  .c-header .header__copy .eng img {
    height: auto;
  }
  .c-header .header__copy .jpn img {
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .c-header {
    position: static;
  }
  .c-header .header__inner {
    padding: clamp(0.5rem, 0.7291666667vw, 0.875rem) 0;
  }
  .c-header .header__copy {
    padding-right: auto;
  }
  .c-header .header__content {
    width: calc(100% - clamp(1rem, 11.4583333333vw, 13.75rem));
    max-width: 905px;
    margin-left: auto;
  }
  .c-header .header__gnav {
    width: auto;
    padding: 0;
    position: static;
    opacity: 1;
    background: transparent;
  }
  .c-header .header__gnav .gnav__page_list {
    display: flex;
    justify-content: end;
  }
  .c-header .header__gnav .gnav__page_list li {
    width: 20%;
    height: auto;
  }
  .c-header .header__gnav .gnav__page_list li a {
    width: 100%;
    height: 100%;
    padding: 0.2rem 1rem;
    line-height: 1.2;
  }
  .c-header .header__gnav .gnav__page_list li a .jpn {
    font-size: 1rem;
  }
  .c-header .header__gnav .gnav__page_list li a .eng {
    display: block;
    font-size: 10px;
  }
}
@media screen and (min-width: 1500px) {
  .c-header .header__gnav .gnav__page_list li a {
    width: clamp(9rem, 9.4270833333vw, 11.3125rem);
  }
}
.c-page_header {
  margin-bottom: clamp(2rem, 5.7291666667vw, 6.875rem);
  padding: 3rem 0;
  background-image: url(../img/page_header__bg.jpg);
  background-size: cover;
  background-position: center;
}
.c-page_header .page_title {
  font-size: var(--f127);
  font-weight: 700;
  text-align: center;
  color: var(--color_mono02);
  text-shadow: 0px 3px 6px #000;
}

@media screen and (min-width: 992px) {
  .c-page_header {
    padding: clamp(1rem, 3.125vw, 3.75rem) 0;
  }
}
.c-footer .footer__gmap {
  max-width: 917px;
  margin: auto;
  padding: clamp(4rem, 8.0208333333vw, 9.625rem) 0;
}
.c-footer .footer__info {
  padding: clamp(3rem, 1.5625vw, 1.875rem) 0;
  background-color: var(--color_bg02);
}
.c-footer .footer__info .container {
  width: 95vw;
  max-width: 917px;
  margin: auto;
}
.c-footer .footer__info__logo {
  display: block;
  width: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.c-footer .footer__info__office_list {
  margin-bottom: 2rem;
}
.c-footer .footer__info__office_list li {
  margin-bottom: 1rem;
}
.c-footer .footer__info__office_list .tel {
  font-size: var(--f26);
  font-weight: 700;
  line-height: 1.3;
}
.c-footer .footer__copyright {
  padding: 1rem 0;
  background-color: var(--color_main01);
  color: var(--color_mono02);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-footer .footer__info .container {
    display: grid;
    grid-template-areas: "logo office" "logo contact";
  }
  .c-footer .footer__info__logo {
    grid-area: logo;
    width: auto;
    margin-bottom: 0;
  }
  .c-footer .footer__info__office_list {
    grid-area: office;
    margin: 0 auto 0 2rem;
  }
  .c-footer .footer__info__contact {
    grid-area: contact;
  }
}
@media screen and (min-width: 992px) {
  .c-footer .footer__info .container {
    display: grid;
    grid-template-areas: "logo office contact";
    grid-template-rows: auto;
    grid-template-rows: max-content max-content 1fr auto auto;
    align-items: end;
  }
  .c-footer .footer__info__office_list {
    margin-bottom: 0;
  }
  .c-footer .footer__info__office_list li:last-of-type {
    margin-bottom: 0;
  }
  .c-footer .footer__contact {
    height: 2rem;
  }
}
#c-hamburger {
  width: 1.5rem;
  height: 1.5rem;
  position: fixed;
  top: 4vw;
  right: 4vw;
  z-index: 999;
}
#c-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: var(--color_main01);
  transition: 0.3s;
}
#c-hamburger span:nth-of-type(1) {
  top: 10%;
}
#c-hamburger span:nth-of-type(2) {
  top: 45%;
}
#c-hamburger span:nth-of-type(3) {
  bottom: 10%;
}
#c-hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
#c-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
#c-hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}

@media screen and (min-width: 992px) {
  #c-hamburger {
    display: none;
  }
}
.c-to_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  border-radius: 50%;
  background-color: var(--color_mono01);
}
.c-to_top .triangle {
  display: block;
  width: 1rem;
  height: 0.8rem;
  background-color: var(--color_mono02);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media screen and (min-width: 992px) {
  .c-to_top {
    width: 3rem;
    height: 3rem;
  }
  .c-to_top .triangle {
    width: 1.5rem;
    height: 1.2rem;
  }
}
.s-not_found {
  padding: 4rem 0;
}
.s-not_found p {
  padding: 2rem 0;
  text-align: center;
}/*# sourceMappingURL=common.css.map */