@charset "UTF-8";
/* ======================= VARIABLE ====== */
/* ======================= IMPORT ====== */
/*=================

      mixin.scss

=======================*/
/*=================

      common.scss

=======================*/
.common_wrap {
  padding: 0 16px;
}

.common_inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.common_inner_s {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.common_right_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
}

.common_left_wrap {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: 0;
  margin-right: auto;
}

/* フェードイン(初期値) */
.scroll_up {
  opacity: 0;
  /* 最初は非表示 */
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  /* 下に50pxの位置から */
  -webkit-transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, -webkit-transform .8s;
  transition: opacity .8s, transform .8s;
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.scroll_up.is-show {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 30px上に移動する */
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  /* フェード開始を0.2秒遅らせる */
}

.common_sec_title {
  padding: 0 0 0 32px;
  border-left: 3px solid #D1D1D1;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title {
    padding: 0 0 0 16px;
    margin: 0 0 40px;
  }
}

.common_sec_title .common_sec_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 64px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

@media only screen and (max-width: 640px) {
  .common_sec_title .common_sec_title_en {
    font-size: 42px;
  }
}

.common_sec_title .common_sec_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_sec_title .common_sec_title_ja {
    font-size: 14px;
  }
}

.common_sec_title.c_w .common_sec_title_en {
  color: #FFF;
}

.common_sec_title.c_w .common_sec_title_ja {
  color: #FFF;
}

.common_pege_title {
  padding: 0 0 0 32px;
  border-left: 3px solid #D1D1D1;
  margin: 0 0 84px;
}

@media only screen and (max-width: 640px) {
  .common_pege_title {
    padding: 0 0 0 16px;
    margin: 0 0 40px;
  }
}

.common_pege_title .common_pege_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 94px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

@media only screen and (max-width: 640px) {
  .common_pege_title .common_pege_title_en {
    font-size: 42px;
  }
}

.common_pege_title .common_pege_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_pege_title .common_pege_title_ja {
    font-size: 14px;
  }
}

.common_pege_title.c_w .common_pege_title_en {
  color: #FFF;
}

.common_pege_title.c_w .common_pege_title_ja {
  color: #FFF;
}

.common_pege_title .mb_0 {
  margin: 0 0 0;
}

.Common_Title {
  display: block;
  /* ブロックなので縦並び */
  overflow: hidden;
  /* 下に隠す */
  line-height: 1;
}

.Common_Title span {
  display: inline-block;
  -webkit-transform: translateY(120%);
  transform: translateY(120%);
  /* 下から */
  opacity: 1;
  /* フェードしない */
}

.Common_Title span.animate {
  -webkit-animation: slideUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
  animation: slideUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
}

@-webkit-keyframes slideUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.Common_Slide_Img {
  overflow: hidden;
  /* はみ出した部分を隠す */
  display: block;
  position: relative;
  padding: 20px 0 0;
}

.Common_Slide_Img .Slide_Img {
  display: block;
  opacity: 0;
  -webkit-transform: translateY(102%);
  transform: translateY(102%);
  /* 完全に下に隠す */
  will-change: transform;
}

.Common_Slide_Img .Slide_Img.is-visible {
  -webkit-animation: slideUpImg 0.6s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
  animation: slideUpImg 0.6s cubic-bezier(0.25, 0.1, 0.25, 1.5) forwards;
}

@-webkit-keyframes slideUpImg {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
    /* フェードにならないよう最初から表示 */
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpImg {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 1;
    /* フェードにならないよう最初から表示 */
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.Slide_In_Wrap {
  overflow: hidden;
}

.Slide_In_Wrap .Slide_In.left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}

.Slide_In_Wrap .Slide_In.right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}

.Slide_In_Wrap .Slide_In.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.common_btn_wrap {
  margin: 64px 0 0;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .common_btn_wrap {
    margin: 40px 0 0;
  }
}

.common_btn_wrap.right {
  text-align: right;
}

.common_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.common_btn.bg_gray {
  background-color: #F4F4F4;
}

.common_btn:after {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.common_btn .common_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0 12px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_btn .common_btn_text {
    font-size: 14px;
  }
}

.common_btn .common_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .common_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .common_btn:hover .common_btn_text {
    color: #FFF;
  }
  .common_btn:hover .common_btn_arrow {
    background-image: url(../images/common/icon_arrow_w.svg);
  }
}

.common_btn.bg_none {
  border: 1px solid #FFF;
  background-color: inherit;
}

.common_btn.bg_none::after {
  background-color: #FFF;
}

.common_btn.bg_none .common_btn_text {
  color: #FFF;
}

.common_btn.bg_none .common_btn_arrow {
  background-image: url(../images/common/icon_arrow_w.svg);
}

@media only screen and (min-width: 960px) {
  .common_btn.bg_none:hover {
    background-color: #FFF;
  }
  .common_btn.bg_none:hover .common_btn_text {
    color: #333;
  }
  .common_btn.bg_none:hover .common_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
}

.common_back_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.common_back_btn:after {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.common_back_btn .common_back_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 0 12px;
}

.common_back_btn .common_back_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_back_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .common_back_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .common_back_btn:hover .common_back_btn_text {
    color: #FFF;
  }
  .common_back_btn:hover .common_back_btn_arrow {
    background-image: url(../images/common/icon_arrow_back_w.svg);
  }
}

.common_back_btn.bg_none {
  border: 1px solid #FFF;
  background-color: inherit;
}

.common_back_btn.bg_none::after {
  background-color: #FFF;
}

.common_back_btn.bg_none .common_back_btn_text {
  color: #FFF;
}

.common_back_btn.bg_none .common_back_btn_arrow {
  background-image: url(../images/common/icon_arrow_w.svg);
}

@media only screen and (min-width: 960px) {
  .common_back_btn.bg_none:hover {
    background-color: #FFF;
  }
  .common_back_btn.bg_none:hover .common_back_btn_text {
    color: #333;
  }
  .common_back_btn.bg_none:hover .common_back_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
}

.common_text_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_text_link {
    font-size: 14px;
  }
}

.common_text_link img {
  display: block;
  width: 12px;
  margin: 0 0 0 12px;
}

.common_text_link {
  width: 100%;
  position: relative;
}

.common_text_link .line-wrapper {
  display: inline-block;
  position: relative;
}

.common_text_link .line-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
}

.common_text_link .line-wrapper.animate-in::after {
  -webkit-animation: lineanim_in 0.5s forwards ease-out;
  animation: lineanim_in 0.5s forwards ease-out;
}

.common_text_link .line-wrapper.animate-out::after {
  -webkit-animation: lineanim_out 0.5s forwards ease-out;
  animation: lineanim_out 0.5s forwards ease-out;
}

@-webkit-keyframes lineanim_in {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineanim_in {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes lineanim_out {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes lineanim_out {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

/*common_recruit_sec*/
.common_recruit_sec {
  padding: 180px 0;
  background-image: url(../images/common/bg_recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 640px) {
  .common_recruit_sec {
    padding: 48px 0;
  }
}

.common_recruit_content {
  text-align: center;
}

.common_recruit_content .common_recruit_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 94px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_recruit_content .common_recruit_title_en {
    font-size: 42px;
  }
}

.common_recruit_content .common_recruit_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .common_recruit_content .common_recruit_title_ja {
    font-size: 16px;
  }
}

.common_recruit_content .common_btn_wrap {
  margin: 80px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_recruit_content .common_btn_wrap {
    margin: 40px 0 0;
  }
}

/*common_contact_sec*/
.common_contact_sec {
  padding: 180px 0;
  background-image: url(../images/common/bg_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 640px) {
  .common_contact_sec {
    padding: 48px 0;
  }
}

.common_contact_content .common_contact_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 94px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 0 12px;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_title_en {
    font-size: 42px;
  }
}

.common_contact_content .common_contact_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_title_ja {
    font-size: 16px;
    margin: 0 0 24px;
  }
}

.common_contact_content .common_contact_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 3;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_text {
    margin: 0 0 40px;
  }
}

.common_contact_content .common_contact_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_btn_wrap {
    display: block;
  }
}

.common_contact_content .common_contact_btn_wrap .common_btn {
  min-width: 298px;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_btn_wrap .common_btn {
    margin: 0 auto 16px 0;
  }
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 298px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #FFF;
  background-color: inherit;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn {
    margin: 0 auto 0 0;
  }
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:after {
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap {
  margin: 0 12px 0 0;
  position: relative;
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num .common_contact_tel_btn_num_img {
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_tel_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 8px 0 0;
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num .common_contact_tel_btn_text_num_text {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num .common_contact_tel_btn_text_num_text {
    font-size: 16px;
  }
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_time {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_time {
    font-size: 10px;
  }
}

.common_contact_content .common_contact_btn_wrap .common_contact_tel_btn .common_contact_tel_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover {
    background-color: #FFF;
  }
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num .common_contact_tel_btn_num_img {
    background-image: url(../images/common/icon_tel_b.svg);
  }
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_num .common_contact_tel_btn_text_num_text {
    color: #333;
  }
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover .common_contact_tel_btn_text_wrap .common_contact_tel_btn_text_time {
    color: #333;
  }
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover .common_contact_tel_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
  .common_contact_content .common_contact_btn_wrap .common_contact_tel_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/*キラッとひかる*/
.common_reflection {
  position: relative;
  overflow: hidden;
}

.common_reflection::before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 4s ease-in-out;
  z-index: 2;
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  75% {
    -webkit-transform: scale(0) rotate(25deg);
    opacity: 0.5;
  }
  76% {
    -webkit-transform: scale(4) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  75% {
    -webkit-transform: scale(0) rotate(25deg);
    opacity: 0.5;
  }
  76% {
    -webkit-transform: scale(4) rotate(25deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

/*pankuzu_wrap*/
.pankuzu_wrap {
  padding: 16px 0;
}

.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pankuzu_list::-webkit-scrollbar {
  display: none;
}

.pankuzu_list .pankuzu_item {
  margin: 0 32px 0 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #333;
  line-height: 1.5;
}

.pankuzu_list .pankuzu_item:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -20px;
  width: 4px;
  height: 6px;
  background-image: url(../images/common/icon_pankuzu_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.pankuzu_list .pankuzu_item:last-child {
  margin: 0 0 0 0;
}

.pankuzu_list .pankuzu_item:last-child:after {
  content: none;
}

.pankuzu_list .pankuzu_item .pankuzu_link {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (min-width: 960px) {
  .pankuzu_list .pankuzu_item .pankuzu_link:hover {
    text-decoration: underline;
  }
}

/*common_page_list*/
.common_page_list {
  margin: 64px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 640px) {
  .common_page_list {
    margin: 40px 0 0;
  }
}

.common_page_list .common_page_item {
  margin: 0 8px;
}

@media only screen and (max-width: 640px) {
  .common_page_list .common_page_item {
    margin: 0 4px;
  }
}

.common_page_list .common_page_item .common_page_prev {
  display: block;
  padding: 8px;
}

.common_page_list .common_page_item .common_page_prev img {
  width: 14px;
}

.common_page_list .common_page_item .common_page_link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #FFF;
  border: 1px solid #333;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: #333;
}

@media only screen and (max-width: 640px) {
  .common_page_list .common_page_item .common_page_link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.common_page_list .common_page_item .common_page_link.active {
  background-color: #333;
  color: #FFF;
}

@media only screen and (min-width: 960px) {
  .common_page_list .common_page_item .common_page_link:hover {
    background-color: #333;
    color: #FFF;
  }
}

.common_page_list .common_page_item .common_page_next {
  display: block;
  padding: 8px;
}

.common_page_list .common_page_item .common_page_next img {
  width: 14px;
}

/*common_page_title_wrap*/
.common_page_title_wrap {
  padding: 80px 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 654px;
}

@media only screen and (max-width: 640px) {
  .common_page_title_wrap {
    padding: 40px 0;
    min-height: 360px;
  }
}

.common_page_title_wrap.about {
  background-image: url(../images/about/bg_title.jpg);
}

.common_page_title_wrap.business {
  background-image: url(../images/business/bg_title.jpg);
}

.common_page_title_wrap.recruit {
  background-image: url(../images/recruit/bg_title.jpg);
}

.common_page_title_wrap.contact {
  background-image: url(../images/contact/bg_title.jpg);
}

.common_page_title_wrap .common_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 494px;
}

@media only screen and (max-width: 640px) {
  .common_page_title_wrap .common_inner {
    min-height: 280px;
  }
}

/*=================

      header.scss

=======================*/
.header_wrap {
  height: 100px;
}

.header_wrap.top {
  height: auto;
}

@media only screen and (max-width: 1400px) {
  .header_wrap.top {
    height: 72px;
  }
}

@media only screen and (max-width: 1400px) {
  .header_wrap {
    height: 72px;
  }
}

.top_pc_header_wrap {
  padding: 0 48px;
  height: 100px;
  opacity: 0;
  pointer-events: none;
  /* 非表示時はクリック無効 */
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 1000;
}

@media only screen and (max-width: 1400px) {
  .top_pc_header_wrap {
    display: none !important;
  }
}

.top_pc_header_wrap .top_pc_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 12px 0;
  z-index: 1000;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_list .top_pc_header_item {
  margin: 0 48px 0 0;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_list .top_pc_header_item .top_pc_header_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  /* 1つ目の影を隠す */
  color: transparent;
  /* テキスト本体は透明にする */
  text-shadow: 0 -1.5em 0 #333, 0 0 0 #333;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
}

@media only screen and (min-width: 960px) {
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_list .top_pc_header_item .top_pc_header_link:hover {
    text-shadow: 0 0 0 #333, 0 1.5em 0 #333;
    /* 2つの影の位置を上方向に1.5emずつずらす */
  }
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1000;
  margin: 0 16px 0 0;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn.top {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:after {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_text_wrap {
  margin: 0 12px 0 0;
  position: relative;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_num .top_pc_header_tel_btn_text_num_img {
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_tel_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 8px 0 0;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_num .top_pc_header_tel_btn_text_num_text {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_time {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #333;
  line-height: 1.5;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn .top_pc_header_tel_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:hover .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_num .top_pc_header_tel_btn_text_num_img {
    background-image: url(../images/common/icon_tel_w.svg);
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:hover .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_num .top_pc_header_tel_btn_text_num_text {
    color: #FFF;
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:hover .top_pc_header_tel_btn_text_wrap .top_pc_header_tel_btn_text_time {
    color: #FFF;
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:hover .top_pc_header_tel_btn_arrow {
    background-image: url(../images/common/icon_arrow_w.svg);
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_tel_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn:after {
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn .top_pc_header_contact_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 12px 0 0;
}

.top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn .top_pc_header_contact_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 960px) {
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn:hover .top_pc_header_contact_btn_text {
    color: #333;
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn:hover .top_pc_header_contact_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
  .top_pc_header_wrap .top_pc_header_inner .top_pc_header_btn_wrap .top_pc_header_contact_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pc_header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0 48px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  /* 非表示時はクリック無効 */
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: 1000;
}

.pc_header_wrap.header-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media only screen and (max-width: 1400px) {
  .pc_header_wrap {
    display: none !important;
  }
}

.pc_header_wrap.page {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.pc_header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 12px 0;
}

.pc_header_inner .pc_header_logo_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo {
  display: block;
  width: 154px;
  margin: 0 40px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_logo img {
  width: 100%;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item {
  margin: 0 48px 0 0;
}

.pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  /* 1つ目の影を隠す */
  color: transparent;
  /* テキスト本体は透明にする */
  text-shadow: 0 -1.5em 0 #333, 0 0 0 #333;
  -webkit-transition: text-shadow 0.3s;
  transition: text-shadow 0.3s;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_logo_menu .pc_header_menu_list .pc_header_menu_item .pc_header_menu_link:hover {
    text-shadow: 0 0 0 #333, 0 1.5em 0 #333;
    /* 2つの影の位置を上方向に1.5emずつずらす */
  }
}

.pc_header_inner .pc_header_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 16px 0 0;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:after {
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_text_wrap {
  margin: 0 12px 0 0;
  position: relative;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_text_wrap .pc_header_tel_text_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_text_wrap .pc_header_tel_text_num .pc_header_tel_text_num_img {
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_tel_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 8px 0 0;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_text_wrap .pc_header_tel_text_num .pc_header_tel_text_num_text {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_text_wrap .pc_header_tel_text_time {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  color: #333;
  line-height: 1.5;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn .pc_header_tel_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:hover .pc_header_tel_btn_text_wrap .pc_header_tel_text_num .pc_header_tel_text_num_img {
    background-image: url(../images/common/icon_tel_w.svg);
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:hover .pc_header_tel_btn_text_wrap .pc_header_tel_text_num .pc_header_tel_text_num_text {
    color: #FFF;
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:hover .pc_header_tel_btn_text_wrap .pc_header_tel_text_time {
    color: #FFF;
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:hover .pc_header_tel_btn_arrow {
    background-image: url(../images/common/icon_arrow_w.svg);
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_tel_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn:after {
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn .pc_header_contact_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 12px 0 0;
}

.pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn .pc_header_contact_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 960px) {
  .pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn:hover .pc_header_contact_btn_text {
    color: #333;
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn:hover .pc_header_contact_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
  .pc_header_inner .pc_header_btn_wrap .pc_header_contact_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.sp_header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: #FFF;
  z-index: 1000;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1400px) {
  .sp_header {
    display: block;
  }
}

.sp_header .sp_header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 72px;
}

.sp_header .sp_header_content .sp_header_logo {
  display: block;
  width: 126px;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_logo {
    width: 100px;
  }
}

.sp_header .sp_header_content .sp_header_logo img {
  display: block;
  width: 100%;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_tel_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  background-color: #FFF;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_tel_btn {
    width: 32px;
    height: 32px;
    margin: 0 16px 0 0;
  }
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_tel_btn img {
  width: 16px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 210px;
  height: 40px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  background-color: #333;
  border-radius: 40px;
  margin: 0 16px 0 0;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link img {
  width: 16px;
  margin: 0 4px 0 0;
  vertical-align: middle;
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link img {
    width: 16px;
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_icon_menu_contact_link span {
    display: none;
  }
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn {
  width: 48px;
  height: 40px;
  border-radius: 3px;
  background-color: #575757;
  position: relative;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  height: 1px;
  background-color: #FFF;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(1n) {
  left: 12px;
  top: 16px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn span:nth-of-type(2n) {
  left: 12px;
  top: 22px;
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(1n) {
  top: 13px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-32deg);
  transform: translateY(6px) rotate(-32deg);
  width: 24px;
}

.sp_header .sp_header_content .sp_header_menu_btn_wrap .sp_header_menu_btn.active span:nth-of-type(2n) {
  top: 25px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(32deg);
  transform: translateY(-6px) rotate(32deg);
  width: 24px;
}

.sp_header_menu {
  display: none;
}

.sp_header_menu.active {
  display: block;
}

.sp_header_menu .sp_header_menu_inner {
  position: fixed;
  z-index: 1000;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  padding: 16px 0;
  background-color: #575757;
  overflow-y: scroll;
  scrollbar-width: none;
}

.sp_header_menu .sp_header_menu_inner::-webkit-scrollbar {
  display: none;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list {
  margin: 0 0 24px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 16px 0 16px 20px;
  position: relative;
}

.sp_header_menu .sp_header_menu_inner .sp_header_menu_list .sp_header_menu_item .sp_header_menu_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F4F4F4;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact {
  margin: 0 auto;
  width: 380px;
  height: 68px;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px 16px 4px 24px;
  border-radius: 40px;
}

@media only screen and (max-width: 640px) {
  .sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact {
    width: 320px;
  }
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact .sp_header_btn_menu_contact_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact .sp_header_btn_menu_contact_img {
  width: 12px;
  margin: 0 0 0 8px;
}

.sp_header_menu .sp_header_menu_inner .sp_header_btn_menu_contact .sp_header_btn_menu_contact_img img {
  width: 100%;
}

/*=================

      footer.scss

=======================*/
.footer_wrap {
  background-image: url(../images/common/bg_footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 72px 0;
}

@media only screen and (max-width: 640px) {
  .footer_wrap {
    padding: 40px 0;
  }
}

.footer_logo {
  display: block;
  width: 240px;
  margin: 0 auto 16px;
}

@media only screen and (max-width: 640px) {
  .footer_logo {
    width: 200px;
  }
}

.footer_logo img {
  width: 100%;
}

.footer_address {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .footer_address {
    margin: 0 0 32px;
  }
}

.footer_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 -20px;
}

@media only screen and (max-width: 640px) {
  .footer_menu_list {
    margin: 0 0 -16px;
  }
}

.footer_menu_list .footer_menu_item {
  margin: 0 20px 20px 20px;
}

@media only screen and (max-width: 640px) {
  .footer_menu_list .footer_menu_item {
    margin: 0 8px 16px 8px;
  }
}

.footer_menu_list .footer_menu_item .footer_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .footer_menu_list .footer_menu_item .footer_menu_link {
    font-size: 13px;
  }
}

.footer_sub_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 32px 0 0;
}

.footer_sub_menu_list .footer_sub_menu_item {
  margin: 0 16px;
}

.footer_sub_menu_list .footer_sub_menu_item .footer_sub_menu_link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #D1D1D1;
  line-height: 1.5;
  text-decoration: underline;
}

.footer_copy {
  background-color: #000;
  padding: 16px 0;
}

@media only screen and (max-width: 640px) {
  .footer_copy {
    padding: 12px 0;
  }
}

.footer_copy .footer_copy_text {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #FFF;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .footer_copy .footer_copy_text {
    font-size: 11px;
  }
}

/*=================

      content.scss

=======================*/
.contact_page {
  padding: 120px 0;
  background-color: #FFF;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .contact_page {
    padding: 64px 0;
  }
}

.contact_comment_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .contact_comment_text {
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .contact_form_wrap {
    background-color: #F4F4F4;
  }
}

.contact_form {
  background-color: #F4F4F4;
  position: relative;
  padding: 80px 24px;
}

@media only screen and (max-width: 640px) {
  .contact_form {
    padding: 40px 0;
  }
}

.contact_form::before {
  content: "";
  position: absolute;
  left: calc(-1 * ((100vw - 1100px) / 2));
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #F4F4F4;
  z-index: 0;
}

@media only screen and (max-width: 1200px) {
  .contact_form::before {
    left: -30%;
  }
}

@media only screen and (max-width: 640px) {
  .contact_form::before {
    content: none;
  }
}

.contact_form .contact_form_content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.contact_form .contact_form_list {
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_form_list {
    margin: 0 0 40px;
  }
}

.contact_form .contact_form_list .contact_form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_form_list .contact_form_item {
    display: block;
    margin: 0 0 32px;
  }
}

.contact_form .contact_form_list .contact_form_item:last-child {
  margin: 0 0 0;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_title {
  width: 260px;
  padding: 20px 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_form_list .contact_form_item .contact_form_item_title {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 16px 0;
  }
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_title span {
  color: #FF3C3C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block {
  width: calc(100% - 260px);
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_form_list .contact_form_item .contact_form_item_input_block {
    width: 100%;
  }
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_select {
  width: 100%;
  padding: 20px 32px 20px 16px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/contact/icon_arrow_select.svg);
  background-repeat: no-repeat;
  background-size: 11px 6px;
  background-position: right 16px center;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #7C7C7C;
  line-height: 1.5;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_select.active {
  color: #333;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input {
  width: 100%;
  padding: 20px 16px;
  background-color: #FFF;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input::-webkit-input-placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input::-ms-input-placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_input::placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea {
  width: 100%;
  height: 240px;
  padding: 20px 16px;
  background-color: #FFF;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  resize: none;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea::-webkit-input-placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea::-ms-input-placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_form_item_textarea::placeholder {
  color: #7C7C7C;
}

.contact_form .contact_form_list .contact_form_item .contact_form_item_input_block .contact_error_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #FF3C3C;
  line-height: 1.5;
  margin: 8px 0 0;
}

.contact_form .contact_privacy_policy_box {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  overflow-y: scroll;
  width: 100%;
  height: 240px;
  margin: 0 0 64px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_privacy_policy_box {
    padding: 0 24px;
    margin: 0 0 40px;
  }
}

.contact_form .contact_privacy_policy_box::-webkit-scrollbar {
  display: none;
}

.contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content {
  margin: 32px 0;
}

@media only screen and (max-width: 640px) {
  .contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content {
    margin: 24px 0;
  }
}

.contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content .contact_privacy_policy_box_title_main {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 24px;
}

.contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content .contact_privacy_policy_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 16px;
}

.contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content .contact_privacy_policy_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 2;
  margin: 0 0 32px;
}

.contact_form .contact_privacy_policy_box .contact_privacy_policy_box_content .contact_privacy_policy_box_text.right {
  text-align: right;
}

.contact_form .contact_privacy_policy_note {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 8px;
}

.contact_form .contact_form_submit_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 220px;
  height: 56px;
  border-radius: 30px;
  border: 1px solid #333;
  background-color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.contact_form .contact_form_submit_btn:after {
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.contact_form .contact_form_submit_btn .contact_form_submit_btn_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 12px 0 0;
}

.contact_form .contact_form_submit_btn .contact_form_submit_btn_arrow {
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 960px) {
  .contact_form .contact_form_submit_btn:hover .contact_form_submit_btn_text {
    color: #333;
  }
  .contact_form .contact_form_submit_btn:hover .contact_form_submit_btn_arrow {
    background-image: url(../images/common/icon_arrow_b.svg);
  }
  .contact_form .contact_form_submit_btn:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/*thanks_page*/
.thanks_page {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .thanks_page {
    padding: 64px 0;
  }
}

.thanks_title_en {
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 100px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .thanks_title_en {
    font-size: 72px;
    line-height: 1.3;
    margin: 0 0 16px;
  }
}

.thanks_title_ja {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .thanks_title_ja {
    font-size: 18px;
    margin: 0 0 32px;
  }
}

.thanks_text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2;
}

.thanks_text a {
  color: #333;
  text-decoration: underline;
}

/*=================

      about.scss

=======================*/
.about_page_taught {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin: 0 0 160px;
}

@media only screen and (max-width: 640px) {
  .about_page_taught {
    display: block;
    margin: 0 0 64px;
  }
}

.about_page_taught .about_page_taught_title_block {
  width: 480px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  margin: 200px 0 0;
  top: 200px;
}

@media only screen and (max-width: 960px) {
  .about_page_taught .about_page_taught_title_block {
    width: 360px;
  }
}

@media only screen and (max-width: 840px) {
  .about_page_taught .about_page_taught_title_block {
    width: 260px;
  }
}

@media only screen and (max-width: 640px) {
  .about_page_taught .about_page_taught_title_block {
    width: 100%;
    position: static;
    padding: 40px 0;
    margin: 0 0 0;
  }
}

.about_page_taught .about_page_taught_title_block .about_page_taught_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about_page_taught .about_page_taught_title_block .about_page_taught_title_wrap .about_page_taught_title_en {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .about_page_taught .about_page_taught_title_block .about_page_taught_title_wrap .about_page_taught_title_en {
    font-size: 16px;
    margin: 0 4px 0 0;
  }
}

.about_page_taught .about_page_taught_title_block .about_page_taught_title_wrap .about_page_taught_title_ja {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 72px;
  color: #333;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .about_page_taught .about_page_taught_title_block .about_page_taught_title_wrap .about_page_taught_title_ja {
    font-size: 56px;
  }
}

.about_page_taught .about_page_taught_detail_block {
  width: calc(100% - 480px);
}

@media only screen and (max-width: 960px) {
  .about_page_taught .about_page_taught_detail_block {
    width: calc(100% - 360px);
  }
}

@media only screen and (max-width: 840px) {
  .about_page_taught .about_page_taught_detail_block {
    width: calc(100% - 260px);
  }
}

@media only screen and (max-width: 640px) {
  .about_page_taught .about_page_taught_detail_block {
    width: 100%;
  }
}

.about_page_taught .about_page_taught_detail_block .about_page_taught_detail_img {
  width: 100%;
  height: 900px;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  .about_page_taught .about_page_taught_detail_block .about_page_taught_detail_img {
    height: 360px;
    margin: 0 0 40px;
  }
}

.about_page_taught .about_page_taught_detail_block .about_page_taught_detail_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.about_page_taught .about_page_taught_detail_block .about_page_taught_detail_text_wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 0 0 auto;
}

@media only screen and (max-width: 1200px) {
  .about_page_taught .about_page_taught_detail_block .about_page_taught_detail_text_wrap {
    padding: 0 0 0 16px;
  }
}

.about_page_taught .about_page_taught_detail_block .about_page_taught_detail_text_wrap .about_page_taught_detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
}

.about_slide_block {
  margin: 0 0 160px;
}

@media only screen and (max-width: 640px) {
  .about_slide_block {
    margin: 0 0 64px;
  }
}

.about_slide_block .about_slide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_slide_block .about_slide_list .about_slide_item {
  margin: 0 20px;
}

@media only screen and (max-width: 640px) {
  .about_slide_block .about_slide_list .about_slide_item {
    margin: 0 12px;
  }
}

.about_slide_block .about_slide_list .about_slide_item.odd {
  width: 212px;
}

@media only screen and (max-width: 640px) {
  .about_slide_block .about_slide_list .about_slide_item.odd {
    width: 160px;
  }
}

.about_slide_block .about_slide_list .about_slide_item.even {
  width: 300px;
}

@media only screen and (max-width: 640px) {
  .about_slide_block .about_slide_list .about_slide_item.even {
    width: 240px;
  }
}

.about_slide_block .about_slide_list .about_slide_item .about_slide_item_img {
  width: 100%;
}

.about_slide_block .about_slide_list .about_slide_item .about_slide_item_img img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.about_slide_block .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_slide_block .slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about_page_greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin: 0 0 160px;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting {
    display: block;
    margin: 0 0 64px;
  }
}

.about_page_greeting .about_page_greeting_title_block {
  width: 480px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  margin: 200px 0 0;
  top: 200px;
}

@media only screen and (max-width: 960px) {
  .about_page_greeting .about_page_greeting_title_block {
    width: 360px;
  }
}

@media only screen and (max-width: 840px) {
  .about_page_greeting .about_page_greeting_title_block {
    width: 260px;
  }
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_title_block {
    width: 100%;
    margin: 0 0 0;
    position: static;
    padding: 40px 0;
  }
}

.about_page_greeting .about_page_greeting_title_block .about_page_greeting_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about_page_greeting .about_page_greeting_title_block .about_page_greeting_title_wrap .about_page_greeting_title_en {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_title_block .about_page_greeting_title_wrap .about_page_greeting_title_en {
    font-size: 16px;
    margin: 0 4px 0 0;
  }
}

.about_page_greeting .about_page_greeting_title_block .about_page_greeting_title_wrap .about_page_greeting_title_ja {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 72px;
  color: #333;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_title_block .about_page_greeting_title_wrap .about_page_greeting_title_ja {
    font-size: 56px;
  }
}

.about_page_greeting .about_page_greeting_detail_block {
  width: calc(100% - 480px);
}

@media only screen and (max-width: 960px) {
  .about_page_greeting .about_page_greeting_detail_block {
    width: calc(100% - 360px);
  }
}

@media only screen and (max-width: 840px) {
  .about_page_greeting .about_page_greeting_detail_block {
    width: calc(100% - 260px);
  }
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_detail_block {
    width: 100%;
  }
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_img {
  width: 100%;
  height: 900px;
  margin: 0 0 120px;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_img {
    height: 360px;
    margin: 0 0 40px;
  }
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 1200px) {
  .about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap {
    padding: 0 16px 0 0;
  }
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap .about_page_greeting_detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap .about_page_greeting_detail_name {
  margin: 64px 0 0;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  color: #333;
  line-height: 1.8;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap .about_page_greeting_detail_name {
    margin: 32px 0 0;
    font-size: 18px;
  }
}

.about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap .about_page_greeting_detail_name span {
  font-size: 30px;
}

@media only screen and (max-width: 640px) {
  .about_page_greeting .about_page_greeting_detail_block .about_page_greeting_detail_text_wrap .about_page_greeting_detail_name span {
    font-size: 24px;
  }
}

/*=================

      business.scss

=======================*/
.business_top {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .business_top {
    padding: 64px 0;
  }
}

.business_top_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .business_top_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.business_top_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
}

.business_point_block_wrap .business_point_block .business_point_block_main_img_wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.business_point_block_wrap .business_point_block .business_point_block_main_img_wrap .business_point_block_main_img {
  width: 100%;
}

.business_point_block_wrap .business_point_block .business_point_block_main_img_wrap .business_point_block_main_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap {
  padding: 48px 0 100px;
  background-color: #FFF;
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap {
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap {
    margin: 0 0 32px;
  }
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_point_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #B7B7B7;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_point_en {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_title_ja {
    font-size: 30px;
  }
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 640px) {
  .business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_title_wrap .business_point_block_title_en {
    font-size: 16px;
  }
}

.business_point_block_wrap .business_point_block .business_point_block_detail_wrap .business_point_block_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #575757;
  line-height: 2;
  margin: 0 0 64px;
}

.business_point_block_box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap {
    display: block;
  }
}

.business_point_block_box_wrap .business_point_block_box {
  width: calc((100% - 192px) / 3);
  margin: 0 96px 0 0;
}

@media only screen and (max-width: 960px) {
  .business_point_block_box_wrap .business_point_block_box {
    width: calc((100% - 48px) / 3);
    margin: 0 24px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap .business_point_block_box {
    width: 100%;
    margin: 0 0 32px 0;
  }
}

.business_point_block_box_wrap .business_point_block_box:nth-child(2) {
  margin: 24px 96px 0 0;
}

@media only screen and (max-width: 960px) {
  .business_point_block_box_wrap .business_point_block_box:nth-child(2) {
    margin: 24px 24px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap .business_point_block_box:nth-child(2) {
    margin: 0 0 32px 0;
  }
}

.business_point_block_box_wrap .business_point_block_box:nth-child(3) {
  margin: 48px 0 0 0;
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap .business_point_block_box:nth-child(3) {
    margin: 0 0 0 0;
  }
}

.business_point_block_box_wrap .business_point_block_box .business_point_block_box_img {
  width: 100%;
  height: 360px;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap .business_point_block_box .business_point_block_box_img {
    max-width: 240px;
    height: 300px;
    margin: 0 auto 16px;
  }
}

.business_point_block_box_wrap .business_point_block_box .business_point_block_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.business_point_block_box_wrap .business_point_block_box .business_point_block_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .business_point_block_box_wrap .business_point_block_box .business_point_block_box_title {
    font-size: 22px;
    margin: 0 0 16px;
  }
}

.business_point_block_box_wrap .business_point_block_box .business_point_block_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #575757;
  line-height: 2;
}

/*=================

      company.scss

=======================*/
.company_page {
  padding: 80px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .company_page {
    padding: 48px 0 64px;
  }
}

.company_box_wrap .company_box {
  margin: 0 0 180px;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box {
    margin: 0 0 64px;
  }
}

.company_box_wrap .company_box:last-child {
  margin: 0 0 0;
}

.company_box_wrap .company_box .company_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_title {
    font-size: 30px;
    margin: 0 0 32px;
  }
}

.company_box_wrap .company_box .company_box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .company_box_wrap .company_box .company_box_content {
    display: block;
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_img {
  width: 360px;
  height: 560px;
  margin: 0 80px 0 0;
}

@media only screen and (max-width: 840px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 40px auto;
  }
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_img {
    max-width: 240px;
    height: 300px;
    margin: 0 auto 32px auto;
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list {
  width: calc(100% - 440px);
}

@media only screen and (max-width: 840px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_detail_list {
    width: 100%;
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid #D1D1D1;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item {
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item:last-child {
  margin: 0 0 0;
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item .company_box_content_detail_item_title {
  width: 160px;
  margin: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item .company_box_content_detail_item_title {
    width: 100px;
    margin: 0 20px 0 0;
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item .company_box_content_detail_item_text {
  width: calc(100% - 200px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item .company_box_content_detail_item_text {
    width: calc(100% - 120px);
  }
}

.company_box_wrap .company_box .company_box_content .company_box_content_detail_list .company_box_content_detail_item .company_box_content_detail_item_text a {
  color: #333;
  text-decoration: underline;
}

.company_box_wrap .company_box .company_box_map_wrap {
  margin: 80px 0 0;
  width: 100%;
  height: 360px;
}

@media only screen and (max-width: 640px) {
  .company_box_wrap .company_box .company_box_map_wrap {
    height: 240px;
  }
}

/*=================

      news.scss

=======================*/
.news_page {
  padding: 80px 0 120px;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .news_page {
    padding: 48px 0 64px;
  }
}

.news_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .news_content {
    display: block;
  }
}

.news_content .news_category_block {
  width: 200px;
  margin: 0 40px 0 0;
  position: -webkit-sticky;
  position: sticky;
  top: 132px;
}

@media only screen and (max-width: 1400px) {
  .news_content .news_category_block {
    top: 104px;
  }
}

@media only screen and (max-width: 840px) {
  .news_content .news_category_block {
    position: static;
    width: 100%;
    margin: 0 0 40px 0;
  }
}

.news_content .news_category_block .news_category_block_title {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .news_content .news_category_block .news_category_block_title {
    font-size: 20px;
    margin: 0 0 8px;
  }
}

@media only screen and (max-width: 840px) {
  .news_content .news_category_block .news_category_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}

.news_content .news_category_block .news_category_list .news_category_item {
  margin: 0 0 16px;
}

@media only screen and (max-width: 840px) {
  .news_content .news_category_block .news_category_list .news_category_item {
    margin: 0 16px 16px 0;
  }
}

@media only screen and (max-width: 640px) {
  .news_content .news_category_block .news_category_list .news_category_item {
    margin: 0 8px 8px 0;
  }
}

.news_content .news_category_block .news_category_list .news_category_item:last-child {
  margin: 0 0 0;
}

.news_content .news_category_block .news_category_list .news_category_item .news_category_link {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #E5E5E5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .news_content .news_category_block .news_category_list .news_category_item .news_category_link {
    padding: 6px 16px;
    font-size: 13px;
  }
}

.news_content .news_category_block .news_category_list .news_category_item .news_category_link.active {
  background-color: #333;
  color: #FFF;
}

@media only screen and (min-width: 960px) {
  .news_content .news_category_block .news_category_list .news_category_item .news_category_link:hover {
    background-color: #333;
    color: #FFF;
  }
}

.news_content .news_detail_block {
  width: calc(100% - 240px);
}

@media only screen and (max-width: 840px) {
  .news_content .news_detail_block {
    width: 100%;
  }
}

.news_list {
  width: 100%;
}

.news_list .news_item {
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .news_list .news_item {
    margin: 0 0 24px 0;
  }
}

.news_list .news_item:last-child {
  margin: 0 0 0;
}

.news_list .news_item .news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news_list .news_item .news_link .news_item_img_wrap {
  width: 160px;
  height: 160px;
  overflow: hidden;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_img_wrap {
    width: 120px;
    height: 120px;
    margin: 0 16px 0 0;
  }
}

.news_list .news_item .news_link .news_item_img_wrap .news_item_img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.news_list .news_item .news_link .news_item_img_wrap .news_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.news_list .news_item .news_link .news_item_detail {
  width: calc(100% - 192px);
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_detail {
    width: calc(100% - 136px);
  }
}

.news_list .news_item .news_link .news_item_detail .news_item_date {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #B7B7B7;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_detail .news_item_date {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.news_list .news_item .news_link .news_item_detail .news_item_category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: #E5E5E5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_detail .news_item_category {
    font-size: 13px;
    margin: 0 0 8px;
  }
}

.news_list .news_item .news_link .news_item_detail .news_item_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*2);
}

@media only screen and (max-width: 640px) {
  .news_list .news_item .news_link .news_item_detail .news_item_title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
  }
}

@media only screen and (min-width: 960px) {
  .news_list .news_item .news_link:hover .news_item_img_wrap .news_item_img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.news_item_title {
  display: block;
  width: 100%;
  position: relative;
}

.news_item_title .line-wrapper {
  display: inline-block;
  position: relative;
}

.news_item_title .line-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
}

.news_item_title .line-wrapper.animate-in::after {
  -webkit-animation: lineanim_in 0.5s forwards ease-out;
  animation: lineanim_in 0.5s forwards ease-out;
}

.news_item_title .line-wrapper.animate-out::after {
  -webkit-animation: lineanim_out 0.5s forwards ease-out;
  animation: lineanim_out 0.5s forwards ease-out;
}

.news_detail_content .news_detail_date_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .news_detail_content .news_detail_date_category {
    margin: 0 0 24px;
  }
}

.news_detail_content .news_detail_date_category .news_detail_date {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #B7B7B7;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .news_detail_content .news_detail_date_category .news_detail_date {
    font-size: 16px;
    margin: 0 8px 0 0;
  }
}

.news_detail_content .news_detail_date_category .news_detail_category {
  display: inline-block;
  padding: 8px 20px;
  background-color: #E5E5E5;
  border-radius: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .news_detail_content .news_detail_date_category .news_detail_category {
    padding: 6px 16px;
    font-size: 13px;
  }
}

.news_detail_content .news_detail_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 80px;
}

@media only screen and (max-width: 640px) {
  .news_detail_content .news_detail_title {
    font-size: 30px;
    margin: 0 0 40px;
  }
}

.news_detail_content .news_detail_img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 80px;
}

@media only screen and (max-width: 640px) {
  .news_detail_content .news_detail_img {
    margin: 0 auto 40px;
  }
}

.news_detail_content .news_detail_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.editor_wrap p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
  margin: 0 0 56px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap p {
    margin: 0 0 40px;
  }
}

.editor_wrap h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap h2 {
    font-size: 28px;
    margin: 0 0 32px;
  }
}

.editor_wrap h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 28px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap h3 {
    font-size: 24px;
    margin: 0 0 32px;
  }
}

.editor_wrap ul {
  padding: 24px 40px 24px 60px;
  border: 1px solid #333;
  list-style: disc;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ul {
    padding: 20px 16px 20px 40px;
    margin: 0 0 32px;
  }
}

.editor_wrap ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin: 0 0 16px;
}

.editor_wrap ul li:last-child {
  margin: 0 0 0;
}

.editor_wrap ol {
  padding: 24px 40px 24px 60px;
  background-color: #F4F4F4;
  list-style: decimal;
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .editor_wrap ol {
    padding: 20px 16px 20px 40px;
    margin: 0 0 32px;
  }
}

.editor_wrap ol li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin: 0 0 16px;
}

.editor_wrap ol li:last-child {
  margin: 0 0 0;
}

.related_news {
  padding: 120px 0;
  background-color: #F4F4F4;
}

@media only screen and (max-width: 640px) {
  .related_news {
    padding: 64px 0;
  }
}

/*=================

      recruit.scss

=======================*/
.recruit_message {
  padding: 480px 0 120px;
  background-color: #FFF;
  position: relative;
}

@media only screen and (max-width: 640px) {
  .recruit_message {
    padding: 300px 0 48px;
  }
}

.recruit_message .recruit_message_bg_slide {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .recruit_message .recruit_message_bg_slide {
    top: 48px;
  }
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item {
  margin: 0 16px;
  width: 400px !important;
}

@media only screen and (max-width: 640px) {
  .recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item {
    margin: 0 8px;
    width: 300px !important;
  }
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img {
  width: 100%;
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img img {
  width: 100%;
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img.mt {
  margin: 64px 0 0;
}

@media only screen and (max-width: 640px) {
  .recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img.mt {
    margin: 32px 0 0;
  }
}

.recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img.mb {
  margin: 0 0 64px;
}

@media only screen and (max-width: 640px) {
  .recruit_message .recruit_message_bg_slide .recruit_message_bg_slide_list .recruit_message_bg_slide_item .recruit_message_bg_slide_item_img.mb {
    margin: 0 0 32px;
  }
}

.recruit_message_box {
  position: relative;
  width: 100%;
}

.recruit_message_box .recruit_message_box_content_bg {
  width: calc(100% - 400px);
  min-width: 80%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 960px) {
  .recruit_message_box .recruit_message_box_content_bg {
    width: 90%;
  }
}

@media only screen and (max-width: 640px) {
  .recruit_message_box .recruit_message_box_content_bg {
    width: 100%;
  }
}

.recruit_message_box .recruit_message_box_content {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 1;
  padding: 100px 64px 100px 0px;
}

@media only screen and (max-width: 1100px) {
  .recruit_message_box .recruit_message_box_content {
    padding: 100px 64px 100px 16px;
  }
}

@media only screen and (max-width: 640px) {
  .recruit_message_box .recruit_message_box_content {
    padding: 40px 24px 40px 24px;
  }
}

.recruit_message_box .recruit_message_box_content .recruit_message_box_content_inner {
  max-width: 64%;
}

@media only screen and (max-width: 640px) {
  .recruit_message_box .recruit_message_box_content .recruit_message_box_content_inner {
    max-width: 90%;
  }
}

@media only screen and (max-width: 500px) {
  .recruit_message_box .recruit_message_box_content .recruit_message_box_content_inner {
    max-width: 100%;
  }
}

.recruit_message_box .recruit_message_box_content .recruit_message_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #FFF;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .recruit_message_box .recruit_message_box_content .recruit_message_box_title {
    font-size: 20px;
    margin: 0 0 24px;
  }
}

.recruit_message_box .recruit_message_box_content .recruit_message_box_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 3;
}

.recruit_guidelines {
  padding: 0 0 120px;
  background-color: #FFF;
}

.recruit_block_wrap .recruit_block {
  margin: 0 0 100px;
}

.recruit_block_wrap .recruit_block:last-child {
  margin: 0 0 0;
}

.recruit_block_wrap .recruit_block .recruit_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .recruit_block_wrap .recruit_block .recruit_block_title {
    font-size: 30px;
    margin: 0 0 24px;
  }
}

.recruit_block_wrap .recruit_block .recruit_list .recruit_item {
  padding: 0 0 40px;
  border-bottom: 1px solid #D1D1D1;
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .recruit_block_wrap .recruit_block .recruit_list .recruit_item {
    display: block;
    padding: 0 0 24px;
    margin: 0 0 24px;
  }
}

.recruit_block_wrap .recruit_block .recruit_list .recruit_item:last-child {
  margin: 0 0 0;
}

.recruit_block_wrap .recruit_block .recruit_list .recruit_item .recruit_item_title {
  width: 360px;
  padding: 0 40px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .recruit_block_wrap .recruit_block .recruit_list .recruit_item .recruit_item_title {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.recruit_block_wrap .recruit_block .recruit_list .recruit_item .recruit_item_detail {
  width: calc(100% - 360px);
}

@media only screen and (max-width: 640px) {
  .recruit_block_wrap .recruit_block .recruit_list .recruit_item .recruit_item_detail {
    width: 100%;
  }
}

.recruit_block_wrap .recruit_block .recruit_list .recruit_item .recruit_item_detail .recruit_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/*=================

      top.scss

=======================*/
.top_start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.top_start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 300px;
}

@media only screen and (max-width: 640px) {
  .top_start p {
    width: 240px;
  }
}

.top_start p img {
  width: 100%;
}

.fv_block {
  background: linear-gradient(to bottom, #FFF 0px, #FFF 120px, #A5A5A5 120px, #A5A5A5 100%);
  position: relative;
  overflow: hidden;
}

.fv_block .fv_slide_top_img_top {
  position: absolute;
  width: 380px;
  top: 120px;
  left: 0;
}

.fv_block .fv_slide_top_img_top img {
  width: 100%;
  vertical-align: top;
}

.fv_block .fv_slide_top_img_bottom {
  position: absolute;
  width: 380px;
  bottom: 0;
  right: 0;
}

.fv_block .fv_slide_top_img_bottom img {
  width: 100%;
  vertical-align: bottom;
}

.fv_block .fv_content {
  position: relative;
  padding: 320px 0 180px;
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content {
    padding: 216px 0 120px;
  }
}

.fv_block .fv_content .fv_content_logo {
  position: absolute;
  z-index: 10;
  top: 28px;
  left: 0;
  width: 560px;
}

@media only screen and (max-width: 840px) {
  .fv_block .fv_content .fv_content_logo {
    width: 420px;
  }
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content .fv_content_logo {
    width: 260px;
  }
}

.fv_block .fv_content .fv_content_logo img {
  width: 100%;
}

.fv_block .fv_content .fv_content_text {
  position: absolute;
  z-index: 10;
  top: 100px;
  right: 60px;
  writing-mode: vertical-rl;
  /* 縦書き（右から左へ縦組み） */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 26px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content .fv_content_text {
    right: 16px;
    top: 40px;
    font-size: 20px;
  }
}

.fv_block .fv_content .fv_content_text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  /* 下からふわっと */
}

.fv_block .fv_content .fv_content_text.animate span {
  animation: fadeInUp 0.5s forwards;
}

.fv_block .fv_content .fv_content_text.animate span:nth-child(1) {
  animation-delay: 0.1s;
}

.fv_block .fv_content .fv_content_text.animate span:nth-child(2) {
  animation-delay: 0.3s;
}

.fv_block .fv_content .fv_content_text.animate span:nth-child(3) {
  animation-delay: 0.5s;
}

.fv_block .fv_content .fv_content_text.animate span:nth-child(4) {
  animation-delay: 0.7s;
}

.fv_block .fv_content .fv_content_text.animate span:nth-child(5) {
  animation-delay: 0.9s;
}

.fv_block .fv_content .fv_slide_title_wrap {
  position: absolute;
  z-index: 10;
  bottom: 120px;
  right: 0;
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content .fv_slide_title_wrap {
    bottom: 54px;
  }
}

.fv_block .fv_content .fv_slide_title_wrap .fv_slide_title_ja {
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  color: #FFF;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content .fv_slide_title_wrap .fv_slide_title_ja {
    font-size: 36px;
    margin: 0 0 8px;
  }
}

.fv_block .fv_content .fv_slide_title_wrap .fv_slide_title_en {
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  color: #333;
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_content .fv_slide_title_wrap .fv_slide_title_en {
    font-size: 16px;
  }
}

.fv_block .fv_slide_content {
  position: relative;
}

.fv_block .fv_slide_content .fv_slide_content_img_top {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}

.fv_block .fv_slide_content .fv_slide_content_img_top img {
  width: 100%;
  vertical-align: top;
}

.fv_block .fv_slide_content .fv_slide_content_img_bottom {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  width: 100%;
}

.fv_block .fv_slide_content .fv_slide_content_img_bottom img {
  width: 100%;
  vertical-align: bottom;
}

.fv_block .fv_slide_content .fv_slide_list {
  width: 100%;
}

.fv_block .fv_slide_content .fv_slide_list .fv_slide_item {
  width: 100%;
  height: 590px;
}

@media only screen and (max-width: 840px) {
  .fv_block .fv_slide_content .fv_slide_list .fv_slide_item {
    height: 480px;
  }
}

@media only screen and (max-width: 640px) {
  .fv_block .fv_slide_content .fv_slide_list .fv_slide_item {
    height: 280px;
  }
}

.fv_block .fv_slide_content .fv_slide_list .fv_slide_item img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  display: block;
  will-change: transform;
  transform: scale(1.1);
  /* 常に初期状態は1.1 */
}

.fv_block .fv_slide_content .fv_slide_list .fv_slide_item.is-zooming img {
  animation: fv_zoom_out 5000ms ease forwards;
}

.fv_block .fv_slide_content .fv_slide_list .slick-active img {
  opacity: 1;
}

@keyframes fv_zoom_out {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*top_news*/
.top_news {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .top_news {
    padding: 64px 0;
  }
}

.top_news_box_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .top_news_box_wrap {
    display: block;
  }
}

.top_news_box_wrap .top_news_box {
  width: calc((100% - 64px) / 2);
  margin: 0 64px 40px 0;
  display: flex;
}

@media only screen and (max-width: 840px) {
  .top_news_box_wrap .top_news_box {
    width: 100%;
    margin: 0 0 40px 0;
  }
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box {
    margin: 0 0 24px 0;
  }
}

.top_news_box_wrap .top_news_box:nth-of-type(2n) {
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box:nth-of-type(2n) {
    margin: 0 0 24px 0;
  }
}

.top_news_box_wrap .top_news_box .top_news_box_img_wrap {
  width: 160px;
  height: 160px;
  overflow: hidden;
  margin: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box .top_news_box_img_wrap {
    width: 120px;
    height: 120px;
    margin: 0 16px 0 0;
  }
}

.top_news_box_wrap .top_news_box .top_news_box_img_wrap .top_news_box_img {
  width: 100%;
  height: 100%;
  transition: all .3s ease-out;
}

.top_news_box_wrap .top_news_box .top_news_box_img_wrap .top_news_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top_news_box_wrap .top_news_box .top_news_box_detail {
  width: calc(100% - 192px);
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box .top_news_box_detail {
    width: calc(100% - 136px);
  }
}

.top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_date {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #B7B7B7;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_date {
    font-size: 14px;
    margin: 0 0 8px;
  }
}

.top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: #E5E5E5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0 0 16px;
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_category {
    margin: 0 0 8px;
    font-size: 13px;
  }
}

.top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 27px;
  max-height: calc(27px*2);
}

@media only screen and (max-width: 640px) {
  .top_news_box_wrap .top_news_box .top_news_box_detail .top_news_box_title {
    font-size: 16px;
    line-height: 24px;
    max-height: calc(24px*2);
  }
}

@media only screen and (min-width: 960px) {
  .top_news_box_wrap .top_news_box:hover .top_news_box_img_wrap .top_news_box_img {
    transform: scale(1.1);
  }
}

.top_news_box_title {
  display: block;
  width: 100%;
  position: relative;
}

.top_news_box_title .line-wrapper {
  display: inline-block;
  position: relative;
}

.top_news_box_title .line-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
}

.top_news_box_title .line-wrapper.animate-in::after {
  animation: lineanim_in 0.5s forwards ease-out;
}

.top_news_box_title .line-wrapper.animate-out::after {
  animation: lineanim_out 0.5s forwards ease-out;
}

.top_news_list .top_news_list .top_news_link {
  display: flex;
  align-items: center;
  padding: 24px 32px 24px 0;
  position: relative;
  border-bottom: 1px solid #D1D1D1;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .top_news_list .top_news_list .top_news_link {
    display: block;
    padding: 20px 32px 20px 0;
  }
}

.top_news_list .top_news_list .top_news_link:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 12px;
  height: 10px;
  background-image: url(../images/common/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.top_news_list .top_news_list .top_news_link .top_news_link_date_category {
  width: 280px;
  display: flex;
  align-items: center;
  padding: 0 32px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_news_list .top_news_list .top_news_link .top_news_link_date_category {
    width: 100%;
    margin: 0 0 8px;
    padding: 0 0 0 0;
  }
}

.top_news_list .top_news_list .top_news_link .top_news_link_date_category .top_news_link_date {
  width: 100px;
  margin: 0 24px 0 0;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #B7B7B7;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 640px) {
  .top_news_list .top_news_list .top_news_link .top_news_link_date_category .top_news_link_date {
    width: 88px;
    margin: 0 12px 0 0;
    font-size: 14px;
  }
}

.top_news_list .top_news_list .top_news_link .top_news_link_date_category .top_news_link_category {
  display: inline-block;
  max-width: 124px;
  background-color: #E5E5E5;
  border-radius: 30px;
  padding: 6px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

@media only screen and (max-width: 640px) {
  .top_news_list .top_news_list .top_news_link .top_news_link_date_category .top_news_link_category {
    font-size: 13px;
    max-width: calc(100% - 100px);
  }
}

.top_news_list .top_news_list .top_news_link .top_news_link_title {
  width: calc(100% - 280px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #333;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 21px;
  max-height: calc(21px*1);
}

@media only screen and (max-width: 640px) {
  .top_news_list .top_news_list .top_news_link .top_news_link_title {
    width: 100%;
  }
}

.top_news_link_title {
  display: block;
  width: 100%;
  position: relative;
}

.top_news_link_title .line-wrapper {
  display: inline-block;
  position: relative;
}

.top_news_link_title .line-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
}

.top_news_link_title .line-wrapper.animate-in::after {
  animation: lineanim_in 0.5s forwards ease-out;
}

.top_news_link_title .line-wrapper.animate-out::after {
  animation: lineanim_out 0.5s forwards ease-out;
}

@keyframes lineanim_in {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineanim_out {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.top_sec_slide_list {
  position: relative;
  width: 100%;
  height: 656px;
  overflow: hidden;
  background-color: #333;
}

@media only screen and (max-width: 640px) {
  .top_sec_slide_list {
    height: 480px;
  }
}

.top_sec_slide_list .top_sec_slide_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
}

.top_sec_slide_list .top_sec_slide_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top_sec_slide_list .top_sec_slide_item.active:not(:first-child) {
  opacity: 1;
  animation: slideInZoomOut 8s forwards;
}

.top_sec_slide_list .top_sec_slide_item.active:first-child {
  opacity: 1;
  animation: initialZoomOut 8s forwards;
}

.top_sec_slide_list .top_sec_slide_item.stacked {
  opacity: 1;
  transform: inherit;
}

/* 横スライド + ズームアウト（2枚目以降） */
@keyframes slideInZoomOut {
  0% {
    transform: translateX(100%) scale(1.1);
  }
  25% {
    transform: translateX(0) scale(1.1);
  }
  /* 横スライド完了 */
  100% {
    transform: translateX(0) scale(1);
  }
  /* ゆっくりズームアウト */
}

/* 初期ズームアウト（1枚目） */
@keyframes initialZoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* stacked ズームアウト */
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.top_sec_slide_block {
  position: relative;
  width: 100%;
}

.top_sec_slide_block .top_sec_slide_title_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 72px 0;
  z-index: 22;
}

@media only screen and (max-width: 640px) {
  .top_sec_slide_block .top_sec_slide_title_wrap {
    padding: 32px 0;
  }
}

.top_sec_slide_block .top_sec_slide_title_wrap .top_sec_slide_title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 26px;
  color: #FFF;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 640px) {
  .top_sec_slide_block .top_sec_slide_title_wrap .top_sec_slide_title {
    font-size: 20px;
  }
}

.top_about {
  position: relative;
  width: 100%;
}

.top_about_content_block {
  width: 100%;
  background: linear-gradient(to bottom, #414141 0%, #414141 calc(100% - 280px), #FFF calc(100% - 280px), #FFF 100%);
  padding: 120px 0 40px;
}

@media only screen and (max-width: 640px) {
  .top_about_content_block {
    padding: 64px 0 32px;
  }
}

.top_about_content {
  display: flex;
  width: 100%;
  margin: 0 0 100px;
}

@media only screen and (max-width: 640px) {
  .top_about_content {
    display: block;
    margin: 0 0 40px;
  }
}

.top_about_content .top_about_img {
  width: 50%;
  padding: 0 80px 0 0;
}

@media only screen and (max-width: 840px) {
  .top_about_content .top_about_img {
    padding: 0 40px 0 0;
  }
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_img {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 40px;
  }
}

.top_about_content .top_about_img img {
  display: block;
  width: 100%;
  max-width: 388px;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_img img {
    margin: 0 auto 0 auto;
  }
}

.top_about_content .top_about_detail {
  width: 50%;
}

@media only screen and (max-width: 640px) {
  .top_about_content .top_about_detail {
    width: 100%;
  }
}

.top_about_content .top_about_detail .top_about_detail_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #FFF;
  line-height: 3;
}

.top_about_img_list {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  .top_about_img_list {
    flex-wrap: wrap;
  }
}

.top_about_img_list .top_about_img_item {
  width: calc(100% / 4);
  height: 440px;
  overflow: hidden;
}

@media only screen and (max-width: 640px) {
  .top_about_img_list .top_about_img_item {
    width: calc(100% / 2);
    height: 240px;
  }
}

.top_about_img_list .top_about_img_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateY(-100%);
  /* 上から外れている状態 */
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  /* 滑らかに下に移動 */
}

.top_about_img_list .top_about_img_item.show img {
  transform: translateY(0);
}

.top_about_img_list .top_about_img_item:nth-of-type(2) {
  margin: 64px 0 0;
}

.top_about_img_list .top_about_img_item:nth-of-type(3) {
  margin: 128px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_about_img_list .top_about_img_item:nth-of-type(3) {
    margin: -64px 0 0;
  }
}

.top_about_img_list .top_about_img_item:nth-of-type(4) {
  margin: 192px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_about_img_list .top_about_img_item:nth-of-type(4) {
    margin: 0 0 0;
  }
}

.top_business {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .top_business {
    padding: 64px 0;
  }
}

.top_business_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 3;
}

.top_business_list {
  margin: 100px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_business_list {
    margin: 48px 0 0;
  }
}

.top_business_list .top_business_item {
  margin: 0 0 160px;
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item {
    margin: 0 0 48px;
  }
}

.top_business_list .top_business_item:last-child {
  margin: 0 0 0;
}

.top_business_list .top_business_item:nth-child(odd) {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: 0;
  margin-right: auto;
}

@media only screen and (max-width: 840px) {
  .top_business_list .top_business_item:nth-child(odd) {
    width: 100%;
  }
}

.top_business_list .top_business_item:nth-child(even) {
  max-width: calc(100% - (50% - (1100px / 2)));
  width: calc(100% - 16px);
  margin-left: auto;
  margin-right: 0;
}

@media only screen and (max-width: 840px) {
  .top_business_list .top_business_item:nth-child(even) {
    width: 100%;
  }
}

.top_business_list .top_business_item:nth-child(even) .top_business_item_inner {
  flex-direction: row-reverse;
}

.top_business_list .top_business_item .top_business_item_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 840px) {
  .top_business_list .top_business_item .top_business_item_inner {
    display: block;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_img {
  width: calc(100% - 550px);
  height: 320px;
}

@media only screen and (max-width: 840px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_img {
    width: 100%;
    margin: 0 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_img {
    height: 240px;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_detail {
  width: 486px;
}

@media only screen and (max-width: 840px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_detail {
    width: 100%;
    padding: 0 16px;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_point {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #B7B7B7;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_point {
    font-size: 16px;
    margin: 0 0 8px;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 8px;
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_title_ja {
    font-size: 30px;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_title_en {
    font-size: 16px;
    margin: 0 0 32px;
  }
}

.top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #575757;
  line-height: 3;
  margin: 0 0 32px;
}

@media only screen and (max-width: 640px) {
  .top_business_list .top_business_item .top_business_item_inner .top_business_item_detail .top_business_item_text {
    margin: 0 0 24px;
  }
}

.company {
  position: relative;
  width: 100%;
}

.top_company_block {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .top_company_block {
    padding: 64px 0;
  }
}

.top_company_block_title_wrap {
  display: flex;
  align-items: flex-end;
  margin: 0 0 48px;
}

@media only screen and (max-width: 640px) {
  .top_company_block_title_wrap {
    display: block;
    margin: 0 0 32px;
  }
}

.top_company_block_title_wrap .top_company_block_title_ja {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  color: #333;
  line-height: 1.5;
  margin: 0 24px 0 0;
}

@media only screen and (max-width: 640px) {
  .top_company_block_title_wrap .top_company_block_title_ja {
    font-size: 30px;
    margin: 0 0 8px;
  }
}

.top_company_block_title_wrap .top_company_block_title_en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 640px) {
  .top_company_block_title_wrap .top_company_block_title_en {
    font-size: 16px;
  }
}

.top_company_info_wrap {
  display: flex;
  width: 100%;
  margin: 0 0 64px;
}

@media only screen and (max-width: 840px) {
  .top_company_info_wrap {
    display: block;
  }
}

@media only screen and (max-width: 640px) {
  .top_company_info_wrap {
    margin: 0 0 40px;
  }
}

.top_company_info_wrap .top_company_info_list {
  width: 50%;
  padding: 0 48px 0 0;
}

@media only screen and (max-width: 840px) {
  .top_company_info_wrap .top_company_info_list {
    width: 100%;
    padding: 0 0 0 0;
    margin: 0 0 32px 0;
  }
}

.top_company_info_wrap .top_company_info_list .top_company_info_item {
  display: flex;
  width: 100%;
  margin: 0 0 24px;
}

.top_company_info_wrap .top_company_info_list .top_company_info_item:last-child {
  margin: 0 0 0;
}

.top_company_info_wrap .top_company_info_list .top_company_info_item .top_company_info_item_title {
  width: 120px;
  padding: 0 20px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_company_info_wrap .top_company_info_list .top_company_info_item .top_company_info_item_title {
    width: 100px;
  }
}

.top_company_info_wrap .top_company_info_list .top_company_info_item .top_company_info_item_text {
  width: calc(100% - 120px);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

@media only screen and (max-width: 640px) {
  .top_company_info_wrap .top_company_info_list .top_company_info_item .top_company_info_item_text {
    width: calc(100% - 100px);
  }
}

.top_company_info_wrap .top_company_info_list .top_company_info_item .top_company_info_item_text a {
  color: #333;
  text-decoration: underline;
}

.top_company_info_wrap .top_company_info_map {
  width: 50%;
}

@media only screen and (max-width: 840px) {
  .top_company_info_wrap .top_company_info_map {
    width: 100%;
    height: 240px;
  }
}

/*=================

      privacy_policy.scss

=======================*/
.privacy_page {
  padding: 120px 0;
  background-color: #FFF;
}

@media only screen and (max-width: 640px) {
  .privacy_page {
    padding: 56px 0;
  }
}

.privacy_box {
  border: 1px solid #D1D1D1;
  padding: 40px 24px;
}

@media only screen and (max-width: 640px) {
  .privacy_box {
    padding: 32px 16px;
  }
}

.privacy_box .privacy_block_wrap {
  max-width: 900px;
  margin: 0 auto;
}

.privacy_box .privacy_block_wrap .privacy_block {
  margin: 0 0 40px;
}

@media only screen and (max-width: 640px) {
  .privacy_box .privacy_block_wrap .privacy_block {
    margin: 0 0 32px;
  }
}

.privacy_box .privacy_block_wrap .privacy_block:last-child {
  margin: 0 0 0;
}

.privacy_box .privacy_block_wrap .privacy_block .privacy_block_text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2.5;
}

.privacy_box .privacy_block_wrap .privacy_block .privacy_block_text.right {
  text-align: right;
}

.privacy_box .privacy_block_wrap .privacy_block .privacy_block_title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  margin: 0 0 24px;
}

@media only screen and (max-width: 640px) {
  .privacy_box .privacy_block_wrap .privacy_block .privacy_block_title {
    font-size: 20px;
    margin: 0 0 16px;
  }
}

/* ======================= BASE ====== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html, body {
  margin: 0;
  height: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_0 {
  margin-top: 0;
}

.mt_10 {
  margin-top: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_80 {
  margin-top: 80px;
}

.mr_5 {
  margin-right: 5px;
}

.mr_20 {
  margin-right: 20px;
}

@media only screen and (max-width: 999px) {
  .sp_mb_10 {
    margin-bottom: 10px;
  }
}

.common_pc {
  display: block;
}

@media only screen and (max-width: 960px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .common_sp {
    display: block;
  }
}

@media only screen and (max-width: 840px) {
  .common_pc840 {
    display: none;
  }
}

.common_sp840 {
  display: none;
}

@media only screen and (max-width: 840px) {
  .common_sp840 {
    display: block;
  }
}

.common_pc640 {
  display: block;
}

.common_pc640.height_100 {
  height: 100%;
}

@media only screen and (max-width: 640px) {
  .common_pc640 {
    display: none !important;
  }
}

.commom_pc1200 {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .commom_pc1200 {
    display: none;
  }
}

.common_sp640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .common_sp640 {
    display: block !important;
  }
}

.mb_0 {
  margin-bottom: 0;
}

body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

body ul {
  list-style: none;
}

body a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*
@media only screen and (min-width:960px){
  body a:hover{
    opacity: 0.7;
  }
}
*/
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
