@charset "UTF-8";
/**** 共通カラー ****/
/* CSS Document */
@font-face {
  font-family: "NotoSerifJP-Black";
  src: url("../fonts/NotoSerifJP-Black.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Bold";
  src: url("../fonts/NotoSerifJP-Bold.ttf");
}
@font-face {
  font-family: "NotoSerifJP-SemiBold";
  src: url("../fonts/NotoSerifJP-SemiBold.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Medium";
  src: url("../fonts/NotoSerifJP-Medium.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Regular";
  src: url("../fonts/NotoSerifJP-Regular.ttf");
}
@font-face {
  font-family: "NotoSerifJP-Light";
  src: url("../fonts/NotoSerifJP-Light.ttf");
}
@font-face {
  font-family: "CormorantGaramond-Light";
  src: url("../fonts/CormorantGaramond-Light.ttf");
}
@font-face {
  font-family: "CormorantGaramond-Medium";
  src: url("../fonts/CormorantGaramond-Medium.ttf");
}
@font-face {
  font-family: "EBGaramond-Regular";
  src: url("../fonts/EBGaramond-Regular.ttf");
}
html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSerifJP-Regular", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "游明朝体", "MS PMincho", "serif";
  font-style: normal;
  font-weight: normal;
  line-height: 1.8;
  color: #12426C;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.display_sp,
.br_sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .display_sp,
  .br_sp {
    display: none;
  }
}

.display_pc,
.br_pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .display_pc,
  .br_pc {
    display: none;
  }
}

em {
  font-style: normal;
}

/* --------------------------------------
LAYOUT
-------------------------------------- */
.l_flex {
  display: flex;
}

.l_flex_reverse {
  flex-direction: row-reverse;
}

.l_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner {
    padding: 0 20px;
  }
}

.l_inner_s {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_s {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_s {
    padding: 0 20px;
  }
}

.l_inner_ss {
  max-width: 790px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l_inner_ss {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_inner_ss {
    padding: 0 20px;
  }
}

.l_news.l_flex {
  justify-content: space-between;
}
@media screen and (max-width: 1239px) {
  .l_news.l_flex {
    display: block;
  }
}
@media screen and (min-width: 1240px) {
  .l_news .l_side {
    width: 200px;
  }
  .l_news .l_main {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1239px) {
  .l_news .l_main {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .l_sec_page {
    padding-top: 200px;
    background: url(../../assets/img/common/hd_bg_02.webp) no-repeat right -250px;
    background-size: 600px 600px;
    background-position: top -260px right -250px;
  }
}
@media screen and (min-width: 1240px) {
  .l_sec_page {
    background-size: 41.6666666667vw;
    background-position: top -350px right 50px;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_page {
    padding-top: 130px;
    background: url(../../assets/img/common/hd_bg_02.webp) no-repeat 150% -170px;
    background-size: 400px 400px;
    background-position: top -160px right -180px;
  }
}

@media screen and (min-width: 768px) {
  .l_sec_page_s {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .l_sec_page_s {
    padding-top: 130px;
  }
}

.l_hd_img {
  position: relative;
  overflow: hidden;
}
.l_hd_img img {
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 1240px) {
  .l_hd_img {
    padding-left: calc((100% - 1200px) / 2);
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .l_hd_img {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l_hd_img {
    padding-left: 20px;
  }
}

.l_youtube_wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
}
.l_youtube_wrap iframe {
  width: 100%;
  height: 100%;
}

/* --------------------------------------
LIST
-------------------------------------- */
.sec_catlist .title_ss {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #A5B7C7;
}
@media screen and (max-width: 1239px) {
  .sec_catlist .title_ss {
    display: none;
  }
}

@media screen and (min-width: 1240px) {
  .list_cat li {
    margin-top: 15px;
  }
  .list_cat a {
    position: relative;
    padding-left: 20px;
  }
  .list_cat a:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 1px solid #A5B7C7;
    position: absolute;
    left: 0;
    top: 10px;
  }
  .list_cat a.current:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #12426C;
    position: absolute;
    left: 2px;
    top: 12px;
  }
}
@media screen and (max-width: 1239px) {
  .list_cat li {
    display: inline-block;
    margin: 5px 5px 0 0;
  }
  .list_cat li a {
    font-size: 14px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
    height: 30px;
    line-height: 29px;
    border-radius: 15px;
  }
  .list_cat li a.current {
    background: #e6e6e6;
  }
}

/* --------------------------------------
TEXT
-------------------------------------- */
.title_ll {
  line-height: 1.2;
}
@media screen and (min-width: 1240px) {
  .title_ll {
    font-size: 74px;
  }
}
@media screen and (max-width: 1239px) {
  .title_ll {
    font-size: 54px;
  }
}

.title_l {
  line-height: 1.3;
}
@media screen and (min-width: 1240px) {
  .title_l {
    font-size: 52px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .title_l {
    font-size: 47px;
  }
}
@media screen and (max-width: 767px) {
  .title_l {
    font-size: 42px;
  }
}

@media screen and (min-width: 1240px) {
  .title_m {
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .title_m {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .title_m {
    font-size: 28px;
  }
}

.title_s {
  line-height: 1.3;
  line-height: 1.8;
}
@media screen and (min-width: 1240px) {
  .title_s {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .title_s {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .title_s {
    font-size: 18px;
  }
}

.title_ss {
  font-size: 18px;
}

.txt_en {
  font-family: "CormorantGaramond-Light";
}

@media screen and (max-width: 767px) {
  .title_wrap {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .title_wrap .title_wrap_inner {
    display: inline-block;
  }
}
.title_wrap .title_ja {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.title_wrap .title_ja:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../../assets/img/common/ic_arrow_01.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

.title_wrap_c {
  text-align: center;
}
.title_wrap_c .title_wrap_inner {
  display: inline-block;
  text-align: left;
}
.title_wrap_c .txt_en {
  text-align: center;
}

.txt_align_r {
  text-align: right;
}

.title_page_wrap .title_en {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.title_page_wrap .title_en:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../../assets/img/common/ic_arrow_01.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.title_page_wrap .title_l {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .title_page_wrap {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap {
    margin-bottom: 70px;
  }
  .title_page_wrap .title_l {
    font-size: 26px;
  }
}

.title_page_wrap_s {
  border-bottom: 1px solid #A5B7C7;
}
.title_page_wrap_s .title_m {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title_page_wrap_s {
    padding-bottom: 130px;
    margin-bottom: 130px;
  }
}
@media screen and (max-width: 767px) {
  .title_page_wrap_s {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}

/* --------------------------------------
LINK
-------------------------------------- */
.txt_link {
  position: relative;
  padding: 0 55px 2px 0;
  display: inline-block;
}
.txt_link .txt_line {
  display: inline-block;
  position: relative;
}
.txt_link .txt_line:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.txt_link .arrow {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  transition: 0.3s;
  overflow: hidden;
}
.txt_link .arrow:before, .txt_link .arrow:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: url(../../assets/img/common/ic_arrow_02.svg) no-repeat center center;
  z-index: 1;
  transition: 0.3s;
}
.txt_link .arrow:after {
  transform: translateX(-250%);
}
@media screen and (min-width: 768px) {
  .txt_link a:hover .arrow {
    background: #FF7F00;
  }
  .txt_link a:hover .arrow:before {
    transform: translate(250%);
  }
  .txt_link a:hover .arrow:after {
    transform: translate(0);
  }
}
.txt_link.txt_link_main .txt_line:before {
  background: #A5B7C7;
}
.txt_link.txt_link_main a:hover .txt_line:before {
  background: #12426C;
}
.txt_link.txt_link_main .arrow {
  background: #12426C;
}
.txt_link.txt_link_w .txt_line:before {
  background: #a5b7c7;
}
.txt_link.txt_link_w a:hover .txt_line:before {
  background: #fff;
}
.txt_link.txt_link_w .arrow {
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .txt_link {
    font-size: 14px;
  }
}

.txt_pagelink {
  position: relative;
  padding: 0 27px 2px 0;
  display: inline-block;
}
.txt_pagelink span {
  display: inline-block;
  position: relative;
}
.txt_pagelink span:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #A5B7C7;
  position: absolute;
  bottom: 0;
  left: 0;
}
.txt_pagelink:after {
  content: "";
  background: #12426C url(../../assets/img/common/ic_arrow_02.svg) no-repeat center center;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  transition: 0.3s;
  transform: rotate(90deg);
}
.txt_pagelink:hover:after {
  background: #FF7F00 url(../../assets/img/common/ic_arrow_02.svg) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .txt_pagelink {
    font-size: 14px;
  }
}

.list_txt_pagelink_wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .list_txt_pagelink_wrap {
    display: none;
  }
}

.list_txt_pagelink {
  display: flex;
}
.list_txt_pagelink li {
  display: inline-block;
  margin-right: 20px;
}
.list_txt_pagelink a {
  font-size: 14px;
}

/* --------------------------------------
BTN
-------------------------------------- */
@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn_s {
  width: 155px;
  height: 34px;
  line-height: 34px;
  border-radius: 17px;
  margin-top: 15px;
  padding: 0 40px 0 20px;
  position: relative;
  transition: 0.3s;
}

.btn_m {
  width: 220px;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  margin-top: 15px;
  padding: 0 40px 0 23px;
  position: relative;
  text-align: left;
}

.btn_l {
  width: 320px;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  margin-top: 15px;
  padding: 0 40px 0 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn_l {
    width: 280px;
    font-size: 13px;
  }
}

.btn_c_main {
  background: #12426C;
  color: #fff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.btn_c_main span {
  position: relative;
  z-index: 1;
}
.btn_c_main:before {
  background: #ff701e;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(1, 0);
  transform-origin: left bottom;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.3s;
}
.btn_c_main:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 5px;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .btn_c_main:hover:before {
    transform: scale(1, 1);
  }
  .btn_c_main:hover:after {
    background: #fff url(../img/common/ic_arrow_03.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    transform: translateY(-50%);
    right: 15px;
  }
}

/* --------------------------------------
LIST
-------------------------------------- */
.list_news {
  border-top: 1px solid #a5b7c7;
}
.list_news li {
  border-bottom: 1px solid #a5b7c7;
}
.list_news a {
  position: relative;
}
.list_news .title {
  transition: 0.3s;
}
.list_news .cat {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .list_news a {
    display: flex;
    padding: 23px 40px 23px 20px;
  }
  .list_news a:hover:after {
    background: #FF7F00 url(../img/common/ic_arrow_02.svg) no-repeat center center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    right: 10px;
    transform: translateY(-50%);
  }
  .list_news a:hover .title {
    color: #FF7F00;
  }
  .list_news a:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #12426C;
    border-radius: 5px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .list_news .info {
    margin-right: 20px;
    width: 200px;
  }
  .list_news .title {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 767px) {
  .list_news a {
    padding: 20px 10px;
  }
  .list_news .info {
    margin-bottom: 5px;
  }
}

.list_works .l_flex {
  flex-wrap: wrap;
}
.list_works .thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2f1ff;
  overflow: hidden;
}
.list_works .thumb img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.list_works .title {
  margin-top: 10px;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.list_works .title:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #12426C;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.list_works .content {
  margin-top: 10px;
}
.list_works .content p {
  font-size: 14px;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.list_works .content p:not(:first-child) {
  display: none;
}
.list_works .date {
  font-size: 12px;
  background: #fff;
  margin-top: 10px;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 13px;
}
.list_works a:hover .thumb img {
  transform: scale(1.1);
}
@media screen and (min-width: 1240px) {
  .list_works .work {
    width: calc((100% - 160px) / 3);
    margin-left: 80px;
    margin-bottom: 105px;
  }
  .list_works .work:nth-child(3n+1) {
    margin-left: 0;
  }
  .list_works .work:hover a .title:after {
    transform: scale(1, 1);
  }
  .list_works .work:hover .content p {
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .list_works .work {
    width: calc((100% - 40px) / 3);
    margin-left: 20px;
    margin-bottom: 105px;
  }
  .list_works .work:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .list_works {
    margin-top: 50px;
  }
  .list_works .work:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .list_works {
    margin-top: 40px;
  }
  .list_works .l_flex {
    display: block;
  }
  .list_works .work + .work {
    margin-top: 40px;
  }
  .list_works .title {
    font-size: 16px;
  }
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  display: inline-block;
  width: auto;
  color: #fff;
  margin: 5px 5px 0;
  text-align: center;
}
.wp-pagenavi a {
  background: #12426C;
  transition: 0.3s;
}
.wp-pagenavi span {
  background: #FF7F00;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 70px;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
  }
  .wp-pagenavi a:hover {
    background: #FF7F00;
  }
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    line-height: 30px;
  }
}

/* --------------------------------------
SECTION
-------------------------------------- */
.sec_contact {
  text-align: center;
  overflow: hidden;
}
.sec_contact .txt {
  position: relative;
  overflow: hidden;
}
.sec_contact .txt .btn {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .sec_contact .txt {
    padding: 95px 20px 90px;
    border-radius: 30px;
    background-color: #F6F7F8;
    position: relative;
  }
  .sec_contact .txt:before {
    background-size: 100% auto;
    z-index: 3;
  }
  .sec_contact .txt::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/bg_contact.webp);
    background-size: cover;
    transition: 0.3s;
  }
}
@media screen and (min-width: 768px) and (min-width: 1240px) {
  .sec_contact .txt::after {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .sec_contact .txt:hover::after {
    opacity: 1;
  }
  .sec_contact .txt:hover .btn_c_main:before {
    transform: scale(1, 1);
  }
  .sec_contact .title {
    font-size: 24px;
    z-index: 2;
    position: relative;
  }
  .sec_contact .btn {
    margin: 27px auto 0;
    z-index: 3;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .sec_contact {
    border-radius: 10px;
  }
  .sec_contact .txt {
    background: url(../../assets/img/common/co_bg_01.webp) no-repeat center center;
    background-size: cover;
    padding: 70px 20px;
    border-radius: 10px;
  }
  .sec_contact .txt:before {
    background-size: 190% auto;
  }
  .sec_contact .title {
    font-size: 16px;
  }
  .sec_contact .btn {
    margin: 20px auto 0;
  }
}

/* --------------------------------------
ARTICLE POST
-------------------------------------- */
.article_post .info {
  display: flex;
}
.article_post .date {
  font-size: 14px;
}
.article_post .cat {
  font-size: 12px;
  background: #F6F7F8;
  line-height: 24px;
  height: 24px;
  border-radius: 12px;
  min-width: 80px;
  text-align: center;
  padding: 0 10px;
  margin-right: 10px;
}
.article_post .thumb {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2f1ff;
}
.article_post .thumb img {
  width: 100%;
  height: auto;
}

.news .article_post.article_post_single .title {
  border-bottom: 1px solid #A5B7C7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news .article_post .wp-block-image {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news .article_post.article_post_single .title {
    font-size: 30px;
  }
  .news .article_post.article_post_single + .btn {
    margin: 70px auto 0;
  }
  .news .article_post .content h2 {
    margin-top: 50px;
    font-size: 24px;
  }
  .news .article_post .content h3 {
    margin-top: 50px;
    font-size: 18px;
  }
  .news .article_post .content p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news .article_post.article_post_single .title {
    font-size: 22px;
  }
  .news .article_post.article_post_single + .btn {
    margin: 50px auto 0;
  }
}

/* --------------------------------------
HEADER
-------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
.header .btn_contact {
  background: #fff;
  text-align: center;
  z-index: 101;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .header .btn_contact {
    width: 136px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .btn_contact {
    width: 124px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    font-size: 14px;
  }
}
.header .l_flex {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header .l_flex {
    display: block;
  }
}

.hd_inner {
  display: flex;
  justify-content: space-between;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .hd_inner {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .hd_inner {
    padding: 20px;
  }
}

.hd_logo {
  z-index: 101;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .hd_logo {
    width: 114px;
  }
}
@media screen and (max-width: 767px) {
  .hd_logo {
    width: 85px;
  }
}

.hd_btn_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.hd_btn_menu {
  background: #12426C;
  position: relative;
  display: block;
  padding: 0;
  text-align: center;
  border-radius: 20px;
  z-index: 101;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .hd_btn_menu {
    width: 72px;
    height: 40px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .hd_btn_menu {
    width: 66px;
    height: 30px;
  }
}
.hd_btn_menu span {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  width: 30px;
  height: 1px;
  transition: 0.3s;
  border-radius: 4px;
  background: #fff;
}
.hd_btn_menu span:nth-child(1) {
  top: 50%;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .hd_btn_menu span:nth-child(2) {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hd_btn_menu span:nth-child(2) {
    top: 15px;
  }
}
.hd_btn_menu span:nth-child(3) {
  top: 50%;
  margin-top: 5px;
}

.nav_wrap {
  z-index: 99;
  display: none;
  pointer-events: auto;
}
.nav_wrap:before {
  content: "";
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.nav_wrap nav {
  height: 100%;
  z-index: 100;
  transition: 0.5s;
  background: url(../../assets/img/common/hd_bg_01.webp) no-repeat center center;
  background-size: cover;
  position: fixed;
  top: 0;
  overflow-y: scroll;
}
@media screen and (min-width: 1240px) {
  .nav_wrap nav {
    width: 50%;
    right: -50%;
    padding: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .nav_wrap nav {
    width: 70%;
    right: -70%;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .nav_wrap nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .nav_wrap nav {
    width: 100%;
    right: -100%;
    padding: 100px 20px;
  }
}

@media screen and (min-width: 768px) {
  .list_nav {
    border-top: 1px solid #A5B7C7;
  }
}
@media screen and (max-width: 767px) {
  .list_nav:first-child {
    border-top: 1px solid #A5B7C7;
  }
}
.list_nav > li {
  border-bottom: 1px solid #A5B7C7;
}
.list_nav > li > a {
  position: relative;
}
@media screen and (min-width: 768px) {
  .list_nav > li > a {
    padding: 25px 50px 25px 10px;
    font-size: 18px;
    text-wrap: nowrap;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .list_nav > li > a {
    padding: 20px 40px 20px 10px;
    font-size: 16px;
  }
}
.list_nav > li > a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #12426C;
  border-radius: 5px;
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.list_nav > li > a:hover:after {
  background: #FF7F00 url(../img/common/ic_arrow_02.svg) no-repeat center center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  right: 10px;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .list_nav_s li + li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list_nav_s li + li {
    margin-top: 10px;
  }
}
.list_nav_s li:last-child {
  padding-bottom: 22px;
}
.list_nav_s a {
  position: relative;
  font-size: 14px;
  padding-left: 20px;
}
.list_nav_s a:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #A5B7C7;
  border-radius: 2.5px;
  position: absolute;
  top: 10px;
  left: 5px;
}

.list_nav_sub a {
  font-size: 12px;
}
@media screen and (min-width: 1240px) {
  .list_nav_sub li + li {
    margin-left: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .list_nav_sub li + li {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .list_nav_sub li + li {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .list_nav_sub {
    margin-top: 50px;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .list_nav_sub {
    margin-top: 20px;
  }
}

.js_open nav {
  right: 0 !important;
}
.js_open .hd_btn_menu {
  background: #FF7F00;
  z-index: 1000;
}
.js_open .hd_btn_menu span {
  box-shadow: none;
}
.js_open .hd_btn_menu span:nth-child(1) {
  margin-top: -20px;
  transform: translateY(20px) rotate(-30deg);
}
.js_open .hd_btn_menu span:nth-child(2) {
  opacity: 0;
}
.js_open .hd_btn_menu span:nth-child(3) {
  margin-top: 20px;
  transform: translateY(-20px) rotate(30deg);
}

/* --------------------------------------
FOOTER
-------------------------------------- */
footer {
  background: #12426c;
  color: #fff;
  padding: 77px 0 30px;
  position: relative;
}
footer .l_flex {
  justify-content: space-between;
}
footer .ft_nav_wrap {
  display: flex;
}
footer .ft_nav_sub_wrap {
  border-top: 1px solid #fff;
}
footer .ft_list_nav_sub {
  display: flex;
  flex-wrap: wrap;
}
footer .ft_list_nav_sub a {
  font-size: 12px;
}
footer .ft_nav_list li + li {
  margin-top: 15px;
}
footer .ft_nav_list_s a {
  padding-left: 23px;
  position: relative;
}
footer .ft_nav_list_s a:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #A5B7C7;
  border-radius: 2.5px;
  position: absolute;
  top: 10px;
  left: 5px;
}
footer .name {
  margin-top: 15px;
}
footer .address {
  margin-top: 5px;
}
footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 1239px) {
  footer .l_flex {
    display: block;
  }
  footer .ft_nav_wrap {
    margin-top: 40px;
  }
  footer .name,
  footer .address {
    font-size: 14px;
  }
  footer .copyright {
    margin-top: 20px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  footer {
    margin-top: 140px;
  }
  footer .ft_nav_list_s li {
    margin-top: 20px;
  }
  footer .ft_nav_list_s a {
    font-size: 14px;
  }
  footer .ft_list_nav_sub li {
    margin-right: 25px;
  }
  footer .ft_nav_sub_wrap {
    margin-top: 130px;
    padding-top: 20px;
  }
  footer .l_flex_pc {
    display: flex;
  }
  footer .l_flex_pc .ft_nav_list {
    margin-left: 35px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 70px;
  }
  footer .l_inner {
    max-width: 500px;
  }
  footer .ft_nav_list + .ft_nav_list {
    margin-top: 30px;
  }
  footer .ft_nav_list > li > a {
    font-size: 14px;
  }
  footer .ft_nav_list_s {
    margin-top: 10px;
  }
  footer .ft_nav_list_s a {
    font-size: 12px;
  }
  footer .ft_nav_wrap {
    justify-content: space-between;
  }
  footer .ft_nav_sub_wrap {
    margin-top: 70px;
    padding-top: 10px;
  }
  footer .ft_nav_sub_wrap li {
    margin-top: 10px;
  }
  footer .ft_list_nav_sub li {
    margin-right: 15px;
  }
  footer .copyright {
    text-align: center;
    margin-top: 20px;
  }
}

.loop-wrapper {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  opacity: 0.2;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .loop-wrapper {
    transform: translate(-50%, 12%);
  }
}
.loop-wrapper .loop-inner {
  display: inline-block;
  animation: loop 20s linear infinite;
  font-family: "EBGaramond-Regular";
  color: #ffffff;
  font-size: 140px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .loop-wrapper .loop-inner {
    font-size: 100px;
  }
}
.loop-wrapper .loop-inner span {
  display: inline-block;
  line-height: 1;
}

@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=common.css.map */