@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: normal;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  opacity: .7;
}

img,
svg {
  vertical-align: top;
  border: none;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: lightgray;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: lightgray;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: lightgray;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-5%);
  transform: translateX(-5%);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(5%);
  transform: translateX(5%);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

@-webkit-keyframes fv_scroll {

  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes fv_scroll {

  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #333;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a:not([class]) {
  color: #03c;
}

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

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  table-layout: fixed;
}

address {
  font-style: normal;
}

/************************************************************************
* end base
************************************************************************/
.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top 1s ease 0s;
  transition: top 1s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

/************************************************************************
* c-beforeIcon
************************************************************************/
.c-beforeIcon {
  padding-left: 1.8888888889em;
  text-indent: -1.8888888889em;
}

.c-beforeIcon::before {
  display: inline-block;
  margin-right: .5555555556em;
  content: '';
}

.c-beforeIcon.c-beforeIcon--pdf::before {
  vertical-align: middle;
  background: transparent url('../img/icon-pdf.svg') no-repeat center center/contain;
  width: 1.3333333333em;
  height: 1.3333333333em;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 0;
  background: #659933 url('../img/btn-chevron.svg') no-repeat right 1.25em center/.625em .75em;
  padding: 1.125em 2.5em 1.125em 1.625em;
  width: 17.5rem;
  max-width: 100%;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-btn:hover, .c-btn:focus-visible {
  opacity: .7;
  outline: none;
}

/************************************************************************
* 基本形
************************************************************************/
.c-downloadBtn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  margin: 0;
  border: 1px solid #659933;
  border-radius: 0;
  background: #fff url('../img/btn-chevron2.svg') no-repeat right 1.25em center/.625em .75em;
  padding: 1.125em 2.5em 1.125em 1.625em;
  width: 17.5rem;
  max-width: 100%;
  color: #0D2759;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.c-downloadBtn > span::before {
  display: inline-block;
  margin-right: .5555555556em;
  content: '';
}

.c-downloadBtn:hover, .c-downloadBtn:focus-visible {
  opacity: .7;
  outline: none;
}

.c-downloadBtn.c-downloadBtn--pdf > span::before {
  vertical-align: middle;
  background: transparent url('../img/icon-pdf.svg') no-repeat center center/contain;
  width: 1.3333333333em;
  height: 1.3333333333em;
}

/************************************************************************
* c-sectionTitle
************************************************************************/
.c-sectionTitle {
  text-align: center;
}

.c-sectionTitle__sub {
  color: #659933;
  font-family: 'Hind', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.c-sectionTitle__sub.c-sectionTitle__sub--gray {
  color: #CCC;
}

.c-sectionTitle__main {
  font-size: 1.875rem;
  line-height: 1.4444444444;
}

/************************************************************************
* p-agreement
************************************************************************/
.p-agreement {
  background-color: #EBF7DF;
  padding-top: 3.75rem;
  padding-bottom: 4.25rem;
}

.p-agreement__body {
  margin-top: 2.5rem;
  text-align: center;
}

/************************************************************************
* p-bgWrap
************************************************************************/
.p-bgWrap {
  background: transparent url('../img/bg-decoration.png') no-repeat right max(0px, (var(--vw, 100vw) - 1000px) / 2) top -19.4666666667vw/cover;
}

/************************************************************************
* p-contact
************************************************************************/
.p-contact {
  background-color: #EBF7DF;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.p-contact__lead {
  margin-top: 1.875rem;
  text-align: center;
}

.p-contact__body {
  margin-top: 1.875rem;
  text-align: center;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  cursor: pointer;
  padding: .625rem .625rem;
  line-height: 1;
  text-align: center;
}

.p-drawer__icon::after {
  display: block;
  margin-top: 3px;
  color: #659933;
  font-family: 'Hind', sans-serif;
  font-size: .625rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  content: 'MENU';
}

.p-drawer__icon.is-opened::after {
  content: 'CLOSE';
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 30px;
  height: 22px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  border-radius: 100vh;
  background: #C2D9AD;
  width: 100%;
  height: 4px;
}

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

.is-opened .p-drawer__bar {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  background: #C2D9AD;
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
  background: #C2D9AD;
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .25);
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  background: #fff;
  padding-top: var(--header-height, 60px);
  padding-bottom: var(--header-height, 60px);
  width: 100%;
  max-height: var(--vh, 100vh);
  overflow: auto;
  color: #333;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
  box-shadow: 6px 0 25px rgba(0, 0, 0, .16);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
  height: var(--vh, 100vh);
}

.p-drawer__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}

.p-drawer__navItem + .p-drawer__navItem {
  margin-top: .5em;
}

.p-drawer__navLink {
  display: block;
  padding-top: .5em;
  padding-bottom: .5em;
}

.p-footer {
  background-color: #fff;
  text-align: center;
}

.p-footer__main {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.p-footer__text {
  font-size: 1.125rem;
  line-height: 2;
}

.p-footer__copyArea {
  background-color: #659933;
  padding-top: .5rem;
  padding-bottom: .5rem;
  color: #fff;
  font-size: .75rem;
  line-height: 1.5;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  width: 100%;
}

.p-fv__inner {
  gap: .303030303vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.p-fv__imgWrap {
  gap: .303030303vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fv_scroll 80s infinite linear .5s both;
  animation: fv_scroll 80s infinite linear .5s both;
}

.p-fv__img {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18.75rem;
}

.p-header {
  background-color: #fff;
}

.p-header::before, .p-header::after {
  display: block;
  content: '';
}

.p-header::before {
  background-color: #659933;
  height: 4px;
}

.p-header::after {
  background-color: #F2F2F2;
  height: 2px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: .625rem .3125rem .625rem .75rem;
}

.p-header__logoWrap {
  z-index: 41;
}

.p-header__logoWrap a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo {
  width: 3.125rem;
  height: auto;
}

.p-header__logo img,
.p-header__logo svg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__logoText {
  margin-left: 1.25rem;
  color: #0D2759;
  font-size: .75rem;
  font-weight: 700;
}

.p-header__nav {
  display: none;
}

/************************************************************************
* p-history
************************************************************************/
.p-history {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(28%, rgba(255, 255, 255, .5)), to(rgba(213, 237, 190, .5)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5) 28%, rgba(213, 237, 190, .5) 100%);
  padding-top: 5rem;
  padding-bottom: 21.3333333333vw;
}

.p-history::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .7;
  mix-blend-mode: overlay;
  background: transparent url('../img/airplane.png') no-repeat center bottom/contain;
  width: 100%;
  height: 33.7121212121vw;
  content: '';
}

.p-history__body {
  margin-top: 2.5rem;
}

.p-history__item {
  line-height: 1.5;
  text-align: center;
}

.p-history__item + .p-history__item {
  margin-top: .875rem;
}

.p-history__item + .p-history__item::before {
  display: block;
  margin-right: auto;
  margin-bottom: .875rem;
  margin-left: auto;
  background-image: radial-gradient(circle farthest-side, #707070 40%, transparent 40%);
  background-repeat: repeat-y;
  background-size: 5px 5px;
  width: 5px;
  height: 2.8125rem;
  content: '';
}

.p-history__itemText {
  margin-top: .625rem;
}

/************************************************************************
* p-news
************************************************************************/
.p-news {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-news__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.p-news__list {
  width: 720px;
  max-width: 100%;
}

.p-news__listItem {
  border-top: 2px dotted #CCC;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.p-news__listItem:last-child {
  border-bottom: 2px dotted #CCC;
}

.p-news__itemMeta {
  color: #808080;
  line-height: 1.5;
}

.p-news__itemBody {
  margin-top: .5em;
}

.p-news__itemLink {
  color: #001A99;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  text-decoration: underline;
}

/************************************************************************
* p-officer
************************************************************************/
.p-officer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-officer__lead {
  margin-top: .75rem;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  text-align: center;
}

.p-officer__body {
  margin-top: 5rem;
}

.p-officer__table {
  overflow-x: auto;
}

.p-officer__table table {
  min-width: 100%;
  table-layout: auto;
  white-space: nowrap;
}

.p-officer__table th,
.p-officer__table td {
  vertical-align: middle;
  border-bottom: 1px solid #659933;
  width: 100%;
  line-height: 2.25;
  text-align: center;
}

.p-officer__table th {
  padding-bottom: 1.25rem;
  color: #659933;
}

.p-officer__table td {
  padding: 1.25rem 1em;
}

.p-officer__table .p-officer__tableGap {
  display: block;
  border: none;
  padding: 0;
  width: 10px;
}

/************************************************************************
* p-organization
************************************************************************/
.p-organization {
  padding-top: 5rem;
}

.p-organization__lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.p-organization__body {
  margin-top: 2.5rem;
}

.p-organization__logoList {
  gap: .9375rem .3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-organization__logo {
  width: calc((100% - .3125rem) / 2);
}

.p-organization__member {
  margin-top: 3.75rem;
}

.p-organization__memberTitle {
  color: #659933;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  text-align: center;
}

.p-organization__memberText {
  margin-top: 1.25rem;
  line-height: 2.25;
  text-align: center;
}

.p-organization__memberText span {
  display: inline-block;
}

/************************************************************************
* p-overview
************************************************************************/
.p-overview {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.p-overview__body {
  margin-top: 2.5rem;
}

.p-overview__img {
  margin-top: 1.875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 400px;
}

.p-overview__img img {
  aspect-ratio: 320/326;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

/************************************************************************
* u-fontweight
************************************************************************/
.u-fw-regular {
  font-weight: 400 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 601px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {

  html {
    font-size: 1.6vw;
  }

  .l-container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1040px;
  }

  .l-container.l-container--narrow {
    max-width: 840px;
  }

  .l-container.l-container--wide {
    max-width: 1240px;
  }

  .c-sectionTitle__sub {
    font-size: 1.5rem;
  }

  .c-sectionTitle__main {
    font-size: 2.25rem;
  }

  .p-bgWrap {
    background-position: right max(0px, (var(--vw, 100vw) - 1000px) / 2) top -5.5303030303vw;
  }

  .p-footer__main {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }

  .p-footer__copyArea {
    font-size: 1rem;
  }

  .p-fv__img {
    width: 28.625rem;
  }

  .p-header__inner {
    padding-right: 1.5625rem;
    padding-left: .9375rem;
  }

  .p-header__logo {
    width: 4.375rem;
    font-size: 2.5rem;
  }

  .p-header__logoText {
    margin-left: 1.4375rem;
    font-size: 1.125rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
    padding-left: 1.25rem;
  }

  .p-header__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__nav li + li {
    margin-left: min(3.5625rem, 3.0303030303vw);
  }

  .p-header__nav li > a {
    display: block;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: .9375rem;
    font-weight: 700;
  }

  .p-header__drawer {
    display: none;
  }

  .p-history {
    padding-bottom: 14.25rem;
  }

  .p-history__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5rem;
  }

  .p-news {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }

  .p-news__listItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-news__itemMeta {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 170px;
  }

  .p-news__itemDate {
    display: inline-block;
    margin-top: .25rem;
  }

  .p-news__itemBody {
    margin-top: 0;
  }

  .p-officer {
    padding-top: 6.25rem;
    padding-bottom: 12.5rem;
  }

  .p-officer__table table {
    table-layout: fixed;
  }

  .p-officer__table th,
  .p-officer__table td {
    width: 30%;
  }

  .p-officer__table th:last-child,
  .p-officer__table td:last-child {
    width: 38%;
  }

  .p-officer__table .p-officer__tableGap {
    width: 1%;
  }

  .p-organization {
    padding-top: 12.5rem;
    padding-bottom: 6.25rem;
  }

  .p-organization__lead {
    margin-top: 2rem;
    font-size: 1.125rem;
  }

  .p-organization__body {
    margin-top: 5rem;
  }

  .p-organization__logo {
    width: calc((100% - 3.75rem) / 5);
  }
/*
  .p-organization__logo:nth-child(n+11) {
    width: calc((100% - 2.8125rem) / 4);
  }

  .p-organization__logo:nth-child(n+19) {
    width: calc((100% - 3.75rem) / 5);
  }
*/

  .p-overview {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }

  .p-overview__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5rem;
  }

  .p-overview__text {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 37.5rem;
    -ms-flex: 0 1 37.5rem;
    flex: 0 1 37.5rem;
  }

  .p-overview__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 20rem;
    -ms-flex: 0 1 20rem;
    flex: 0 1 20rem;
    margin-top: 0;
    margin-left: 5rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media (min-width: 1000px) {

  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
  }
}