/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}
@media screen and (max-width: 1023px) {
  html {
    scroll-padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  background: #F2F4F9;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
  border-collapse: separate;
  border-spacing: 10px 5px;
}
@media screen and (max-width: 767px) {
  table {
    border-spacing: 5px;
  }
}
table th {
  padding: 15px 30px;
  background: #0B318F;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  border-radius: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  table th {
    font-size: 4vw;
    padding: 10px 20px;
  }
}
table th.no_th {
  background: none;
}
table td {
  padding: 15px 30px;
  background: #F2F4F9;
  text-align: left;
  vertical-align: middle;
  border-radius: 5px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  table td {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #0B318F;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
  .tableBlock {
    display: block;
  }
  .tableBlock thead,
  .tableBlock tbody,
  .tableBlock tr,
  .tableBlock th,
  .tableBlock td {
    display: block;
  }
  .tableBlock th {
    padding: 8px 15px;
    border-radius: 5px 5px 0 0;
  }
  .tableBlock td {
    margin: 0 0 10px;
    padding: 8px 15px;
    border-radius: 0 0 5px 5px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li::marker {
  color: #DDD;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #0B318F;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: '(' counter(number) ') ';
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 {
  max-width: 892px;
  margin: 0 auto;
}
.dlList_01 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_01 > div dt {
  min-width: 250px;
}
.dlList_01 > div dd {
  flex: 1;
}
.dlList_01 > .dlItem {
  border-bottom: #DBDBDB 1px solid;
  padding: 15px;
  gap: 15px;
}
.dlList_01 > .dlItem dt {
  font-size: 2.4rem;
  font-weight: bold;
  color: #0B318F;
}
.dlList_01 > .dlItem dd {
  padding: 5px 0;
}
@media screen and (max-width: 767px) {
  .dlList_01 > .dlItem {
    display: block;
    padding: 0;
  }
  .dlList_01 > .dlItem dt {
    width: 100%;
    padding: 8px 0 2px;
    font-size: 4.8vw;
  }
  .dlList_01 > .dlItem dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 > .dlItem dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_02 > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  flex: 1;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
main {
  overflow: hidden;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 10px;
  height: 78px;
  background: #F2F4F9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  header {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-right: 70px;
  }
}
header .siteTitle {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  text-decoration: none;
}
header .siteTitle:hover {
  color: #0B318F;
}
header .siteTitle h1,
header .siteTitle strong {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  header .siteTitle h1,
  header .siteTitle strong {
    font-size: 1.8rem;
  }
}
header .siteTitle img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  header .siteTitle img {
    width: 100px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav {
  margin: 0 0 0 auto;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #gNav {
    width: 30rem;
    min-width: 0;
  }
}
#gNav .menuTitle {
  display: none;
}
@media screen and (max-width: 1023px) {
  #gNav .menuTitle {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 8px;
  }
  #gNav .menuTitle p {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.1px;
  }
  #gNav .menuTitle p .sub {
    font-size: 1.6rem;
  }
  #gNav .menuTitle img {
    flex-shrink: 0;
  }
}
#gNav .drawer-menu {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
#gNav .drawer-menu.ai_fs {
  align-items: flex-start;
}
#gNav .drawer-menu.ai_c {
  align-items: center;
}
#gNav .drawer-menu.ai_fe {
  align-items: flex-end;
}
#gNav .drawer-menu.jc_fs {
  justify-content: flex-start;
}
#gNav .drawer-menu.jc_c {
  justify-content: center;
}
#gNav .drawer-menu .flexText {
  flex: 1;
}
#gNav .drawer-menu .flexText h2,
#gNav .drawer-menu .flexText h3,
#gNav .drawer-menu .flexText h4 {
  margin-top: 0;
}
#gNav .drawer-menu .flexImg {
  text-align: center;
}
#gNav .drawer-menu .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav .drawer-menu.sp_column {
    flex-direction: column;
  }
  #gNav .drawer-menu.sp_column .flexText {
    display: contents;
  }
  #gNav .drawer-menu.sp_column .flexText hgroup,
  #gNav .drawer-menu.sp_column .flexText h2,
  #gNav .drawer-menu.sp_column .flexText h3,
  #gNav .drawer-menu.sp_column .flexText h4 {
    order: -2;
  }
  #gNav .drawer-menu.sp_column .flexImg {
    order: -1;
  }
  #gNav .drawer-menu.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    background: #EEE;
    gap: 0;
  }
}
#gNav .drawer-menu > ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul {
    display: block;
    width: 100%;
    border-bottom: #0B318F 1px solid;
  }
}
#gNav .drawer-menu > ul > li {
  position: relative;
}
#gNav .drawer-menu > ul > li.home {
  display: none;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li.home {
    display: block;
  }
  #gNav .drawer-menu > ul > li.home > a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border: none;
  }
  #gNav .drawer-menu > ul > li.home > a::before {
    content: '\f015';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
  }
}
#gNav .drawer-menu > ul > li:nth-last-of-type(1) > ul {
  left: -40px;
  /* entryボタン非表示対応 */
}
#gNav .drawer-menu > ul > li > a,
#gNav .drawer-menu > ul > li > button {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  height: 78px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li > a,
  #gNav .drawer-menu > ul > li > button {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px 10px;
    font-size: 1.8rem;
    color: #0B318F;
    border-top: #0B318F 1px solid;
  }
}
#gNav .drawer-menu > ul > li > a:hover,
#gNav .drawer-menu > ul > li > button:hover {
  color: #0B318F;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li > a.toggleBtn::after,
  #gNav .drawer-menu > ul > li > button.toggleBtn::after {
    content: '\f0fe';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
  }
  #gNav .drawer-menu > ul > li > a.toggleBtn.open::after,
  #gNav .drawer-menu > ul > li > button.toggleBtn.open::after {
    content: '\f146';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
  }
}
#gNav .drawer-menu > ul > li > ul {
  display: none;
  width: max-content;
  padding: 20px 50px 20px 75px;
  background: #FFF;
  border-radius: 20px;
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li > ul {
    width: 100%;
    background: rgba(11, 49, 143, 0.1);
    padding: 10px 20px 10px 30px;
    font-size: 1.6rem;
    border-radius: 0;
    position: static;
    transform: none;
    box-shadow: none;
  }
}
#gNav .drawer-menu > ul > li > ul li {
  margin-bottom: 5px;
  position: relative;
}
#gNav .drawer-menu > ul > li > ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  color: #0B318F;
  position: absolute;
  top: 2px;
  left: -16px;
}
#gNav .drawer-menu > ul > li > ul li.parent {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  #gNav .drawer-menu > ul > li > ul li.parent {
    font-size: 1.7rem;
  }
}
#gNav .drawer-menu > ul > li > ul li.parent::before {
  content: '\f138';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  left: -24px;
}
#gNav .drawer-menu > ul > li > ul li a {
  display: block;
  padding: 2px 0;
  text-decoration: none;
}
#gNav .drawer-menu > ul > li > ul li a:hover {
  text-decoration: underline;
}
#gNav .subBtn .entryBtn {
  padding: 7px 30px;
  background: #0B318F;
  color: #FFF;
  border-radius: 100px 0 0 100px;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #gNav .subBtn .entryBtn {
    max-width: none;
    width: 100%;
    padding: 20px 0;
    font-size: 1.6rem;
  }
}
#gNav .subBtn .entryBtn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  #gNav .subBtn {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 10px;
    flex-direction: column;
    width: 80%;
    padding: 15px 0;
  }
  #gNav .subBtn > a,
  #gNav .subBtn .entryBtn {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    background: #0B318F;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    border-radius: 0px;
    color: #FFF;
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -30rem !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 30rem !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 30rem;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: #2856A7;
    z-index: 10000;
    width: 3rem;
    padding: 18px 15px 40px;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #FFF;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
  }
  header .drawer-hamburger:hover {
    background: #2856A7;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: relative;
    top: 6px;
    background: #FFF;
    height: 4px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #FFF;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  padding: 20px 0;
  background: #0B318F;
  color: #FFF;
}
footer a {
  color: #FFF;
  text-decoration: none;
}
footer .pageTop {
  display: block;
  width: max-content;
  margin: 0 0 0 auto;
  font-weight: bold;
}
footer .pageTop:hover i {
  transform: translate(0, -10px);
}
@media screen and (max-width: 767px) {
  footer .pageTop {
    margin: 0 auto;
  }
}
footer .pageTop i {
  transition: transform 0.2s;
}
footer .footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 70px;
  margin: 80px 0 90px;
}
@media screen and (max-width: 1023px) {
  footer .footer {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
  }
}
footer nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  width: calc(100% - 376px);
}
@media screen and (max-width: 1023px) {
  footer nav {
    width: 100%;
    padding: 0 20px;
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  footer nav {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
footer nav > ul > li {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  footer nav > ul > li {
    margin-bottom: 10px;
  }
}
footer nav > ul > li > a {
  display: inline-block;
  padding: 0 15px;
  font-size: 2rem;
}
footer nav > ul > li > a:hover {
  background: #FFF;
  color: #0B318F;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  footer nav > ul > li > a {
    font-size: 4vw;
  }
}
footer nav > ul > li > a::before {
  content: '\f138';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  margin-right: 8px;
}
footer nav > ul > li > ul {
  padding: 0 0 0 3rem;
}
footer nav > ul > li > ul > li {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  footer nav > ul > li > ul > li {
    font-size: 3.6vw;
  }
}
footer nav > ul > li > ul > li a {
  display: inline-block;
  padding: 0 10px 0 20px;
  position: relative;
}
footer nav > ul > li > ul > li a:hover {
  background: #FFF;
  color: #0B318F;
  border-radius: 50px;
}
footer nav > ul > li > ul > li a::before {
  content: '・';
  position: absolute;
  left: 5px;
}
@media screen and (max-width: 1023px) {
  footer .footerBtnArea {
    padding: 0 20px;
  }
}
footer .footerBtnArea ul li {
  margin: 0 0 23px;
}
footer .footerBtnArea ul li a {
  gap: 0;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  width: 376px;
  height: 74px;
  font-size: 1.7rem;
  padding: 10px 26px 10px 36px;
  border: #FFF 1px solid;
  border-radius: 5px;
}
footer .footerBtnArea ul li a.ai_fs {
  align-items: flex-start;
}
footer .footerBtnArea ul li a.ai_c {
  align-items: center;
}
footer .footerBtnArea ul li a.ai_fe {
  align-items: flex-end;
}
footer .footerBtnArea ul li a.jc_fs {
  justify-content: flex-start;
}
footer .footerBtnArea ul li a.jc_c {
  justify-content: center;
}
footer .footerBtnArea ul li a .flexText {
  flex: 1;
}
footer .footerBtnArea ul li a .flexText h2,
footer .footerBtnArea ul li a .flexText h3,
footer .footerBtnArea ul li a .flexText h4 {
  margin-top: 0;
}
footer .footerBtnArea ul li a .flexImg {
  text-align: center;
}
footer .footerBtnArea ul li a .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  footer .footerBtnArea ul li a.sp_column {
    flex-direction: column;
  }
  footer .footerBtnArea ul li a.sp_column .flexText {
    display: contents;
  }
  footer .footerBtnArea ul li a.sp_column .flexText hgroup,
  footer .footerBtnArea ul li a.sp_column .flexText h2,
  footer .footerBtnArea ul li a.sp_column .flexText h3,
  footer .footerBtnArea ul li a.sp_column .flexText h4 {
    order: -2;
  }
  footer .footerBtnArea ul li a.sp_column .flexImg {
    order: -1;
  }
  footer .footerBtnArea ul li a.sp_block {
    display: block;
  }
}
footer .footerBtnArea ul li a:hover {
  background: #FFF;
  color: #0B318F;
}
@media screen and (max-width: 1023px) {
  footer .footerBtnArea ul li a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  footer .footerBtnArea ul li a {
    font-size: 3.4vw;
    width: 80%;
    height: auto;
    padding: 10px 15px;
  }
}
footer .footerBtnArea ul li a i {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  footer .footerBtnArea ul li a i {
    font-size: 4.8vw;
  }
}
footer .siteName {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  footer .siteName {
    font-size: 3.2vw;
  }
}
footer .siteName strong {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  footer .siteName strong {
    font-size: 3.6vw;
  }
}
footer .siteName img {
  margin: 0 0 28px;
  filter: invert(0) brightness(100);
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #0B318F;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a[href$=".pdf"]::after {
  display: inline-block;
  margin-left: 3px;
  color: #E40000;
  content: '\f1c1';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-weight: 400;
}
a[href$=".pdf"]:has(img)::after {
  content: none;
}
a[target^="_blank"]::after {
  display: inline-block;
  margin: 0 3px;
  content: '\f35d';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
a[target^="_blank"]:has(img)::after,
a[target^="_blank"]:has(i)::after {
  content: none;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500!important;
}
.weightBold {
  font-weight: bold!important;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D90000;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++*/
/* PC用（rem） */
.fs10 {
  font-size: 1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
/* SP用（MEDIA内で出力） */
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs30 {
    font-size: 6vw !important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw !important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs30_sp {
    font-size: 6vw !important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw !important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    margin 0-100px（5px刻み）
+++++++++++++++++++++++++++++++++++++++++++*/
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mr65 {
  margin-right: 65px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mr80 {
  margin-right: 80px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mr85 {
  margin-right: 85px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mr90 {
  margin-right: 90px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mr95 {
  margin-right: 95px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mr100 {
  margin-right: 100px !important;
}
.ml100 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  background: #F2F4F9;
  padding: 20px 25px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 10px;
  }
}
.box h3,
.box h4 {
  margin: 10px 0 20px;
  padding: 0;
  text-align: center;
  font-size: 4.8rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .box h3,
  .box h4 {
    font-size: 7.2vw;
  }
}
.box h3::before,
.box h4::before {
  content: none;
}
.box2 {
  max-width: max-content;
  margin: 40px auto;
  padding: 26px 38px;
  border: #0B318F 3px solid;
  border-radius: 20px;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .box2 {
    margin: 20px auto;
    padding: 10px;
  }
}
.box2 dl {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .box2 dl {
    flex-direction: column;
    gap: 10px;
  }
}
.box2 dl:nth-last-of-type(1) {
  margin-bottom: 0;
}
.box2 dl dt {
  min-width: 84px;
  padding: 5px 10px;
  text-align: center;
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 120px;
  background: #0B318F;
}
@media screen and (max-width: 767px) {
  .box2 dl dt {
    min-width: 0;
    padding: 3px 30px;
    font-size: 4vw;
  }
}
.box2 dl dd {
  flex: 1;
}
.box2 .decimal-color {
  color: #0B318F;
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn a {
  background: #0B318F;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: max-content;
  width: 100%;
  min-height: 70px;
  padding: 5px 30px;
  border-radius: 70px;
  font-size: 2.4rem;
  font-weight: bold;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 4.8vw;
    min-height: 50px;
  }
}
.btn.btnS a {
  min-height: 40px;
  padding: 5px 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .btn.btnS a {
    font-size: 3.6vw;
  }
}
.btn.w100 a {
  max-width: 100%;
  justify-content: space-between;
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox .columnItem {
  width: 49%;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
  max-width: 350px;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
  max-width: 350px;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
  max-width: 350px;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
    max-width: none;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
    max-width: none;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexText h2,
.flex .flexText h3,
.flex .flexText h4 {
  margin-top: 0;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_column .flexText {
    display: contents;
  }
  .flex.sp_column .flexText hgroup,
  .flex.sp_column .flexText h2,
  .flex.sp_column .flexText h3,
  .flex.sp_column .flexText h4 {
    order: -2;
  }
  .flex.sp_column .flexImg {
    order: -1;
  }
  .flex.sp_block {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.fadein.fadeRight {
  transform: translate(100px, 0);
}
.fadein.fadeLeft {
  transform: translate(-100px, 0);
}
.fadein.fadeBottom {
  transform: translate(0, 100px);
}
.fadein.fadeScroll {
  opacity: 1;
  transform: translate(0, 0);
}
.sdgs_OTIT {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
  max-width: 506px;
  padding-right: 30px;
  align-items: center;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .sdgs_OTIT {
    gap: 10px;
    flex-direction: column;
  }
}
.sdgs_OTIT .fa-xmark {
  font-size: 3.6rem;
}
.sdgs_OTIT .fa-angle-right {
  font-size: 4.3rem;
  color: #0099D6;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
.annotation {
  font-size: 1.6rem;
  vertical-align: top;
}
.flexCenter {
  align-items: center;
}
.greetingGroup {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .greetingGroup {
    margin-bottom: 30px;
  }
}
.table-size40 {
  width: 40%;
}
.skip-link {
  display: block;
  background: #0B318F;
  color: #fff;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  z-index: 9999;
  position: absolute;
  top: -100px;
  left: 10px;
  transition: 0.2s;
}
.skip-link:focus {
  top: 0;
}


<!--
.staff-page{ display:flex; gap:24px; align-items:flex-start; }
.staff-page__staff-photo{ flex:0 0 2px; }
.staff-page__staff-photo img{ width:100%; height:auto; display:block; border-radius:12px; }
.staff-page__body{ flex:1; min-width:0; }
@media (max-width:768px){ .interview{ flex-direction:column; } .interview__photo{ flex-basis:auto; } }


html { outline: 6px solid red !important; }
body { background: #ff0 !important; }
html { outline: 6px solid red !important; }
-->
<!--
body{
  background:#fff!important;
}

.staff-photo {
  width: 500px;
  height: auto; /* 縦横比を維持 */
}
-->

<!--youtubeを見切れないように下にコード書きます
.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
-->
<!--こっから下のコードはユーチューブを画面いっぱいに表示させ、スマホ表示でも見切れないようにするものだが、これを入れるとトップページの３枚のスライドがおかしくなるためいったん非表示
.youtube-wrap {
  position: relative;
  width: 100%;       /* 親幅いっぱいに広げる */
  padding-top: 56.25%; /* 16:9 の比率 (9 ÷ 16 = 0.5625) */
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;    /* Safari で余白が出るのを防ぐ */
}
-->