@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
/* Sass Document */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 767.98px) {
  html {
    width: 100%;
  }
}
html.is-fixed {
  overflow-y: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: #032730;
  min-width: 1366px;
}
@media screen and (max-width: 767.98px) {
  body {
    min-width: inherit;
  }
}
body.is-fixed {
  position: fixed;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

strong,
b {
  font-weight: 700;
}

.ws-nr {
  white-space: nowrap;
}

.pc {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .pc {
    display: none;
  }
}

.inline-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .inline-sp {
    display: inline;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .sp {
    display: block;
  }
}

.block-sp {
  display: inline;
}
@media screen and (max-width: 767.98px) {
  .block-sp {
    display: block;
  }
}

.content_inner {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767.98px) {
  .content_inner {
    width: auto;
    padding-left: 6.6666666667%;
    padding-right: 6.6666666667%;
  }
}

.btn {
  display: grid;
  place-content: center;
  min-height: 60px;
  width: 260px;
  font-size: 1.6rem;
  text-decoration: none;
  border-width: 2px;
  border-style: solid;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767.98px) {
  .btn {
    width: 100%;
    min-height: 45px;
    font-size: 1.2rem;
    border-width: 1px;
  }
}
.btn.size-430 {
  width: 430px;
}
@media screen and (max-width: 767.98px) {
  .btn.size-430 {
    width: 100%;
  }
}
.btn.size-100pct {
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .btn.size-100pct {
    width: 100%;
  }
}
.btn.size-260 {
  width: 260px;
}
@media screen and (max-width: 767.98px) {
  .btn.size-260 {
    width: 100%;
  }
}
.btn.size-308 {
  width: 308px;
}
@media screen and (max-width: 767.98px) {
  .btn.size-308 {
    width: 100%;
  }
}
.btn.color-1 {
  border-color: #fff;
  background-color: #07a5b0;
  color: #fff;
}
@media (any-hover: hover) {
  .btn.color-1:hover {
    background-color: #fff;
    color: #07a5b0;
  }
}
.btn.color-2 {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
@media (any-hover: hover) {
  .btn.color-2:hover {
    background-color: #fff;
    color: #032730;
  }
}
.btn.color-3 {
  border-color: #032730;
  background-color: transparent;
  color: #032730;
}
@media (any-hover: hover) {
  .btn.color-3:hover {
    background-color: #032730;
    color: #fff;
  }
}

.page_heading {
  width: 1100px;
  padding-top: 73px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .page_heading {
    width: auto;
    padding: 30px 6.6666666667% 0;
  }
}

.page_body {
  padding-top: 110px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.98px) {
  .page_body {
    padding-top: 32px;
    padding-bottom: 40px;
  }
}

.page_ttl {
  position: relative;
  padding-left: 60px;
  font-size: 5rem;
  font-weight: 700;
  padding-bottom: 20px;
  line-height: 1.44;
}
.page_ttl span {
  font-size: 60%;
}
@media screen and (max-width: 767.98px) {
  .page_ttl {
    font-size: 2.5rem;
    padding-left: 34px;
    padding-bottom: 10px;
  }
}
.page_ttl:first-letter {
  color: #07a5b0;
}
.page_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 65px;
  background: url(../img/common/ttl_deco.png) no-repeat center center/100% auto;
}
@media screen and (max-width: 767.98px) {
  .page_ttl::before {
    width: 25px;
    height: 32.5px;
  }
}
.page_ttl::after {
  left: -133px;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #07a5b0;
  height: 2px;
}
@media screen and (min-width: 1366.98px) {
  .page_ttl::after {
    left: calc(50% - 50vw);
  }
}
@media screen and (max-width: 767.98px) {
  .page_ttl::after {
    height: 1px;
    left: -6.6666666667vw;
  }
}

.section_ttl {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .section_ttl {
    font-size: 2rem;
  }
}

p,
.txt {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  p,
.txt {
    font-size: 1.2rem;
  }
}

.bgcolor_gray {
  background-color: #f4f5f7;
}

.bgcolor_aqua {
  background-color: #07a5b7;
}

.txtcolor_red {
  color: #ff5562;
}

.txtcolor_aqua {
  color: #07a5b0;
}

.underline {
  text-decoration: underline;
}

.footer_content {
  background: url(../img/common/bg_footer.jpg) no-repeat top center/cover;
  padding: 120px 0;
}
@media screen and (max-width: 767.98px) {
  .footer_content {
    padding: 10.6666666667% 6.6666666667%;
  }
}

.footer_content_inner {
  display: flex;
  width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .footer_content_inner {
    width: auto;
    display: block;
  }
}

.footer_inquiry {
  width: 530px;
  background-color: #fff;
  padding: 30px 43px;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry {
    width: auto;
    padding: 18px 9.2307692308%;
  }
}
.footer_inquiry .ttl {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .ttl {
    font-size: 1.7rem;
    text-align: center;
  }
}
.footer_inquiry .txt {
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer_inquiry .txt a {
  color: currentColor;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .txt {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .heading_txt {
    text-align: center;
    font-size: 1.2rem;
  }
}
.footer_inquiry .ttl + .txt {
  margin-top: 24px;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .ttl + .txt {
    margin-top: 9px;
  }
}
.footer_inquiry .tel + .txt {
  margin-top: 19px;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .tel + .txt {
    margin-top: 12px;
  }
}
.footer_inquiry .txt + .txt {
  margin-top: 0.5em;
}
.footer_inquiry .btn_wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .btn_wrapper {
    display: block;
    margin-top: 15px;
  }
}
.footer_inquiry .btn_wrapper a {
  text-decoration: none;
  color: currentColor;
  text-align: center;
  font-size: 1.6rem;
  border: 2px solid #032730;
  width: 211px;
  min-height: 60px;
  display: grid;
  place-content: center;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .btn_wrapper a {
    font-size: 1.2rem;
    width: 100%;
    min-height: 45px;
    border-width: 1px;
  }
  .footer_inquiry .btn_wrapper a + a {
    margin-top: 10px;
  }
}
@media (any-hover: hover) {
  .footer_inquiry .btn_wrapper a:hover {
    background-color: #032730;
    color: #fff;
  }
}
.footer_inquiry .tel {
  margin-top: 33px;
  font-size: 3.9rem;
  font-weight: 700;
  color: currentColor;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-left: 39px;
  min-height: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .footer_inquiry .tel {
    font-size: 3.6rem;
    white-space: nowrap;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 320px) {
  .footer_inquiry .tel {
    font-size: 3rem;
  }
}
.footer_inquiry .tel::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/common/icn_tel.svg) no-repeat center center/100% 100%;
  left: 0;
  bottom: 0;
}

.footer_sns {
  width: 530px;
  background-color: #fff;
  padding: 30px 44px;
  text-align: center;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.98px) {
  .footer_sns {
    width: auto;
    margin-top: 15px;
    padding: 18px 9.2307692308%;
  }
}
.footer_sns .ttl {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .footer_sns .ttl {
    font-size: 1.6rem;
  }
}
.footer_sns .txt {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .footer_sns .txt {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}

.footer_sns_list {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0 36px;
}
@media screen and (max-width: 767.98px) {
  .footer_sns_list {
    margin-top: 15px;
    gap: 0 22px;
  }
}

.footer_sns_item {
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 767.98px) {
  .footer_sns_item {
    width: 44px;
    height: 44px;
  }
}
.footer_sns_item a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover) {
  .footer_sns_item a {
    transition: 0.3s;
  }
  .footer_sns_item a:hover {
    opacity: 0.7;
  }
}

.footer_bottom {
  background-color: #032730;
  display: flex;
  flex-direction: row-reverse;
  padding: 40px 50px;
}
@media screen and (max-width: 767.98px) {
  .footer_bottom {
    display: block;
    padding: 15px;
  }
}

.copyright {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .copyright {
    margin-top: 15px;
    font-size: 0.8rem;
    text-align: center;
  }
}

.footer_nav {
  margin-left: auto;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .footer_nav {
    font-size: 1.2rem;
  }
}
.footer_nav a {
  color: currentColor;
  text-decoration: none;
  display: inline-block;
  padding: 0 30px;
}
@media (any-hover) {
  .footer_nav a {
    transition: 0.3s;
  }
  .footer_nav a:hover {
    opacity: 0.7;
  }
}

.footer_nav_list {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .footer_nav_list {
    justify-content: center;
  }
}

.footer_nav_item:not(:last-of-type) {
  position: relative;
}
.footer_nav_item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 1px;
  background-color: #fff;
  height: 100%;
  right: 0;
}
@media screen and (max-width: 767.98px) {
  .footer_nav_item:first-of-type a {
    padding: 0 25px 0 0;
  }
  .footer_nav_item:last-of-type a {
    padding: 0 0 0 25px;
  }
}

.header_top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.header_top .header_inner .btn {
  border: 1px solid #fff;
  color: #fff;
}
@media (any-hover: hover) {
  .header_top .header_inner .btn:hover {
    background-color: #fff;
    color: #032730;
  }
}
.header_top .header_catch {
  color: #fff;
}
.header_top .tel_num {
  color: #fff;
}
.header_top .tel_num::after {
  background-image: url(../img/common/icn_tel_w.svg);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1366px;
  width: 100%;
  padding: 13px 105px 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .header_inner {
    min-width: inherit;
    padding: 7px 60px 0 5px;
  }
}
.header_inner .btn {
  width: 157px;
  min-height: 50px;
  font-size: 1.7rem;
  border: 1px solid #032730;
  color: #032730;
  margin-left: 15px;
}
.header_inner .btn + .btn {
  margin-left: 17px;
}
@media (any-hover: hover) {
  .header_inner .btn:hover {
    background-color: #032730;
    color: #fff;
  }
}

.header_left,
.header_right {
  display: flex;
  align-items: center;
}

.header_right .btn {
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.98px) {
  .header_right {
    display: none;
  }
}

.header_logo {
  width: 148px;
}
@media screen and (max-width: 767.98px) {
  .header_logo {
    width: 24%;
    max-width: 90px;
  }
}
@media (any-hover) {
  .header_logo a {
    transition: 0.3s;
  }
  .header_logo a:hover {
    opacity: 0.7;
  }
}

.header_catch {
  color: #032730;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  margin-left: 15px;
}
@media screen and (max-width: 767.98px) {
  .header_catch {
    font-size: 0.8rem;
    margin-left: 9px;
  }
}

.header .licence_logo {
  margin-left: 6px;
  width: 49px;
}
@media screen and (max-width: 767.98px) {
  .header .licence_logo {
    width: 10%;
  }
}

.header_sns_list {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-left: 51px;
}
.header_sns_list .header_sns_item {
  width: 30px;
  height: 30px;
}
.header_sns_list a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover) {
  .header_sns_list a {
    transition: 0.3s;
  }
  .header_sns_list a:hover {
    opacity: 0.7;
  }
}

.tel_num {
  position: relative;
  padding-left: 25px;
  color: #032730;
  margin-left: 15px;
}
.tel_num::after {
  bottom: 6px;
  left: 0;
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: url(../img/common/icn_tel.svg) no-repeat center center/100% 100%;
}
.tel_num p {
  font-size: 2.5rem;
  margin-left: 5px;
  letter-spacing: 0.16em;
}

.hamburger_wrapper {
  background-color: #124765;
  width: 90px;
  height: 90px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1010;
}
.hamburger_wrapper.is-cross {
  background-color: transparent;
}
.hamburger_wrapper.is-cross .hamburger_line:first-of-type {
  top: 32px;
  transform: rotate(45deg);
}
@media screen and (max-width: 767.98px) {
  .hamburger_wrapper.is-cross .hamburger_line:first-of-type {
    top: 19px;
  }
}
.hamburger_wrapper.is-cross .hamburger_line:nth-of-type(2) {
  opacity: 0;
}
.hamburger_wrapper.is-cross .hamburger_line:nth-of-type(3) {
  top: 32px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767.98px) {
  .hamburger_wrapper.is-cross .hamburger_line:nth-of-type(3) {
    top: 19px;
  }
}
@media screen and (max-width: 767.98px) {
  .hamburger_wrapper {
    width: 50px;
    height: 50px;
  }
}

.hamburger_btn {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font: inherit;
}
@media (any-hover: hover) {
  .hamburger_btn:hover .hamburger_line {
    opacity: 0.7;
  }
}

.hamburger_line {
  transition: 0.3s;
  position: absolute;
  width: 45px;
  height: 5px;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 100px;
}
@media screen and (max-width: 767.98px) {
  .hamburger_line {
    width: 55%;
    height: 2.5px;
  }
}
.hamburger_line:first-of-type {
  top: 17px;
}
@media screen and (max-width: 767.98px) {
  .hamburger_line:first-of-type {
    top: 10px;
  }
}
.hamburger_line:nth-of-type(2) {
  top: 32px;
}
@media screen and (max-width: 767.98px) {
  .hamburger_line:nth-of-type(2) {
    top: 19px;
  }
}
.hamburger_line:nth-of-type(3) {
  top: 47px;
}
@media screen and (max-width: 767.98px) {
  .hamburger_line:nth-of-type(3) {
    top: 28px;
  }
}

.hamburger_txt {
  font: inherit;
  font-size: 1.4rem;
  color: #fff;
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767.98px) {
  .hamburger_txt {
    font-size: 0.7rem;
    bottom: 5px;
  }
}

.navigaton_wrapper {
  z-index: 1000;
  background-color: #124765;
  padding: 90px 50px;
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  min-width: 503px;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: 0.3s transform;
}
@media screen and (max-width: 767.98px) {
  .navigaton_wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 300px;
    padding: 42px 9.9403578529% 65px;
    font-size: 1.2rem;
    max-width: 100%;
  }
}
.navigaton_wrapper.is-open {
  transform: translateX(0);
}
.navigaton_wrapper a {
  text-decoration: none;
  color: currentColor;
  display: block;
}
@media (any-hover) {
  .navigaton_wrapper a {
    transition: 0.3s;
  }
  .navigaton_wrapper a:hover {
    opacity: 0.7;
  }
}

.navigation_item {
  border-bottom: 1px solid #fff;
}
.navigation_item:last-of-type {
  border-bottom: none;
}

.navigation_link {
  padding: 22px 10px;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .navigation_link {
    padding: 20px 5px;
  }
}

.link_top {
  padding-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .link_top {
    padding-bottom: 20px;
  }
}

.scd_navigation_list {
  margin-left: 48px;
  padding-bottom: 12px;
  display: none;
}
@media screen and (max-width: 767.98px) {
  .scd_navigation_list {
    margin-left: 3em;
  }
}

.scd_navigation_item:first-of-type .scd_navigation_link {
  padding-top: 0;
}

.scd_navigation_link {
  padding: 14px 0;
  font-weight: 700;
}

.trd_navigation_list {
  margin-left: 11px;
}
@media screen and (max-width: 767.98px) {
  .trd_navigation_list {
    margin-left: 0.6em;
  }
}

.trd_navigation_link {
  padding: 14px 0 14px 29px;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .trd_navigation_link {
    padding-left: 21px;
  }
}
.trd_navigation_link::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  left: 0;
  top: 24px;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  .trd_navigation_link::before {
    top: 21px;
  }
}

.has_subnav {
  position: relative;
}
.has_subnav > a {
  display: inline-block;
}

.nav_toggle {
  position: absolute;
  top: 24px;
  width: 17px;
  height: 17px;
  transform: translateX(30px);
  cursor: pointer;
  background-color: transparent;
  border: none;
  display: inline-block;
}
@media (any-hover) {
  .nav_toggle {
    transition: 0.3s;
  }
  .nav_toggle:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.98px) {
  .nav_toggle {
    top: 23px;
    width: 8px;
    height: 8px;
    transform: translateX(12px);
  }
}
.nav_toggle::before, .nav_toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .nav_toggle::before, .nav_toggle::after {
    height: 2px;
    width: 12px;
  }
}
.nav_toggle::after {
  transition: 0.3s;
  transform: translateY(-50%) rotate(90deg);
}
.nav_toggle.is-open::after {
  transform: translateY(-50%) rotate(0);
}

.header_sns {
  display: none;
  justify-content: center;
  gap: 0 17px;
  margin-top: 15px;
}
@media screen and (max-width: 767.98px) {
  .header_sns {
    display: flex;
  }
}

.header_sns_item {
  width: 25px;
  height: 25px;
}

.link_line {
  border: 1px solid #fff;
  width: 100%;
  font-size: 1.2rem;
  min-height: 38px;
  display: grid;
  place-content: center;
  background-color: #124765;
  text-align: center;
  padding: 18px 0;
}

.header_tel {
  color: currentColor;
  text-decoration: none;
  font-size: 1.95rem;
  display: block;
  padding-left: 24px;
  position: relative;
  min-height: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  letter-spacing: 0.2em;
}
.header_tel::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background: url(../img/common/icn_tel_w.svg) no-repeat center center/100% 100%;
  left: 0;
  bottom: 0;
}

.bg_nav {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
}
.bg_nav.is-show {
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.98px) {
  .cards {
    display: block;
  }
}
.cards a {
  color: currentColor;
  text-decoration: none;
}
.cards.col-2 {
  justify-content: space-between;
  gap: 40px 0;
}
.cards.col-2 .card {
  width: 47.6363636364%;
}
@media screen and (max-width: 767.98px) {
  .cards.col-2 .card {
    width: auto;
  }
}
.cards.col-2 .card .card_inner .img_wrapper {
  aspect-ratio: 524/285;
}
.cards.col-3 {
  gap: 40px 3.6363636364%;
}
.cards.col-3 .card {
  width: 30.9090909091%;
}
@media screen and (max-width: 767.98px) {
  .cards.col-3 .card {
    width: auto;
  }
}
.cards.info_cards a {
  transition: 0.3s;
}
.cards.info_cards a img {
  transition: 0.5s transform;
}
@media (any-hover: hover) {
  .cards.info_cards a:hover .img_wrapper img {
    transform: scale(1.1, 1.1);
  }
  .cards.info_cards a:hover .card_body::after {
    right: -5px;
  }
}
.cards.info_cards .card {
  display: block;
}
.cards.info_cards .card .card_inner {
  display: block;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card .card_inner .img_wrapper {
    aspect-ratio: 649/290;
  }
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card + .card {
    margin-top: 20px;
  }
}
.cards.info_cards .card_body {
  display: block;
  position: relative;
  padding-top: 26px;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card_body {
    padding-top: 16px;
  }
}
.cards.info_cards .card_body .category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 3px;
  font-size: 1.3rem;
  color: #07a5b0;
  border: 1px solid #07a5b0;
  padding: 3px 14px;
  display: inline-block;
  margin-right: 3px;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card_body .category {
    font-size: 0.8rem;
    padding: 1px 10px;
  }
}
.cards.info_cards .card_body .card_ttl {
  margin-top: 17px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card_body .card_ttl {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}
.cards.info_cards .card_body time {
  color: #b2b2b2;
  font-size: 1.6rem;
  margin-top: 17px;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card_body time {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}
.cards.info_cards .card_body::after {
  transition: 0.5s right;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 95px;
  height: 10px;
  right: 0px;
  background: url(../img/common/card_arrow.svg) no-repeat center center/100% 100%;
}
@media screen and (max-width: 767.98px) {
  .cards.info_cards .card_body::after {
    width: 60px;
    height: 6px;
  }
}

@media screen and (max-width: 767.98px) {
  .card + .card {
    margin-top: 30px;
  }
}

.card_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card_inner .img_wrapper {
  width: 100%;
  aspect-ratio: 340/200;
  margin: 0;
  overflow: hidden;
}
.card_inner .img_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card_body {
  padding-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.98px) {
  .card_body {
    padding-top: 11px;
  }
}
.card_body .card_ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4411764706;
}
@media screen and (max-width: 767.98px) {
  .card_body .card_ttl {
    font-size: 1.7rem;
  }
}
.card_body .txt {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .card_body .txt {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
.card_body .card_ttl + .txt {
  margin-top: 20px;
}
@media screen and (max-width: 767.98px) {
  .card_body .card_ttl + .txt {
    margin-top: 10px;
  }
}
.card_body .btn {
  margin-top: auto;
}
@media screen and (max-width: 767.98px) {
  .card_body .btn {
    margin-top: 12px;
  }
}

.list_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
@media screen and (max-width: 767.98px) {
  .list_ttl {
    font-size: 2rem;
  }
}

.content_list {
  margin-top: 60px;
  max-width: 1050px;
}
@media screen and (max-width: 767.98px) {
  .content_list {
    margin-top: 20px;
  }
}
.content_list .content_item a {
  text-decoration: none;
  color: currentColor;
  display: block;
}
@media (any-hover: hover) {
  .content_list .content_item a:hover .thumb img {
    transform: scale(1.1, 1.1);
  }
  .content_list .content_item a:hover .link_txt {
    text-decoration: none;
  }
  .content_list .content_item a:hover .link_txt::after {
    right: -10px;
  }
}
.content_list .content_item + .content_item {
  margin-top: 63px;
}
@media screen and (max-width: 767.98px) {
  .content_list .content_item + .content_item {
    margin-top: 30px;
  }
}
.content_list .item_inner {
  display: flex;
}
.content_list .item_inner .thumb {
  width: 340px;
  height: 200px;
  margin: 0 40px 0 0;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .content_list .item_inner .thumb {
    width: 58px;
    height: 58px;
    margin-right: 20px;
  }
}
.content_list .item_inner .thumb img {
  transition: 0.3s transform;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_list .item_inner .content_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  margin-bottom: 10px;
  margin-top: 15px;
}
@media screen and (max-width: 767.98px) {
  .content_list .item_inner .content_ttl {
    font-size: 1.6rem;
    margin: 3px 0;
  }
}
.content_list .item_inner time {
  font-size: 1.6rem;
  color: #b2b2b2;
  flex-shrink: 0;
  display: inline-block;
  margin-top: 7px;
}
@media screen and (max-width: 767.98px) {
  .content_list .item_inner time {
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 0;
  }
}
.content_list .item_inner p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.content_list .item_inner .link_txt {
  font-size: 1.6rem;
  padding-top: 18px;
  color: #07a5b0;
  padding-right: 100px;
  position: relative;
  display: block;
  text-align: right;
  text-decoration: underline;
}
@media screen and (max-width: 767.98px) {
  .content_list .item_inner .link_txt {
    font-size: 1rem;
    padding-top: 6px;
    padding-right: 70px;
  }
}
.content_list .item_inner .link_txt::after {
  transition: 0.3s right;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 10px;
  background: url(../img/common/card_arrow.svg) no-repeat center center/100% 100%;
}
@media screen and (max-width: 767.98px) {
  .content_list .item_inner .link_txt::after {
    height: 6px;
    width: 60px;
  }
}

.time_category_wrapper {
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .time_category_wrapper {
    display: block;
  }
}

.list_ttl + .category_list {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .list_ttl + .category_list {
    margin-top: 20px;
  }
}

.category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media screen and (max-width: 767.98px) {
  .category_list {
    gap: 3px 5px;
  }
}

.category_item {
  font-size: 1.3rem;
  color: #706d6c;
  border: 1px solid #706d6c;
  transition: 0.3s background-color, 0.3s color;
}
@media screen and (max-width: 767.98px) {
  .category_item {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .category_item:has(a):hover {
    border-color: #07a5b0;
    background-color: #07a5b0;
    color: #fff;
  }
}
.category_item:has(a.current) {
  border-color: #07a5b0;
  background-color: #07a5b0;
  color: #fff;
}
.category_item a {
  color: currentColor;
  text-decoration: none;
  display: block;
}

.category_list.style-2 .category_item {
  transition: 0.3s border-color, 0.3s color;
}
@media (any-hover: hover) {
  .category_list.style-2 .category_item:has(a):hover {
    border-color: #07a5b0;
    background-color: #fff;
    color: #07a5b0;
  }
}
.category_list.style-2 .category_item:has(a.current) {
  border-color: #07a5b0;
  background-color: #fff;
  color: #07a5b0;
}

.category_inner {
  text-align: center;
  padding: 5px 10px;
}
@media screen and (max-width: 767.98px) {
  .category_inner {
    min-width: inherit;
    padding: 2px 5px;
  }
}

.pagenation {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .pagenation {
    margin-top: 30px;
  }
}

.pagenation_list {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  gap: 5px 10px;
}
@media screen and (max-width: 767.98px) {
  .pagenation_list {
    font-size: 1rem;
    gap: 2px 5px;
  }
}

.pagenation_link {
  color: #07a5b0;
  text-decoration: none;
  border: 1px solid #07a5b0;
  padding: 3px 2px 3px 4px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 1;
  display: block;
}
@media screen and (max-width: 767.98px) {
  .pagenation_link {
    min-width: 20px;
    height: 20px;
  }
}
.pagenation_link.current {
  background-color: #07a5b0;
  color: #fff;
}

a.pagenation_link {
  transition: 0.3s opacity;
}
@media (any-hover: hover) and (any-hover) {
  a.pagenation_link {
    transition: 0.3s;
  }
  a.pagenation_link:hover {
    opacity: 0.7;
  }
}

.prev {
  margin-right: 10px;
}
@media screen and (max-width: 767.98px) {
  .prev {
    margin-right: 5px;
  }
}
.prev .pagenation_link {
  position: relative;
}
.prev .pagenation_link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #07a5b0;
  border-left: 2px solid #07a5b0;
  top: 33%;
  left: 39%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767.98px) {
  .prev .pagenation_link::after {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }
}

.next {
  margin-left: 10px;
}
@media screen and (max-width: 767.98px) {
  .next {
    margin-left: 5px;
  }
}
.next .pagenation_link {
  position: relative;
}
.next .pagenation_link::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #07a5b0;
  border-right: 2px solid #07a5b0;
  top: 33%;
  left: 19%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767.98px) {
  .next .pagenation_link::after {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }
}

.post .time_category_wrapper {
  margin-bottom: 27px;
}
@media screen and (max-width: 767.98px) {
  .post .time_category_wrapper {
    margin-bottom: 15px;
  }
}
.post .time_category_wrapper time {
  font-size: 1.6rem;
  color: #b2b2b2;
  margin-top: 8px;
  flex-shrink: 0;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .post .time_category_wrapper time {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 5px;
  }
}

.post_ttl {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
}

.post_content {
  margin-top: 27px;
  font-size: 1.6rem;
  line-height: 1.5;
  /* img */
}
@media screen and (max-width: 767.98px) {
  .post_content {
    font-size: 1.2rem;
  }
}
.post_content * {
/*  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: keep-all;
*/}
.post_content > *:first-child {
  margin-top: 0;
}
.post_content h1,
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6 {
  margin: 2em 0 1em;
  line-height: 1.5;
}
.post_content h1 {
  font-size: 2.2rem;
}
@media screen and (max-width: 767.98px) {
  .post_content h1 {
    font-size: 1.8rem;
  }
}
.post_content h2 {
  font-size: 2rem;
}
@media screen and (max-width: 767.98px) {
  .post_content h2 {
    font-size: 1.6rem;
  }
}
.post_content h3 {
  font-size: 1.9re;
}
@media screen and (max-width: 767.98px) {
  .post_content h3 {
    font-size: 1.5rem;
  }
}
.post_content h4 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .post_content h4 {
    font-size: 1.4rem;
  }
}
.post_content h5 {
  font-size: 1.7rem;
}
@media screen and (max-width: 767.98px) {
  .post_content h5 {
    font-size: 1.3rem;
  }
}
.post_content h6 {
  font-size: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .post_content h6 {
    font-size: 1.2rem;
  }
}
.post_content p + p {
  margin-top: 1em;
}
.post_content li {
  line-height: 1.5;
}
.post_content li + li {
  margin-top: 0.5em;
}
.post_content ol {
  margin: 1em 0;
  padding-left: 1em;
}
.post_content ul {
  margin: 1em 0;
}
.post_content ul li {
  /*list-style: disc;?*/
}
.post_content ol li {
  list-style: decimal;
}
.post_content blockquote {
  margin: 2em 0;
  padding: 2em;
  background-color: #f4f5f7;
}
.post_content a {
  color: #07a5b0;
}
@media (any-hover: hover) {
  .post_content a:hover {
    text-decoration: none;
  }
}
.post_content em {
  font-style: italic;
}
.post_content figure {
  margin: 0;
}
.post_content .aligncenter {
  display: block;
  margin: 0 auto;
}
.post_content .alignright {
  float: right;
}
.post_content .alignleft {
  float: left;
}
.post_content img[class*=wp-image-],
.post_content img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767.98px) {
  .post_content img,
  .post_content img[class*=wp-image-],
  .post_content img[class*=attachment-] {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .post_content iframe {
    width: 100%;
  }
}
.post_content table th {
  text-align: left;
}

.post_pager {
  margin-top: 60px;
}
@media screen and (max-width: 767.98px) {
  .post_pager {
    margin-top: 30px;
  }
}

.post_pager_list {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #07a5b0;
  gap: 0 50px;
}
@media screen and (max-width: 767.98px) {
  .post_pager_list {
    font-size: 1.2rem;
    gap: 0 6%;
  }
}
.post_pager_list * {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px) {
  .post_pager_list * {
    font-size: 1.2rem;
  }
}
.post_pager_list a {
  color: currentColor;
  position: relative;
}
@media (any-hover: hover) {
  .post_pager_list a:hover {
    text-decoration: none;
  }
}

.post_pager_item.hidden {
  visibility: hidden;
}

/* 
@use "layout/_main";
@use "layout/_sidebar"; */
/* @use "object/component/_button";
@use "object/component/_dialog";
@use "object/component/_grid";
@use "object/component/_media"; */
/* @use "object/project/_articles";
@use "object/project/_comments";
@use "object/project/_gallery";
@use "object/project/_profile"; */
/* 
@use "object/utility/_align";
@use "object/utility/_clearfix";
@use "object/utility/_margin";
@use "object/utility/_position";
@use "object/utility/_size";
@use "object/utility/_text";
 */
/*# sourceMappingURL=common.css.map */