@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
html {
  scroll-behavior: auto;
}

:root {
  --black: #151515;
  --bg_gray: #F2F2F2;
  --gray: #E7E7E7;
  --font_color: #151515;
  --white: #fff;
  --logo_block: #231815;
  --accent-red: #EA1818;
  --light-blue01: #5988C7;
  --light-blue02: #007FFE;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: var(--font_color);
  position: relative;
  background-color: #F1EEED;
}

@media screen and (min-width: 768px) {
  body {
    min-width: none !important;
  }
}
main {
  font-size: initial;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  main {
    width: 100%;
  }
}

a {
  text-decoration: none;
  transition-duration: 0.3s;
  color: var(--accent_color);
}

a:where(:not(.wp-element-button)) {
  color: var(--accent_color);
}

* ul {
  padding-left: 0;
}

.wrap_primary {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5rem;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .wrap_primary {
    padding: 0 2rem;
    max-width: initial;
    box-sizing: border-box;
  }
}
.wrap_primary.none_padding {
  padding: 0;
}

ul li {
  list-style: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 765px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.link_btn {
  padding: 1rem 2rem;
  color: var(--white);
  background-color: var(--light-blue02);
  box-sizing: border-box;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  white-space: nowrap;
  border: 1px solid currentColor;
}
.link_btn:hover {
  background-color: var(--white);
  color: var(--light-blue02);
}
.link_btn.cta_btn_style {
  background-color: var(--logo_block);
  border-radius: 2rem;
  padding: 1rem 3rem;
  min-width: 30rem;
  text-align: center;
  font-size: 2rem;
  box-sizing: border-box;
}
.link_btn.cta_btn_style:hover {
  color: #fff;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.link_btn.line_cta_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.link_btn.line_cta_btn::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/common/line-icon.png);
  background-size: contain;
}
.link_btn.normal {
  border-radius: 3rem;
  background-color: var(--light-blue02);
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  font-family: "IBM Plex Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  position: relative;
  right: 1.5rem;
}
.link_btn.normal::after {
  content: "";
  display: block;
  background-image: url(../images/common/arrow_right.png);
  background-color: var(--light-blue02);
  background-size: auto;
  background-position: center;
  padding: 1rem;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  box-sizing: border-box;
  position: absolute;
  right: -2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid var(--light-blue02);
}
.link_btn.normal:hover {
  opacity: 0.6;
  color: #fff;
}

.page_nation_block {
  padding: 6rem 0 9rem 0;
}
.page_nation_block ul {
  padding: 0 !important;
}
.page_nation_block ul li {
  list-style: none !important;
}
.page_nation_block a {
  text-decoration: none !important;
}
.page_nation_block .pagination {
  justify-content: center;
  padding: 0 1rem;
}
.page_nation_block .page-numbers {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
}
.page_nation_block .page-numbers li:not(:last-of-type) {
  margin-bottom: 0;
}
.page_nation_block .page-numbers li::before {
  display: none;
}
.page_nation_block .page-numbers li .prev,
.page_nation_block .page-numbers li .next {
  position: relative;
  height: 5rem;
  width: 5rem;
  box-sizing: border-box;
  background-color: var(--light-blue01);
  border-radius: 1rem;
}
.page_nation_block .page-numbers li .prev::before,
.page_nation_block .page-numbers li .next::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.page_nation_block .page-numbers li .prev::before {
  transform: rotate(-135deg);
}
.page_nation_block .page-numbers li a,
.page_nation_block .page-numbers li span {
  font-size: 1.6rem;
  padding: 1rem;
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  background-color: var(--light-blue01);
  text-decoration: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 1rem;
}
.page_nation_block .page-numbers li a:hover,
.page_nation_block .page-numbers li span:hover {
  border-color: transparent;
  background-color: var(--logo_block);
}
.page_nation_block .page-numbers li .current {
  border-color: transparent;
  background-color: var(--logo_block);
  font-weight: bold;
}
.page_nation_block .page-numbers li .current::after {
  display: none;
}

.column2 {
  display: flex;
}
@media screen and (max-width: 765px) {
  .column2 {
    flex-direction: column;
  }
}
.column2 div {
  flex: 1 1 50%;
}

.body_lock {
  overflow: hidden !important;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 8888;
  height: 7.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media screen and (max-width: 1100px) {
  .header {
    width: 100%;
    height: 7.5rem;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0 1rem;
  }
}
.header .inner_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header .main_logo a {
  display: block;
  transition-duration: 0.3s;
  min-width: 15rem;
}
.header .main_logo a:hover {
  opacity: 0.8;
  transition-duration: 0.3s;
}
.header .main_logo_img {
  max-width: 21rem;
  position: relative;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .header .main_logo_img {
    max-width: 18rem;
    max-height: 6.5rem;
    width: auto;
  }
}
.header .sub-menu {
  position: absolute;
  top: 5.9rem;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  visibility: hidden;
  transition-duration: 0.3s;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  flex-wrap: wrap;
  gap: 1rem;
  width: 50rem;
  opacity: 0;
  align-items: stretch;
}
@media screen and (max-width: 1100px) {
  .header .sub-menu {
    position: relative;
    visibility: visible;
    opacity: 1;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0;
    top: 0;
    flex-direction: column;
    gap: 0;
  }
}
.header .sub-menu li {
  flex: 0 0 48%;
}
@media screen and (max-width: 1100px) {
  .header .sub-menu li {
    flex: 0 0 100%;
  }
}
.header .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
  border-radius: 5px;
  background: var(--dark-blue01);
  color: var(--white);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  font-size: 1.4rem;
  padding: 1rem;
  min-width: 18rem;
  height: 100%;
  box-sizing: border-box;
  min-height: 56.38px;
}
.header .sub-menu li a[target=_blank] {
  position: relative;
}
.header .sub-menu li a[target=_blank]::after {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url(../images/common/new_window_wh.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  position: absolute;
  bottom: 6px;
  right: 6px;
}
@media screen and (max-width: 1100px) {
  .header .sub-menu li a[target=_blank]::after {
    position: relative;
    display: inline-block;
    background-image: url(../images/common/new_window_bk.png);
    bottom: 0;
    right: 0;
    margin: 0 5px;
  }
}
@media screen and (max-width: 1100px) {
  .header .sub-menu li a[target=_blank]:hover::after {
    background-image: url(../images/common/new_window_blu.png);
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 1100px) {
  .header .sub-menu li a {
    visibility: visible;
    opacity: 1;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    color: var(--black);
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.2rem;
    padding: 0.5rem 1em;
    min-height: initial;
    text-align: left;
    font-weight: 400;
  }
  .header .sub-menu li a br {
    display: none;
  }
}
.header .sub-menu li a:hover {
  background-color: var(--light-blue);
  color: var(--white);
}
@media screen and (max-width: 1100px) {
  .header .sub-menu li a:hover {
    background: transparent;
    color: var(--light-blue);
  }
}
.header .menu-item-has-children {
  position: relative;
}
.header .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 7px;
  height: 7px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 1rem;
  vertical-align: middle;
}
@media screen and (max-width: 1100px) {
  .header .menu-item-has-children > a::after {
    display: none;
  }
}
.header .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}
.header .menu-item-has-children:hover .sub-menu li a {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}

.gnav_menu_area {
  width: 100%;
}

.gnav-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 1100px) {
  .gnav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
  }
}
.gnav-menu li {
  width: 10rem;
}
.gnav-menu a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  padding: 0 1.3rem;
  white-space: nowrap;
  line-height: 4rem;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .gnav-menu a {
    padding: 1rem 0;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.5;
    width: 100%;
  }
}
.gnav-menu a .menu-label-jp {
  font-family: "IBM Plex Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  margin-bottom: 3px;
  transition-duration: 0.3s;
}
.gnav-menu a .menu-label-en {
  font-family: "Barlow", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  display: block;
  transition-duration: 0.3s;
}
.gnav-menu a::after {
  transition-duration: 0.3s;
}
.gnav-menu a:hover {
  color: var(--light-blue01);
}
.gnav-menu a:hover .menu-label-jp,
.gnav-menu a:hover .menu-label-en {
  color: var(--light-blue01);
  transition-duration: 0.3s;
}
.gnav-menu a:hover::after {
  color: var(--light-blue01);
}
.gnav-menu .current a,
.gnav-menu .current-page-ancestor a,
.gnav-menu .current_page_item a {
  color: var(--light-blue);
  position: relative;
}
.gnav-menu .current a::before,
.gnav-menu .current-page-ancestor a::before,
.gnav-menu .current_page_item a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--light-blue01);
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 0;
  right: auto;
}

.toggle_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 auto;
  gap: 2rem;
  box-sizing: border-box;
  width: inherit;
}
@media screen and (max-width: 1100px) {
  .toggle_menu {
    display: none;
    position: fixed;
    top: 7.5rem;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.95);
    left: 0;
    padding: 0 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
}

.primary_button_area {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1100px) {
  .primary_button_area {
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
  }
}
@media screen and (max-width: 1100px) {
  .primary_button_area.sp {
    display: block !important;
    margin: 0 0 0 auto;
  }
}
.primary_button_area .p-btn {
  font-size: 1.8rem;
  color: var(--white);
  background-color: var(--logo_block);
  border-radius: 20rem;
  display: inline-block;
  white-space: nowrap;
  padding: 0 3rem;
  font-weight: bold;
  line-height: 4rem;
  box-sizing: border-box;
  transition-duration: 0.3s;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .primary_button_area .p-btn.sp_gnav {
    flex-direction: column;
    gap: 1rem;
    line-height: 1;
    border-radius: 0;
    padding: 1.5rem;
    height: 7.5rem;
    box-sizing: border-box;
    font-size: 1.4rem !important;
  }
}
.primary_button_area .p-btn.line_cta_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 1100px) {
  .primary_button_area .p-btn.line_cta_btn {
    margin: 0 auto;
  }
}
.primary_button_area .p-btn.line_cta_btn::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/common/line-icon.png);
  background-size: contain;
}
.primary_button_area .p-btn:hover {
  opacity: 0.4;
  transition-duration: 0.3s;
}
@media screen and (max-width: 700px) {
  .primary_button_area .p-btn {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

.sns_btn_area {
  margin: 0 auto;
}
.sns_btn_area img {
  width: 4rem;
}

.menu-btn {
  height: 4rem;
  width: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: transparent;
  box-sizing: border-box;
  border-radius: 50%;
  display: none;
  margin-left: 2rem;
}
@media screen and (max-width: 1100px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn:hover {
  cursor: pointer;
}
.menu-btn .line,
.menu-btn .line:before,
.menu-btn .line:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--black);
  position: relative;
  transition: 0.3s;
}
.menu-btn .line:before {
  bottom: 9px;
}
.menu-btn .line:after {
  top: 9px;
}

.is-togglemenu-active {
  background: rgba(255, 255, 255, 0.95);
}
.is-togglemenu-active .toggle_menu {
  display: flex;
}
.is-togglemenu-active .toggle_menu .gnav-menu {
  display: flex;
}
.is-togglemenu-active .menu-btn .line {
  background-color: transparent;
}
.is-togglemenu-active .menu-btn .line:before {
  transform: rotate(45deg);
  bottom: -1px;
  background-color: var(--black);
}
.is-togglemenu-active .menu-btn .line:after {
  transform: rotate(-45deg);
  top: -1px;
  background-color: var(--black);
}

.logged-in .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .logged-in .header {
    top: 46px;
  }
}
.logged-in .toggle_menu {
  top: 107px;
}
@media screen and (max-width: 782px) {
  .logged-in .toggle_menu {
    top: 121px;
  }
}
@media screen and (max-width: 1199px) {
  .logged-in .header_menu_area {
    top: 120px;
  }
}
@media screen and (max-width: 782px) {
  .logged-in .header_menu_area {
    top: 134px;
  }
}

.current-off a::before {
  display: none !important;
}

@media screen and (max-width: 1100px) {
  .footer {
    width: 100%;
  }
}
.footer .area_wrap {
  position: relative;
}
.footer .area_wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #D7D7D7;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.footer .area_wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/common/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -5;
  mix-blend-mode: hard-light;
  opacity: 0.5;
}
.footer .area_wrap .wrap_primary {
  width: 100%;
  position: relative;
  padding-top: 5.4rem;
  padding-bottom: 5rem;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .wrap_primary {
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .wrap_primary {
    align-items: flex-start;
  }
}
.footer .area_wrap .infomation_block {
  flex: 1 1 50%;
}
.footer .area_wrap .infomation_block a {
  display: inline-block;
  margin-bottom: 3rem;
  max-width: 18.2rem;
  transition-duration: 0.3s;
}
.footer .area_wrap .infomation_block a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .infomation_block a {
    margin: 0 auto 3rem auto;
    max-width: 20rem;
  }
}
.footer .area_wrap .infomation_block .main_logo_img {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .infomation_block .logo_link {
    display: block;
    margin: 2rem 0;
  }
}
.footer .area_wrap .infomation_block .company_name,
.footer .area_wrap .infomation_block .address {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  font-family: "IBM Plex Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
}
.footer .area_wrap .infomation_block .company_name {
  font-weight: bold;
}
.footer .area_wrap .infomation_block .address {
  margin-top: 1em;
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .infomation_block .address {
    margin-top: 0.5rem;
  }
}
.footer .area_wrap .footer_menu_block {
  flex: 1 1 50%;
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .footer_menu_block {
    gap: 2rem;
  }
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block .menu-box {
    width: 100%;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 730px) {
  .footer .area_wrap .footer_menu_block .menu-box .title {
    margin-top: 2rem;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  margin-top: 1rem;
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a {
  font-size: 1.6rem;
  display: block;
  font-weight: bold;
  padding: 0 2rem 2rem 0;
  line-height: 1.5;
  transition-duration: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a {
    font-size: 1.6rem;
    width: 100%;
  }
}
.footer .area_wrap .footer_menu_block .menu-box .common-gnav-menu .menu-item a:hover {
  color: var(--light-blue);
  transition-duration: 0.3s;
}
.footer .area_wrap .footer_menu_block .menu-box .menu-small a {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .footer .area_wrap .footer_menu_block .menu-box .menu-small a {
    font-size: 1.4rem;
  }
}
.footer .toTop {
  position: absolute;
  bottom: 2rem;
  right: 1rem;
}
.footer .toTop .arrow_top {
  display: block;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
}
.footer .toTop .arrow_top::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  vertical-align: middle;
}
.footer .copyright {
  background-color: #000;
  color: var(--white);
  padding: 2rem 0;
  font-size: 1.4rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .footer .copyright {
    width: 100%;
  }
}
@media screen and (max-width: 765px) {
  .footer .copyright {
    font-size: 1.4rem;
  }
}

.news_article {
  width: 100%;
}

.news_article_list {
  width: 100%;
}
.news_article_list .list_item {
  width: inherit;
  border-bottom: 1px dashed #151515;
}
.news_article_list .list_item a {
  display: flex;
  align-items: baseline;
  position: relative;
  padding-right: 2.5rem;
  width: inherit;
  padding: 1rem 2rem;
  gap: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .news_article_list .list_item a {
    padding-right: 4rem;
    padding-left: 0;
  }
}
.news_article_list .list_item a:hover {
  color: var(--light-blue01);
}
.news_article_list .list_item a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news_article_list .list_item a .date {
  font-family: "Barlow", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
.news_article_list .list_item a .title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-word;
}
@media screen and (max-width: 900px) {
  .news_article_list .list_item a .title {
    font-size: 1.4rem;
  }
}

.blog_article_area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
  padding: 4rem 0;
}
@media screen and (max-width: 900px) {
  .blog_article_area {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .blog_article_area {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog_article_area .list_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.blog_article_area .list_item a::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.blog_article_area .list_item a:hover .thumbnail img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.blog_article_area .list_item a:hover .text_area,
.blog_article_area .list_item a:hover .category-tag {
  transition-duration: 0.3s;
  opacity: 0.8;
}
.blog_article_area .list_item a .thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  overflow: hidden;
}
.blog_article_area .list_item a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 0.3s;
}
.blog_article_area .list_item a .category-tag {
  padding: 0.3rem 2rem;
  box-sizing: border-box;
  background-color: var(--white);
  border-radius: 1rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
  position: absolute;
  top: 2rem;
  left: 2rem;
  transition-duration: 0.3s;
}
.blog_article_area .list_item a .text_area {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  box-sizing: border-box;
  color: var(--white);
  transition-duration: 0.3s;
  width: 100%;
}
.blog_article_area .list_item a .text_area::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
  background-blend-mode: multiply;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.blog_article_area .list_item a .date {
  font-size: 1.2rem;
  text-align: right;
  margin-bottom: 1rem;
}
.blog_article_area .list_item a .title {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  word-break: break-word;
}
.blog_article_area .list_item a .description {
  font-size: 1.2rem;
  line-height: 1.5;
}

.common_section.access .title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 2;
}
.common_section.access .copy {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 2em;
}
.common_section.access .copy a {
  text-decoration: underline;
}
.common_section.access .copy a:hover {
  text-decoration: none;
}
.common_section.access .column2 {
  padding-top: 5rem;
  gap: 1.7rem;
}
.common_section.access .image_area img {
  border-radius: 5px;
  width: 100%;
}
.common_section.cta {
  position: relative;
  margin: 8rem 0 4rem 0;
  padding: 18rem 0 0 0;
}
.common_section.cta .background {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 3rem 0 0 3rem;
  z-index: -1;
  overflow: hidden;
}
.common_section.cta .inner_wrap {
  background-color: #fff;
  padding: 4rem;
  box-shadow: 5px 5px 0px #049DD9;
  border-radius: 1rem;
}
@media screen and (max-width: 900px) {
  .common_section.cta .inner_wrap {
    padding: 4rem 1rem;
  }
}
.common_section.cta .contact_btn_area {
  margin: 0;
}
.common_section.cta .copy {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 1em;
}
.common_section.cta .cta_btn {
  background-color: var(--black);
  text-align: center;
  font-size: 3.7rem;
  line-height: 1;
  font-weight: bold;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 1rem;
  padding: 3rem;
  box-sizing: border-box;
  margin-top: 4rem;
  transition-duration: 0.3s;
}
.common_section.cta .cta_btn:hover {
  color: var(--white);
  opacity: 0.6;
  transition-duration: 0.3s;
}
.common_section.cta .cta_btn::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 6rem;
  background-image: url(../images/common/line-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5em;
  min-width: 6rem;
}
.common_section.cta .cta_btn small {
  display: flex;
  gap: 0.5em;
  font-weight: bold;
  font-size: 2.4rem;
}
.common_section.cta .cta_btn small::before, .common_section.cta .cta_btn small::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background-color: var(--white);
}
.common_section.cta .cta_btn small::before {
  transform: rotate(-25deg);
}
.common_section.cta .cta_btn small::after {
  transform: rotate(25deg);
}

table td,
table th {
  padding: 1.2rem 2rem;
  background-color: var(--white);
}
table td small,
table th small {
  font-size: 1.2rem;
}
table tr {
  border-bottom: 1px solid #8d8d8d;
}
table th {
  background-color: #D9D9D9;
  font-weight: bold;
  min-width: 14rem;
  vertical-align: middle;
}

.sidebar_right .item_box:not(:first-of-type) {
  padding-top: 2rem;
}
.sidebar_right .title {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1.6rem;
}
.sidebar_right .simple_category_list .list_item {
  position: relative;
  padding: 0.5rem 1rem 1rem 0;
  border-bottom: 1px dashed #151515;
  margin-bottom: 0.5rem;
}
.sidebar_right .simple_category_list .list_item a {
  transition-duration: 0.3s;
  display: block;
}
.sidebar_right .simple_category_list .list_item a:hover {
  color: var(--light-blue01);
  transition-duration: 0.3s;
}
.sidebar_right .simple_category_list .list_item a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.anker_link .anker_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 4rem;
  padding-left: 0;
}
.anker_link .anker_link_list .link_item {
  margin: 0;
}
.anker_link .anker_link_list .link_item a {
  display: inline-block;
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  transition-duration: 0.3s;
  text-decoration: none;
  color: var(--black);
}
.anker_link .anker_link_list .link_item a:hover {
  background-color: var(--light-blue01);
  color: var(--white);
  transition-duration: 0.3s;
}
.anker_link .anker_link_list .link_item a:hover::after {
  transition-duration: 0.3s;
  color: var(--white);
}
.anker_link .anker_link_list .link_item a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--black);
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  vertical-align: middle;
  margin-left: 1rem;
  transition-duration: 0.3s;
}

.accordion_menu {
  margin-bottom: 1px;
}
.accordion_menu.faq .title {
  display: flex;
  gap: 1rem;
  cursor: pointer;
}
.accordion_menu.faq .title::before {
  content: "Q";
}
.accordion_menu.faq .desc {
  padding-left: 3rem;
  position: relative;
}
.accordion_menu.faq .desc p {
  margin: 0;
}
.accordion_menu.faq .desc::before {
  content: "A";
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: 1rem;
  top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.accordion_menu .title {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  width: 100%;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: bold;
  background: var(--light-blue01);
  box-sizing: border-box;
  transition-duration: 0.3s;
  line-height: 1.5;
}
.accordion_menu .title::after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  color: var(--white);
  line-height: 1;
  width: 7px;
  height: 7px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  vertical-align: middle;
  right: 2rem;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}
.accordion_menu .desc {
  background: var(--white);
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1.5;
  height: 0;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
}
.accordion_menu .desc strong {
  font-weight: bold;
  font-size: 1.7rem;
}
.accordion_menu .desc .red {
  color: var(--accent-red);
  font-weight: bold;
  display: inline;
}
.accordion_menu .desc a {
  font-size: inherit;
  display: inline;
  color: var(--light-blue);
  text-decoration: underline;
}
.accordion_menu .desc a:hover {
  text-decoration: none;
  color: var(--dark-blue01);
}
.accordion_menu.is-show .desc {
  height: initial;
  padding: 1rem 1rem 1rem 3rem;
  opacity: 1;
  visibility: visible;
  transition-duration: 0.3s;
}
.accordion_menu.is-show .desc::before {
  opacity: 1;
  visibility: visible;
}

.search_form_block .search_form {
  position: relative;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.search_form_block .search_input {
  border: none;
  padding: 8px 12px;
  font-size: 14px;
  flex: 1;
  outline: none;
}
.search_form_block .search_button {
  width: 29px;
  height: 29px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  right: 1rem;
  background-image: url(../images/common/serch_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0;
}

.subpage {
  padding-top: 7.8rem;
}
@media screen and (max-width: 900px) {
  .subpage {
    padding-top: 7.5rem;
  }
}
.subpage .pege_header {
  position: relative;
  overflow: hidden;
  height: 20rem;
}
@media screen and (max-width: 900px) {
  .subpage .pege_header {
    height: 11rem;
  }
}
.subpage .pege_header .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.subpage .pege_header .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage .pege_header .background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  mix-blend-mode: screen;
  background-color: #fff;
}
.subpage .pege_header .page_title {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .subpage .pege_header .page_title {
    left: 2rem;
  }
}
.subpage .pege_header .page_title .sub_title {
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  vertical-align: middle;
  margin-right: 1rem;
}
@media screen and (max-width: 900px) {
  .subpage .pege_header .page_title .sub_title {
    font-size: 3.2rem;
  }
}
.subpage .pege_header .page_title .main_title {
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: bold;
}
.subpage .content_area {
  padding-top: 4rem;
}
.subpage .content_area strong {
  font-weight: bold;
}
.subpage .content_area br.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .subpage .content_area br.sp br.sp {
    display: block;
  }
}
.subpage .content_area h2.wp-block-heading {
  padding: 1rem 0 0 0;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.subpage .content_area h2.wp-block-heading:not(:first-of-type) {
  padding-top: 3rem;
}
@media screen and (max-width: 900px) {
  .subpage .content_area h2.wp-block-heading {
    font-size: 2.4rem;
  }
}
.subpage .content_area h2.wp-block-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 2rem 0 2rem 0;
}
.subpage .content_area h2.wp-block-heading.simple {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media screen and (max-width: 900px) {
  .subpage .content_area h2.wp-block-heading.simple {
    font-size: 2.4rem;
  }
}
.subpage .content_area h2.wp-block-heading.simple::after {
  display: none;
}
.subpage .content_area h3.wp-block-heading {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
}
.subpage .content_area .wp-block-flexible-table-block-table figcaption {
  margin-top: 2rem;
  line-height: 1.5;
}
.subpage .content_area .wp-block-flexible-table-block-table th,
.subpage .content_area .wp-block-flexible-table-block-table td {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: #8D8D8D;
  line-height: 1.3;
}
.subpage .common_section.access .section_title {
  font-size: 4.2rem;
  text-align: left;
}
.subpage .common_section.access .section_title::after {
  margin: 2rem 0 3rem 0;
}

.post_content p {
  line-height: 2;
}

.breadcrumb {
  padding: 1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 1.2rem;
  text-decoration: none !important;
  color: black !important;
  font-weight: 500 !important;
  line-height: 1.3;
  vertical-align: bottom;
}
.breadcrumb span span:first-child > a:first-of-type {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: url("../images/common/home_icon.png") no-repeat center center;
  background-size: contain;
  text-indent: -9999px;
  /* テキストを非表示にする */
  overflow: hidden;
  vertical-align: middle;
}
.breadcrumb a:hover {
  color: var(--light-blue) !important;
}

.sidebar_wrap {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .sidebar_wrap {
    flex-direction: column;
  }
}
.sidebar_wrap .sidebar_left {
  flex: 1 1 auto;
}
.sidebar_wrap .sidebar_right {
  flex: 0 0 242px;
  width: 242px;
}
@media screen and (max-width: 900px) {
  .sidebar_wrap .sidebar_right {
    width: 100%;
    max-width: 300px;
    margin: 4rem auto 0 auto;
  }
}
.sidebar_wrap .sidebar_right .sidebar_list {
  padding: 3rem 2rem;
  background-color: var(--white);
  box-sizing: border-box;
  box-shadow: 5px 5px 0 0 rgba(4, 157, 217, 0.6);
  border-radius: 1rem;
}

.archive_news .news_article_list .list_item a {
  padding-left: 0;
}

.archive .content_area .wrap_primary {
  max-width: 1100px;
  padding: 0 2rem;
}

.post_content {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
}
.post_content img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
}
.post_content .thumbnail img {
  margin: 0 auto;
}
.post_content .information_bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 4rem;
}
.post_content .information_bar .category {
  flex: 1 1 auto;
  width: calc(100% - 150px);
}
.post_content .information_bar .category .cat-tag a {
  display: inline-block;
  background-color: var(--white);
  font-size: 1.2rem;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border-radius: 1rem;
  white-space: nowrap;
  text-decoration: none;
  color: var(--black);
  transition-duration: 0.3s;
  margin-bottom: 0.5rem;
}
.post_content .information_bar .category .cat-tag a:hover {
  background-color: var(--black);
  color: var(--white);
  transition-duration: 0.3s;
}
.post_content .information_bar .date {
  flex: 0 0 100px;
  font-size: 1.4rem;
  text-align: right;
  margin: 0 0 0 auto;
}
.post_content h1.post_title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 2em 0 1em;
}
@media screen and (max-width: 900px) {
  .post_content h1.post_title {
    margin: 1rem 0;
  }
}
.post_content h1.post_title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 1rem 0;
}
.post_content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 2em 0 1em;
}
@media screen and (max-width: 900px) {
  .post_content h2 {
    margin: 2rem 0;
  }
}
.post_content h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 2em 0 1em;
}
@media screen and (max-width: 900px) {
  .post_content h3 {
    margin: 2rem 0;
  }
}
.post_content h4,
.post_content h5,
.post_content h6 {
  font-size: 1.8px;
  font-weight: bold;
  margin: 1.5em 0 0.8em;
}
@media screen and (max-width: 900px) {
  .post_content h4,
  .post_content h5,
  .post_content h6 {
    margin: 2rem 0;
  }
}
.post_content p {
  margin: 1em 0;
}
.post_content blockquote {
  border-left: 4px solid #ccc;
  padding-left: 1em;
  color: #555;
  font-style: italic;
  margin: 1.5em 0;
}
.post_content blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-style: normal;
  font-size: 0.9em;
  color: #888;
}
.post_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.post_content table th,
.post_content table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}
.post_content table th {
  background-color: #f5f5f5;
}
.post_content table a {
  color: #007acc;
  text-decoration: underline;
}
.post_content dl {
  margin: 2em 0;
}
.post_content dl dt {
  font-weight: bold;
  margin-top: 1em;
}
.post_content dl dd {
  margin-left: 1em;
}
.post_content ul,
.post_content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.post_content ul li,
.post_content ol li {
  margin: 0.5em 0;
}
.post_content ul ul,
.post_content ul ol,
.post_content ol ul,
.post_content ol ol {
  margin-top: 0.5em;
}
.post_content address {
  font-style: normal;
  margin: 1em 0;
}
.post_content code,
.post_content pre,
.post_content kbd,
.post_content tt {
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: Menlo, Consolas, monospace;
  font-size: 0.95em;
}
.post_content pre {
  display: block;
  padding: 1em;
  overflow-x: auto;
  line-height: 1;
}
.post_content del,
.post_content s,
.post_content strike {
  text-decoration: line-through;
}
.post_content em {
  font-style: italic;
}
.post_content ins {
  background-color: #e6ffe6;
  text-decoration: none;
}
.post_content strong {
  font-weight: bold;
}
.post_content .aligncenter {
  margin: 0 auto;
}
.post_content sub,
.post_content sup {
  font-size: 0.75em;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}
.post_content sub {
  bottom: -0.25em;
}
.post_content sup {
  top: -0.5em;
}
.post_content q {
  quotes: "“" "”" "‘" "’";
}
.post_content a {
  color: #007acc;
  text-decoration: underline;
}
.post_content a:hover {
  text-decoration: none;
}

.single_page .pagenavi {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 3rem 0;
}
@media screen and (max-width: 900px) {
  .single_page .pagenavi {
    gap: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .single_page .pagenavi a {
    font-size: 1.2rem;
  }
}
.single_page .pagenavi .prev {
  position: relative;
  right: 0;
}
.single_page .pagenavi .prev::after {
  transform: rotate(-180deg);
  left: -2rem;
  right: auto;
}
.single_page .pagenavi .next {
  right: 0;
}
.single_page .pagenavi .archive {
  right: 0;
  min-width: 20rem;
}
@media screen and (max-width: 900px) {
  .single_page .pagenavi .archive {
    min-width: initial;
  }
}
.single_page .pagenavi .archive::after {
  display: none;
}

p,
span {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

.first_view {
  position: relative;
}
.first_view .background {
  width: 100%;
  overflow: hidden;
  height: 80vh;
}
@media screen and (max-width: 765px) {
  .first_view .background {
    height: 50vh;
  }
}
.first_view .background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.first_view .information_bar {
  position: absolute;
  left: 0;
  bottom: 10rem;
  padding: 1.5rem;
  background-color: var(--white);
  display: flex;
  border-radius: 0 50rem 50rem 0;
  align-items: center;
  gap: 1.5rem;
  padding-left: 4rem;
}
@media screen and (max-width: 765px) {
  .first_view .information_bar {
    border-radius: 0 100rem 100rem 0;
    padding: 1.6rem 2rem;
    display: none;
  }
}
.first_view .information_bar .text_area {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 765px) {
  .first_view .information_bar .text_area {
    flex-direction: column;
    gap: 1em;
  }
}
.first_view .information_bar .text_area .primary_line,
.first_view .information_bar .text_area .secondary_line {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "IBM Plex Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  color: var(--font_color);
  line-height: 2;
}
.first_view .cta_btn a {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 13.7rem;
  transition-duration: 0.3s;
}
.first_view .cta_btn a img {
  width: 100%;
  height: 100%;
}
.first_view .cta_btn a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.first_view .sns_btn {
  display: flex;
  gap: 1rem;
  position: absolute;
  top: 18rem;
  right: -3rem;
  transform: rotate(90deg);
}
@media screen and (max-width: 765px) {
  .first_view .sns_btn {
    display: none;
  }
}
.first_view .sns_btn a.sns_btn_item {
  display: block;
  transform: rotate(-90deg);
  width: 3rem;
  transition-duration: 0.3s;
}
.first_view .sns_btn a.sns_btn_item:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}
.first_view .sns_btn a.sns_btn_item img {
  width: 100%;
  height: 100%;
}
.first_view .sns_btn .add_line {
  display: flex;
  align-items: center;
  font-family: "Barlow", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
  gap: 1rem;
}
.first_view .sns_btn .add_line::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--font_color);
  display: block;
}

.front-section {
  padding-bottom: 6rem;
}
@media screen and (max-width: 765px) {
  .front-section {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 765px) {
  .front-section.news {
    margin-bottom: 0;
  }
}
.front-section.news .inner_wrap {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 5px 5px 0 0 rgba(4, 157, 217, 0.6);
  padding: 3rem 4rem;
  display: flex;
  gap: 3rem;
  margin-top: -5rem;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 765px) {
  .front-section.news .inner_wrap {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
}
@media screen and (max-width: 765px) {
  .front-section.news .heading_area {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
}
.front-section.news .heading_area .title {
  font-family: "Barlow", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-weight: bold;
  font-size: 3.7rem;
  letter-spacing: 0.1em;
  color: var(--light-blue01);
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 765px) {
  .front-section.news .heading_area .title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 765px) {
  .front-section.about .column2 {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.front-section.about .column2 .text_area {
  padding-right: 10rem;
}
.front-section.about .tagline {
  font-family: "IBM Plex Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 2rem;
}
.front-section.about .body_copy {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.15em;
  padding-bottom: 2rem;
}
.front-section.about .image_area.half-half {
  display: flex;
  padding-bottom: 5rem;
}
.front-section.about .image_area.half-half img {
  border-radius: 0.5rem;
  flex: 1 1 50%;
}
@media screen and (max-width: 765px) {
  .front-section.about .image_area.half-half img {
    width: 50%;
  }
}
.front-section.about .image_area.half-half img:first-of-type {
  top: 5rem;
  position: relative;
}
@media screen and (max-width: 765px) {
  .front-section.about .text_area {
    padding-right: 0 !important;
  }
}
.front-section.about .link_btn {
  max-width: 30rem;
  margin: 0 auto;
}
.front-section.concept {
  position: relative;
}
.front-section.concept .name_sign {
  text-align: right;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  font-size: 2rem;
  margin-top: 1.4rem;
}
@media screen and (max-width: 765px) {
  .front-section.concept .image_area {
    padding: 3rem 0;
  }
}
.front-section.concept .image_area img {
  display: block;
  margin: 0 auto;
  max-width: 35rem;
  border-radius: 0.5rem;
}
.front-section.concept .link_btn {
  margin-top: 3rem;
}
@media screen and (max-width: 765px) {
  .front-section.concept .link_btn {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 30rem;
  }
}
.front-section.private_salon {
  position: relative;
  text-align: center;
  margin: 6rem 0;
}
.front-section.private_salon .background {
  position: absolute;
  width: 100%;
  max-width: 1365px;
  height: auto;
  border-radius: 3rem;
  top: 4rem;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.4;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 765px) {
  .front-section.private_salon .background {
    top: 2rem;
    height: 80%;
  }
}
.front-section.private_salon .background img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.01);
}
.front-section.private_salon .sub_title {
  margin-top: 6rem;
  line-height: 1.5;
}
.front-section.private_salon .body_copy {
  margin-bottom: 6rem;
}
.front-section.private_salon .image_area {
  display: flex;
}
.front-section.private_salon .image_area img {
  flex: 1 1 50%;
}
@media screen and (max-width: 765px) {
  .front-section.private_salon .image_area img {
    width: 50%;
  }
}
.front-section.private_salon .image_area img:nth-of-type(2) {
  position: relative;
  top: 4rem;
}
.front-section.concept-cafe {
  background-color: #fff;
  padding: 8rem 0 6rem 0;
}
.front-section.concept-cafe .column2 {
  align-items: center;
}
@media screen and (max-width: 765px) {
  .front-section.concept-cafe .column2 {
    gap: 3rem;
  }
}
.front-section.concept-cafe .image_area img {
  width: 100%;
}
.front-section.concept-cafe .text_area {
  text-align: center;
}
.front-section.concept-cafe .link_btn {
  margin-top: 6rem;
}
@media screen and (max-width: 765px) {
  .front-section.concept-cafe .link_btn {
    margin-top: 4rem;
  }
}
.front-section.menu {
  padding: 10rem 0 6rem 0;
}
@media screen and (max-width: 765px) {
  .front-section.menu {
    padding: 4rem 0;
  }
}
.front-section.menu .column2 {
  gap: 4.3rem;
}
.front-section.menu .image_area img {
  border-radius: 0.5rem;
  width: 100%;
}
.front-section.menu .link_btn {
  margin-top: 6rem;
}
@media screen and (max-width: 765px) {
  .front-section.menu .link_btn {
    margin: 4rem auto 0 auto;
  }
}
.front-section.blog .archive_link {
  text-align: right;
}

.section_title {
  font-family: "Barlow", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 7.2rem;
  letter-spacing: 0.05em;
  color: var(--light-blue01);
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 765px) {
  .section_title {
    font-size: 4.2rem;
  }
}
.section_title::after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background-color: var(--light-blue01);
  margin-top: 2rem;
}
.section_title.center {
  text-align: center;
}
.section_title.center::after {
  margin: 2rem auto 0 auto;
}
.section_title.small {
  font-size: 3.2rem;
}
@media screen and (max-width: 765px) {
  .section_title.small {
    font-size: 2.4rem;
  }
}

.sub_title {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 1.5;
}

p.body_copy {
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Hiragino Sans", Meiryo, Arial, sans-serif;
}

.eyecatch_photo {
  padding-bottom: 6rem;
}
.eyecatch_photo img {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 765px) {
  .eyecatch_photo img {
    min-height: 30rem;
  }
}
.eyecatch_photo.left {
  width: 60%;
  max-width: 1000px;
}
@media screen and (max-width: 765px) {
  .eyecatch_photo.left {
    width: 90%;
    padding-bottom: 0;
  }
}
.eyecatch_photo.left img {
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 765px) {
  .eyecatch_photo.left img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 20rem;
    min-height: initial;
  }
}/*# sourceMappingURL=common.css.map */