@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: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: normal;
  color: #222;
  background: #FFF;
  -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;
}

::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_bg
--------------------------------------------------- */
.block_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url(../img/common/bg.jpg) no-repeat center center;
  background-size: cover;
}

/*----------------------------------------------------
  .wrapper
--------------------------------------------------- */
.wrapper {
  position: relative;
}
/*----------------------------------------------------
 block_scroll
--------------------------------------------------- */
.block_scroll {
  mix-blend-mode: multiply;
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: all 0.5s 0s ease;
  z-index: 110;
}
body.page_scroll .block_scroll span {
  transform: scale3d(1, 1, 1) translate(0px, 0px) rotate(-180deg);
}

.block_scroll a {
  display: block;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  width: 80px;
  height: 80px;
  border-radius: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 896px) {
  .block_scroll a {
    width: 50px;
    height: 50px;
  }
}
.block_scroll a svg {
  fill: #FFF;
  width: 30px;
  height: 30px;
}
@media (max-width: 896px) {
  .block_scroll a svg {
    width: 20px;
    height: 20px;
  }
}
.block_scroll a:hover {
  background: #333;
}
.block_scroll span {
  transition: all 0.8s 0s cubic-bezier(0.875, 0.005, 0.09, 0.99);
}

@keyframes rotate-anime-3d {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*----------------------------------------------------
  .block_mainvisual
--------------------------------------------------- */
.block_mainvisual {
  padding-top: 5vh;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_mainvisual {
    margin-bottom: 10%;
  }
}
.block_mainvisual .maniwa {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 150px;
  mix-blend-mode: multiply;
}
@media (max-width: 896px) {
  .block_mainvisual .maniwa {
    top: 1vw;
    left: 1vw;
    width: 20vw;
  }
}
.block_mainvisual .mainvisual {
  width: 90vh;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 896px) {
  .block_mainvisual .mainvisual {
    width: 90vw;
  }
}
.block_mainvisual .mainvisual .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.block_mainvisual .inner {
  margin: 0 auto;
  padding: 5% 5%;
  max-width: 1300px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  mix-blend-mode: multiply;
}
@media (max-width: 896px) {
  .block_mainvisual .inner {
    padding: 10% 6% 5% 6%;
  }
}
.block_mainvisual .inner .title {
  width: 23%;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .title {
    width: 14%;
  }
}
.block_mainvisual .inner .title_set {
  width: 70%;
}
@media (max-width: 896px) {
  .block_mainvisual .inner .title_set {
    width: 80%;
  }
}
.block_mainvisual .inner .title_set .info {
  margin-bottom: 5%;
}
.block_mainvisual .date.sp_only {
  padding: 0 5%;
  mix-blend-mode: multiply;
}
.block_mainvisual .textarea {
  mix-blend-mode: multiply;
  background: linear-gradient(0deg, #0d9a3d 0%, #0062b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 896px) {
  .block_mainvisual .textarea {
    padding: 10% 5% 0 5%;
  }
}
.block_mainvisual .copy {
  text-align: center;
  font-size: clamp(26.1333333333px, 2.9166666667vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: 3%;
}
@media (max-width: 896px) {
  .block_mainvisual .copy {
    line-height: 1.8;
    font-size: 5vw;
    text-align: left;
    margin-bottom: 5%;
  }
}
.block_mainvisual .lead {
  margin: 0 auto;
  padding: 0% 5%;
  max-width: 1300px;
}
@media (max-width: 896px) {
  .block_mainvisual .lead {
    padding: 0;
  }
}
.block_mainvisual .lead p {
  font-size: clamp(16.8px, 1.875vw, 27px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
}
@media (max-width: 896px) {
  .block_mainvisual .lead p {
    font-size: 14px;
  }
}

/*----------------------------------------------------
  .block_entry
--------------------------------------------------- */
.block_entry {
  padding: 5% 0 0 0;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_entry {
    padding: 10% 0 0;
    margin-bottom: 0%;
  }
}
.block_entry .in {
  position: relative;
  margin: 0 5%;
  max-width: 1920px;
}
.block_entry .in .t_area {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px;
  height: 100%;
  mix-blend-mode: multiply;
}
@media (max-width: 896px) {
  .block_entry .in .t_area {
    position: relative;
    width: auto;
    height: auto;
  }
}
.block_entry .in .t_area .title {
  position: sticky;
  top: 40px;
  width: 50px;
  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  */
  white-space: nowrap;
}
@media (max-width: 896px) {
  .block_entry .in .t_area .title {
    position: relative;
    top: auto;
    width: auto;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    font-feature-settings: "palt";
    background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
}
.block_entry .inner {
  padding-left: 100px;
}
@media (max-width: 896px) {
  .block_entry .inner {
    padding: 0 0%;
  }
}
.block_entry .inner .navi_entry {
  background: #f3d7a8;
}
.block_entry .inner .navi_entry ul {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: space-between; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_entry .inner .navi_entry ul li {
  position: relative;
  width: 33.3333%;
  height: clamp(93.3333333333px, 10.4166666667vw, 150px);
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: flex-start; /* flex-start  center  */
  border-top: 4px #0b8646 solid;
  border-right: 4px #0b8646 solid;
  font-size: clamp(19.9111111111px, 2.2222222222vw, 32px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-feature-settings: "palt";
  box-sizing: border-box;
}
.block_entry .inner .navi_entry ul li:first-child {
  border-left: 4px #0b8646 solid;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li:first-child {
    border-left: 2px #0b8646 solid;
  }
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li {
    align-items: flex-start;
    border-top: 2px #0b8646 solid;
    border-right: 2px #0b8646 solid;
    font-size: 3.2vw;
  }
}
.block_entry .inner .navi_entry ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column; /* row row-reverse column */
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 10%;
  padding-top: 0%;
  position: relative;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li a {
    justify-content: flex-start;
    padding: 0 3vw;
    padding-top: 3vw;
  }
}
.block_entry .inner .navi_entry ul li a .icon {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 40px;
  height: 40px;
  transform: translate(0%, -50%);
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li a .icon {
    display: none;
  }
}
.block_entry .inner .navi_entry ul li a .icon svg {
  transition: all 0.5s 0s ease;
  width: 40px;
  height: 40px;
  transform: rotate(90deg);
  fill: #0b8646;
}
.block_entry .inner .navi_entry ul li span {
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.block_entry .inner .navi_entry ul li time {
  display: block;
  font-size: clamp(11.2px, 1.25vw, 18px);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li time {
    font-size: 2.5vw;
    padding-top: 5px;
  }
}
.block_entry .inner .navi_entry ul li span {
  display: inline-block;
}
.block_entry .inner .navi_entry ul li small {
  display: inline-block;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  letter-spacing: 0.05em;
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_entry .inner .navi_entry ul li {
  border-bottom: 6px #0b8646 solid;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.5s 0s ease;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li {
    border-bottom: 4px #0b8646 solid;
  }
}
.block_entry .inner .navi_entry ul li:hover {
  background: rgba(11, 134, 70, 0.3);
}
.block_entry .inner .navi_entry ul li.active {
  background: rgba(0, 0, 0, 0);
  border-bottom: 4px transparent solid;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li.active {
    border-bottom: 2px transparent solid;
  }
}
.block_entry .inner .navi_entry ul li.active a .icon svg {
  transform: rotate(-90deg);
  fill: #0062b2;
}
.block_entry .inner .navi_entry ul li.no {
  background: #eee;
  border-bottom: 4px #0b8646 solid;
}
@media (max-width: 896px) {
  .block_entry .inner .navi_entry ul li.no {
    border-bottom: 2px #0b8646 solid;
  }
}
.block_entry .inner .navi_entry ul li.no div {
  opacity: 0.5;
}
.block_entry .inner .navi_entry ul li.no time span {
  background: #ccc;
}
.block_entry .inner .entry_area {
  background: #f3d7a8;
  margin-bottom: clamp(24.8888888889px, 2.7777777778vw, 40px);
  border-left: 4px #0b8646 solid;
  border-right: 4px #0b8646 solid;
  border-bottom: 4px #0b8646 solid;
  box-sizing: border-box;
  margin-top: -3px;
  position: relative;
  font-feature-settings: "palt";
  letter-spacing: 0.3em;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area {
    border-left: 2px #0b8646 solid;
    border-right: 2px #0b8646 solid;
    border-bottom: 2px #0b8646 solid;
  }
}
.block_entry .inner .entry_area .entry_contents {
  display: none;
  padding: 40px;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents {
    padding: 10px;
  }
}
.block_entry .inner .entry_area .entry_contents dl {
  display: table;
  width: 100%;
  border-bottom: 1px #333 dotted;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl {
    display: block;
    padding-bottom: 5vw;
    margin-bottom: 5vw;
  }
}
.block_entry .inner .entry_area .entry_contents dl:last-child {
  border-bottom: none;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl:last-child {
    margin-bottom: 0;
  }
}
.block_entry .inner .entry_area .entry_contents dl dt {
  display: table-cell;
  width: 30%;
  padding: 2%;
  font-size: clamp(17.4222222222px, 1.9444444444vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-feature-settings: "palt";
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dt {
    display: block;
    width: 100%;
    font-size: 5vw;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd {
  display: table-cell;
  font-weight: 700;
  width: 70%;
  padding: 2%;
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dd {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 2;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd .sub_title {
  margin-top: 20px;
  margin-bottom: 10px;
}
.block_entry .inner .entry_area .entry_contents dl dd .sub_title span {
  display: inline-block;
  font-size: clamp(11.2px, 1.25vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 0 5px;
  color: #FFF;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
}
.block_entry .inner .entry_area .entry_contents dl dd .sub_title_sub {
  margin-top: 20px;
  margin-bottom: 10px;
}
.block_entry .inner .entry_area .entry_contents dl dd .sub_title_sub span {
  display: block;
  font-size: clamp(11.2px, 1.25vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #0b8646;
  border-bottom: 1px #0b8646 solid;
  padding-bottom: 10px;
}
.block_entry .inner .entry_area .entry_contents dl dd ul li {
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dd ul li {
    padding-left: 0.5em;
    text-indent: -0.5em;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd ul li.num {
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-top: 0.5em;
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dd ul li.num {
    padding-left: 1em;
    text-indent: -1em;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd ul li small {
  display: inline;
}
.block_entry .inner .entry_area .entry_contents dl dd small {
  display: inline-block;
  line-height: 1.8;
  font-size: clamp(7.4666666667px, 0.8333333333vw, 12px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dd small {
    display: block;
    padding-top: 10px;
    font-size: 12px;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn {
  margin-top: 20px;
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn a {
  display: inline-block;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  color: #FFF;
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  position: relative;
  border-radius: 100px;
  padding: clamp(9.3333333333px, 1.0416666667vw, 15px) clamp(37.3333333333px, 4.1666666667vw, 60px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents dl dd .s_btn a {
    font-size: 4vw;
  }
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn a .t {
  display: inline-block;
  padding-right: clamp(18.6666666667px, 2.0833333333vw, 30px);
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn a .icon {
  position: absolute;
  top: 50%;
  right: clamp(19.9111111111px, 2.2222222222vw, 32px);
  transform: scale(1, 1) translate(0%, -50%);
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn a .icon svg {
  transition: all 0.5s 0s ease;
  width: clamp(24.8888888889px, 2.7777777778vw, 40px);
  height: clamp(24.8888888889px, 2.7777777778vw, 40px);
  fill: #FFF;
}
.block_entry .inner .entry_area .entry_contents dl dd .s_btn a:hover {
  background: #333;
}
.block_entry .inner .entry_area .entry_contents .entry_btn {
  padding-top: 5%;
  text-align: center;
}
.block_entry .inner .entry_area .entry_contents .entry_btn p {
  font-size: clamp(17.4222222222px, 1.9444444444vw, 28px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: clamp(24.8888888889px, 2.7777777778vw, 40px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents .entry_btn p {
    font-size: 4vw;
  }
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn {
  margin-bottom: clamp(24.8888888889px, 2.7777777778vw, 40px);
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn a {
  display: inline-block;
  background: #000;
  color: #FFF;
  font-size: clamp(19.9111111111px, 2.2222222222vw, 32px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  position: relative;
  border-radius: 100px;
  padding: clamp(9.3333333333px, 1.0416666667vw, 15px) clamp(37.3333333333px, 4.1666666667vw, 60px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents .entry_btn .btn a {
    font-size: 4vw;
  }
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn a .t {
  display: inline-block;
  padding-right: clamp(18.6666666667px, 2.0833333333vw, 30px);
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn a .icon {
  position: absolute;
  top: 50%;
  right: clamp(19.9111111111px, 2.2222222222vw, 32px);
  transform: scale(1, 1) translate(0%, -50%);
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn a .icon svg {
  width: clamp(24.8888888889px, 2.7777777778vw, 40px);
  height: clamp(24.8888888889px, 2.7777777778vw, 40px);
  fill: #FFF;
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn a:hover {
  background: #333;
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a {
  display: inline-block;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  color: #FFF;
  font-size: clamp(19.9111111111px, 2.2222222222vw, 32px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  position: relative;
  border-radius: 100px;
  padding: clamp(9.3333333333px, 1.0416666667vw, 15px) clamp(37.3333333333px, 4.1666666667vw, 60px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a {
    font-size: 4vw;
  }
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a .t {
  display: inline-block;
  padding-right: clamp(18.6666666667px, 2.0833333333vw, 30px);
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a .icon {
  position: absolute;
  top: 50%;
  right: clamp(19.9111111111px, 2.2222222222vw, 32px);
  transform: scale(1, 1) translate(0%, -50%);
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a .icon svg {
  transition: all 0.5s 0s ease;
  width: clamp(24.8888888889px, 2.7777777778vw, 40px);
  height: clamp(24.8888888889px, 2.7777777778vw, 40px);
  fill: #FFF;
}
.block_entry .inner .entry_area .entry_contents .entry_btn .btn02 a:hover {
  background: #333;
}
.block_entry .inner .entry_area .entry_contents .entry_btn small {
  display: block;
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  padding-top: clamp(12.4444444444px, 1.3888888889vw, 20px);
}
@media (max-width: 896px) {
  .block_entry .inner .entry_area .entry_contents .entry_btn small {
    font-size: 12px;
  }
}

/*----------------------------------------------------
  .block_meeting
--------------------------------------------------- */
.block_meeting {
  padding: 5% 0 0 0;
  margin-bottom: 5%;
}
@media (max-width: 896px) {
  .block_meeting {
    padding: 10% 0;
    margin-bottom: 10%;
  }
}
.block_meeting .inner {
  margin: 0 auto;
  padding: 0 5%;
  max-width: 1920px;
  text-align: center;
}
.block_meeting .inner .color {
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
}
.block_meeting .inner .title {
  font-size: clamp(26.1333333333px, 2.9166666667vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: 20px;
}
@media (max-width: 896px) {
  .block_meeting .inner .title {
    font-size: 5vw;
  }
}
.block_meeting .inner .exp {
  font-size: clamp(16.8px, 1.875vw, 27px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
}
@media (max-width: 896px) {
  .block_meeting .inner .exp {
    font-size: 14px;
  }
}
.block_meeting .inner ul {
  margin-bottom: 0.5em;
}
.block_meeting .inner ul li {
  font-size: clamp(16.8px, 1.875vw, 27px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media (max-width: 896px) {
  .block_meeting .inner ul li {
    font-size: 16px;
  }
}
.block_meeting .inner .s_btn {
  margin-top: 20px;
}
.block_meeting .inner .s_btn a {
  display: inline-block;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  color: #FFF;
  font-size: clamp(16.1777777778px, 1.8055555556vw, 26px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  position: relative;
  border-radius: 100px;
  padding: clamp(9.3333333333px, 1.0416666667vw, 15px) clamp(37.3333333333px, 4.1666666667vw, 60px);
}
@media (max-width: 896px) {
  .block_meeting .inner .s_btn a {
    font-size: 4vw;
  }
}
.block_meeting .inner .s_btn a .t {
  display: inline-block;
  padding-right: clamp(18.6666666667px, 2.0833333333vw, 30px);
}
.block_meeting .inner .s_btn a .icon {
  position: absolute;
  top: 50%;
  right: clamp(19.9111111111px, 2.2222222222vw, 32px);
  transform: scale(1, 1) translate(0%, -50%);
}
.block_meeting .inner .s_btn a .icon svg {
  transition: all 0.5s 0s ease;
  width: clamp(24.8888888889px, 2.7777777778vw, 40px);
  height: clamp(24.8888888889px, 2.7777777778vw, 40px);
  fill: #FFF;
}
.block_meeting .inner .s_btn a:hover {
  background: #333;
}
.block_meeting .inner .s_btn small {
  display: block;
  margin-top: 20px;
  font-size: clamp(8.7111111111px, 0.9722222222vw, 14px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media (max-width: 896px) {
  .block_meeting .inner .s_btn small {
    font-size: 12px;
  }
}

/*----------------------------------------------------
  .block_footer
--------------------------------------------------- */
.block_footer {
  padding: 2% 0;
  margin-bottom: 5%;
  mix-blend-mode: multiply;
}
.block_footer .inner {
  margin: 0 auto;
  padding: 0 5%;
  max-width: 1920px;
  text-align: center;
}
.block_footer .inner .s_title {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: clamp(26.1333333333px, 2.9166666667vw, 42px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 896px) {
  .block_footer .inner .s_title {
    font-size: 24px;
  }
}
.block_footer .inner ul.sns {
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
}
.block_footer .inner ul.sns li {
  margin: 0 10px;
}
.block_footer .inner ul.sns li.nt a svg {
  width: 80px;
  height: 80px;
}
.block_footer .inner ul.sns li a {
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: row; /* row row-reverse column */
  justify-content: center; /* flex-start  center  space-between */
  align-items: center; /* flex-start  center  */
  border-radius: 100%;
  background: linear-gradient(45deg, #0d9a3d 0%, #0062b2 100%);
}
@media (max-width: 896px) {
  .block_footer .inner ul.sns li a {
    width: 60px;
    height: 60px;
  }
}
.block_footer .inner ul.sns li a:hover {
  background: #333;
}
.block_footer .inner ul.sns li a svg {
  width: 40px;
  height: 40px;
  fill: #FFF;
}
@media (max-width: 896px) {
  .block_footer .inner ul.sns li a svg {
    width: 30px;
    height: 30px;
  }
}
.block_footer .inner .contact {
  margin-top: 40px;
  margin-bottom: clamp(24.8888888889px, 2.7777777778vw, 40px);
  font-size: clamp(12.4444444444px, 1.3888888889vw, 20px);
  font-feature-settings: "palt";
  font-weight: 700;
}
@media (max-width: 896px) {
  .block_footer .inner .contact {
    font-size: 16px;
  }
}
.block_footer .inner .contact .mail {
  font-size: clamp(19.9111111111px, 2.2222222222vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 896px) {
  .block_footer .inner .contact .mail {
    font-size: 16px;
  }
}
.block_footer .inner .contact .mail .m {
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.block_footer .inner .copyright {
  font-weight: 700;
  font-feature-settings: "palt";
  font-size: clamp(9.9555555556px, 1.1111111111vw, 16px);
  font-family: "Roboto", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media (max-width: 896px) {
  .block_footer .inner .copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=common.css.map */