@charset "UTF-8";
/*reset*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 7;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*
font-family: $en_font;
font-family: 'IBM Plex Sans JP', sans-serif;
 "source-han-sans-japanese"

Source Han Serif JP Light
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 300;
font-style: normal;
Source Han Serif JP Regular
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 400;
font-style: normal;
Source Han Serif JP Bold
font-family: "source-han-serif-jp-subset", sans-serif;
font-weight: 700;
font-style: normal;

*/
figure {
  margin: 0;
}

html {
  scroll-padding-top: 160px;
}

html, body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: normal;
  color: #000;
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 896px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
img {
  width: 100%;
  height: auto;
}

::-moz-selection {
  background: #333333;
  color: #fff;
}

::selection {
  background: #333333;
  color: #fff;
}

::-moz-selection {
  background: #ccc;
  color: #fff;
}

body.menu_open {
  overflow: hidden;
}

@media (max-width: 896px) {
  .cookie-notice-container #cn-notice-buttons,
  .cookie-notice-container #cn-notice-text {
    display: block;
    text-align: left;
  }
}
/*----------------------------------------------------
 link
--------------------------------------------------- */
a:link, a:visited, a:active {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  text-decoration: none;
}

@keyframes btn_arrow_hb {
  0% {
    transform: translate(0%, 0px);
  }
  50% {
    transform: translate(200%, 0px);
  }
  50.1% {
    transform: translate(-200%, 0px);
  }
  100% {
    transform: translate(0%, 0px);
  }
}
/*----------------------------------------------------
  .scrollview
--------------------------------------------------- */
.scrollview, .fade_up {
  opacity: 0;
  transform: scale(1, 1) translate(0%, 20px);
}

.scrollview.view, .fade_up.js-fade_up_view {
  opacity: 1;
  transition: all 0.6s 0.1s ease;
  transform: scale(1, 1) translate(0%, 0%);
}

/*----------------------------------------------------
  .lazyload
--------------------------------------------------- */
.lazyload_set span, .lazyload_set img {
  opacity: 0;
}
.lazyload_set span.lazyloaded, .lazyload_set img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}

/*----------------------------------------------------
  .block_header
--------------------------------------------------- */
.block_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0 10px;
  transition: all 0.5s 0s ease;
}
body.page_scroll .block_header .inner {
  margin-top: 10px;
}

.block_header .inner {
  transition: all 0.5s 0s ease;
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  background: #FFF;
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 896px) {
  .block_header .inner {
    padding: 10px 5vw;
  }
}
.block_header .inner .logo {
  padding: 15px 20px;
}
.block_header .inner .logo a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.block_header .inner ul.menu {
  background: #fff600;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  line-height: 1;
}
.block_header .inner ul.menu li {
  padding: 0px 15px;
}
.block_header .inner ul.menu li a {
  display: block;
  font-size: 16px;
  padding: 15px 0px;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  position: relative;
}
.block_header .inner ul.menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0px;
  background: #333;
  transition: all 0.3s 0s ease;
}
.block_header .inner ul.menu li a.active:after, .block_header .inner ul.menu li a:hover:after {
  height: 4px;
}
.block_header .inner .contact {
  position: absolute;
  top: 10px;
  right: 20px;
}
.block_header .inner .contact a {
  display: block;
  background: #333;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 40px;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 10px;
}
.block_header .inner ul.sub_menu {
  position: absolute;
  top: 15px;
  right: 200px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_header .inner ul.sub_menu li {
  margin-left: 4px;
}
.block_header .inner ul.sub_menu li a {
  display: block;
  box-sizing: border-box;
  border: 1px #ccc solid;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: 50px;
}

/*----------------------------------------------------
  .sp_menu
--------------------------------------------------- */
.block_navi a {
  position: fixed;
  display: none;
  z-index: 60;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 3px #000 solid;
  background: #fff600;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 896px) {
  .block_navi a {
    display: block;
  }
}
.block_navi a .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  overflow: hidden;
  transition: all 0.4s 0s ease;
}
.block_navi a span.l1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: -6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 0px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}
.block_navi a span.l3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin-top: 6px;
  margin-left: -15px;
  background: #000;
  transform-origin: center center;
}

body.menu_open .block_navi a span.l1 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(45deg);
}
body.menu_open .block_navi a span.l2 {
  margin-top: 0px;
  transform: scale3d(0, 1, 1) translate(0px, 0px) rotate(0deg);
}
body.menu_open .block_navi a span.l3 {
  margin-top: 0px;
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-45deg);
}

/*----------------------------------------------------
  .block_sp_menu
--------------------------------------------------- */
.menu_bg {
  display: block;
  position: fixed;
  top: 0%;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  display: none;
}

body.menu_open .menu_bg, body.bg_bk .menu_bg {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0%);
}

.block_sp_menu {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  opacity: 0;
  background: #fff600;
  visibility: hidden;
  transition: all 0.4s 0s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body.menu_open .block_sp_menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0px);
}

.block_sp_menu .inner {
  padding: 10px 5vw 50px 5vw;
}
.block_sp_menu .inner .logo {
  width: 160px;
  margin-bottom: 20px;
}
.block_sp_menu .inner ul.menu > li {
  display: block;
  position: relative;
  border-bottom: 1px #000 solid;
}
.block_sp_menu .inner ul.menu > li > a {
  display: block;
  padding: 24px 0 24px 0;
  transition: all 0.4s 0s ease;
  color: #000;
  line-height: 1;
  letter-spacing: 0.05em;
  background: url(../img/common/arrow_next2.svg) no-repeat 95% center;
  background-size: 15px;
}
.block_sp_menu .inner ul.menu > li > a span {
  display: block;
}
.block_sp_menu .inner ul.menu > li > a span.t {
  font-size: 16px;
  font-family: "M PLUS Rounded 1c", "Noto Serif JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 700;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu {
  padding-left: 20px;
  padding-bottom: 10px;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li {
  padding: 5px 0;
  border-top: 1px #000 dotted;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li:last-child {
  border-bottom: none;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a {
  display: block;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s 0s ease;
  padding: 5px 0px;
  background: url(../img/common/arrow_next2.svg) no-repeat 95% center;
  background-size: 15px;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a .date {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  color: #fff600;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li a .place {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none {
  display: block;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.2s 0s ease;
  padding: 5px 0px;
  opacity: 0.5;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none .date {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 15px;
  margin-right: 10px;
  font-weight: 700;
  display: inline-block;
  color: #000;
}
.block_sp_menu .inner ul.menu > li ul.sub_menu li .none .place {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
}
.block_sp_menu .inner ul.sns {
  margin-top: 20px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_sp_menu .inner ul.sns li {
  margin-right: 4px;
}
.block_sp_menu .inner ul.sns li:last-child {
  margin-right: 0px;
}
.block_sp_menu .inner ul.sns li.is a {
  background: #CF2E92;
}
.block_sp_menu .inner ul.sns li.is a svg {
  fill: #FFF;
}
.block_sp_menu .inner ul.sns li.fb a {
  background: #1877f2;
}
.block_sp_menu .inner ul.sns li.fb a svg {
  fill: #FFF;
}
.block_sp_menu .inner ul.sns li.tw a {
  background: #000;
}
.block_sp_menu .inner ul.sns li.tw a svg {
  fill: #FFF;
  width: 20px;
}
.block_sp_menu .inner ul.sns li a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* center  center  space-between */
  align-items: center; /* flex-start  center  */
  width: 35px;
  height: 35px;
  border-radius: 35px;
  background: #fff600;
  transition: all 0.2s 0s ease;
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2);
}
.block_sp_menu .inner ul.sns li a svg {
  width: 15px;
  height: auto;
  fill: #000;
}
.block_sp_menu .inner ul.sns li a:hover {
  background: #fff600;
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
}
.swiper-button-next, .swiper-button-prev {
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  margin-top: 0;
  transform: translate(0px, -50%);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f5;
}
@media (max-width: 896px) {
  .swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
.swiper-button-next, .swiper-button-prev {
  transition: all 0.5s 0s ease;
}

.swiper-button-next {
  right: 5vw;
  left: auto;
  border: 1px #000 solid;
  background: #fff600 url(../img/common/arrow_next2.svg) no-repeat center center;
  background-size: 25px;
}
.swiper-button-next:hover {
  background: #fff600 url(../img/common/arrow_next2.svg) no-repeat center center;
  background-size: 25px;
}
@media (max-width: 896px) {
  .swiper-button-next {
    right: 2vw;
    border: 1px #000 solid;
    background: #fff600 url(../img/common/arrow_next2.svg) no-repeat center center;
    background-size: 15px;
  }
  .swiper-button-next:hover {
    background: #fff600 url(../img/common/arrow_next2.svg) no-repeat center center;
    background-size: 15px;
  }
}

.swiper-button-prev {
  left: 5vw;
  right: auto;
  border: 1px #000 solid;
  background: #fff600 url(../img/common/arrow_prev2.svg) no-repeat center center;
  background-size: 25px;
}
.swiper-button-prev:hover {
  background: #fff600 url(../img/common/arrow_prev2.svg) no-repeat center center;
  background-size: 25px;
}
@media (max-width: 896px) {
  .swiper-button-prev {
    left: 2vw;
    border: 1px #000 solid;
    background: #fff600 url(../img/common/arrow_prev2.svg) no-repeat center center;
    background-size: 15px;
  }
  .swiper-button-prev:hover {
    background: #fff600 url(../img/common/arrow_prev2.svg) no-repeat center center;
    background-size: 15px;
  }
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.more_btn a {
  display: inline-block;
  position: relative;
  padding: 20px 60px 20px 20px;
  line-height: 1;
  background: #fff600;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.5s 0s ease;
}
.more_btn a:hover {
  background: #333;
  color: #FFF;
}
.more_btn a:hover svg {
  right: 5px;
  fill: #FFF;
}
.more_btn a .t {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 896px) {
  .more_btn a .t {
    font-size: 14px;
  }
}
.more_btn a svg {
  transition: all 0.3s 0s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
}

/*----------------------------------------------------
  .block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.block_mainvisual .slide_area {
  overflow: hidden;
  height: 600px;
}
.block_mainvisual .slide_area .column {
  position: relative;
  height: 600px;
}
.block_mainvisual .slide_area .column figure {
  height: 600px;
}
.block_mainvisual .slide_area .column figure .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 896px) {
  .block_mainvisual .slide_area .column figure .img_wrap {
    padding-top: 75%;
  }
}
.block_mainvisual .slide_area .column figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_mainvisual .slide_area .column figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_mainvisual .slide_area .swiper-slide-active .img_wrap,
.block_mainvisual .slide_area .swiper-slide-duplicate-active .img_wrap,
.block_mainvisual .slide_area .swiper-slide-prev .img_wrap {
  animation: zoomUp 7s linear 0s normal both;
}
.block_mainvisual .textarea {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  margin-top: 80px;
}
.block_mainvisual .textarea .copy {
  font-size: 48px;
  letter-spacing: 0.05em;
}
.block_mainvisual .textarea .en {
  margin-top: 20px;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}
.block_mainvisual .textarea p {
  margin-top: 40px;
  font-size: 16px;
}

/*----------------------------------------------------
  .block_about
--------------------------------------------------- */
.block_about {
  background: #fff600;
  padding: 80px 10px;
}
.block_about .inner {
  margin: 0 auto;
  max-width: 1280px;
}
.block_about .inner .en_title {
  text-align: center;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}
.block_about .inner .lead {
  margin-top: 20px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
.block_about .inner .more_btn {
  margin-top: 50px;
  text-align: center;
}
.block_about .inner .more_btn a {
  background: #333;
  color: #fff600;
}
.block_about .inner .more_btn a svg {
  fill: #fff600;
}
.block_about .inner .more_btn a:hover {
  background: #fff600;
  color: #333;
}
.block_about .inner .more_btn a:hover svg {
  fill: #333;
}

/*----------------------------------------------------
  .block_contents
--------------------------------------------------- */
.block_contents {
  padding: 80px 20px;
}
.block_contents.bg_white {
  background: #FFF;
}
.block_contents.bg_yellow {
  background: #fff600;
}
.block_contents#activity {
  padding: 80px 0;
}
body.page .block_contents {
  padding-top: 200px;
}

.block_contents .inner {
  margin: 0 auto;
  max-width: 1100px;
}
.block_contents .en_title {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}
.block_contents .lead {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 600;
}
.block_contents .exp {
  margin-top: 20px;
  font-size: 14px;
}
.block_contents .img_list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_contents .img_list .column {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.block_contents .img_list .column:nth-child(2n) {
  margin-right: 0;
}
.block_contents .img_list .column figure {
  position: relative;
}
.block_contents .img_list .column figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.block_contents .img_list .column figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_contents .img_list .column figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .img_list .column figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .img_list .column .textarea {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: calc(100% - 80px);
  color: #FFF;
}
.block_contents .img_list .column .textarea .c_title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.block_contents .img_list .column .textarea p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 10px;
  font-weight: 600;
}
.block_contents .img_list .column .textarea .btn {
  margin-top: 20px;
  display: inline-block;
  position: relative;
  padding: 20px 60px 20px 20px;
  line-height: 1;
  background: #fff600;
  color: #000;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.5s 0s ease;
}
.block_contents .img_list .column .textarea .btn .t {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_contents .img_list .column .textarea .btn .t {
    font-size: 14px;
  }
}
.block_contents .img_list .column .textarea .btn svg {
  transition: all 0.3s 0s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
}
.block_contents .slide_area {
  position: relative;
  overflow: hidden;
}
.block_contents .slide_area .en_title {
  margin-left: 80px;
}
.block_contents .slide_area .lead {
  margin-left: 80px;
}
.block_contents .slide_area .swiper-button-next {
  top: 80px;
}
.block_contents .slide_area .swiper-button-prev {
  top: 80px;
  left: auto;
  right: 160px;
}
.block_contents .slide_area .more_btn {
  margin-top: 40px;
  margin-left: 80px;
}
.block_contents .slide_area .more_btn a {
  background: #333;
  color: #fff600;
}
.block_contents .slide_area .more_btn a svg {
  fill: #fff600;
}
.block_contents .slide_area .more_btn a:hover {
  background: #fff600;
  color: #333;
}
.block_contents .slide_area .more_btn a:hover svg {
  fill: #333;
}
.block_contents .slide_area .slide {
  margin-top: 40px;
}
.block_contents .slide_area .slide .column {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
}
.block_contents .slide_area .slide .column a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_contents .slide_area .slide .column a figure {
  width: 30%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.block_contents .slide_area .slide .column a figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_contents .slide_area .slide .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .slide_area .slide .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .slide_area .slide .column a .textarea {
  width: 65%;
}
.block_contents .slide_area .slide .column a .textarea .c_title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.block_contents .slide_area .slide .column a .textarea ul.category {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
}
.block_contents .slide_area .slide .column a .textarea ul.category li {
  margin: 0 10px 10px 0;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px #ccc solid;
  border-radius: 50px;
}
.block_contents .slide_area .slide .column a .textarea p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}
.block_contents .text_list {
  margin-top: 40px;
  border-top: 1px #ccc solid;
}
.block_contents .text_list .column a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-bottom: 1px #ccc solid;
  padding: 40px 20px;
  transition: all 0.5s 0s ease;
}
.block_contents .text_list .column a:hover {
  background: #fff600;
}
.block_contents .text_list .column a time {
  display: block;
  width: 200px;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
}
.block_contents .text_list .column a .c_title {
  font-size: 16px;
}
.block_contents .more_btn {
  margin-top: 40px;
}
.block_contents .img_text_list {
  margin-top: 40px;
}
.block_contents .img_text_list .column {
  background: #FFF;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 20px;
  transition: all 0.5s 0s ease;
}
.block_contents .img_text_list .column:hover {
  transform: scale(0.95, 0.95);
}
.block_contents .img_text_list .column a {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_contents .img_text_list .column a figure {
  width: 30%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.block_contents .img_text_list .column a figure .img_wrap {
  position: relative;
  padding-top: 75%;
}
.block_contents .img_text_list .column a figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_contents .img_text_list .column a figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_contents .img_text_list .column a .textarea {
  width: 65%;
}
.block_contents .img_text_list .column a .textarea .c_title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.block_contents .img_text_list .column a .textarea time {
  margin-top: 10px;
}
.block_contents .img_text_list .column a .textarea ul.category {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
}
.block_contents .img_text_list .column a .textarea ul.category li {
  margin: 0 10px 10px 0;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px #ccc solid;
  border-radius: 50px;
}
.block_contents .img_text_list .column a .textarea time {
  margin-top: 10px;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 1.8;
}
.block_contents .img_text_list .column a .textarea p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}
.block_contents ul.search_menu {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_contents ul.search_menu li {
  margin: 0 10px 10px 0;
}
.block_contents ul.search_menu li a {
  display: inline-block;
  position: relative;
  padding: 20px 60px 20px 20px;
  line-height: 1;
  background: #fff600;
  border: 1px #000 solid;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.5s 0s ease;
}
.block_contents ul.search_menu li a:hover, .block_contents ul.search_menu li a.active {
  background: #333;
  color: #FFF;
}
.block_contents ul.search_menu li a:hover svg, .block_contents ul.search_menu li a.active svg {
  right: 5px;
  fill: #FFF;
}
.block_contents ul.search_menu li a .t {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_contents ul.search_menu li a .t {
    font-size: 14px;
  }
}
.block_contents ul.search_menu li a svg {
  transition: all 0.3s 0s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

/*----------------------------------------------------
  .block_article
--------------------------------------------------- */
.block_article.bg_white {
  background: #FFF;
}
.block_article.bg_yellow {
  background: #fff600;
}
.block_article .inner {
  margin: 0 auto;
  max-width: 1100px;
}
.block_article .summary {
  position: relative;
  height: 500px;
}
.block_article .summary.no_image {
  height: 350px;
}
.block_article .summary.no_image .inner {
  color: #000;
}
.block_article .summary figure {
  overflow: hidden;
}
.block_article .summary figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}
.block_article .summary figure .img_wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_article .summary figure .img_wrap img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_article .summary .inner {
  position: relative;
  padding-top: 200px;
  color: #FFF;
}
.block_article .summary .en_title {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}
.block_article .summary .lead {
  margin-top: 20px;
  font-size: 42px;
  font-weight: 600;
}
.block_article .summary ul.category {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
}
.block_article .summary ul.category li {
  margin: 0 10px 10px 0;
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  border: 1px #FFF solid;
  border-radius: 50px;
}
.block_article .summary time {
  margin-top: 10px;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
  line-height: 1.8;
}
.block_article .detail_wrap {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}
.block_article .detail_wrap aside {
  width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.block_article .detail_wrap aside .in {
  position: sticky;
  top: 140px;
  left: 0;
  padding: 40px 0;
}
.block_article .detail_wrap aside .in ul.page_menu {
  margin-bottom: 40px;
}
.block_article .detail_wrap aside .in ul.page_menu li {
  border-bottom: 1px #ccc solid;
}
.block_article .detail_wrap aside .in ul.page_menu li a {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
}
.block_article .detail_wrap aside .in ul.page_menu li a:hover {
  background: #fff600;
}
.block_article .detail_wrap aside .in .more_btn a {
  display: block;
}
.block_article .detail_wrap main {
  border-radius: 10px;
  margin-left: 340px;
  background: #FFF;
  padding: 40px;
  min-height: 100vh;
}
.block_article .entry_area .sub_title01 {
  width: 100%;
  padding: 0.5em 1em; /*文字周りの余白*/
  line-height: 1.5; /*行高*/
  background: #333; /*背景色*/
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 10px;
  vertical-align: middle;
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_article .entry_area .sub_title01 {
    font-size: 16px;
  }
}
.block_article .entry_area .sub_title02 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5; /*行高*/
  border: 1px #333 solid;
  border-radius: 10px;
  padding: 0.5em 1em; /*文字周りの余白*/
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_article .entry_area .sub_title02 {
    font-size: 16px;
    margin-top: 40px;
  }
}
.block_article .entry_area .sub_title03 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5; /*行高*/
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_article .entry_area .sub_title03 {
    font-size: 16px;
    margin-top: 40px;
  }
}
.block_article .entry_area .textarea {
  font-size: 14px;
  margin-bottom: 20px;
}
.block_article .entry_area .textarea a {
  text-decoration: underline;
}
.block_article .entry_area .textarea p {
  font-size: 14px;
  margin-bottom: 1em;
}
.block_article .entry_area .textarea p:last-child {
  margin-bottom: 0;
}
.block_article .entry_area figure {
  margin-bottom: 20px;
}
.block_article .entry_area figure img {
  display: block;
}
.block_article .entry_area figure figcaption {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}
.block_article .entry_area .movie_area {
  margin-bottom: 20px;
}
.block_article .entry_area .movie_area .movie_wrap {
  position: relative;
  padding-top: 56.25%;
}
.block_article .entry_area .movie_area .movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block_article .entry_area .gallery_area {
  margin-bottom: 20px;
}
.block_article .entry_area .gallery_area ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: -4%;
}
@media (max-width: 896px) {
  .block_article .entry_area .gallery_area ul {
    margin-bottom: -4%;
  }
}
.block_article .entry_area .gallery_area ul li {
  width: 30.6%;
  margin-right: 4%;
  margin-bottom: 4%;
}
.block_article .entry_area .gallery_area ul li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 896px) {
  .block_article .entry_area .gallery_area ul li {
    width: 48%;
    margin-right: 4%;
  }
  .block_article .entry_area .gallery_area ul li:nth-child(3n) {
    margin-right: 0;
  }
  .block_article .entry_area .gallery_area ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.block_article .entry_area .gallery_area ul li a {
  display: block;
  position: relative;
  padding-top: 75%;
  transition: all 0.5s 0s ease;
}
.block_article .entry_area .gallery_area ul li a:hover {
  opacity: 0.5;
}
.block_article .entry_area .gallery_area ul li a figure {
  margin: 0;
}
.block_article .entry_area .gallery_area ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.block_article .entry_area .gallery_area ul li a img.lazyloaded {
  opacity: 1;
  transition: all 0.5s 0s ease;
}
.block_article .entry_area .d_list {
  margin-bottom: 20px;
  border-top: 1px dotted #ccc;
}
.block_article .entry_area .d_list dl {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  border-bottom: 1px dotted #ccc;
}
.block_article .entry_area .d_list dl dt {
  width: 30%;
  padding: 10px;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_article .entry_area .d_list dl dt {
    font-size: 12px;
  }
}
.block_article .entry_area .d_list dl dd {
  width: 70%;
  padding: 10px;
  font-size: 14px;
}
@media (max-width: 896px) {
  .block_article .entry_area .d_list dl dd {
    font-size: 12px;
  }
}
.block_article .entry_area .column_area {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
@media (max-width: 896px) {
  .block_article .entry_area .column_area {
    flex-direction: column; /* row row-reverse column */
  }
}
.block_article .entry_area .column_area .column {
  width: 50%;
  margin-right: 3%;
}
@media (max-width: 896px) {
  .block_article .entry_area .column_area .column {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
  .block_article .entry_area .column_area .column:last-child {
    margin-bottom: 0;
  }
}
.block_article .entry_area .column_area .column:last-child {
  margin-right: 0;
}
.block_article .entry_area .column_area .column figure {
  margin-top: 0;
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_article .entry_area .column_area .column figure {
    margin-bottom: 6%;
  }
}
.block_article .entry_area .column_area .column figure:last-child {
  margin-bottom: 0;
}
.block_article .entry_area .column_area .column .sub_title03 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_article .entry_area .column_area .column .sub_title03 {
    font-size: 14px;
    margin-bottom: 6%;
  }
}
.block_article .entry_area .column_area .column .sub_title03:last-child {
  margin-bottom: 0;
}
.block_article .entry_area .column_area .column p {
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_article .entry_area .column_area .column p {
    margin-bottom: 6%;
  }
}
.block_article .entry_area .column_area .column p:last-child {
  margin-bottom: 0;
}
.block_article .entry_area .column_area .column p {
  font-size: 14px;
}
.block_article .entry_area .more_btn {
  margin-bottom: 20px;
}
/*----------------------------------------------------
 block_breadcrumb
--------------------------------------------------- */
.block_breadcrumb {
  background: #FFF;
  color: #000;
  padding: 15px 0;
  border-top: 1px #000 solid;
  position: relative;
}
@media (max-width: 896px) {
  .block_breadcrumb {
    margin: 0 0px;
    margin-top: 40px;
  }
}
.block_breadcrumb ol {
  display: flex;
  margin: 0 40px;
  flex-direction: row; /* row row-reverse column */
  justify-content: flex-start; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  white-space: nowrap;
}
@media (max-width: 896px) {
  .block_breadcrumb ol {
    margin: 0 0px;
    padding: 0 20px;
    overflow-x: scroll;
  }
}
.block_breadcrumb ol {
  list-style: none;
  font-size: 12px;
}
.block_breadcrumb ol li:not(:last-of-type)::after {
  content: "-";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #ccc; /* 記号の色 */
}
.block_breadcrumb ol li a {
  display: inline-block;
  color: #888; /* 記号の色 */
  transition: all 0.4s 0s ease;
  letter-spacing: 0.1em;
}
.block_breadcrumb ol li a:hover {
  opacity: 0.5;
}
.block_breadcrumb .pagetop {
  position: absolute;
  top: 0;
  right: 0px;
}
.block_breadcrumb .pagetop a {
  display: inline-block;
  position: relative;
  padding: 20px 60px 20px 20px;
  line-height: 1;
  background: #fff600;
  box-sizing: border-box;
  transition: all 0.5s 0s ease;
}
.block_breadcrumb .pagetop a:hover {
  background: #333;
  color: #FFF;
}
.block_breadcrumb .pagetop a:hover svg {
  right: 5px;
  fill: #FFF;
}
.block_breadcrumb .pagetop a .t {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 896px) {
  .block_breadcrumb .pagetop a .t {
    font-size: 14px;
  }
}
.block_breadcrumb .pagetop a svg {
  transition: all 0.3s 0s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

/*----------------------------------------------------
  .block_footer
--------------------------------------------------- */
.block_footer {
  background-color: #333;
  color: #FFF;
  padding: 80px 20px;
}
.block_footer .inner {
  margin: 0 auto;
  max-width: 1280px;
}
.block_footer .inner .f_wrap {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
}
.block_footer .inner .f_wrap .company {
  width: 500px;
}
.block_footer .inner .f_wrap .company .name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.block_footer .inner .f_wrap .company ul.meta {
  margin-top: 10px;
}
.block_footer .inner .f_wrap .company ul.meta li {
  font-size: 14px;
}
.block_footer .inner .f_wrap .menu_area {
  width: calc(100% - 500px);
  position: relative;
}
.block_footer .inner .f_wrap .menu_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 1px;
  height: 100%;
  background: #FFF;
  opacity: 0.2;
}
.block_footer .inner .f_wrap .menu_area ul.menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.block_footer .inner .f_wrap .menu_area ul.menu li {
  width: 30%;
  margin-bottom: 5px;
}
.block_footer .inner .f_wrap .menu_area ul.menu li a {
  display: block;
  font-size: 16px;
  color: #FFF;
}
.block_footer .inner .f_wrap .menu_area ul.sub_menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
  margin-top: 25px;
}
.block_footer .inner .f_wrap .menu_area ul.sub_menu li {
  margin-right: 25px;
  position: relative;
}
.block_footer .inner .f_wrap .menu_area ul.sub_menu li::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -13px;
  height: 100%;
  width: 1px;
  background: #FFF;
  opacity: 0.2;
}
.block_footer .inner .f_wrap .menu_area ul.sub_menu li:last-child:after {
  display: none;
}
.block_footer .inner .f_wrap .menu_area ul.sub_menu li a {
  display: block;
  font-size: 14px;
  color: #FFF;
}
.block_footer .inner .copyright {
  margin-top: 40px;
  font-size: 12px;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  opacity: 0.5;
}/*# sourceMappingURL=common.css.map */