@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 1.6em;
  background: #fff;
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}
body.is--active {
  opacity: 1;
  transition: opacity 2s;
}

a {
  color: #333;
  text-decoration: none;
}
a:not([class]) {
  transition: opacity 0.4s ease;
}
a:not([class]):hover {
  opacity: 0.7;
}

.is--tab {
  display: none;
}

.is--sp {
  display: none;
}

@media only screen and (max-width: 980px) {
  .is--tab {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.5em;
  }
  a:not([class]):hover {
    opacity: 1;
  }
  .is--pc {
    display: none;
  }
  .is--sp {
    display: block;
  }
}
/*------------------------------------------
  layout
------------------------------------------*/
.l-wrapper {
  position: relative;
  overflow: hidden;
}
.l-wrapper:before {
  content: "";
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, white 0%, #585858 45%, black 100%);
  mix-blend-mode: multiply;
  z-index: 999;
  transition: transform 0.6s 0.3s;
}

body.is--header-hidden .l-wrapper:before {
  transform: translateY(-90px);
}

@media only screen and (max-width: 980px) {
  .l-wrapper:before {
    height: 62px;
  }
  body.is--header-hidden .l-wrapper:before {
    transform: translateY(-62px);
  }
}
.l-main {
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .l-main {
    padding-bottom: 60px;
  }
}
[class*=l-inner] {
  position: relative;
  padding: 0 20px;
  margin: auto;
}

.l-inner--s {
  max-width: 840px;
}
.l-inner--m {
  max-width: 940px;
}
.l-inner--l {
  max-width: 1120px;
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== btn ========== */
.c-btn01 {
  display: inline-block;
  position: relative;
  width: 253px;
  max-width: 100%;
  font-size: 1.6rem;
  text-align: center;
}
.c-btn01:before, .c-btn01:after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  transition: 0.4s;
  box-sizing: border-box;
}
.c-btn01:before {
  top: 0;
  left: 0;
  border-top: 1px solid #DAC227;
  border-left: 1px solid #DAC227;
}
.c-btn01:after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #DAC227;
  border-right: 1px solid #DAC227;
}
.c-btn01:hover:before {
  top: 5px;
  left: 5px;
}
.c-btn01:hover:after {
  bottom: 5px;
  right: 5px;
}
.c-btn01__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 53px;
}
.c-btn01.black {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.c-btn01.white {
  background: #fff;
}
.c-btn01 .ico {
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
  background-position: center right;
}
.c-btn01 .ico--link {
  padding-right: 23px;
  background-image: url(../images/common/ico-link.svg);
  background-size: 17px;
}

@media only screen and (max-width: 767px) {
  .c-btn01:hover:before {
    top: 0;
    left: 0;
  }
  .c-btn01:hover:after {
    bottom: 0;
    right: 0;
  }
}
.c-btn02 {
  display: inline-block;
  position: relative;
  text-align: right;
}
.c-btn02__inner {
  display: inline-block;
  position: relative;
  padding: 0 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding-bottom: 10px;
  border-bottom: 1px solid #DAC227;
  transition: 0.4s;
}
.c-btn02__inner span {
  position: relative;
  padding-right: 15px;
}
.c-btn02__inner span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #DAC227;
  border-right: 2px solid #DAC227;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 2px;
  top: 50%;
  margin-top: 1px;
}
.c-btn02__inner:hover {
  padding-left: 28px;
  padding-right: 0;
}

@media only screen and (max-width: 767px) {
  .c-btn02__inner {
    padding: 0 5px 5px;
    letter-spacing: 0;
  }
  .c-btn02__inner span {
    padding-right: 11px;
  }
  .c-btn02__inner:hover {
    padding: 0 5px 5px;
  }
}
/* ========== ttl ========== */
.c-ttl01 {
  text-align: center;
  position: relative;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
}
.c-ttl01:after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
  background: linear-gradient(90deg, #e8ce80 0%, #dac227 35%, #b5aa66 85%, #b3a56f 100%);
}

@media only screen and (max-width: 767px) {
  .c-ttl01 {
    font-size: 2.2rem;
    padding-bottom: 8px;
  }
  .c-ttl01:after {
    width: 60px;
    margin-left: -30px;
  }
}
.c-ttl02 {
  text-align: center;
  position: relative;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
}
.c-ttl02:after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
  background: linear-gradient(90deg, #e8ce80 0%, #dac227 35%, #b5aa66 85%, #b3a56f 100%);
}

@media only screen and (max-width: 767px) {
  .c-ttl02 {
    font-size: 2.6rem;
    padding-bottom: 8px;
  }
  .c-ttl02:after {
    width: 60px;
    margin-left: -30px;
  }
}
/* ========== list ========== */
.c-list01 {
  border-top: 1px solid #CCCCCC;
}
.c-list01 li {
  border-bottom: 1px solid #CCCCCC;
}
.c-list01 .item-inner {
  display: flex;
  padding: 1.25em;
  letter-spacing: 0.05em;
}
.c-list01 .item-date {
  width: 115px;
}
.c-list01 .item-ttl {
  width: calc(100% - 115px);
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .c-list01 .item-inner {
    display: block;
    padding: 1em 0;
  }
  .c-list01 .item-date {
    width: 100%;
    margin-bottom: 5px;
  }
  .c-list01 .item-ttl {
    width: 100%;
  }
}
.c-list02 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 50px 3.5%;
}
.c-list02 .list-item {
  display: block;
  width: 31%;
}
.c-list02 .list-item__img {
  margin-bottom: 15px;
  max-height: 222px;
  height: 18.75vw;
}
.c-list02 .list-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-list02 .list-item__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.c-list02 .list-item__more {
  margin-top: 20px;
  text-align: right;
}
.c-list02 .list-item .item-sub {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.c-list02 .list-item .item-ttl {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.c-list02 .list-item .item-date {
  font-size: 1.4rem;
  margin-bottom: 1em;
}
.c-list02 .list-item .item-lead {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-list02 .list-item .item-more {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #DAC227;
  width: 110px;
  padding-bottom: 10px;
  padding-right: 10px;
  transition: 0.4s;
}
.c-list02 .list-item .item-more span {
  display: inline-block;
  padding-right: 15px;
  position: relative;
}
.c-list02 .list-item .item-more span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #DAC227;
  border-right: 1px solid #DAC227;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 0;
  top: 50%;
}
.c-list02 .list-item:hover .item-more {
  padding-right: 0;
}

@media only screen and (max-width: 767px) {
  .c-list02 {
    gap: 30px 0;
  }
  .c-list02 .list-item {
    width: 100%;
  }
  .c-list02 .list-item__img {
    max-height: none;
    height: 59.7333333333vw;
  }
  .c-list02 .list-item__more {
    margin-top: 20px;
    text-align: right;
  }
  .c-list02 .list-item .item-sub {
    font-size: 1.4rem;
  }
  .c-list02 .list-item .item-ttl {
    margin-bottom: 0.5em;
  }
  .c-list02 .list-item .item-date {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
  .c-list02 .list-item .item-lead {
    line-height: 1.6;
  }
  .c-list02 .list-item:hover .item-more {
    padding-right: 10px;
  }
}
.c-list03 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 60px 3.5%;
}
.c-list03 .list-item {
  display: block;
  width: 31%;
}
.c-list03 .list-item__img {
  margin-bottom: 20px;
  max-height: 200px;
  height: 17.1875vw;
}
.c-list03 .list-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-list03 .list-item__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.c-list03 .list-item__more {
  margin-top: 15px;
  text-align: right;
}
.c-list03 .list-item .item-head {
  gap: 10px 15px;
  margin-bottom: 15px;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  align-items: center;
}
.c-list03 .list-item .item-head__category {
  background: #001E4D;
  color: #fff;
  font-size: 1.4rem;
  padding: 3px 1.5em;
}
.c-list03 .list-item .item-head__date {
  font-size: 1.4rem;
}
.c-list03 .list-item .item-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.c-list03 .list-item .item-lead {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-list03 .list-item .item-more {
  display: inline-block;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #DAC227;
  width: 110px;
  padding-bottom: 10px;
  padding-right: 10px;
  transition: 0.4s;
}
.c-list03 .list-item .item-more span {
  display: inline-block;
  padding-right: 15px;
  position: relative;
}
.c-list03 .list-item .item-more span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #DAC227;
  border-right: 1px solid #DAC227;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 0;
  top: 50%;
}
.c-list03 .list-item:hover .item-more {
  padding-right: 0;
}

@media only screen and (max-width: 767px) {
  .c-list03 {
    gap: 30px 0;
  }
  .c-list03 .list-item {
    width: 100%;
  }
  .c-list03 .list-item__img {
    max-height: none;
    height: 53.8666666667vw;
  }
  .c-list03 .list-item .item-ttl {
    margin-bottom: 10px;
  }
  .c-list03 .list-item:hover .item-more {
    padding-right: 10px;
  }
}
.c-list04 .list-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
.c-list04 .list-item:last-child {
  margin-bottom: 0;
}
.c-list04 .list-item__img {
  width: 42%;
  max-height: 141px;
  height: 15.625vw;
}
.c-list04 .list-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-list04 .list-item__txt {
  width: 55%;
  margin-left: auto;
}
.c-list04 .list-item a {
  display: flex;
}
.c-list04 .list-item .item-ttl {
  font-size: 1.8rem;
}
.c-list04 .list-item .item-date {
  font-size: 1.4rem;
  margin-top: 1em;
}

@media only screen and (max-width: 767px) {
  .c-list04 .list-item {
    margin-bottom: 20px;
  }
  .c-list04 .list-item__img {
    width: 45%;
    max-height: none;
    height: 26.6666666667vw;
  }
  .c-list04 .list-item__txt {
    width: 51%;
  }
  .c-list04 .list-item .item-ttl {
    font-size: 1.5rem;
  }
  .c-list04 .list-item .item-date {
    font-size: 1.3rem;
  }
}
.c-list05 {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 15px 4%;
}
.c-list05 .list-item {
  width: 48%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  border: 1px solid #CBCBCB;
  border-radius: 4px;
  transition: 0.4s;
}
.c-list05 .list-item span {
  display: flex;
  height: 50px;
  padding: 0 0.5em;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
}
.c-list05 .list-item:hover {
  background: #CBCBCB;
  border-color: rgba(203, 203, 203, 0.2);
}

@media only screen and (max-width: 767px) {
  .c-list05 .list-item:hover {
    background: #fff;
    border-color: #CBCBCB;
  }
}
/* ========== nav ========== */
.c-nav01 {
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 600px;
  margin: auto;
  text-align: center;
  gap: 15px 0;
  justify-content: center;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.c-nav01 li {
  width: 140px;
  border-right: 1px solid #A5A5A5;
}
.c-nav01 li:first-child {
  border-left: 1px solid #A5A5A5;
}
.c-nav01 a {
  display: block;
  transition: background 0.4s;
}
.c-nav01 a:hover {
  background: rgba(218, 194, 39, 0.4);
}

@media only screen and (max-width: 767px) {
  .c-nav01 {
    font-size: 1.5rem;
  }
  .c-nav01 li {
    width: 33.333%;
  }
  .c-nav01 a:hover {
    background: none;
  }
}
.c-nav02 {
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 600px;
  margin: auto;
}
.c-nav02__label {
  display: none;
}
.c-nav02__list ul {
  text-align: center;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 15px 0;
  justify-content: center;
}
.c-nav02__list li {
  width: 16.666%;
  border-right: 1px solid #A5A5A5;
}
.c-nav02__list li:nth-child(6n+1) {
  border-left: 1px solid #A5A5A5;
}
.c-nav02__list a {
  display: block;
  transition: background 0.4s;
}
.c-nav02__list a:hover {
  background: rgba(218, 194, 39, 0.4);
}
.c-nav02__list a.current {
  background: rgba(218, 194, 39, 0.4);
}

@media only screen and (min-width: 768px) {
  .c-nav02__list {
    display: block !important;
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-nav02 {
    font-size: 1.5rem;
    background: #fff;
    border: 1px solid #DAC227;
    border-radius: 4px;
    padding: 12px 20px;
  }
  .c-nav02.is--active {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
  .c-nav02__label {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
  }
  .c-nav02__label span {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    transition: transform 0.3s;
  }
  .c-nav02__label span:before, .c-nav02__label span:after {
    content: "";
    background: #A5A5A5;
    position: absolute;
  }
  .c-nav02__label span:before {
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    margin-top: -1px;
  }
  .c-nav02__label span:after {
    width: 2px;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    top: 0;
  }
  .c-nav02__label.is--active span {
    transform: translateY(-50%) rotate(45deg);
  }
  .c-nav02__list {
    display: none;
    padding: 20px 0 10px;
  }
  .c-nav02__list ul {
    gap: 20px 6.666%;
  }
  .c-nav02__list li {
    width: 20%;
    border-right: none;
    border-bottom: 1px solid #DAC227;
  }
  .c-nav02__list li:nth-child(6n+1) {
    border-left: none;
  }
  .c-nav02__list a {
    padding-bottom: 4px;
  }
  .c-nav02__list a:hover {
    background: none;
  }
}
/* ========== ページャー ========== */
.c-pager .screen-reader-text {
  display: none;
}
.c-pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
}
.c-pager .nav-links a, .c-pager .nav-links span {
  color: #98A6B5;
  width: 34px;
  text-align: center;
  line-height: 34px;
}
.c-pager .nav-links .current {
  color: #001E4D;
  font-weight: 700;
}
.c-pager .nav-links .prev, .c-pager .nav-links .next {
  width: 50px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.c-pager .nav-links .prev {
  margin-right: 22px;
  background-image: url(../images/common/btn-prev02.svg);
}
.c-pager .nav-links .next {
  margin-left: 22px;
  background-image: url(../images/common/btn-next02.svg);
}

/* ========== iframe ========== */
.c-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ========== Swiper ========== */
.c-slide-pagination {
  display: flex;
  margin-top: 30px;
}
.c-slide-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: auto;
  height: 3px;
  flex: 1;
  border-radius: 0;
  background: #fff;
  opacity: 1;
}
.c-slide-pagination .swiper-pagination-bullet-active {
  background: #DAC227;
}

.c-slide-button {
  margin-top: 20px;
  display: flex;
  gap: 0 20px;
  justify-content: center;
}
.c-slide-button div {
  width: 44px;
  height: 44px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: opacity 0.4s;
}
.c-slide-button div:hover {
  opacity: 0.7;
}
.c-slide-button .slide-button-next {
  background-image: url(../images/common/btn-next01.svg);
}
.c-slide-button .slide-button-prev {
  background-image: url(../images/common/btn-prev01.svg);
}

@media only screen and (max-width: 767px) {
  .c-slide-button {
    margin-top: 35px;
  }
}
/* ========== animation ========== */
.fadeIn {
  opacity: 0;
}
.fadeIn.js-scr-active {
  opacity: 1;
  transition: 1s;
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
  color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.6s 0.3s;
}
.l-header__inner {
  position: relative;
  padding: 0 clamp(15px, 2.34375vw, 30px);
  height: 84px;
  display: flex;
  align-items: center;
}
.l-header a {
  display: block;
}
.l-header .header-logo {
  width: clamp(75px, 11.71875vw, 150px);
}
.l-header .header-logo img {
  width: 100%;
}
.l-header .header-sns {
  display: none;
}
.l-header .header-sns img {
  width: 34px;
}
.l-header .header-trigger {
  display: none;
}
.l-header .header-contents {
  margin-left: auto;
}

body.is--header-hidden .l-header {
  transform: translateY(-84px);
}

@media only screen and (min-width: 981px) {
  .js-headerContents {
    display: block !important;
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 980px) {
  .l-header__inner {
    padding: 0 73px 0 10px;
    height: 60px;
  }
  .l-header .header-logo {
    width: 121px;
    padding-top: 3px;
  }
  .l-header .header-logo--tab {
    text-align: center;
  }
  .l-header .header-logo--tab img {
    width: 134px;
  }
  .l-header .header-sns {
    display: flex;
    margin-left: auto;
  }
  .l-header .header-trigger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s;
    cursor: pointer;
    z-index: 100;
  }
  .l-header .header-trigger__icon {
    width: 26px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-header .header-trigger span {
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: 0.4s;
  }
  .l-header .header-trigger span:nth-child(1) {
    top: 0;
  }
  .l-header .header-trigger span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .l-header .header-trigger span:nth-child(3) {
    bottom: 0;
  }
  .l-header .header-trigger.is--active {
    background: none;
  }
  .l-header .header-trigger.is--active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 50%;
    margin-top: -1px;
  }
  .l-header .header-trigger.is--active span:nth-child(2) {
    opacity: 0;
  }
  .l-header .header-trigger.is--active span:nth-child(3) {
    transform: rotate(45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
  .l-header .header-contents {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    -ms-overflow-y: auto;
    overflow-y: auto;
    background: #001E4D;
    max-width: 375px;
  }
  .l-header .header-contents__inner {
    padding: 76px 20px 40px;
  }
  body.is--header-hidden .l-header {
    transform: translateY(-60px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header .header-contents {
    max-width: 100%;
  }
}
.global-nav {
  display: flex;
  gap: 0 20px;
}
.global-nav a {
  color: #fff;
  position: relative;
}
.global-nav__main {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.global-nav__main a {
  padding: 0.3em 0;
}
.global-nav__main a:after {
  content: "";
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.4s;
}
.global-nav__main a:hover {
  opacity: 1;
}
.global-nav__main a:hover:after {
  opacity: 1;
}
.global-nav__sub {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.global-nav__sub .c-btn01 {
  width: 153px;
}
.global-nav__sub .c-btn01__inner {
  height: 51px;
}

@media only screen and (max-width: 980px) {
  .global-nav {
    display: block;
  }
  .global-nav .is--pc {
    display: none;
  }
  .global-nav__main {
    display: block;
    margin-bottom: 30px;
  }
  .global-nav__main li {
    border-bottom: 1px solid #fff;
  }
  .global-nav__main li ul {
    border-top: 1px solid #fff;
  }
  .global-nav__main li ul li:last-child {
    border-bottom: none;
  }
  .global-nav__main a {
    padding: 0.7em 0.5em;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
  }
  .global-nav__main a:after {
    content: none;
  }
  .global-nav__main a:before {
    content: "";
    width: 10px;
    height: 18px;
    position: absolute;
    right: 11px;
    top: 50%;
    margin-top: -9px;
    background: url(../images/common/arrow-r01.svg) no-repeat center;
    background-size: 100%;
  }
  .global-nav__sub {
    justify-content: center;
    margin-bottom: 25px;
  }
  .global-nav__sub img {
    width: auto;
    height: 37px;
  }
  .global-nav__bnr {
    margin-bottom: 35px;
  }
}
/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
  background: #001E4D url(../images/common/footer-bg.webp) no-repeat center bottom;
  background-size: 100%;
  color: #fff;
  position: relative;
  padding: 65px 0 50px;
}
.l-footer a {
  color: #fff;
  display: block;
}
.l-footer__inner {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.l-footer .footer-info__logo img {
  width: 170px;
}
.l-footer .footer-info__address {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin: 1em 0 1.5em;
}
.l-footer .footer-info__sns {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.l-footer .footer-info__sns img {
  width: auto;
  height: 37px;
}
.l-footer .footer-guide {
  width: 374px;
  margin-left: auto;
}
.l-footer .footer-guide__nav {
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}
.l-footer .footer-guide__nav > ul {
  width: 30%;
}
.l-footer .footer-guide__nav > ul ul {
  padding-left: 1em;
  margin-top: 5px;
}
.l-footer .footer-guide__nav li {
  margin-bottom: 5px;
}
.l-footer .footer-guide__bnr {
  margin-top: 35px;
}
.l-footer .footer-guide__bnr a {
  position: relative;
}
.l-footer .footer-guide__bnr a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.l-footer .footer-guide__bnr a:hover {
  opacity: 1;
}
.l-footer .footer-guide__bnr a:hover:before {
  opacity: 1;
}
.l-footer .footer-copy {
  width: 100%;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 1em;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 30px 0 20px;
  }
  .l-footer .footer-info {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .l-footer .footer-info__logo img {
    width: 134px;
  }
  .l-footer .footer-info__address {
    margin-bottom: 1em;
  }
  .l-footer .footer-info__sns {
    justify-content: center;
  }
  .l-footer .footer-guide {
    width: 100%;
  }
  .l-footer .footer-guide__nav {
    display: none;
  }
  .l-footer .footer-guide__bnr {
    margin-top: 0;
    text-align: center;
  }
  .l-footer .footer-guide__bnr a:before {
    content: none;
  }
  .l-footer .footer-guide__bnr img {
    width: 400px;
  }
  .l-footer .footer-copy {
    text-align: center;
  }
}
.fixed-pagetop {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
}
.fixed-pagetop a {
  display: block;
  transition: opacity 0.4s;
}
.fixed-pagetop a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .fixed-pagetop {
    bottom: 15px;
    right: 10px;
  }
  .fixed-pagetop a:hover {
    opacity: 1;
  }
  .fixed-pagetop img {
    width: 48px;
  }
}
/*------------------------------------------
  project
------------------------------------------*/
section {
  position: relative;
}

.bg-green {
  position: relative;
  background-color: #fff;
  background-image: url(../images/common/patt01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-green:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(218, 194, 39, 0.17);
  mix-blend-mode: multiply;
}

/* ========== 共通セクション ========== */
.p-common {
  padding: 90px 0;
}
.p-common.no-head {
  padding-top: 190px;
}
.p-common:last-child {
  padding-bottom: 0;
}
.p-common__head {
  margin-bottom: 50px;
}
.p-common__head .head-lead {
  line-height: 2;
  font-weight: 400;
  max-width: 720px;
  margin: 40px auto 0;
}
.p-common .cmn-more {
  text-align: center;
  margin-top: 70px;
}

@media only screen and (max-width: 767px) {
  .p-common {
    padding: 50px 0 60px;
  }
  .p-common.no-head {
    padding-top: 106px;
  }
  .p-common__head {
    margin-bottom: 40px;
  }
  .p-common__head .head-lead {
    margin-top: 30px;
    line-height: 1.6;
  }
  .p-common .cmn-more {
    margin-top: 35px;
  }
}
/* ========== 投稿一覧 ========== */
.p-postlist .postlist-label {
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.p-postlist .postlist-pager {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .p-postlist .postlist-label {
    margin-bottom: 15px;
  }
  .p-postlist .postlist-pager {
    margin-top: 40px;
  }
}
/* ========== 投稿詳細 ========== */
.p-post {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.p-post__head {
  margin-bottom: 50px;
}
.p-post .post-ttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.p-post .post-date {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.p-post .post-category {
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.p-post .post-category span {
  display: inline-block;
  background: #001E4D;
  color: #fff;
  padding: 2px 2em 3px;
}
.p-post__contents {
  font-size: 1.8rem;
  line-height: 2;
}
.p-post__contents > * {
  margin-bottom: 50px;
}
.p-post__contents > *:last-child {
  margin-bottom: 0;
}
.p-post__contents img {
  height: auto;
}
.p-post__contents a {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .p-post__head {
    margin-bottom: 35px;
  }
  .p-post .post-ttl {
    font-size: 2rem;
  }
  .p-post .post-date {
    font-size: 1.5rem;
  }
  .p-post .post-category {
    font-size: 1.4rem;
  }
  .p-post__contents {
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .p-post__contents > * {
    margin-bottom: 30px;
  }
}
.p-postfoot {
  margin-top: 90px;
}
.p-postfoot__contents {
  padding: 90px 0 0;
  border-top: 1px solid #CBCBCB;
  display: -moz-flex;
  display: flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}
.p-postfoot .postfoot-block:first-child {
  width: 57%;
}
.p-postfoot .postfoot-block:last-child {
  width: 35%;
  margin-left: auto;
}
.p-postfoot .postfoot-block__ttl {
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 767px) {
  .p-postfoot {
    margin-top: 40px;
  }
  .p-postfoot__contents {
    padding: 40px 0 0;
    gap: 35px 0;
  }
  .p-postfoot .postfoot-block:first-child {
    width: 100%;
  }
  .p-postfoot .postfoot-block:last-child {
    width: 100%;
  }
  .p-postfoot .postfoot-block__ttl {
    font-size: 1.5rem;
  }
}
/* ========== お問い合わせ ========== */
.p-contact {
  padding: 80px 0 75px;
  text-align: center;
  color: #fff;
  background: url(../images/common/contact-bg.webp) no-repeat center;
  background-size: cover;
}
.p-contact__head {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.p-contact .contact-ttl {
  font-size: 3rem;
}
.p-contact .contact-lead {
  font-size: 2rem;
  margin-top: 1em;
}
.p-contact .contact-tel {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.p-contact .contact-tel__num {
  font-size: 2.8rem;
}
.p-contact .contact-tel__num a {
  color: #fff;
}
.p-contact .contact-tel__txt {
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .p-contact {
    padding: 50px 0;
  }
  .p-contact__head {
    margin-bottom: 15px;
  }
  .p-contact .contact-ttl {
    font-size: 2.6rem;
  }
  .p-contact .contact-lead {
    font-size: 1.8rem;
  }
  .p-contact .contact-tel__txt {
    font-size: 1.6rem;
  }
}
/* ========== hoge ========== */