@charset "UTF-8";
/* Common CSS */
/* _setting CSS */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  background: #fff;
  font-size: 62.5%;
}

ul {
  list-style-type: none;
}

img {
  display: block;
}

/* ___________________Link */
a {
  color: #2B4246;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
a:hover {
  color: #33AE82;
}

/* ___________________Font */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  color: #2B4246;
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Desktops and laptops */
@media screen and (min-width: 781px) {
  body {
    padding-top: 80px;
  }

  .common_inner {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
  }

  .sp {
    display: none !important;
  }

  /* text */
  .f_lead {
    font-family: "Noto Sans JP", serif;
    font-size: 2rem;
    line-height: 2.6;
    letter-spacing: 0.15em;
    font-weight: 400;
  }

  .f_text {
    font-family: "Noto Sans JP", serif;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .f_cont_ttl {
    font-family: "Shippori Mincho", serif;
    font-size: 4rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }

  .f_cont_ttl_en {
    font-family: "DM Sans", serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .f_cont_text {
    font-family: "Noto Sans JP", serif;
    font-size: 1.6rem;
    line-height: 2.5;
    letter-spacing: 0.1em;
  }

  .f_interview_text {
    font-size: 1.6rem;
    line-height: 2.6;
    letter-spacing: 0.1em;
  }

  .f_read_ttl_gr {
    font-family: "Shippori Mincho", serif;
    font-size: 2.4rem;
    line-height: 2.0;
    letter-spacing: 0.1em;
    color: #33AE82;
  }

  /* btn */
  .blank {
    position: relative;
    padding-right: 18px;
  }
  .blank::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../img/icon_tab_black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .blank:hover::after {
    background-image: url(../img/icon_tab_green.svg);
  }

  .h_short_line {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 3.6rem;
    letter-spacing: 0.1em;
    line-height: normal;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .h_short_line::after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #33AE82;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .grd_btn_l {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 2.6rem;
    padding: 31px 115px 31px 101px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    text-align: center;
  }
  .grd_btn_l span {
    margin: 0 5px;
  }
  .grd_btn_l::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    display: block;
    padding: 31px 115px 31px 101px;
    text-align: center;
  }
  .grd_btn_l::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 35px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .grd_btn_l:hover {
    color: #fff;
  }
  .grd_btn_l:hover::after {
    background-image: url(../img/icon_arrow_white_hv.svg);
    -webkit-transform: translate(20px, -50%);
            transform: translate(20px, -50%);
  }
  .grd_btn_l:hover::before {
    opacity: 1;
  }

  .grd_btn_m {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 18px 65px 18px 57px;
    border-radius: 999px;
    letter-spacing: 0.1em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    text-align: center;
    line-height: 1.2;
  }
  .grd_btn_m span {
    margin: 0 5px;
  }
  .grd_btn_m::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    display: block;
    padding: 19px 65px 19px 57px;
    text-align: center;
  }
  .grd_btn_m::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .grd_btn_m:hover {
    color: #fff;
  }
  .grd_btn_m:hover::before {
    opacity: 1;
  }
  .grd_btn_m:hover::after {
    background-image: url(../img/icon_arrow_white_hv.svg);
    -webkit-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
  }

  .parallax-wrap {
    display: block;
    overflow: hidden;
    height: auto;
  }
  .parallax-wrap img {
    -webkit-transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
  }

  /* parts */
  #header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    top: 0;
    left: 0;
  }
  #header .header_inner {
    width: 100%;
    background-color: #fff;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 99;
    position: relative;
  }
  #header .logo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 99;
  }
  #header .logo_wrap img {
    display: block;
    width: 137px;
    height: auto;
  }
  #header .logo_wrap h1 {
    margin-left: 15px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.2;
  }
  #header .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .btn_wrap .entry_btn {
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 1.8rem;
    height: 80px;
    padding: 30px 20px;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    opacity: 1;
  }
  #header .btn_wrap .entry_btn span {
    margin: 0 5px;
  }
  #header .btn_wrap .entry_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
  #header .btn_wrap .entry_btn:hover::before {
    opacity: 1;
  }
  #header .btn_wrap .entry_btn.open {
    opacity: 0;
    pointer-events: none;
  }
  #header .btn_wrap #button_menu {
    width: 80px;
    height: 80px;
    padding-top: 48px;
    padding-left: 0;
    padding-right: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 99;
  }
  #header .btn_wrap #button_menu .line {
    display: block;
    position: absolute;
    height: 2px;
    background-color: #2B4246;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .btn_wrap #button_menu .line:first-of-type {
    top: 21px;
    right: 20px;
    width: 30px;
  }
  #header .btn_wrap #button_menu .line:last-of-type {
    top: 33px;
    right: 20px;
    width: 38px;
  }
  #header .btn_wrap #button_menu p {
    color: #2B4246;
    font-family: "Lora", serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    opacity: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-weight: 400;
  }
  #header .btn_wrap #button_menu:hover .line:first-of-type {
    width: 38px;
  }
  #header .btn_wrap #button_menu:hover .line:last-of-type {
    width: 30px;
  }
  #header .btn_wrap #button_menu.open .line:first-of-type {
    -webkit-transform: translateY(5px) rotate(160deg);
            transform: translateY(5px) rotate(160deg);
    top: 24px;
    width: 38px;
  }
  #header .btn_wrap #button_menu.open .line:last-of-type {
    -webkit-transform: translateY(-5px) rotate(20deg);
            transform: translateY(-5px) rotate(20deg);
    bottom: 24px;
    width: 38px;
  }
  #header .btn_wrap #button_menu.open:hover .line:first-of-type {
    width: 38px;
  }
  #header .btn_wrap #button_menu.open:hover .line:last-of-type {
    width: 38px;
  }
  #header #menu {
    background-color: #fff;
    padding-top: 140px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 98;
    overflow-y: scroll;
  }
  #header #menu.open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
  #header #menu .menu_nav {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
  #header #menu .menu_nav .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6.25%;
    margin-bottom: 100px;
  }
  #header #menu .menu_nav .menu_list .menu_item {
    width: 29.16%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_en {
    font-family: "Lora", serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #96B8BE;
    margin-bottom: 5px;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_text > img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item {
    margin-bottom: 20px;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a {
    display: block;
    position: relative;
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url(../img/icon_arrow_black.svg);
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a:hover::after {
    background-image: url(../img/icon_arrow_green.svg);
  }
  #header #menu .menu_nav .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  #header #menu .menu_nav .btn_wrap .grd_btn_l:hover::before {
    opacity: 1;
    color: #fff;
  }
  #header #menu .menu_nav .btn_wrap .grd_btn_l:hover::after {
    right: 42px;
    z-index: 2;
  }
  #header #menu .menu_nav .link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 30px;
  }
  #header #menu .menu_nav .link_wrap a {
    display: block;
    font-size: 1.3rem;
  }

  .links_area_btm {
    padding-top: 120px;
    padding-left: 15.27%;
    padding-bottom: 80px;
    background-image: url(../img/bg_grd_btm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .links_area_btm h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: normal;
    letter-spacing: 0.1em;
    color: #33AE82;
    margin-bottom: 40px;
  }
  .links_area_btm .links_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .links_area_btm .links_list .links_item a {
    width: 100%;
  }
  .links_area_btm .links_list .links_item a .img_wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .links_area_btm .links_list .links_item a .img_wrap img {
    width: 100%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .links_area_btm .links_list .links_item a p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: normal;
    letter-spacing: 0.1em;
    position: relative;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .links_area_btm .links_list .links_item a p::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #33AE82;
    position: absolute;
    left: 0;
    bottom: -16px;
  }
  .links_area_btm .links_list .links_item a:hover .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .links_area_btm .links_list .links_item a:hover p {
    color: #33AE82;
  }
  .links_area_btm#links_company .links_list .links_item {
    width: 26.38%;
  }
  .links_area_btm#links_company .links_list .links_item a .img_wrap {
    aspect-ratio: 380/160;
  }
  .links_area_btm#links_vision .links_list .links_item {
    width: 39.76%;
  }
  .links_area_btm#links_vision .links_list .links_item a .img_wrap {
    aspect-ratio: 485/160;
  }

  #footer-entry {
    overflow: hidden;
  }
  #footer-entry a {
    position: relative;
  }
  #footer-entry a .entry_top_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #F8F8F8;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-top: 80px;
    gap: 0 8.75%;
    z-index: 2;
    position: relative;
  }
  #footer-entry a .entry_top_wrap::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer-entry a .entry_top_wrap p {
    display: block;
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    margin-bottom: 29px;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer-entry a .entry_top_wrap .entry_img {
    display: block;
    position: relative;
    bottom: -20px;
    z-index: 2;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_en {
    width: 100%;
    height: auto;
    color: #33AE82;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_arrow {
    width: 20%;
    height: auto;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    right: -26px;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_arrow .entry_arrow_path {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    color: #33AE82;
  }
  #footer-entry a .entry_btm_wrap li {
    display: block;
    width: 100%;
    aspect-ratio: 350/230;
  }
  #footer-entry a .entry_btm_wrap li img {
    width: 100%;
    height: auto;
  }
  #footer-entry a:hover .entry_top_wrap p {
    color: #fff;
  }
  #footer-entry a:hover .entry_top_wrap::before {
    opacity: 1;
  }
  #footer-entry a:hover .entry_img .entry_en {
    color: #fff;
  }
  #footer-entry a:hover .entry_img .entry_arrow {
    right: -46px;
  }
  #footer-entry a:hover .entry_img .entry_arrow .entry_arrow_path {
    color: #87D0C4;
  }

  #footer {
    background-image: url(../img/footer_bg.png);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
    padding: 80px 8.33% 87px;
    overflow: hidden;
    position: relative;
  }
  #footer .logo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .logo_wrap img {
    display: block;
    width: 137px;
    height: auto;
  }
  #footer .logo_wrap p {
    color: #fff;
    margin: 3px 0 0 15px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
  }
  #footer .list_wrap {
    width: 59.22%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 7.04%;
  }
  #footer .list_wrap .footer_cont {
    width: 46.48%;
  }
  #footer .list_wrap .footer_cont > p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #B4BFC1;
    margin-bottom: 18px;
    line-height: 1.2;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item {
    position: relative;
    padding-left: 11px;
    margin-bottom: 18px;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item:last-of-type {
    margin-bottom: 0;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item a {
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item a:hover {
    color: #33AE82;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 6px;
    background-color: #33AE82;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
  #footer .list_wrap .footer_cont.vision {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #footer .list_wrap .footer_cont.member {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #footer .list_wrap .footer_cont.about {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #footer .list_wrap .footer_cont.policy {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #footer .list_wrap .footer_cont.policy a {
    color: #fff;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  #footer .list_wrap .footer_cont.policy a.blank::after {
    background-image: url(../img/icon_tab_white.svg);
  }
  #footer .list_wrap .footer_cont.policy a:hover {
    color: #33AE82;
  }
  #footer .list_wrap .footer_cont.policy a:hover::after {
    background-image: url(../img/icon_tab_green.svg);
  }
  #footer .btn_top {
    display: block;
    width: 100px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 4.16%;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    padding: 10px 0 10px;
    font-family: "DM Sans", serif;
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-block;
    cursor: pointer;
  }
  #footer .btn_top svg {
    width: 10px;
    height: auto;
    margin-right: 10px;
    vertical-align: top;
    color: #2B4246;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer .btn_top:hover svg {
    color: #33AE82;
  }
  #footer .footer_acce {
    position: absolute;
    width: 38.33%;
    max-width: 600px;
    height: auto;
    left: 0;
    bottom: 0;
  }
  #footer .copyright {
    font-size: 1rem;
    color: #6F8184;
    position: absolute;
    right: 20px;
    bottom: 20px;
    letter-spacing: 0.1em;
  }

  #title-sec {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 160px;
    overflow: hidden;
  }
  #title-sec .title_text {
    display: block;
    min-width: 36.18%;
    background-color: #fff;
    padding: 3.96%;
    position: absolute;
    z-index: 3;
    left: 8.19%;
    top: 116px;
  }
  #title-sec .title_text .title_wrap {
    margin-bottom: 60px;
  }
  #title-sec .title_text .title_wrap p {
    font-family: "Shippori Mincho", serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #96B8BE;
  }
  #title-sec .title_text .title_wrap h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 4.6rem;
    letter-spacing: 0.1em;
    color: #2B4246;
    line-height: normal;
    margin-top: 8px;
  }
  #title-sec .title_img {
    position: relative;
  }
  #title-sec .title_img .title_img_main {
    width: 58.33%;
    max-height: 330px;
    aspect-ratio: 840/320;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 30px 30px 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #title-sec .title_img .title_img_main img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
  #title-sec .title_img > img {
    width: auto;
    height: 18.43%;
    position: absolute;
    right: 10px;
    bottom: -7.18%;
    z-index: 3;
    rotate: -10deg;
  }

  #pankuzu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pankuzu li {
    position: relative;
    padding-right: 20px;
    font-size: 1rem;
  }
  #pankuzu li::after {
    content: "/";
    display: block;
    position: absolute;
    right: 8px;
    top: 0;
    color: #9DA9AB;
  }
  #pankuzu li:last-of-type::after {
    content: "";
  }
  #pankuzu li a {
    color: #9DA9AB;
    font-size: 1rem;
  }
  #pankuzu li a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .title_bg {
    position: absolute;
    aspect-ratio: 1440/695;
    z-index: 0;
    width: 100%;
    top: 80px;
  }
  .title_bg .title_video_bg {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
  }
  .title_bg::before {
    content: "";
    width: 100%;
    aspect-ratio: 1440/345;
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
  }
}
/* tablet */
@media print, screen and (min-width: 781px) and (max-width: 1200px) {
  html,
  body {
    font-size: 50%;
  }

  #header #menu .menu_nav .menu_list .menu_item .menu_title {
    font-size: 1.6rem;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title br {
    display: none;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a {
    font-size: 1.6rem;
  }

  #footer-entry a .entry_top_wrap {
    padding-right: 5%;
    padding-left: 5%;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_en {
    width: 80%;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_arrow {
    width: 20%;
    right: 13.95%;
  }

  #footer .logo_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .logo_wrap p {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* Smartphones (portrait and landscape) */
@media print, screen and (max-width: 780px) {
  body {
    padding-top: 15.38462vw;
  }

  .common_inner {
    width: 89.74359vw;
    margin-left: auto;
    margin-right: auto;
  }

  .pc {
    display: none !important;
  }

  /* text */
  .f_lead {
    font-family: "Noto Sans JP", serif;
    font-size: 4.10256vw;
    line-height: 2.4;
    letter-spacing: 0.15em;
    font-weight: 400;
  }

  .f_text {
    font-family: "Noto Sans JP", serif;
    font-size: 3.84615vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  .f_cont_ttl {
    font-family: "Shippori Mincho", serif;
    font-size: 7.69231vw;
    letter-spacing: 0.1em;
    font-weight: 400;
  }

  .f_cont_ttl_en {
    font-family: "DM Sans", serif;
    font-size: 2.5641vw;
    letter-spacing: 0.1em;
  }

  .f_cont_text {
    font-family: "Noto Sans JP", serif;
    font-size: 3.58974vw;
    line-height: 2.5;
    letter-spacing: 0.1em;
  }

  .f_interview_text {
    font-size: 3.84615vw;
    line-height: 2.2;
    letter-spacing: 0.1em;
  }

  .f_read_ttl_gr {
    font-family: "Shippori Mincho", serif;
    font-size: 5.12821vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #33AE82;
  }

  /* btn */
  .blank {
    position: relative;
    padding-right: 18px;
  }
  .blank::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../img/icon_tab_black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .blank:hover::after {
    background-image: url(../img/icon_tab_green.svg);
  }

  .h_short_line {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 6.15385vw;
    letter-spacing: 0.1em;
    line-height: normal;
    position: relative;
    padding-bottom: 3.07692vw;
    margin-bottom: 5.12821vw;
  }
  .h_short_line::after {
    content: "";
    width: 6.15385vw;
    height: 0.25641vw;
    background-color: #33AE82;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .grd_btn_l {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 5.12821vw;
    width: 100%;
    padding: 5.89744vw 14.10256vw 5.89744vw 11.53846vw;
    border-radius: 999px;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    text-align: center;
  }
  .grd_btn_l span {
    margin: 0 5px;
  }
  .grd_btn_l::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    display: block;
    padding: 5.89744vw 14.10256vw 5.89744vw 11.53846vw;
    text-align: center;
  }
  .grd_btn_l::after {
    content: "";
    display: block;
    width: 7.69231vw;
    height: 7.69231vw;
    background-image: url(../img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 5.12821vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
  .grd_btn_l:hover {
    color: #fff;
  }
  .grd_btn_l:hover::before {
    opacity: 1;
  }

  .grd_btn_m {
    display: inline-block;
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 4.10256vw;
    width: 66.66667vw;
    padding: 5.38462vw 14.10256vw 5.38462vw 11.53846vw;
    border-radius: 999px;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    text-align: center;
  }
  .grd_btn_m span {
    margin: 0 5px;
  }
  .grd_btn_m::before {
    content: "";
    position: absolute;
    border-radius: 999px;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    display: block;
    padding: 5.38462vw 14.10256vw 5.38462vw 11.53846vw;
    text-align: center;
  }
  .grd_btn_m::after {
    content: "";
    display: block;
    width: 5.12821vw;
    height: 5.12821vw;
    background-image: url(../img/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 4.61538vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
  .grd_btn_m:hover {
    color: #fff;
  }
  .grd_btn_m:hover::before {
    opacity: 1;
  }

  .parallax-wrap {
    display: block;
    overflow: hidden;
    position: absolute;
    height: auto;
  }
  .parallax-wrap img {
    -webkit-transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
  }

  /* parts */
  #header {
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: #fff;
    top: 0;
    left: 0;
  }
  #header .header_inner {
    background-color: #fff;
    padding-left: 2.5641vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 99;
  }
  #header .logo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 99;
  }
  #header .logo_wrap img {
    display: block;
    width: 18.46154vw;
    height: auto;
  }
  #header .logo_wrap h1 {
    margin-left: 2.5641vw;
    font-size: 2.05128vw;
    font-weight: 500;
    line-height: 1.2;
  }
  #header .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .btn_wrap .entry_btn {
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    font-family: "Shippori Mincho", serif;
    color: #fff;
    font-size: 3.33333vw;
    height: 15.38462vw;
    padding: 3.33333vw 2.5641vw;
    line-height: 1.3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 0;
    opacity: 1;
  }
  #header .btn_wrap .entry_btn span {
    display: none;
  }
  #header .btn_wrap .entry_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: -webkit-gradient(linear, left top, right top, from(#8cdbd0), to(#33ae82));
    background: linear-gradient(to right, #8cdbd0 0%, #33ae82 100%);
    opacity: 0;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
  }
  #header .btn_wrap .entry_btn:hover::before {
    opacity: 1;
  }
  #header .btn_wrap .entry_btn.open {
    opacity: 0;
    pointer-events: none;
  }
  #header .btn_wrap #button_menu {
    width: 15.38462vw;
    height: 15.38462vw;
    padding-top: 8.71795vw;
    padding-left: 0;
    padding-right: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    position: relative;
    z-index: 99;
  }
  #header .btn_wrap #button_menu .line {
    display: block;
    position: absolute;
    height: 0.51282vw;
    background-color: #2B4246;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .btn_wrap #button_menu .line:first-of-type {
    top: 3.84615vw;
    right: 3.33333vw;
    width: 6.92308vw;
  }
  #header .btn_wrap #button_menu .line:last-of-type {
    top: 6.41026vw;
    right: 3.33333vw;
    width: 8.71795vw;
  }
  #header .btn_wrap #button_menu p {
    color: #2B4246;
    font-family: "Lora", serif;
    font-size: 2.82051vw;
    letter-spacing: 0.1em;
    opacity: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-weight: 400;
  }
  #header .btn_wrap #button_menu.open .line:first-of-type {
    -webkit-transform: translateY(1.28205vw) rotate(160deg);
            transform: translateY(1.28205vw) rotate(160deg);
    top: 3.84615vw;
    width: 8.71795vw;
  }
  #header .btn_wrap #button_menu.open .line:last-of-type {
    -webkit-transform: translateY(-1.28205vw) rotate(20deg);
            transform: translateY(-1.28205vw) rotate(20deg);
    bottom: 6.41026vw;
    width: 8.71795vw;
  }
  #header #menu {
    background-color: #fff;
    padding-top: 30.76923vw;
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, transform 0.3s ease-out;
    transition: opacity 0.2s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 98;
    overflow-y: scroll;
  }
  #header #menu.open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
  #header #menu .menu_nav {
    width: 100%;
    margin: 0 auto;
  }
  #header #menu .menu_nav .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12.82051vw 0;
  }
  #header #menu .menu_nav .menu_list .menu_item {
    width: 100%;
    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;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #header #menu .menu_nav .menu_list .menu_item .title_wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 5.12821vw;
    position: relative;
  }
  #header #menu .menu_nav .menu_list .menu_item .title_wrap::after {
    content: "";
    width: 1.53846vw;
    height: 2.82051vw;
    position: absolute;
    display: block;
    background-image: url(../img/menu_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 6.92308vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #header #menu .menu_nav .menu_list .menu_item .title_wrap.show::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_en {
    font-family: "Lora", serif;
    font-size: 2.5641vw;
    letter-spacing: 0.1em;
    color: #96B8BE;
    margin-bottom: 1.28205vw;
    margin-top: 1.53846vw;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_text {
    width: 79%;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 3.58974vw;
    letter-spacing: 0.1em;
    padding-bottom: 4.61538vw;
    line-height: 1.4;
    border-bottom: 1px solid #96B8BE;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_img {
    margin-right: 6%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 14%;
    max-height: 20.25641vw;
    overflow: hidden;
    -webkit-transition: 0.4s ease-out;
    transition: 0.4s ease-out;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_img img {
    width: 100%;
    height: auto;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_title_img.show {
    max-height: 64.10256vw;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 74.35897vw;
    margin-left: auto;
    margin-right: 5.12821vw;
    display: none;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: translateY(-1.28205vw);
            transform: translateY(-1.28205vw);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list.show {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item {
    margin-top: 3.84615vw;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a {
    display: block;
    position: relative;
    font-size: 3.58974vw;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a::after {
    content: "";
    display: block;
    position: absolute;
    width: 4.10256vw;
    height: 4.10256vw;
    background-image: url(../img/icon_arrow_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #header #menu .menu_nav .menu_list .menu_item .menu_sub_list .menu_sub_item a:hover::after {
    background-image: url(../img/icon_arrow_green.svg);
  }
  #header #menu .menu_nav .menu_btm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 89.74359vw;
    margin: 23.07692vw auto;
  }
  #header #menu .menu_nav .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #header #menu .menu_nav .link_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10.25641vw;
    gap: 0 30px;
  }
  #header #menu .menu_nav .link_wrap a {
    display: block;
    font-size: 1.3rem;
  }

  .links_area_btm {
    padding-top: 15.38462vw;
    padding-left: 10.25641vw;
    padding-bottom: 15.38462vw;
    background-image: url(../img/bg_grd_btm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
  }
  .links_area_btm h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 3.33333vw;
    line-height: normal;
    letter-spacing: 0.1em;
    color: #33AE82;
    margin-bottom: 7.69231vw;
  }
  .links_area_btm .links_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8.97436vw 2.5641vw;
  }
  .links_area_btm .links_list .links_item {
    width: 42.82051vw;
  }
  .links_area_btm .links_list .links_item a {
    width: 100%;
  }
  .links_area_btm .links_list .links_item a .img_wrap {
    width: 100%;
    aspect-ratio: 167/80;
    overflow: hidden;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .links_area_btm .links_list .links_item a .img_wrap img {
    height: 100%;
    width: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .links_area_btm .links_list .links_item a p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 4.10256vw;
    line-height: normal;
    letter-spacing: 0.1em;
    position: relative;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .links_area_btm .links_list .links_item a p::before {
    content: "";
    display: block;
    width: 6.15385vw;
    height: 0.25641vw;
    background-color: #33AE82;
    position: absolute;
    left: 0;
    bottom: -3.07692vw;
  }
  .links_area_btm .links_list .links_item a:hover .img_wrap img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .links_area_btm .links_list .links_item a:hover p {
    color: #33AE82;
  }

  #footer-entry {
    overflow: hidden;
  }
  #footer-entry a {
    position: relative;
  }
  #footer-entry a .entry_top_wrap {
    background: -webkit-gradient(linear, left top, right top, from(#33ae82), to(#8cdbd0));
    background: linear-gradient(to right, #33ae82 0%, #8cdbd0 100%);
    padding-top: 10.25641vw;
    z-index: 2;
    position: relative;
  }
  #footer-entry a .entry_top_wrap p {
    display: block;
    font-weight: bold;
    font-size: 4.10256vw;
    line-height: 1.6;
    letter-spacing: 0.15em;
    margin-bottom: 5.12821vw;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    color: #fff;
    text-align: center;
  }
  #footer-entry a .entry_top_wrap .entry_img {
    display: block;
    position: relative;
    width: 73.84615vw;
    z-index: 2;
    margin: 0 auto;
    bottom: -1.53846vw;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_en {
    width: 56.15385vw;
    height: auto;
    color: #fff;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_arrow {
    width: 12.30769vw;
    height: auto;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    position: absolute;
    top: 0.76923vw;
    right: 3.58974vw;
  }
  #footer-entry a .entry_top_wrap .entry_img .entry_arrow .entry_arrow_path {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    color: #7DC9BB;
  }
  #footer-entry a .entry_btm_wrap {
    position: relative;
    z-index: 1;
  }
  #footer-entry a .entry_btm_wrap li {
    display: block;
    width: 100%;
    aspect-ratio: 156/100;
  }
  #footer-entry a .entry_btm_wrap li img {
    width: 100%;
    height: auto;
  }

  #footer {
    background-image: url(../img/footer_bg.png);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 0;
    padding: 14.35897vw 7.69231vw 5.12821vw;
  }
  #footer .logo_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .logo_wrap img {
    display: block;
    width: 28.20513vw;
    height: auto;
  }
  #footer .logo_wrap p {
    color: #fff;
    margin: 0 0 0 3.84615vw;
    font-size: 3.07692vw;
    font-weight: 500;
    line-height: 1.2;
  }
  #footer .list_wrap {
    margin-top: 11.79487vw;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.69231vw 0;
  }
  #footer .list_wrap .footer_cont {
    width: 100%;
  }
  #footer .list_wrap .footer_cont > p {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 3.58974vw;
    letter-spacing: 0.05em;
    color: #B4BFC1;
    margin-bottom: 4.61538vw;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item {
    position: relative;
    padding-left: 2.82051vw;
    margin-bottom: 4.61538vw;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item:last-of-type {
    margin-bottom: 0;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item a {
    color: #fff;
    font-size: 3.07692vw;
    letter-spacing: 0.05em;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item a:hover {
    color: #33AE82;
  }
  #footer .list_wrap .footer_cont .footer_list .footer_item::before {
    position: absolute;
    content: "";
    height: 0.25641vw;
    width: 1.53846vw;
    background-color: #33AE82;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
  }
  #footer .list_wrap .footer_cont.vision {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #footer .list_wrap .footer_cont.member {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #footer .list_wrap .footer_cont.about {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #footer .list_wrap .footer_cont.policy {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    text-align: center;
    margin-top: 5.12821vw;
  }
  #footer .list_wrap .footer_cont.policy a {
    color: #fff;
    display: inline-block;
    margin-bottom: 30px;
    margin: 0 2.5641vw;
    font-size: 3.07692vw;
  }
  #footer .list_wrap .footer_cont.policy a.blank::after {
    background-image: url(../img/icon_tab_white.svg);
  }
  #footer .list_wrap .footer_cont.policy a:hover {
    color: #33AE82;
  }
  #footer .list_wrap .footer_cont.policy a:hover::after {
    background-image: url(../img/icon_tab_green.svg);
  }
  #footer .btn_top {
    display: block;
    width: 24.35897vw;
    text-align: center;
    position: absolute;
    top: 0;
    right: 2.5641vw;
    background-color: #fff;
    border-radius: 0 0 1.53846vw 1.53846vw;
    padding: 3.07692vw 0;
    font-family: "DM Sans", serif;
    font-weight: bold;
    font-size: 3.33333vw;
    display: inline-block;
    cursor: pointer;
  }
  #footer .btn_top svg {
    width: 2.30769vw;
    height: auto;
    margin-right: 1.28205vw;
    vertical-align: top;
    color: #2B4246;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #footer .btn_top:hover svg {
    color: #33AE82;
  }
  #footer .footer_acce {
    position: absolute;
    width: 79.23077vw;
    height: auto;
    right: -10.25641vw;
    bottom: 6.41026vw;
    z-index: -1;
  }
  #footer .copyright {
    margin: 12.82051vw 0 0;
    text-align: center;
    font-size: 2.5641vw;
    color: #6F8184;
    letter-spacing: 0.1em;
  }

  #title-sec {
    position: relative;
    width: 100%;
    margin: 0 auto 42.82051vw;
    padding-top: 5.12821vw;
  }
  #title-sec .title_text {
    display: block;
    width: 89.74359vw;
    background-color: #fff;
    padding: 7.69231vw;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 42.30769vw;
  }
  #title-sec .title_text .title_wrap {
    margin-bottom: 7.69231vw;
  }
  #title-sec .title_text .title_wrap p {
    font-family: "Shippori Mincho", serif;
    font-size: 3.07692vw;
    letter-spacing: 0.05em;
    color: #96B8BE;
  }
  #title-sec .title_text .title_wrap h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 7.17949vw;
    letter-spacing: 0.1em;
    color: #2B4246;
    line-height: normal;
    margin-top: 2.5641vw;
  }
  #title-sec .title_text > img {
    width: auto;
    height: 7.69231vw;
    position: absolute;
    right: -8.97436vw;
    bottom: 4.10256vw;
    z-index: 3;
    rotate: -10deg;
  }
  #title-sec .title_img .title_img_main {
    width: 89.74359vw;
    aspect-ratio: 350/200;
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin: 0 5.12821vw;
  }
  #title-sec .title_img .title_img_main img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }

  #pankuzu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pankuzu li {
    position: relative;
    padding-right: 5.12821vw;
    font-size: 2.5641vw;
  }
  #pankuzu li::after {
    content: "/";
    display: block;
    position: absolute;
    right: 2.05128vw;
    top: 0;
    color: #9DA9AB;
  }
  #pankuzu li:last-of-type::after {
    content: "";
  }
  #pankuzu li a {
    color: #9DA9AB;
    font-size: 2.5641vw;
  }
  #pankuzu li a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .title_bg {
    position: absolute;
    aspect-ratio: 390/440;
    z-index: 0;
    width: 100%;
    top: 15.38462vw;
  }
  .title_bg .title_video_bg {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 0;
  }
  .title_bg::before {
    content: "";
    width: 100%;
    aspect-ratio: 390/219;
    display: block;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%), linear-gradient(-150deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
  }
}
