@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
/*-----------------------------
A (more) Modern CSS Reset
https://piccalil.li/blog/a-more-modern-css-reset/
-----------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* @mixin tab2($bp1: $BP-768,$bp2: $BP-1000) {
  @media screen and (min-width:$bp1) and ( max-width:($bp2 - 1)) {
    @content;
  }
} */
/*------------------------------
BASE
-------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-wrap: auto;
}

ol, ul {
  list-style: none;
}

html, body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background: #fff;
  font-family: "秀英丸ゴシック L", "Zen Maru Gothic", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #000;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

/* */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 100%;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

*:focus-visible {
  outline: 2px solid #1976D2;
  outline-offset: 0;
}

a {
  color: currentColor;
  backface-visibility: hidden;
  text-underline-offset: 0.2em;
}

a:hover {
  opacity: 0.7;
}

a:not([class]) {
  color: #DE4E00;
}

figure {
  line-height: 0;
}

figcaption {
  line-height: 1.5;
}

img {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@keyframes fvTruckTextAnime {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-359deg);
  }
}
@keyframes fvTruckAnime {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -2px) rotate(1deg);
  }
  83% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes aboutLineAnime {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 80;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes lineloopAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left top;
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    transform-origin: left top;
  }
  95% {
    transform: scaleX(1);
    transform-origin: left top;
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left top;
    opacity: 0;
  }
}
/* clearfix -------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* display -------------*/
/* pc/sp */
.for-pc {
  display: inherit;
}

.for-sp {
  display: none;
}

img.for-pc {
  display: inline;
}

img.for-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
  .for-sp {
    display: inherit;
  }
  img.for-pc {
    display: none;
  }
  img.for-sp {
    display: inline;
  }
}
/* margin -------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

/*@include g.sp {
  .mt-0 {
    margin-top: 0vw !important;
  }
  .mb-0 {
    margin-bottom: 0vw !important;
  }
}*/
.mt-10 {
  margin-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

/*@include g.sp {
  .mt-10 {
    margin-top: 1.3333vw !important;
  }
  .mb-10 {
    margin-bottom: 1.3333vw !important;
  }
}*/
.mt-20 {
  margin-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

/*@include g.sp {
  .mt-20 {
    margin-top: 2.6666vw !important;
  }
  .mb-20 {
    margin-bottom: 2.6666vw !important;
  }
}*/
.mt-30 {
  margin-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

/*@include g.sp {
  .mt-30 {
    margin-top: 3.9999vw !important;
  }
  .mb-30 {
    margin-bottom: 3.9999vw !important;
  }
}*/
.mt-40 {
  margin-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

/*@include g.sp {
  .mt-40 {
    margin-top: 5.3332vw !important;
  }
  .mb-40 {
    margin-bottom: 5.3332vw !important;
  }
}*/
.mt-50 {
  margin-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

/*@include g.sp {
  .mt-50 {
    margin-top: 6.6665vw !important;
  }
  .mb-50 {
    margin-bottom: 6.6665vw !important;
  }
}*/
.mt-60 {
  margin-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

/*@include g.sp {
  .mt-60 {
    margin-top: 7.9998vw !important;
  }
  .mb-60 {
    margin-bottom: 7.9998vw !important;
  }
}*/
.mt-70 {
  margin-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

/*@include g.sp {
  .mt-70 {
    margin-top: 9.3331vw !important;
  }
  .mb-70 {
    margin-bottom: 9.3331vw !important;
  }
}*/
.mt-80 {
  margin-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

/*@include g.sp {
  .mt-80 {
    margin-top: 10.6664vw !important;
  }
  .mb-80 {
    margin-bottom: 10.6664vw !important;
  }
}*/
.mt-90 {
  margin-top: 9rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

/*@include g.sp {
  .mt-90 {
    margin-top: 11.9997vw !important;
  }
  .mb-90 {
    margin-bottom: 11.9997vw !important;
  }
}*/
.mt-100 {
  margin-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/*@include g.sp {
  .mt-100 {
    margin-top: 13.333vw !important;
  }
  .mb-100 {
    margin-bottom: 13.333vw !important;
  }
}*/
.mt--7em {
  margin-top: -7em !important;
}

.mb--7em {
  margin-bottom: -7em !important;
}

.mt--6em {
  margin-top: -6em !important;
}

.mb--6em {
  margin-bottom: -6em !important;
}

.mt--5em {
  margin-top: -5em !important;
}

.mb--5em {
  margin-bottom: -5em !important;
}

.mt--4em {
  margin-top: -4em !important;
}

.mb--4em {
  margin-bottom: -4em !important;
}

.mt--3em {
  margin-top: -3em !important;
}

.mb--3em {
  margin-bottom: -3em !important;
}

.mt--2em {
  margin-top: -2em !important;
}

.mb--2em {
  margin-bottom: -2em !important;
}

.mt--1em {
  margin-top: -1em !important;
}

.mb--1em {
  margin-bottom: -1em !important;
}

.mt-0em {
  margin-top: 0em !important;
}

.mb-0em {
  margin-bottom: 0em !important;
}

.mt-1em {
  margin-top: 1em !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

.mt-2em {
  margin-top: 2em !important;
}

.mb-2em {
  margin-bottom: 2em !important;
}

.mt-3em {
  margin-top: 3em !important;
}

.mb-3em {
  margin-bottom: 3em !important;
}

.mt-4em {
  margin-top: 4em !important;
}

.mb-4em {
  margin-bottom: 4em !important;
}

.mt-5em {
  margin-top: 5em !important;
}

.mb-5em {
  margin-bottom: 5em !important;
}

.mt-6em {
  margin-top: 6em !important;
}

.mb-6em {
  margin-bottom: 6em !important;
}

.mt-7em {
  margin-top: 7em !important;
}

.mb-7em {
  margin-bottom: 7em !important;
}

.mt-8em {
  margin-top: 8em !important;
}

.mb-8em {
  margin-bottom: 8em !important;
}

.mt-9em {
  margin-top: 9em !important;
}

.mb-9em {
  margin-bottom: 9em !important;
}

.mt-10em {
  margin-top: 10em !important;
}

.mb-10em {
  margin-bottom: 10em !important;
}

/* padding -------------*/
.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-1em {
  padding-top: 1em !important;
}

.pb-1em {
  padding-bottom: 1em !important;
}

.pt-2em {
  padding-top: 2em !important;
}

.pb-2em {
  padding-bottom: 2em !important;
}

.pt-3em {
  padding-top: 3em !important;
}

.pb-3em {
  padding-bottom: 3em !important;
}

.pt-4em {
  padding-top: 4em !important;
}

.pb-4em {
  padding-bottom: 4em !important;
}

.pt-5em {
  padding-top: 5em !important;
}

.pb-5em {
  padding-bottom: 5em !important;
}

.pt-6em {
  padding-top: 6em !important;
}

.pb-6em {
  padding-bottom: 6em !important;
}

.pt-7em {
  padding-top: 7em !important;
}

.pb-7em {
  padding-bottom: 7em !important;
}

.pt-8em {
  padding-top: 8em !important;
}

.pb-8em {
  padding-bottom: 8em !important;
}

.pt-9em {
  padding-top: 9em !important;
}

.pb-9em {
  padding-bottom: 9em !important;
}

.pt-10em {
  padding-top: 10em !important;
}

.pb-10em {
  padding-bottom: 10em !important;
}

.pl-1em {
  padding-left: 1em;
}

.pl-1_5em {
  padding-left: 1.5em;
}

.pl-2em {
  padding-left: 2em;
}

/* br ------------*/
br.br-mb1 {
  display: block;
  content: "";
  height: 1em;
}

@media screen and (max-width: 767px) {
  br.br-mb1.for-pc {
    display: none;
  }
}

br.br-mb1.for-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.br-mb1.for-sp {
    display: block;
  }
}

/* text -------------*/
/* color  */
.color-wht {
  color: #fff !important;
}

.color-blk {
  color: #000 !important;
}

.color-gry {
  color: #3E3C3C !important;
}

.color-blu {
  color: #1976D2 !important;
}

/* ff */
.txt-en {
  font-family: "Figtree", sans-serif;
}

/* font size */
.txt-xsmall {
  font-size: 75%;
}

.txt-small {
  font-size: 87.5%;
}

.txt-middle {
  font-size: 112.5%;
}
@media screen and (max-width: 767px) {
  .txt-middle {
    font-size: 106%;
  }
}

.txt-large {
  font-size: 125%;
}
@media screen and (max-width: 767px) {
  .txt-large {
    font-size: 115%;
  }
}

.txt-xlarge {
  font-size: 150%;
}
@media screen and (max-width: 767px) {
  .txt-xlarge {
    font-size: 125%;
  }
}

/* align */
.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-center_forpc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .txt-center_forpc {
    text-align: left;
  }
}

figure.center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  figure.center figcaption {
    text-align: left;
  }
}

/* font weight */
.txt-fwL {
  font-weight: 300 !important;
}

.txt-fwR {
  font-weight: 400 !important;
}

.txt-fwM {
  font-weight: 500 !important;
}

.txt-fwB {
  font-weight: 600 !important;
}

/* font style */
.txt-italic {
  font-style: italic;
}

/* line height */
.lh-thin {
  line-height: 1.4;
}

.lh-2 {
  line-height: 2;
}

/* letter space */
.ls-0 {
  letter-spacing: 0 !important;
}

.ls-1 {
  letter-spacing: 1em !important;
}

.ls-_5 {
  letter-spacing: 0.5em !important;
}

/* indent */
.indent-1 {
  margin-left: 1em;
  text-indent: -1em;
}

.indent-2 {
  margin-left: 2em;
  text-indent: -2em;
}

.indent-23 {
  margin-left: 2.3em;
  text-indent: -2.3em;
}

.indent-25 {
  margin-left: 2.5em;
  text-indent: -2.5em;
}

.num-indent {
  display: flex;
}
.num-indent .num {
  flex: none;
}

/* hr -------------*/
.hr {
  width: 100%;
  height: 1px;
  background-color: #BDBDBD;
}

/**/
.txt-asterisk {
  display: block;
  position: relative;
  padding-left: 1em;
  font-size: 1rem;
  text-indent: -1em;
}

.txt-lead {
  font-size: 112.5%;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .txt-lead {
    font-size: 105%;
  }
}

.txt-attention {
  font-size: 150%;
}
@media screen and (max-width: 767px) {
  .txt-attention {
    font-size: 100%;
    letter-spacing: 0;
  }
}

span.txt-border {
  display: inline-block;
  margin: 0 0.3em;
  padding: 0 0.5em;
  border: 2px solid currentColor;
  border-radius: 6px;
}
span.txt-border:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  span.txt-border {
    padding: 0 0.3em;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #DEF1FE;
}

html {
  scroll-padding-top: 110px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

html:has(.l-header.is_fixed) {
  scroll-padding-top: unset;
}
@media screen and (max-width: 767px) {
  html:has(.l-header.is_fixed) {
    scroll-padding-top: unset;
  }
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(222, 241, 254, 0.6666666667);
}
.l-header .header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 10px 40px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
.l-header.is_open .header-inner {
  background: rgba(243, 243, 243, 0.8);
}
.l-header .header-nav-pc {
  position: relative;
  padding: 0 10px 0 0;
}
.l-header .header-nav-pc ul {
  display: flex;
  gap: 1em clamp(15px, 2.2vw, 45px);
  font-weight: 400;
  line-height: 1.4;
}
.l-header .header-nav-pc a {
  color: #000;
  text-decoration: none;
}
.l-header .header-nav-pc a:hover, .l-header .header-nav-pc a:focus {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 110px;
  }
  .l-header .header-sitetitle {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .l-header .header-logo {
    width: 396px;
    padding-right: 23px;
    line-height: 0;
  }
  .l-header .header-logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .l-header {
    max-width: 100%;
  }
  .l-header .header-inner {
    width: 100%;
    padding: 10px 70px 10px 5%;
  }
  .l-header .header-nav-pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    max-width: 100%;
    height: 60px;
  }
  .l-header .header-inner {
    width: 100%;
    padding: 10px 70px 10px 5%;
  }
  .l-header .header-logo {
    width: 60vw;
    max-width: 394px;
    line-height: 0;
  }
  .l-header .header-logo img {
    width: 100%;
    height: auto;
  }
  .l-header .header-nav-pc {
    display: none;
  }
}

.l-header.is_fixed {
  position: fixed;
  background: none;
}
.l-header.is_fixed .header-inner {
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.l-header.is_fixed.is_open {
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.l-header.is_fixed.is_open .header-inner {
  background: rgba(243, 243, 243, 0.8);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}

.l-header.is_fixed.is_scroll {
  background: rgba(243, 243, 243, 0.8);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  /*&.is_open .header-inner {
    background: #F3F3F3CC;
    backdrop-filter: blur(16px);
  }*/
}
.l-header.is_fixed.is_scroll.is_open {
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.skiplink {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0;
}

.header-toggle {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 0;
  z-index: 5;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
}
.header-toggle svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-toggle {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header-toggle {
    display: block;
    right: 10px;
  }
}

.header-toggle:hover {
  transform: scale(1.05);
  transition: all 0.2s ease-out;
}

.header-toggle[aria-expanded=false] .header-toggle-open {
  display: block;
}
.header-toggle[aria-expanded=false] .header-toggle-close {
  display: none;
}

.header-toggle[aria-expanded=true] .header-toggle-open {
  display: none;
}
.header-toggle[aria-expanded=true] .header-toggle-close {
  display: block;
}

.header-menu {
  display: none;
  position: relative;
  background: rgba(243, 243, 243, 0.8);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
.header-menu .header-menu-container {
  position: relative;
  width: 100%;
  margin: auto;
  height: calc(100dvh - 90px);
  padding: 60px 0;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.header-menu ul.header-menu-list {
  list-style: none;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 60px;
  line-height: 1.4;
  font-weight: 400;
}
.header-menu a {
  color: #000;
  text-decoration: none;
}
.header-menu a:hover, .header-menu a:focus {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-menu {
    display: block;
  }
  .header-menu .header-menu-container {
    width: 90%;
    padding: 50px 0;
  }
  .header-menu ul.header-menu-list {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .header-menu {
    display: block;
  }
  .header-menu .header-menu-container {
    height: calc(100dvh - 60px);
    padding: 50px 0;
  }
  .header-menu ul.header-menu-list {
    width: 90%;
    height: auto;
  }
}

.header-menu[aria-hidden=true] {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .header-menu[aria-hidden=false] {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header-menu[aria-hidden=false] {
    display: block;
  }
}

.l-footer {
  position: relative;
  background-color: #7dabdb;
  padding: 60px 0;
  z-index: 30;
}
.l-footer .footer-inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 0;
  /* display: flex;
  flex-direction: column;
  gap: 50px24px; */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 24px 50px;
}
.l-footer .footer-block-1 {
  grid-area: 1/1/2/2;
}
.l-footer .footer-block-2 {
  grid-area: 1/2/2/3;
  justify-content: flex-end;
  align-self: center;
}
.l-footer .footer-copyright {
  grid-area: 2/1/3/3;
  justify-content: flex-end;
}
.l-footer .footer-block-1 {
  display: flex;
}
.l-footer .footer-block-1 .footer-logo {
  position: relative;
  width: 33vw;
  max-width: 394px;
  margin: 0;
  line-height: 0;
}
.l-footer .footer-block-1 .footer-logo img {
  width: 100%;
}
.l-footer .footer-block-2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.l-footer .footer-block-2 .footer-sitemap {
  position: relative;
}
.l-footer .footer-block-2 .footer-sitemap ul.footer-sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1em 45px;
  flex-wrap: wrap;
}
.l-footer .footer-block-2 .footer-sitemap li {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.l-footer .footer-block-2 .footer-sitemap li a {
  color: #000;
  text-decoration: none;
}
.l-footer .footer-block-2 .footer-sitemap li a:hover, .l-footer .footer-block-2 .footer-sitemap li a:focus {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.l-footer .footer-copyright {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.l-footer .footer-copyright .copyright {
  font-family: "A_P-OTF_Shuei_MaruGo_Std", "秀英丸ゴシック L", "Zen Maru Gothic", sans-serif, sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: normal;
  letter-spacing: 0.55px;
  color: #3e3e3e;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .l-footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .l-footer .footer-block-2 {
    align-self: flex-start;
    justify-content: flex-start;
  }
  .l-footer .footer-copyright {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
  }
  .l-footer .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .l-footer .footer-block-1 {
    justify-content: center;
  }
  .l-footer .footer-block-1 .footer-logo {
    position: relative;
    width: 80%;
    max-width: 394px;
  }
  .l-footer .footer-block-2 {
    align-self: center;
    justify-content: flex-start;
  }
  .l-footer .footer-block-2 .footer-sitemap ul.footer-sitemap-list {
    flex-direction: column;
  }
  .l-footer .footer-copyright {
    justify-content: center;
  }
  .l-footer .footer-copyright .copyright {
    text-align: center;
    font-size: 10px;
  }
}

.footer-pagetop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 72px;
  height: 72px;
  line-height: 1;
  font-size: 10px;
  z-index: 30;
}
.footer-pagetop a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff url("../images/footer_pagetop.svg") no-repeat 0 0;
  background-size: 100%;
  border: 1px solid #000;
  border-radius: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer-pagetop {
    bottom: 20px;
    right: 6%;
    width: 56px;
    height: 56px;
  }
}

.footer-pagetop.is_hide {
  display: none;
}

/*-------------------------
 h 下線　見出し
---------------------------*/
.h-line {
  position: relative;
  margin: 2em 0 1.5em;
  border-bottom: 1px solid #BDBDBD;
  font-size: 150%;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.h-line span, .h-line div, .h-line h1, .h-line h2, .h-line h3, .h-line h4, .h-line h5, .h-line h6 {
  display: table;
  padding: 0 0 0.8em 0;
  border-bottom: 2px solid #1976D2;
}
@media screen and (max-width: 767px) {
  .h-line {
    font-size: 130%;
  }
  .h-line span, .h-line div, .h-line h1, .h-line h2, .h-line h3, .h-line h4, .h-line h5, .h-line h6 {
    padding: 0 0 0.3em 0;
  }
}

/*-------------------------
 link
---------------------------*/
a.link-text {
  text-underline-offset: 0.2em;
}

a.link-url {
  overflow-wrap: anywhere;
  word-break: break-all;
}

/*-------------------------
 more
---------------------------*/
.p-more {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*-------------------------
 btn
---------------------------*/
.btn {
  position: relative;
  width: 230px;
  min-height: 60px;
  padding: 15px 30px;
  border-radius: 100px;
  background: #1976D2;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  line-height: 1.5;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.btn:after {
  content: "";
  display: block;
  width: 14px;
  height: 15px;
  background: url("../images/arrow_btn_go.svg") no-repeat;
  background-size: 100% auto;
}

.btn.btn-back {
  background-color: #B7BEC0;
  flex-direction: row-reverse;
}
.btn.btn-back:after {
  background-image: url("../images/arrow_btn_back.svg");
}

.btn.w-middle {
  width: 100%;
  max-width: 280px;
}

.btn.center {
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------
 btns
---------------------------*/
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.btns.is_center {
  justify-content: center;
}

.btns.is_right {
  justify-content: flex-end;
}

/*-------------------------
 local nav
---------------------------*/
nav.p-local-nav ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: minmax(60px, auto);
  gap: 30px 24px;
  margin: 0 auto 60px;
}
nav.p-local-nav li {
  position: relative;
  color: #1976D2;
  text-align: center;
}
nav.p-local-nav li .label {
  position: relative;
  height: 100%;
  padding: 10px 15px;
  background: #fff;
  border: 3px solid #1976D2;
  border-radius: 10px;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav.p-local-nav li .label:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 16px;
  height: 11px;
  background: url("../images/page_nav_arrow.svg") no-repeat center top;
  background-size: 100% auto;
  transform: translate(-50%, 0);
}
nav.p-local-nav li.is_current {
  color: #fff;
}
nav.p-local-nav li.is_current .label {
  background: #1976D2;
}
nav.p-local-nav li.is_current .label:after {
  background-image: url("../images/page_nav_arrow_on.svg");
}
nav.p-local-nav a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: currentColor;
}
nav.p-local-nav a:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 767px) {
  nav.p-local-nav ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px 24px;
  }
}

/*-------------------------
 p-pagination
---------------------------*/
.screen-reader-text, .screen-reader-response {
  border: 0;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.p-pagination {
  position: relative;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.p-pagination .prev a, .p-pagination .prev div {
  display: block;
  flex: none;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: #1976D2 url("../images/arrow_pager_prev.svg") no-repeat center center;
  background-size: 100% auto;
  text-decoration: none;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
}
.p-pagination .next a, .p-pagination .next div {
  display: block;
  flex: none;
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: #1976D2 url("../images/arrow_pager_next.svg") no-repeat center center;
  background-size: 100% auto;
  text-decoration: none;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
}
.p-pagination .prev div, .p-pagination .next div {
  opacity: 0.3;
  pointer-events: none;
}
.p-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin: auto;
  padding: 20px 36px;
  background: #DEF1FE;
  border-radius: 200px;
  letter-spacing: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.p-pagination ul.page-numbers li a:not(.prev, .next), .p-pagination ul.page-numbers li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  color: #1976D2;
  text-align: center;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  font-family: "Figtree", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.p-pagination ul.page-numbers li a:hover, .p-pagination ul.page-numbers li span.page-numbers.current {
  color: #fff;
  background: #1976D2;
}
@media screen and (max-width: 767px) {
  .p-pagination {
    gap: 20px;
  }
  .p-pagination .prev {
    width: 30px;
    height: 30px;
  }
  .p-pagination .next {
    width: 30px;
    height: 30px;
  }
  .p-pagination ul.page-numbers {
    gap: 10px;
    padding: 15px 20px;
  }
}

.l-main {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/*-------------------------
 breadcrumb 
---------------------------*/
.breadcrumb-container {
  position: relative;
  width: 100%;
}
.breadcrumb-container .breadcrumb {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.breadcrumb {
  line-height: 1.2;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3px 0;
}
.breadcrumb li {
  display: flex;
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 6px;
  color: #969C9E;
}
.breadcrumb li a {
  color: #969C9E;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.breadcrumb li:last-child:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb ol {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: auto;
  }
  .breadcrumb ol {
    padding: 10px 0;
    overflow-x: auto;
  }
  .breadcrumb li {
    white-space: nowrap;
  }
  .breadcrumb span {
    white-space: nowrap;
  }
}

/*-------------------------
 section 
---------------------------*/
.sec {
  position: relative;
}

.sec-inner {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.w-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .w-500 {
    width: auto;
  }
}

.w-800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.w-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.w-1100 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.w-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/*------------
splide
------------*/
/* dot */
.splide__pagination {
  gap: 12px;
}
.splide__pagination li .splide__pagination__page {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 1px solid #000;
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
}
.splide__pagination li .splide__pagination__page:hover, .splide__pagination li .splide__pagination__page.is-active {
  background: #1976D2;
}

.side-bn {
  position: fixed;
  top: 50vh;
  right: 0;
  width: 68px;
  line-height: 0;
  transform: translate(0, -50%);
  z-index: 40;
}
.side-bn img {
  width: 100%;
}
.side-bn a {
  display: block;
  background: #FFFF58;
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .side-bn {
    top: auto;
    bottom: 0;
    width: 56px;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  .side-bn {
    top: auto;
    bottom: 0;
    width: 80px;
    transform: translate(0, 0);
  }
}

/*-------------------------
 main-container
---------------------------*/
.main-container {
  flex: 1;
  position: relative;
  background: #fff url("../images/header_curve.svg") no-repeat center top;
  background-size: 100% auto;
}
.main-container:before {
  content: "";
  display: block;
  position: absolute;
  left: 50vw;
  top: 2.5vw;
  width: 7.63vw;
  max-width: 110px;
  aspect-ratio: 221/108;
  background: url("../images/header_truck.png") no-repeat center center;
  background-size: contain;
  transform: translate(-20%, -75%);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-container:before {
    width: 10vw;
    top: 2.1vw;
  }
}
@media screen and (max-width: 767px) {
  .main-container:before {
    width: 10vw;
  }
}

/*-------------------------
 page header
---------------------------*/
.sec-page-header {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto clamp(6rem, 8.8vw, 9rem);
  padding: 4.44vw 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.sec-page-header .page-header-title {
  position: relative;
}
.sec-page-header .page-header-title .title {
  position: relative;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #3E3C3C;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 1.4; /* 67.2px */
  letter-spacing: 0.05em;
  font-weight: 500;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.sec-page-header .page-header-en {
  position: relative;
  line-height: 1;
  text-align: right;
  font-family: "Figtree", sans-serif;
  color: #1976D2;
  font-size: clamp(1.5rem, 9vw, 130px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.sec-page-header .page-header-en img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec-page-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3.6vw;
    margin: 0 auto clamp(3rem, 8.8vw, 9rem);
    padding: 10vw 0 0;
  }
  .sec-page-header .page-header-title .title {
    font-size: clamp(2.8rem, 7.2vw, 5rem);
  }
  .sec-page-header .page-header-en {
    align-self: flex-end;
    font-size: clamp(2.4rem, 11vw, 130px);
  }
}

/*-------------------------
 base-container
---------------------------*/
.base-container {
  position: relative;
  padding: 0 0 96px;
}

.base-container-inner {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------
 scrollIn 
---------------------------*/
.scrollIn.fade {
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.5s ease-out;
}

.scrollIn.fade.is_show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------
 activity
---------------------------*/
.p-activity-list {
  position: relative;
}
.p-activity-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-activity-list a {
  display: block;
  text-decoration: none;
  color: currentColor;
}
.p-activity-list .list-inner {
  display: flex;
  gap: 15px 20px;
  padding: 30px 40px 30px 60px;
  background: #F3F3F3;
  border-radius: 10px;
}
.p-activity-list .list-inner:after {
  content: "";
  display: block;
  position: relative;
  width: 22px;
  height: 24px;
  background: url("../images/icon_pdf.svg") no-repeat center center;
  background-size: 100% auto;
  flex: none;
  align-self: center;
}
.p-activity-list .post-year {
  color: #B2B1B0;
}
.p-activity-list .post-title {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-activity-list .list-inner {
    padding: 20px 30px 20px 30px;
  }
}

/*-------------------------
 news 
---------------------------*/
/* list ---------*/
.p-news-list {
  position: relative;
}
.p-news-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-news-list a {
  display: block;
  text-decoration: none;
  color: currentColor;
}
.p-news-list .list-inner {
  display: flex;
  gap: 15px 20px;
  padding: 30px 40px 30px 60px;
  background: #F3F3F3;
}
.p-news-list .list-inner:after {
  content: "";
  display: block;
  position: relative;
  width: 14px;
  height: 12px;
  background: url("../images/arrow_1.svg") no-repeat center center;
  background-size: 100% auto;
  flex: none;
  align-self: center;
}
.p-news-list .post-meta {
  display: flex;
  align-items: center;
  gap: 10px 20px;
}
.p-news-list .post-meta .post-date {
  width: 5.6em;
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: #B2B1B0;
  font-size: 87.5%;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
}
.p-news-list .post-meta .post-category {
  margin: 0;
  width: 10em;
}
.p-news-list .post-title {
  flex: 1;
  align-self: center;
  margin: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .p-news-list .list-inner {
    padding: 20px 30px 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-list .list-inner {
    padding: 15px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .p-news-list .post-meta {
    grid-column: 1/span 2;
  }
}

/* article ---------*/
.news-article {
  position: relative;
  margin-bottom: 80px;
}

.news-article-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin: 0 0 48px;
}
.news-article-header .post-update {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  gap: 8px;
}
.news-article-header .post-update .is_new {
  position: relative;
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: #3A93FB;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.news-article-header .post-update .post-date {
  position: relative;
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: #B2B1B0;
  font-size: 87.5%;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
}
.news-article-header .post-category {
  position: relative;
  align-self: center;
  margin: 0;
}
.news-article-header .post-title {
  position: relative;
  grid-column: 1/3;
  padding: 30px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.news-article-header .post-title .title {
  position: relative;
  font-size: 200%;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .news-article-header .post-title {
    padding: 20px 0;
  }
  .news-article-header .post-title .title {
    font-size: 130%;
  }
}

.news-article-body {
  position: relative;
  line-height: 1.8;
}

.post-category {
  display: flex;
  gap: 8px;
}
.post-category .label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.3em;
  background: #EAA99E;
  border-radius: 100px;
  color: #000;
  font-size: 75%;
  text-align: center;
  line-height: 1.4;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.post-category .label[data-cat=gijiroku] {
  background: #EAA99E;
}

.post-category .label[data-cat=activity] {
  background: #b8e5bf;
}

.post-category .label[data-cat=event] {
  background: #A9C1DB;
}

/*-------------------------
 contact form 7
---------------------------*/
.wpcf7 p {
  margin: 0 0 1.5em;
}
.wpcf7 input[type=text], .wpcf7 input[type=tel], .wpcf7 input[type=email] {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 3em;
  margin: 10px 0 0;
  padding: 1em 2em;
  border: 0;
  border-radius: 10px;
  background: #F3F3F3;
}
.wpcf7 textarea {
  width: 100%;
  margin: 10px 0 0;
  padding: 1em 2em;
  border: 0;
  border-radius: 10px;
  background: #F3F3F3;
}
.wpcf7 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
  min-height: 3em;
  margin: 0;
  padding: 1em 2em;
  border: 0;
  border-radius: 10px;
  background: #F3F3F3;
}
.wpcf7 .wpcf7-form-control-wrap:has(> select) {
  position: relative;
  display: inline-block;
  margin: 10px 0 0;
}
.wpcf7 .wpcf7-form-control-wrap:has(> select):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 15px;
  height: 8px;
  background-color: #1976D2;
  -webkit-clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
          clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.wpcf7 .wpcf7-list-item-label {
  display: inline-block;
  margin: 0 2em 0 5px;
}
.wpcf7 .formbtns p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.wpcf7 .wpcf7-submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  width: 230px;
  min-height: 60px;
  padding: 15px 55px 15px 30px;
  border-radius: 100px;
  background: #1976D2 url("../images/arrow_btn_go.svg") no-repeat right 30px center;
  background-size: 14px auto;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  line-height: 1.5;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}
.wpcf7 .wpcf7-submit:hover {
  opacity: 0.7;
}
.wpcf7 .wpcf7-previous {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  width: 230px;
  min-height: 60px;
  padding: 15px 30px 15px 55px;
  border-radius: 100px;
  background: #B7BEC0 url("../images/arrow_btn_back.svg") no-repeat 30px center;
  background-size: 14px auto;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  line-height: 1.5;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: right;
  cursor: pointer;
}

/*-------------------------
 join 
---------------------------*/
.p-member-type {
  display: flex;
}
.p-member-type .memper-type-item {
  width: 33.33%;
  padding: 0 2em;
  border-right: 2px solid #EBEBEB;
}
.p-member-type .memper-type-item h3 {
  display: table;
  width: 7em;
  margin: 0 auto 15px;
  padding: 10px 15px;
  border-radius: 6px;
  background: #1976D2;
  color: #fff;
  font-size: 112.5%;
  font-weight: 400;
  text-align: center;
}
.p-member-type .memper-type-item:last-child {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-member-type {
    flex-direction: column;
    gap: 2em;
  }
  .p-member-type .memper-type-item {
    width: auto;
    padding: 0;
    border: 0;
  }
  .p-member-type .memper-type-item h3 {
    margin: 0 0 10px 0;
    font-size: 100%;
  }
  .p-member-type .memper-type-item p {
    margin: 10px 0 0 0;
  }
}

/*-------------------------
 grid-table 
---------------------------*/
.grid-table {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  grid-auto-rows: minmax(4em, auto);
  gap: 2px 0;
  border-radius: 10px;
  overflow: hidden;
}
.grid-table .table-label {
  padding: 1.5em 2em;
  background: #E9F1F6;
  font-size: 100%;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
}
.grid-table .table-cell {
  padding: 1.5em 2em;
  background: #F5F8FA;
  line-height: 1.6;
}
.grid-table .table-cell p {
  margin: 0 0 0.6em;
}
.grid-table .table-cell p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .grid-table {
    font-size: 87.5%;
  }
  .grid-table .table-label {
    padding: 1.5em 1em;
  }
  .grid-table .table-cell {
    padding: 1.5em 1em;
  }
}

.grid-table.th-middle {
  grid-template-columns: minmax(8em, 0.5fr) 1fr;
}
.grid-table.th-middle .table-label {
  text-align: left;
}

.grid-table.thin {
  grid-auto-rows: minmax(1em, auto);
}
.grid-table.thin .table-label {
  padding: 10px 2em;
}
.grid-table.thin .table-cell {
  padding: 10px 2em;
}
@media screen and (max-width: 767px) {
  .grid-table.thin .table-label {
    padding: 10px 1em;
  }
  .grid-table.thin .table-cell {
    padding: 10px 1em;
  }
}

@media screen and (max-width: 767px) {
  .grid-table.pc {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .grid-table.pc .table-label {
    padding: 10px 1em;
  }
  .grid-table.pc .table-cell {
    padding: 1em 1em;
  }
}

.home-container {
  position: relative;
}
.home-container .corner-round {
  position: absolute;
  aspect-ratio: 1/1;
  width: 150px;
  z-index: 0;
  pointer-events: none;
}
.home-container .corner-round:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.home-container .round-lt {
  top: 0;
  left: 0;
}
.home-container .round-lt:after {
  border-radius: 150px 0 0;
}
.home-container .round-rt {
  top: 0;
  right: 0;
}
.home-container .round-rt:after {
  border-radius: 0 150px 0 0;
}
.home-container .round-lb {
  bottom: 0;
  left: 0;
}
.home-container .round-lb:after {
  border-radius: 0 0 0 150px;
}
.home-container .round-rb {
  bottom: 0;
  right: 0;
}
.home-container .round-rb:after {
  border-radius: 0 0 150px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .home-container .round-lt:after {
    border-radius: 120px 0 0;
  }
  .home-container .round-rt:after {
    border-radius: 0 120px 0 0;
  }
  .home-container .round-lb:after {
    border-radius: 0 0 0 120px;
  }
  .home-container .round-rb:after {
    border-radius: 0 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .home-container .round-lt:after {
    border-radius: 60px 0 0;
  }
  .home-container .round-rt:after {
    border-radius: 0 60px 0 0;
  }
  .home-container .round-lb:after {
    border-radius: 0 0 0 60px;
  }
  .home-container .round-rb:after {
    border-radius: 0 0 60px;
  }
}

/*-------------------------
 FV
---------------------------*/
.fv-container {
  position: relative;
  aspect-ratio: 2880/1732;
}
.fv-container .fv-inner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.fv-container .fv-bg {
  position: relative;
  line-height: 0;
  pointer-events: none;
  height: 100%;
}
.fv-container .fv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.fv-container .fv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  line-height: 0;
  pointer-events: none;
}
.fv-container .fv-img img {
  width: 100%;
}
.fv-container .fv-img svg {
  width: 100%;
  height: auto;
}
.fv-container .fv-img .line {
  position: relative;
}
.fv-container .fv-img .illust {
  position: absolute;
}
.fv-container .fv-img .illust .illust-bg {
  position: relative;
  opacity: 0;
}
.fv-container .fv-img .illust .illust-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.fv-container .fv-img .illust_1 {
  top: 21%;
  left: 20.54%;
  width: 30.108%;
}
.fv-container .fv-img .illust_2 {
  top: 37.76%;
  left: 63.913%;
  width: 31.5217%;
}
.fv-container .fv-text {
  position: absolute;
  top: 23.787%;
  left: 8.333%;
  width: 42.9166%;
}
.fv-container .fv-text h1 {
  margin: 0;
  line-height: 0;
}
.fv-container .fv-text h1 img {
  width: 100%;
}
.fv-container .fv-truck {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25.416%;
  aspect-ratio: 358/235;
  transform: translate(0, 44%);
  pointer-events: none;
  z-index: 20;
}
.fv-container .fv-truck .truck {
  position: relative;
  width: 61.4%;
  line-height: 0;
}
.fv-container .fv-truck .truck img {
  width: 100%;
}
.fv-container .fv-truck .truck .circle {
  position: relative;
  width: 100%;
}
.fv-container .fv-truck .truck .circle img {
  animation: fvTruckTextAnime 24s linear infinite;
  transform-origin: 50% 50%;
}
.fv-container .fv-truck .truck .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: fvTruckAnime 1.8s cubic-bezier(0.61, 0.9, 0.71, 1.02) infinite;
}
.fv-container .fv-truck .line {
  position: absolute;
  top: 0;
  right: 0;
  width: 45.53%;
}
.fv-container .fv-truck .line svg {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .fv-container .fv-img {
    width: calc(95% - 390px);
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .fv-container {
    aspect-ratio: 100/100;
    /*aspect-ratio: 393 / 650;
    .fv-img {
      top: 0;
      right: auto;
      left: 0;
      width: 100%;
      .illust_1 {
        top: 42.65%;
        left: 11%;
        width: 36%;
      }
      .illust_2 {
        top: 45.76%;
        left: 52.913%;
        width: 35.65%;
      }
    }
    .fv-text {
      top: 19vw;
      left: 12.46%;
      width: 78%;
    }
    .fv-truck {
      visibility: hidden;
    }*/
  }
  .fv-container .fv-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
  .fv-container .fv-img {
    top: 45px;
    width: 64%;
  }
  .fv-container .fv-text {
    top: 25vw;
    left: 6vw;
    width: 50vw;
  }
  .fv-container .fv-truck {
    width: 29%;
  }
}

/*-------------------------
 news
---------------------------*/
.home-news-container {
  position: relative;
  padding: 130px 115px;
  background: #fff;
}
.home-news-container .round-lt {
  background: #CEE7F7;
}
.home-news-container .round-lt:after {
  background: #fff;
}
.home-news-container .round-lb {
  background: #F6E8E3;
}
.home-news-container .round-lb:after {
  background: #fff;
}
.home-news-container .news-containe-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
}
.home-news-container .home-news-header {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-news-container .home-news-header .home-news-title {
  position: relative;
  margin: 0 0 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #3E3C3C;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-news-container .home-news-header .home-news-title .title {
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
.home-news-container .home-news-header .home-news-en {
  position: relative;
  width: 40%;
  width: auto;
  max-width: 620px;
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: #F6F6F6;
  font-size: clamp(2.4rem, 10vw, 154px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .home-news-container {
    padding: 80px 5%;
  }
}
@media screen and (max-width: 767px) {
  .home-news-container {
    padding: 80px 5%;
  }
  .home-news-container .round-lt {
    background: #a0a4a8;
  }
  .home-news-container .home-news-header .home-news-title {
    font-size: clamp(2.8rem, 8.4vw, 5rem);
  }
  .home-news-container .home-news-header .home-news-en {
    width: auto;
    font-size: clamp(2.6rem, 9.7vw, 130px);
  }
}

/*-------------------------
 about
---------------------------*/
.home-about-container {
  position: relative;
  padding: 0 115px 130px;
  background: #F6E8E3;
}
.home-about-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 80px;
  width: 179px;
  aspect-ratio: 179/101;
  background: url("../images/about/illust_1.png") no-repeat;
  background-size: contain;
  transform: translate(0, -81%);
}
.home-about-container .round-rt {
  background: #fff;
}
.home-about-container .round-rt:after {
  background: #F6E8E3;
}
.home-about-container .round-rb {
  background: #CEE7F7;
}
.home-about-container .round-rb:after {
  background: #F6E8E3;
}
.home-about-container .about-line-1 {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 0;
  width: 25%;
  max-width: 361px;
}
.home-about-container .about-line-1 svg {
  width: 100%;
  height: auto;
}
.home-about-container .about-line-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 0;
  width: 53.5%;
  max-width: 752px;
}
.home-about-container .about-line-2 svg {
  width: 100%;
  height: auto;
}
.home-about-container .about-line-1.scrollIn mask path {
  stroke-dashoffset: 2000;
  stroke-dasharray: 2000;
}
.home-about-container .about-line-1.scrollIn.is_show mask path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 4s ease-out 0.4s;
}
.home-about-container .about-line-2.scrollIn mask path {
  stroke-dashoffset: 4000;
  stroke-dasharray: 4000;
}
.home-about-container .about-line-2.scrollIn.is_show mask path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 4s ease-out 0.4s;
}
.home-about-container .home-en {
  position: relative;
  margin: 0 auto 80px;
  font-family: "Figtree", sans-serif;
  color: #FFF;
  font-size: clamp(1.5rem, 9vw, 130px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-about-container .about-container-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-about-container .about-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
.home-about-container .about-header .home-about-title {
  position: relative;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #3E3C3C;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-about-container .about-header .home-about-title h1, .home-about-container .about-header .home-about-title h2, .home-about-container .about-header .home-about-title h3 {
  font-weight: 500;
}
.home-about-container .about-lead {
  position: absolute;
  top: 0;
  right: 0;
  height: 19em;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin: 0;
  font-size: 2.3rem;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
}
.home-about-container .about-lead span {
  display: block;
}
.home-about-container .p-about-container {
  position: relative;
  margin: 50px 0;
}
.home-about-container .about-item {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 14em);
}
.home-about-container .about-item .about-text {
  position: relative;
  z-index: 1;
}
.home-about-container .about-item .about-text h2 {
  position: relative;
  display: table;
  margin: 0 auto 1em 0;
  font-size: 200%;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-about-container .about-item .about-text h2 span {
  display: inline-block;
  position: relative;
}
.home-about-container .about-item .about-text h2 .line {
  position: absolute;
  top: 100%;
  line-height: 0;
  overflow: hidden;
}
.home-about-container .about-item .about-text p {
  margin: 0;
  font-size: 112.5%;
}
.home-about-container .about-item .about-img {
  position: relative;
  width: 44%;
  line-height: 0;
  z-index: 0;
}
.home-about-container .about-item .about-img .bg {
  position: absolute;
}
.home-about-container .about-item .about-img .img {
  position: relative;
}
.home-about-container .about-item .about-text.scrollIn h2 .line path {
  stroke-dashoffset: 200;
  stroke-dasharray: 200;
}
.home-about-container .about-item .about-text.scrollIn.is_show h2 .line path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease-out;
}
.home-about-container .about-item .about-img.scrollIn .bg {
  scale: 0.5;
  opacity: 1;
}
.home-about-container .about-item .about-img.scrollIn .img {
  scale: 0.7;
  opacity: 0;
}
.home-about-container .about-item .about-img.scrollIn.is_show .bg {
  scale: 1;
  opacity: 1;
  transition: scale 0.6s ease-out, opacity 0.1s ease-out;
}
.home-about-container .about-item .about-img.scrollIn.is_show .img {
  scale: 1;
  opacity: 1;
  transition: scale 0.5s ease-out 0.4s, opacity 0.1s ease-out 0.4s;
}
.home-about-container .about-item:nth-child(1) {
  justify-content: flex-end;
}
.home-about-container .about-item:nth-child(1) .about-text {
  margin-right: -50px;
}
.home-about-container .about-item:nth-child(1) .about-text h2 .line {
  left: 0;
  width: 4.8em;
  transform: translate(-0.2em, 0);
}
.home-about-container .about-item:nth-child(1) .about-img .bg {
  top: 0;
  left: 0;
}
.home-about-container .about-item:nth-child(2) {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.home-about-container .about-item:nth-child(2) .about-text {
  margin-left: -50px;
}
.home-about-container .about-item:nth-child(2) .about-text h2 .line {
  right: 0;
  width: 3.6em;
  transform: translate(0.1em, 0);
}
.home-about-container .about-item:nth-child(2) .about-img .bg {
  top: 0;
  left: 0;
}
.home-about-container .about-item:nth-child(3) {
  justify-content: flex-end;
  margin-top: -5%;
  margin-left: auto;
}
.home-about-container .about-item:nth-child(3) .about-text {
  margin-right: -50px;
}
.home-about-container .about-item:nth-child(3) .about-text h2 .line {
  left: 0;
  width: 2.6em;
  transform: translate(-0.1em, 0);
}
.home-about-container .about-item:nth-child(3) .about-img .bg {
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .home-about-container {
    padding: 0 5% 80px;
  }
  .home-about-container:before {
    width: 140px;
  }
  .home-about-container .home-en {
    margin: 0 auto 80px 60px;
  }
  .home-about-container .about-item {
    width: 80%;
  }
  .home-about-container .about-item:nth-child(2) {
    margin-top: 50px;
  }
  .home-about-container .about-item:nth-child(3) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .home-about-container {
    padding: 0 5% 80px;
  }
  .home-about-container:before {
    left: 50px;
    width: 100px;
  }
  .home-about-container .about-line-1 {
    width: 40%;
    max-width: 180px;
  }
  .home-about-container .about-line-2 {
    width: 74%;
    max-width: 320px;
  }
  .home-about-container .home-en {
    margin: 0 auto 40px 20px;
    font-size: clamp(2.4rem, 9.7vw, 130px);
  }
  .home-about-container .about-header {
    flex-direction: column;
    gap: 30px;
  }
  .home-about-container .about-header .home-about-title {
    font-size: clamp(2.8rem, 8.4vw, 5rem);
  }
  .home-about-container .about-lead {
    position: relative;
    align-self: center;
    font-size: clamp(1.4rem, 4.5vw, 2.3rem);
  }
  .home-about-container .p-about-container {
    margin: 20px 0 0;
  }
  .home-about-container .about-item {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
  }
  .home-about-container .about-item .about-text h2 {
    font-size: clamp(2rem, 6vw, 4rem);
  }
  .home-about-container .about-item .about-img {
    width: 90%;
    max-width: 400px;
    margin: auto;
  }
  .home-about-container .about-item:nth-child(1) {
    margin: auto;
  }
  .home-about-container .about-item:nth-child(1) .about-text {
    margin: 0;
  }
  .home-about-container .about-item:nth-child(2) {
    flex-direction: column;
    margin: 60px auto;
  }
  .home-about-container .about-item:nth-child(2) .about-text {
    margin: 0;
  }
  .home-about-container .about-item:nth-child(3) {
    margin: 60px auto 0;
  }
  .home-about-container .about-item:nth-child(3) .about-text {
    margin: 0;
  }
}

/*-------------------------
 org
---------------------------*/
.home-org-container {
  position: relative;
  padding: 0 115px 130px;
  background: #CEE7F7;
}
.home-org-container .round-lt {
  background: #F6E8E3;
}
.home-org-container .round-lt:after {
  background: #CEE7F7;
}
.home-org-container .home-en {
  position: relative;
  margin: 0 auto 80px;
  font-family: "Figtree", sans-serif;
  color: #F6E8E3;
  font-size: clamp(1.5rem, 9vw, 130px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-org-container .org-container-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-org-container .org-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
.home-org-container .org-header:after {
  content: "";
  display: block;
  position: relative;
  width: 169px;
  margin: 20px 100px 0 0;
  aspect-ratio: 338/138;
  background: url("../images/organization/illust_1.png") no-repeat center bottom;
  background-size: contain;
}
.home-org-container .org-header .home-org-title {
  position: relative;
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #3E3C3C;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.home-org-container .org-header .home-org-title h1, .home-org-container .org-header .home-org-title h2, .home-org-container .org-header .home-org-title h3 {
  font-weight: 500;
}
.home-org-container .p-org-container {
  position: relative;
  margin: 0 0 80px;
  padding: 70px 50px;
  border-radius: 60px;
  background: #fff;
}
.home-org-container .p-org-container:last-child {
  margin-bottom: 0;
}
.home-org-container .p-org-container h2 {
  position: relative;
  max-width: 350px;
  margin: 0 auto 50px;
  line-height: 0;
  text-align: center;
}
.home-org-container .p-org-member {
  position: relative;
  /*.org-member-grp {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }*/
  /*.org-member-grp:nth-child(1) {
    grid-column: 1 / span 3;
  }*/
}
.home-org-container .p-org-member h3 {
  margin: 0 0 1em;
  font-size: 143%;
}
.home-org-container .p-org-member h4 {
  font-size: 100%;
  margin: 0 0 0.5em;
  line-height: 1.5;
}
.home-org-container .p-org-member .org-member-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2em 3em;
}
.home-org-container .p-org-member .org-member-item {
  display: flex;
}
.home-org-container .p-org-member .org-member-item p {
  margin: 0;
  font-size: 81.25%;
  letter-spacing: 0;
}
.home-org-container .p-org-member .org-member-item .post {
  width: 4em;
}
.home-org-container .p-org-member .org-member-item .name {
  flex: 1;
}
.home-org-container .p-org-member .org-member-item span.company {
  display: inline-block;
}
.home-org-container .p-activity-container {
  position: relative;
  margin: 0 0 80px;
}
.home-org-container .p-activity-container:last-child {
  margin-bottom: 0;
}
.home-org-container .p-activity-container h2 {
  position: relative;
  width: 80%;
  max-width: 400px;
  margin: 0 auto 50px;
  line-height: 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .home-org-container {
    padding: 0 5% 80px;
    /*.p-org-member {
      .org-member-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .org-member-grp:nth-child(1) {
        grid-column: 1 / 1;
      }
    }*/
  }
  .home-org-container .home-en {
    margin: 0 auto 80px 60px;
  }
}
@media screen and (max-width: 767px) {
  .home-org-container {
    padding: 0 5% 80px;
    /*.p-org-member {
      .org-member-container {
        grid-template-columns: repeat(1, 1fr);
      }
      .org-member-grp:nth-child(1) {
        grid-column: 1 / 1;
      }
    }*/
  }
  .home-org-container .home-en {
    margin: 0 auto 40px 20px;
    font-size: clamp(2.4rem, 9.7vw, 130px);
  }
  .home-org-container .org-header:after {
    width: 100px;
    margin: 10px 30px 0 0;
  }
  .home-org-container .org-header .home-org-title {
    font-size: clamp(2.8rem, 8.4vw, 5rem);
  }
  .home-org-container .p-org-container {
    margin: 0 0 50px;
    padding: 50px 6vw;
    border-radius: 30px;
  }
  .home-org-container .p-org-container:last-child {
    margin-bottom: 0;
  }
  .home-org-container .p-activity-container {
    margin: 0 0 50px;
  }
  .home-org-container .p-activity-container:last-child {
    margin-bottom: 0;
  }
}

.org-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 35px 22px;
  margin: 50px auto 0;
}
.org-chart .chart {
  position: relative;
  z-index: 1;
  line-height: 0;
  text-align: center;
}
.org-chart .chart img {
  position: relative;
  width: 100%;
  border-radius: 15px;
  z-index: 0;
}
.org-chart .org-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.org-chart .org-connector .line {
  fill: none;
  stroke: #5d6673;
  stroke-width: 4;
  stroke-linecap: round;
}
.org-chart .org-connector .node {
  fill: #4c5563;
}
.org-chart .chart:nth-child(1) {
  grid-area: 1/2/2/3;
}
.org-chart .chart:nth-child(1):before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  right: 50%;
  width: 1px;
  height: 33px;
  background: #464E56;
  transform: translate(0, -10px);
  z-index: 1;
}
.org-chart .chart:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #464E56;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.org-chart .chart:nth-child(2) {
  grid-area: 2/1/3/2;
}
.org-chart .chart:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  top: 1%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #464E56;
  transform: translate(-50%, 50%);
  z-index: 1;
}
.org-chart .chart:nth-child(3) {
  grid-area: 2/2/3/3;
}
.org-chart .chart:nth-child(3):before {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  right: 50%;
  width: calc(100% + 22px);
  height: 34px;
  border: 1px solid #464E56;
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
  z-index: 10;
}
.org-chart .chart:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  top: 1%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #464E56;
  transform: translate(-50%, 50%);
  z-index: 1;
}
.org-chart .chart:nth-child(4) {
  grid-area: 2/3/3/4;
}
.org-chart .chart:nth-child(4):before {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  right: 50%;
  width: calc(100% + 22px);
  height: 34px;
  border: 1px solid #464E56;
  border-bottom: 0;
  border-left: 0;
  border-radius: 15px 15px 0 0;
  z-index: 10;
}
.org-chart .chart:nth-child(4):after {
  content: "";
  display: block;
  position: absolute;
  top: 1%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #464E56;
  transform: translate(-50%, 50%);
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .org-chart {
    /*max-width: 800px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    .org-connector {
      display: none;
    }
    .chart:nth-child(1) { grid-area: 2 / 1 / 3 / 2; }
    .chart:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
    .chart:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
    .chart:nth-child(4) { grid-area: 3 / 2 / 4 / 3; }*/
  }
}
@media screen and (max-width: 767px) {
  .org-chart {
    max-width: 331px;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 20px 0;
    /*max-width: 800px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    .org-connector {
      display: none;
    }
    .chart {
      img {
        border-radius: 5px;
      }
    }
    .chart:nth-child(1) { grid-area: initial; }
    .chart:nth-child(2) {
      grid-area: initial;
      justify-self: flex-end;
      width: 80%;
    }
    .chart:nth-child(3) {
      grid-area: initial;
      justify-self: flex-end;
      width: 80%;
    }
    .chart:nth-child(4) {
      grid-area: initial;
      justify-self: flex-end;
      width: 80%;
    }*/
  }
  .org-chart .chart img {
    border-radius: 5px;
  }
  .org-chart .chart:nth-child(1) {
    grid-column: 1/span 4;
  }
  .org-chart .chart:nth-child(1):before {
    left: 13%;
    height: calc(200% + 60px + 4px);
    transform: translate(0, -4px);
  }
  .org-chart .chart:nth-child(1):after {
    bottom: 0;
    left: calc(13% + 1px);
  }
  .org-chart .chart:nth-child(2), .org-chart .chart:nth-child(3), .org-chart .chart:nth-child(4) {
    grid-area: auto;
    grid-column: 2/span 4;
  }
  .org-chart .chart:nth-child(2):before, .org-chart .chart:nth-child(3):before, .org-chart .chart:nth-child(4):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 100%;
    width: 12%;
    height: 50%;
    border: 1px solid #464E56;
    border-top: 0;
    border-right: 0;
    border-radius: 0 0 0 15px;
  }
  .org-chart .chart:nth-child(2):after, .org-chart .chart:nth-child(3):after, .org-chart .chart:nth-child(4):after {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
}

.org-mokuhyo {
  position: relative;
  display: flex;
  max-width: 880px;
  margin: auto;
}
.org-mokuhyo .mokuhyo-item {
  width: 41%;
  margin: 0 -4%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 500px;
  color: #fff;
  text-align: center;
}
.org-mokuhyo .num {
  margin: 0 0 0.7em;
  font-family: "Figtree", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
.org-mokuhyo .caption {
  margin: 0;
  font-size: 23px;
  line-height: 1.4;
}
.org-mokuhyo .mokuhyo-item:nth-child(1) {
  background: rgba(232, 134, 127, 0.8);
}
.org-mokuhyo .mokuhyo-item:nth-child(2) {
  background: rgba(125, 170, 219, 0.8);
}
.org-mokuhyo .mokuhyo-item:nth-child(3) {
  background: rgba(158, 220, 183, 0.8);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .org-mokuhyo .mokuhyo-item {
    width: calc(33% + 40px);
    margin: 0 -20px;
    font-size: clamp(16px, 2vw, 20px);
  }
  .org-mokuhyo .num {
    font-size: 30px;
    font-size: 180%;
  }
  .org-mokuhyo .caption {
    font-size: 18px;
    font-size: 110%;
  }
}
@media screen and (max-width: 767px) {
  .org-mokuhyo {
    width: 80%;
    max-width: 320px;
    margin: auto;
    flex-direction: column;
  }
  .org-mokuhyo .mokuhyo-item {
    width: 100%;
    margin: -20px 0;
    font-size: min(20px, 5vw);
  }
  .org-mokuhyo .num {
    font-size: 180%;
  }
  .org-mokuhyo .caption {
    font-size: 110%;
  }
}

.org-member-list {
  -moz-columns: 3;
       columns: 3;
}
.org-member-list li {
  position: relative;
  margin: 0 1em 1em;
  list-style: disc;
}
.org-member-list li:last-child {
  margin-bottom: 0;
}
.org-member-list li::marker {
  font-size: 0.6em;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .org-member-list {
    -moz-columns: 2;
         columns: 2;
  }
}
@media screen and (max-width: 767px) {
  .org-member-list {
    -moz-columns: unset;
         columns: unset;
  }
  .org-member-list li {
    margin: 0 0 0.5em 1em;
  }
}

/*-------------------------
 org-history-timeline
---------------------------*/
.org-history-timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
  /*.timeline-item:has(.timeline-right) {
    margin-left: auto;
  }*/
}
.org-history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #BDBDBD;
  transform: translateX(-50%);
  z-index: 0;
}
.org-history-timeline .timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: calc(50% + 50px);
  z-index: 1;
}
.org-history-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.org-history-timeline .timeline-item:last-child:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100px;
  height: 100%;
  background: #fff;
  z-index: 0;
}
.org-history-timeline .timeline-item .timeline-year {
  position: relative;
  flex: none;
  width: 100px;
  min-height: 33px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 8px;
  background: #1976D2;
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-history-timeline .timeline-item .timeline-content {
  position: relative;
  flex: 1;
  padding: 0 40px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  /*&.timeline-right {
    text-align: left;
    padding: 10px 0 0 40px;

    &::before {
      left: -20px;
    }
    &::after {
      left: 20px;
    }
  }*/
  /*&.timeline-left {
    text-align: right;

    padding: 10px 40px 0 0;
    padding-left: 0;
    order: -1;

    &::before {
      right: -20px;
    }
    &::after {
      right: 20px;
    }
  }*/
}
.org-history-timeline .timeline-item .timeline-content p {
  margin: 0 0 0.5em;
}
.org-history-timeline .timeline-item .timeline-content p:last-child {
  margin-bottom: 0;
}
.org-history-timeline .timeline-item .timeline-content::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 40px;
  height: 2px;
  background: #BDBDBD;
  z-index: 1;
}
.org-history-timeline .timeline-item .timeline-content::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #BDBDBD;
  z-index: 2;
}
.org-history-timeline .timeline-item .timeline-content .pdf-link {
  color: #1976D2;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.org-history-timeline .timeline-item .timeline-content .pdf-link:hover {
  opacity: 0.7;
}
.org-history-timeline .timeline-item:nth-child(2n+1) {
  margin: 0 0 30px auto;
}
.org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content {
  text-align: left;
  padding: 4px 0 0 40px;
}
.org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content::before {
  left: -20px;
}
.org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content::after {
  left: 20px;
}
.org-history-timeline .timeline-item:nth-child(2n) {
  margin-left: auto;
  margin: 0 0 30px;
}
.org-history-timeline .timeline-item:nth-child(2n) .timeline-content {
  text-align: right;
  padding: 4px 40px 0 0;
  padding-left: 0;
  order: -1;
}
.org-history-timeline .timeline-item:nth-child(2n) .timeline-content::before {
  right: -20px;
}
.org-history-timeline .timeline-item:nth-child(2n) .timeline-content::after {
  right: 20px;
}
.org-history-timeline .timeline-item:nth-child(2n+1):last-child:before {
  left: 0;
}
.org-history-timeline .timeline-item:nth-child(2n):last-child:before {
  right: 0;
}
@media screen and (max-width: 767px) {
  .org-history-timeline {
    max-width: 100%;
    /*.timeline-item:has(.timeline-right) {
      margin-left: 0;
    }*/
  }
  .org-history-timeline::before {
    left: 30px;
  }
  .org-history-timeline .timeline-item {
    flex-direction: column;
    width: auto;
    margin: 0 0 40px;
    padding-left: 60px;
  }
  .org-history-timeline .timeline-item .timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 40px;
    font-size: 1.4rem;
    line-height: 40px;
    margin: 0;
  }
  .org-history-timeline .timeline-item .timeline-content {
    width: 100%;
    padding: 10px 0 0 40px;
    text-align: left;
    /*&.timeline-right,
    &.timeline-left {
      order: 0;
      padding: 5px 0 0 40px;
      text-align: left;
    }
    &.timeline-right::before, &.timeline-left::before {
      left: -20px;
      right: auto;
    }
    &.timeline-left::after, &.timeline-left::after {
      left: 20px;
      right: auto;
    }*/
  }
  .org-history-timeline .timeline-item .timeline-content::before {
    left: -20px;
    right: auto;
    top: 20px;
    width: 40px;
  }
  .org-history-timeline .timeline-item .timeline-content::after {
    left: -36px;
    top: 15px;
    width: 10px;
    height: 10px;
  }
  .org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content, .org-history-timeline .timeline-item:nth-child(2n) .timeline-content {
    order: 0;
    padding: 5px 0 0 40px;
    text-align: left;
  }
  .org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content:before, .org-history-timeline .timeline-item:nth-child(2n) .timeline-content:before {
    left: -20px;
    right: auto;
  }
  .org-history-timeline .timeline-item:nth-child(2n+1) .timeline-content:after, .org-history-timeline .timeline-item:nth-child(2n) .timeline-content:after {
    left: 20px;
    right: auto;
  }
  .org-history-timeline .timeline-item:last-child {
    margin-bottom: 0;
  }
  .org-history-timeline .timeline-item:nth-child(2n+1) {
    margin-left: 0;
  }
  .org-history-timeline .timeline-item:nth-child(2n+1):last-child:before {
    left: 0;
  }
  .org-history-timeline .timeline-item:nth-child(2n):last-child:before {
    right: auto;
    left: 0;
  }
}

/*-------------------------
 contact
---------------------------*/
.home-contact-container {
  position: relative;
  padding: 130px 115px;
  background: #fff;
}
.home-contact-container .home-contact-btns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 60px;
}
.home-contact-container .home-contact-btns .contact-btn-item {
  position: relative;
  margin: 0;
}
.home-contact-container .home-contact-btns .contact-btn-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px;
  background: #F3F3F3;
  border-radius: 20px;
}
.home-contact-container .home-contact-btns .contact-btn-item a:after {
  flex: none;
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: #1976D2 url("../images/arrow_pager_next.svg") no-repeat;
  background-size: 100% auto;
  border-radius: 100px;
}
.home-contact-container .home-contact-btns .contact-btn-item .label {
  max-width: 300px;
  margin: 0;
  line-height: 0;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .home-contact-container {
    padding: 80px 5%;
  }
  .home-contact-container .home-contact-btns {
    gap: 40px;
  }
  .home-contact-container .home-contact-btns .contact-btn-item a {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .home-contact-container {
    padding: 80px 5%;
  }
  .home-contact-container .home-contact-btns {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
  }
  .home-contact-container .home-contact-btns .contact-btn-item a {
    padding: 30px 40px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
