@charset "UTF-8";
/*
 * foundation
 */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

:root {
  --content-space: 16px;
  --content-negative-space: -16px;
  --content-width: 1200px;
  --content-width-page: 1000px;
  --content-max-width: calc(var(--content-width) + (var(--content-space) * 2));
  --content-narrow-width: 1000px;
  --content-narrow-max-width: calc(var(--content-narrow-width) + (var(--content-space) * 2));
  --color-white:#fff;
  --color-base:#f7f7f7;
  --color-lightgrey:#cacaca;
  --color-grey:#999;
  --color-text:#222;
  --color-main:#1a1a1a;
  --color-sub:#184416;
  --color-blue:#0A136F;
  --color-dark:#191C45;
  --color-light:#2186bf;
  --color-link: #007EEB;
  --color-red: #B4002A;
  --font-main: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --font-nsa: "Noto Sans JP", sans-serif;
  --font-nse: "Noto Serif", serif;
  --font-en: "Cardo", serif;
}

@media screen and (max-width: 767px) {
  :root {
    --content-space: 32px;
    --content-negative-space: -32px;
    --content-width: 100%;
    --content-width-page: 100%;
    --content-max-width: 100%;
    --content-narrow-width: 100%;
    --content-narrow-max-width: 100%;
  }
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0;
  color: #000;
  font-family: var(--font-main);
  font-weight: 400;
  min-width: 1200px;
}

a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 1025px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* 好みで使用してください
p, dl, dt, dd, ul, li{
    line-height: 1.5;
    font-feature-settings : "palt";
    text-align:justify; 
    text-justify: inter-ideograph;
}
*/
ul li,
ol li {
  line-height: 1.8;
  font-size: 16px;
}

.sp {
  display: none !important;
}

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

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ブロックスキップ */
.skip-link {
  position: absolute;
  top: -40px; /* 見えないように上に隠す */
  left: 0;
  background: var(--color-main);
  color: #fff;
  padding: 5px 16px;
  z-index: 1000;
  text-decoration: none;
  font-size: 16px;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* フォーカス時に表示 */
}

@media screen and (max-width: 767px) {
  .skip-link:focus {
    top: 80px;
  }
}
/* Autoprefixerを使用した場合の書き方 */
input[type=submit],
input[type=button] {
  border-radius: 0;
  box-sizing: content-box;
  appearance: button;
  border: none;
  cursor: pointer;
}

/*
 * layout
 */
/* header -------------------------------------- */
body.home header {
  border-bottom: none;
}
body.home header .hdr-contact-area nav.pc ul > li .sub {
  border-top: 1px solid var(--color-blue);
}

header {
  position: fixed;
  width: 100%;
  height: 90px;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--color-grey);
  transition: 0.4s;
}
header h1, header .logo {
  margin-top: 2px;
  margin-left: 18px;
}
header h1 img, header .logo img {
  transition: 0.3s;
  height: 56px;
}
@media screen and (max-width: 1300px) {
  header h1, header .logo {
    margin-left: 20px;
  }
}
header .hdr-contact-area {
  height: 90px;
  position: fixed;
  right: 0px;
  top: 0;
  display: flex;
  align-items: center;
  border-radius: 60px;
  padding: 0;
  transition: 0.4s;
  z-index: 8000;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
header .hdr-contact-area nav.pc {
  transition: 0.3s;
  color: var(--color-main);
}
header .hdr-contact-area nav.pc ul {
  display: flex;
  margin: 10px 0 0;
}
header .hdr-contact-area nav.pc ul > li {
  list-style-type: none;
  margin-right: 12px;
  margin-left: 0;
  position: relative;
  font-size: 15px;
  padding: 0;
  height: fit-content;
  /*&::before {
  	background: var(--color-dark);
  	content: '';
  	width: 100%;
  	height: 1px;
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	margin: auto;
  	transform-origin: right top;
  	transform: scale(0, 1);
  	transition: transform .3s;
  }

  &:hover::before {
  	transform-origin: left top;
  	transform: scale(1, 1);
  }
  */
}
header .hdr-contact-area nav.pc ul > li a {
  text-decoration: none;
  display: block;
  padding: 0 6px;
}
header .hdr-contact-area nav.pc ul > li a:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
header .hdr-contact-area nav.pc ul > li.has-sub {
  position: relative;
  padding: 0;
}
header .hdr-contact-area nav.pc ul > li.has-sub.is-active button {
  color: var(--color-white);
}
header .hdr-contact-area nav.pc ul > li.has-sub button {
  background: no-repeat;
  border: 0;
  font-family: var(--font-nsa);
  padding: 0 6px 10px 20px;
}
header .hdr-contact-area nav.pc ul > li.has-sub span {
  display: inline-block;
  /*アニメーションの設定*/
  position: absolute;
  left: 5px;
  width: 13px;
  height: 1px;
  background-color: #0A136F;
  pointer-events: none;
}
header .hdr-contact-area nav.pc ul > li.has-sub span:nth-of-type(1) {
  top: 13px;
}
header .hdr-contact-area nav.pc ul > li.has-sub span:nth-of-type(2) {
  left: 5px;
  transform: rotate(90deg);
  top: 13px;
}
header .hdr-contact-area nav.pc ul > li.has-sub:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}
header .hdr-contact-area nav.pc ul > li.has-sub:hover span {
  background-color: var(--color-white);
}
header .hdr-contact-area nav.pc ul > li.has-sub:hover span:nth-of-type(2) {
  display: none;
}
header .hdr-contact-area nav.pc ul > li .sub {
  display: none;
  position: fixed;
  left: 0;
  top: 90px;
  width: 100vw;
  z-index: 3;
  border-top: none;
  background-color: var(--color-base);
  padding: 44px 0 44px;
  margin-top: 0;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap {
  padding: 24px 0 33px;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap .sl-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap .sl-flex .service-link:nth-child(2) {
  margin-top: 42px;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap .sl-flex .service-link:nth-child(3) {
  margin-top: 42px;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap .sl-flex .service-link:nth-child(3) li.nolink {
  margin-top: 42px;
}
header .hdr-contact-area nav.pc ul > li .sub.service-link-wrap .sl-flex .service-link:nth-child(3) li.nolink p {
  position: relative;
  padding: 8px 20px 8px 0px;
  text-decoration: none;
  transition: 0.4s;
  color: var(--color-blue);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  width: fit-content;
}
header .hdr-contact-area nav.pc ul > li .sub li {
  border-bottom: none !important;
  color: var(--color-main);
}
header .hdr-contact-area nav.pc ul > li .sub li::before {
  content: none;
}
header .hdr-contact-area nav.pc ul > li .sub .service-link {
  flex-direction: column;
  margin: 0;
  padding: 0;
}
header .hdr-contact-area nav.pc ul > li .sub .other-link {
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 30px;
}
header .hdr-contact-area nav.pc ul > li .sub li {
  margin: 0;
  padding: 0;
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat1 {
  position: relative;
  padding: 8px 20px 8px 0px;
  text-decoration: none;
  transition: 0.4s;
  color: var(--color-blue);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  width: fit-content;
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat1::after {
  content: "";
  background: url(../img/common/hdr-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 10px;
  right: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat1:hover {
  opacity: 0.7;
  background: none;
  color: var(--color-main);
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2 {
  position: relative;
  padding: 8px 47px 8px 7px;
  text-decoration: none;
  border-bottom: 1px solid #999;
  transition: 0.4s;
  color: var(--color-main);
  font-size: 15px;
  font-size: 1.5rem;
  text-align: left;
  width: 240px;
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2::after {
  content: "";
  background: url(../img/common/hdr-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 9px;
  right: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2:hover {
  opacity: 0.7;
  background: none;
  color: var(--color-main);
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2.w280 {
  width: 280px;
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2.w340 {
  width: 340px;
}
header .hdr-contact-area nav.pc ul > li .sub li a.js-gnav-accordion__link-pat2.w440 {
  width: 440px;
}
header .hdr-contact-area nav.pc ul > li .sub li p {
  font-family: var(--font-nsa);
}
header .hdr-contact-area nav.pc ul > li .sub > li > a {
  display: block;
  font-size: 15px;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
header .hdr-contact-area nav.pc ul > li .sub > li > a span {
  font-size: 26px;
  line-height: 1;
  color: var(--color-light);
}
header .hdr-contact-area nav.pc ul > li .sub > li:nth-last-of-type(1) > a span {
  color: var(--color-sub);
}
header .hdr-contact-area nav.pc .menu-wrap {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 90px;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
header .hdr-contact-area nav.pc .menu-wrap.active {
  opacity: 1;
}
header .hdr-contact-area p.hdr-contact.lora {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 0;
}
header .hdr-contact-area p.hdr-contact.lora img {
  margin-right: 10px;
}
header .hdr-contact-area p.hdr-contact.lora a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background: var(--color-red);
  width: 241px;
  height: 44px;
  color: var(--color-white);
  border-radius: 0 0 0 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
header .hdr-contact-area p.hdr-contact.lora a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1270px) {
  header .hdr-contact-area {
    min-width: 360px;
  }
  header .hdr-contact-area nav {
    display: none;
  }
}
header.hide {
  height: 70px;
}
header.hide .hdr-contact-area {
  height: 70px;
}
header.hide .hdr-contact-area p.hdr-contact.lora {
  display: none;
}
header.hide .hdr-contact-area nav.pc ul > li .sub {
  top: 70px;
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 100;
    transition: 0.3s;
    border-bottom: 1px solid var(--color-lightgrey);
  }
  header h1, header .logo {
    margin-left: 16px;
    margin-top: 0;
  }
  header h1 img, header .logo img {
    width: auto;
    height: 47px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1300px) {
  header h1, header .logo {
    margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  header.hide {
    background-color: #fff;
    height: 60px;
  }
  header.hide .hdr-contact-area {
    height: 60px;
  }
  header.hide .hdr-contact-area nav.pc ul > li .sub {
    top: 60px;
  }
}
@media screen and (max-width: 374px) {
  header h1 img, header .logo img {
    width: 30%;
  }
}
.fix-side {
  position: fixed;
  bottom: -300px;
  right: 90px;
  z-index: 99999;
  transition: 0.3s all;
}
.fix-side.active {
  bottom: 20px;
}
.fix-side a {
  display: block;
  width: 294px;
  height: 77px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  font-size: 22px;
  font-size: 2.2rem;
  gap: 14px;
}
.fix-side a:hover {
  opacity: 0.7;
}

/* footer -------------------------------------- */
footer {
  padding: 54px 0 49px;
  background: var(--color-dark);
  color: var(--color-white);
}
footer .inner {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 0 40px;
}
footer .inner .ftr-data {
  border-top: 1px solid #d3cbc6;
}
footer .inner .ftr-data .ftr-logo {
  width: 352px;
  margin: 30px 0 18px;
}
footer .inner .ftr-data p.addr {
  margin-top: 15px;
}
footer .inner .ftr-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-dark);
}
footer .inner .ftr-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
footer .inner .ftr-data .outlink {
  margin-top: 50px;
}
footer .inner .ftr-data .outlink p.blank {
  margin-top: 25px;
}
footer .inner .ftr-data .outlink p.blank a {
  text-decoration: none;
}
footer .inner .ftr-data .outlink p.blank a:hover {
  color: var(--color-dark);
}
footer .inner .ftr-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
footer .inner .ftr-address-list {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
footer .inner .ftr-address-list li {
  list-style-type: none;
  width: 250px;
}
footer .inner .ftr-address-list li p {
  margin-bottom: 4px;
  line-height: 1.6;
  font-size: 1.4rem;
}
footer .inner .ftr-link {
  width: 985px;
  margin: 0 auto 62px;
}
footer .inner .ftr-link .ftr-link-wrap:not(:first-child) {
  display: flex;
  gap: 36px;
}
footer .inner .ftr-link .ftr-link-wrap:nth-child(1) {
  margin-bottom: 10px;
}
footer .inner .ftr-link .ftr-link-wrap:nth-child(2) {
  margin-bottom: 50px;
}
footer .inner .ftr-link .ftr-link-wrap ul {
  margin: 0;
  padding: 0;
}
footer .inner .ftr-link .ftr-link-wrap ul:first-child {
  width: 70px;
}
footer .inner .ftr-link .ftr-link-wrap ul li {
  list-style: none;
}
footer .inner .ftr-link .ftr-link-wrap ul li.mt44 {
  margin-top: 44px;
}
footer .inner .ftr-link .ftr-link-wrap ul li.mt88 {
  margin-top: 88px;
}
footer .inner .ftr-link .ftr-link-wrap ul li a {
  text-decoration: none;
  transition: 0.4s;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 3px 0;
  margin-bottom: 9px;
  font-family: var(--font-nsa);
}
footer .inner .ftr-link .ftr-link-wrap ul li a:hover {
  opacity: 0.7;
}
footer .inner .ftr-link .ftr-link-wrap ul li p {
  font-family: var(--font-nsa);
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat2 {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat3 {
  position: relative;
  border-bottom: 1px solid #999;
  padding: 3px 40px 3px 0;
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat3::after {
  content: "";
  background: url(../img/common/ftr-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 5px;
  height: 10px;
  right: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat4 {
  padding-left: 20px;
  position: relative;
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat4::before {
  content: "";
  width: 12px;
  height: 1px;
  background: #999;
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
footer .inner .ftr-link .ftr-link-wrap ul li .ftr-link-pat5 {
  position: relative;
  border-bottom: 1px solid #999;
  padding: 3px 40px 3px 0;
  margin-bottom: 9px;
}
footer .inner .ftr-link .bnr {
  margin-top: 75px;
}
footer .inner .ftr-link .bnr a {
  display: flex;
  align-items: center;
  width: 486px;
  height: 100px;
  background-color: #d4d4d4;
  border-radius: 50px;
  padding-left: 36px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
footer .inner .ftr-link .bnr a:hover {
  opacity: 0.7;
  color: var(--color-dark);
}
footer .inner .ftr-link .bnr a::before {
  content: "●";
  font-size: 8px;
  color: #d3cbc6;
  line-height: 1.3;
  margin-right: 5px;
}
footer .copyright {
  padding: 36px 0 0;
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
}

.ftr-fix {
  display: none;
}

#page_top {
  position: fixed;
  bottom: -200px;
  right: 24px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: rgba(191, 127, 63, 0.8);
}

#page_top a {
  display: flex;
  width: 100px;
  height: 100px;
  font-size: 16px;
  color: #fff;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 60px 0 40px;
  }
  footer .inner {
    width: 90%;
    padding: 0;
  }
  footer .inner .ftr-data {
    padding: 0;
    border-top: none;
    margin: 0 auto 40px;
  }
  footer .inner .ftr-data .ftr-logo {
    width: 80%;
    margin: 0px 0 32px;
  }
  footer .inner .ftr-address-list {
    flex-direction: column;
  }
  footer .inner .ftr-address-list li {
    width: 100%;
    margin-bottom: 24px;
  }
  footer .inner .ftr-address-list li p {
    font-size: 1.5rem;
  }
  footer .f-link {
    width: 100%;
    background: #452309;
    padding-top: 17px;
    height: 45px;
    color: #fff;
  }
  footer .copyright {
    padding: 5px 0;
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
  }
  /* sp-nav */
  .ftr-link {
    margin-left: 10vw;
  }
  .ftr-link .first {
    margin-bottom: 20px;
  }
  .ftr-link .first ul {
    padding-left: 4%;
  }
  .ftr-link .first ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .first ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .first ul li a {
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link .first ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .second {
    margin-bottom: 20px;
  }
  .ftr-link .second ul {
    padding-left: 4%;
  }
  .ftr-link .second ul li {
    margin-bottom: 16px;
    margin-left: 0;
    list-style-type: none;
  }
  .ftr-link .second ul li::before {
    content: "●";
    font-size: 8px;
    color: var(--color-light);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-link .second ul li a {
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link .second ul li a:hover {
    color: var(--color-dark);
  }
  .ftr-link .bnr {
    margin: 24px 0;
    width: 90%;
    background-color: #666;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    height: 21vw;
    display: flex;
    align-items: center;
    border-radius: 12px;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .ftr-link .bnr a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
  }
  .ftr-link .bnr a::before {
    content: "●";
    font-size: 8px;
    color: var(--color-main);
    line-height: 1.3;
    margin-right: 5px;
  }
  .ftr-data {
    width: 100%;
    margin: 40px auto;
    border-top: 1px solid var(--color-main);
    padding: 30px 5%;
  }
  .ftr-data .ftr-logo {
    width: 70%;
    margin: 0 auto;
  }
  .ftr-data .addr {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .ftr-data .tel {
    text-align: center;
    color: var(--color-dark);
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 28px;
  }
  .ftr-data .tel img {
    display: inline-block;
    vertical-align: middle;
  }
  .ftr-data .outlink {
    margin-top: 45px;
  }
  .ftr-data .outlink p {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 25px;
  }
  .ftr-data .outlink p img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }
  .ftr-fix {
    width: 100%;
    position: sticky;
    bottom: -200px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    transition: 0.3s all;
  }
  .ftr-fix.active {
    bottom: 0px;
  }
  .ftr-fix a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: var(--color-red);
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
  }
  .ftr-fix a:hover {
    opacity: 0.7;
  }
  .ftr-fix a:nth-of-type(1) {
    border-right: 1px solid #fff;
  }
  .ftr-fix a img {
    width: 32px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}
/*
 * object
 */
/*下層パンくず*/
ol.breadcrumbs {
  width: var(--content-width);
  margin: 90px auto 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
}
ol.breadcrumbs li {
  list-style: none;
}
ol.breadcrumbs li::before {
  content: none;
  margin-left: 0;
}
ol.breadcrumbs li::after {
  content: ">";
  font-size: 10px;
  padding: 0 5px;
}
ol.breadcrumbs li a {
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--color-link);
}
ol.breadcrumbs li span {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
}
ol.breadcrumbs li:nth-last-of-type(1)::after {
  content: none;
}

@media screen and (max-width: 767px) {
  /*下層パンくず*/
  ol.breadcrumbs {
    width: 92%;
    margin: 60px auto 0;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
  }
  ol.breadcrumbs li {
    list-style: none;
  }
  ol.breadcrumbs li::before {
    content: none;
    margin-left: 0;
  }
  ol.breadcrumbs li::after {
    content: ">";
    font-size: 10px;
    padding: 0 5px;
  }
  ol.breadcrumbs li a {
    font-size: 14px;
    font-size: 1.4rem;
    color: var(--color-link);
  }
  ol.breadcrumbs li span {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
  }
  ol.breadcrumbs li:nth-last-of-type(1)::after {
    content: none;
  }
}
/*ハンバーガー */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  position: fixed;
  width: 85px;
  height: 85px;
  cursor: pointer;
  background: var(--color-dark);
  border-radius: 43px;
  z-index: 99999;
  right: 58px;
  top: 7px;
  transition: 0.3s;
  border: none;
  padding: 0;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 20px;
  height: 1px;
  background-color: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 30px;
  width: 50%;
}
.openbtn span:nth-of-type(2) {
  top: 40px;
  width: 30%;
}
.openbtn span.menu {
  padding-top: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  background-color: transparent;
}
.openbtn.hide {
  right: 28px;
  top: 7px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 28px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 42px;
  left: 28px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.mm-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 9000;
  top: 60px;
  right: -200%;
  transition: 0.8s;
  opacity: 0.2;
  overflow: auto;
}

.mm-menu.active {
  top: 60px;
  right: 0;
  opacity: 1;
}

.mm-page {
  position: relative;
  z-index: 8000;
}

.sp-nav-close {
  opacity: 0;
  position: fixed;
  width: 100vw;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.5);
  top: 60px;
  transition: 0.8s;
  pointer-events: none;
}
.sp-nav-close.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー */
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
  .openbtn {
    position: fixed;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 60px;
    height: 59px;
    cursor: pointer;
    background: var(--color-base);
    border-radius: 0;
    z-index: 99999;
    right: 0px;
    top: 0px;
    transition: 0.3s;
    border: none;
  }
  .openbtn.hide {
    right: 10px;
    top: 10px;
  }
  .sp-tel {
    position: fixed;
    z-index: 99999;
    top: 10px;
    right: 85px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #fff;
    line-height: 1;
    color: var(--color-dark);
  }
  .sp-tel img {
    margin: 14px auto 0;
  }
  .sp-tel span {
    position: absolute;
    bottom: 9px;
    left: 20px;
    font-size: 11px;
    font-size: 1.1rem;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 20px;
    height: 1px;
    background-color: var(--color-dark);
  }
  .openbtn span:nth-of-type(1) {
    top: 13px;
    width: 35%;
  }
  .openbtn span:nth-of-type(2) {
    top: 21px;
    width: 35%;
  }
  .openbtn span:nth-of-type(3) {
    top: 29px;
    width: 35%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 32px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
  }
  .openbtn span.menu {
    padding-top: 6px;
    font-size: 10px;
    font-size: 1rem;
    color: #4F4946;
    left: 16px;
    background-color: transparent;
  }
  .mm-menu {
    position: fixed;
    width: 100%;
    /*height: fit-content;*/
    background-color: #fbfbfb;
    z-index: 9000;
    right: -200%;
    transition: 0.8s;
    opacity: 0.2;
    overflow-y: scroll;
    padding: 0px 0 0;
    top: 60px;
  }
  .mm-menu.active {
    right: 0;
    opacity: 1;
  }
  .mm-page {
    position: relative;
    z-index: 8000;
  }
}
.sp-menu-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 200px;
  justify-content: center;
  min-width: 1200px;
  overflow: auto;
}
.sp-menu-link .inner {
  width: 1080px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.sp-menu-link .inner .sp-menu-data {
  border-right: 1px solid #d3cbc6;
}
.sp-menu-link .inner .sp-menu-data .sp-menu-logo {
  width: 380px;
}
.sp-menu-link .inner .sp-menu-data p.addr {
  margin-top: 15px;
}
.sp-menu-link .inner .sp-menu-data p.tel.lora {
  font-size: 30px;
  font-size: 3rem;
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data p.tel.lora img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.sp-menu-link .inner .sp-menu-data .outlink {
  margin-top: 50px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank {
  margin-top: 25px;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a {
  text-decoration: none;
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a:hover {
  color: var(--color-dark);
}
.sp-menu-link .inner .sp-menu-data .outlink p.blank a img {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.sp-menu-link .inner .sidemenu-link {
  width: 660px;
}
.sp-menu-link .inner .sidemenu-link .has-sub button {
  text-decoration: none;
  display: block;
  font-size: 1.6rem;
  color: var(--color-main);
  padding: 8px 0;
  position: relative;
  width: 100%;
  text-align: left;
  background: no-repeat;
  border: none;
  border-bottom: 1px solid #999;
  font-weight: bold;
}
.sp-menu-link .inner .sidemenu-link .has-sub button::before {
  content: "";
  display: inline-block;
  /*アニメーションの設定*/
  position: absolute;
  right: 5px;
  width: 16px;
  height: 1px;
  background-color: #0A136F;
  top: 21px;
}
.sp-menu-link .inner .sidemenu-link .has-sub button::after {
  content: "";
  display: inline-block;
  /*アニメーションの設定*/
  position: absolute;
  right: 5px;
  width: 16px;
  height: 1px;
  background-color: #0A136F;
  right: 5px;
  transform: rotate(90deg);
  top: 21px;
}
.sp-menu-link .inner .sidemenu-link .has-sub button.is-active::after {
  display: none;
}
.sp-menu-link .inner .sidemenu-link .has-sub .sub {
  margin: 8px 0 8px auto;
  display: none;
  width: 96%;
}
.sp-menu-link .inner .sidemenu-link .has-sub .sub li a {
  font-size: 15px;
  font-size: 1.5rem;
  border-bottom: none;
}
.sp-menu-link .inner .sidemenu-link .has-sub .sub li .sub-head {
  font-weight: bold;
  color: var(--color-blue);
}
.sp-menu-link .inner .sidemenu-link .has-sub .sub li .sub-head.bt1 {
  border-top: 1px solid #999;
  margin-top: 8px;
  padding: 14px 0 8px;
  font-size: 16px;
  font-size: 1.6rem;
}
.sp-menu-link .inner .sidemenu-link .has-sub .sub li p {
  padding: 8px 0;
}
.sp-menu-link .inner .sidemenu-link nav ul {
  width: 90%;
  padding: 0;
  margin: 8px auto 40px;
}
.sp-menu-link .inner .sidemenu-link nav ul li {
  margin-bottom: 0px;
  margin-left: 0;
  list-style-type: none;
}
.sp-menu-link .inner .sidemenu-link nav ul li a {
  text-decoration: none;
  border-bottom: 1px solid #999;
  display: block;
  font-size: 1.6rem;
  color: var(--color-main);
  padding: 8px 0;
  position: relative;
}
.sp-menu-link .inner .sidemenu-link nav ul li a::before {
  content: "";
  width: 7.5px;
  height: 13.5px;
  background: url(../img/common/icon-arrow.png) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.sp-menu-link .inner .sidemenu-link nav ul li a:hover {
  color: var(--color-dark);
}

@media screen and (max-width: 767px) {
  .sp-menu-link {
    min-width: 100%;
    overflow: scroll;
    max-height: 100vh;
    padding-top: 0;
  }
  .sp-menu-link .inner {
    display: block;
    width: 100%;
    margin: 0 auto 0px;
  }
  .sp-menu-link .inner .sp-menu-data {
    border-right: none;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo {
    width: 100%;
  }
  .sp-menu-link .inner .sp-menu-data .sp-menu-logo img {
    zoom: 0.5;
  }
  .sp-menu-link .inner .sidemenu-link {
    width: 100%;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background: var(--color-red);
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a:hover {
    opacity: 0.7;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a:nth-of-type(1) {
    border-right: 1px solid #fff;
  }
  .sp-menu-link .inner .sidemenu-link .bnr a img {
    width: 32px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
}
.related-posts {
  margin-top: 20px;
}
.related-posts .card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.related-posts .card-container .card {
  display: block;
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-posts .card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.related-posts .card-container .card .image img {
  width: 100%;
  height: auto;
  display: block;
}
.related-posts .card-container .card .content {
  padding: 15px;
}
.related-posts .card-container .card .content h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #0073aa;
}
.related-posts .card-container .card .content h3:hover {
  text-decoration: underline;
}
.related-posts .card-container .card .content .categories {
  font-size: 0.9em;
  color: #555;
}
.related-posts .card-container .card .content .categories .category {
  display: inline-block;
  margin-right: 5px;
  background-color: #f4f4f4;
  padding: 3px 8px;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .related-posts .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .related-posts .card-container .card {
    width: 100%;
  }
}

.p-cta {
  position: relative;
  height: auto;
  width: 100%;
  padding: 160px 0;
  background: url(../img/common/cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
}
.p-cta .wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  max-width: 1160px;
  height: 330px;
  margin: 0 auto;
}
.p-cta .wrap .p-cta__title {
  border-right: 1px solid #fff;
  padding-right: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.p-cta .wrap .p-cta__title h2 {
  font-family: var(--font-en);
  font-size: 8rem;
  letter-spacing: 3px;
  font-weight: normal;
  line-height: 1;
}
.p-cta .wrap .p-cta__title p {
  font-family: var(--font-nse);
  font-size: 2.2rem;
  letter-spacing: 3px;
}
.p-cta .wrap .p-cta__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-cta .wrap .p-cta__info h3 {
  font-family: var(--font-nse);
  font-size: 3rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
}
.p-cta .wrap .p-cta__info h3 span {
  font-size: 2.4rem;
  border: 1px solid #fff;
  padding: 6px 6px;
  margin-right: 10px;
}
.p-cta .wrap .p-cta__info .cta-btn {
  font-size: 2.9rem;
  background: var(--color-red);
  width: 600px;
  height: 104px;
  color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 60px;
  text-decoration: none;
  transition: 0.4s;
  margin: 30px 0 15px;
}
.p-cta .wrap .p-cta__info .cta-btn::before {
  content: "";
  width: 52px;
  height: 52px;
  background: url(../img/common/cta_mail.svg) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  left: 11%;
  transform: translateY(-50%);
}
.p-cta .wrap .p-cta__info .cta-btn:hover {
  opacity: 0.7;
}
.p-cta .wrap .box {
  width: 48%;
  margin: 0 1%;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 40px 20px;
}
.p-cta .wrap .box .en {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  margin-top: -11px;
}
.p-cta .wrap .box p {
  margin-top: 26px;
  font-size: 20px;
  font-size: 2rem;
}
.p-cta .wrap .box p.title {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
}
.p-cta .wrap .box p.tel {
  font-size: 44px;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box p.tel span {
  font-size: 32px;
  font-size: 3.2rem;
}
.p-cta .wrap .box p.fax {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: bold;
}
.p-cta .wrap .box .c-for-list {
  margin: 56px auto 0;
}
.p-cta .wrap .box .c-for-list a {
  margin: 0 auto;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-cta {
    position: relative;
    height: auto;
    background: url(../img/common/cta_bg_sp.png);
    background-size: cover;
    width: 100%;
    padding: 42px 0;
  }
  .p-cta .wrap {
    display: block;
    position: relative;
    z-index: 10;
    height: auto;
    width: 90%;
  }
  .p-cta .wrap .p-cta__title {
    border-right: none;
    padding-right: 0;
  }
  .p-cta .wrap .p-cta__title h2 {
    font-size: 6rem;
  }
  .p-cta .wrap .p-cta__title p {
    font-size: 4.8vw;
    line-height: 2;
    margin-bottom: 50px;
  }
  .p-cta .wrap .p-cta__info h3 {
    font-size: 4.5vw;
    justify-content: center;
  }
  .p-cta .wrap .p-cta__info h3 span {
    font-size: 4.5vw;
  }
  .p-cta .wrap .p-cta__info .cta-btn {
    width: 100%;
    font-size: 5.5vw;
    height: 109px;
    line-height: 1.5;
    padding-left: 30%;
    justify-content: flex-start;
  }
  .p-cta .wrap .box {
    width: 92%;
    margin: 0 auto 40px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 10px;
    background-position: left bottom;
    padding-bottom: 30px;
  }
  .p-cta .wrap .box .en {
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 1;
    text-align: center;
  }
  .p-cta .wrap .box p {
    margin: 0 4%;
    margin-top: 26px;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
  }
  .p-cta .wrap .box p a {
    text-decoration: none;
  }
  .p-cta .wrap .box p.title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box p.tel {
    font-size: 33px;
    font-size: 3.3rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
  }
  .p-cta .wrap .box p.tel span {
    font-size: 20px;
    font-size: 2rem;
  }
  .p-cta .wrap .box p.fax {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
  }
  .p-cta .wrap .box .c-for-list {
    margin: 30px auto 0;
  }
  .p-cta .wrap .box .c-for-list a {
    margin: 0 auto;
    color: #fff;
  }
  .p-cta .wrap .box:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) + *,
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) + * {
  margin-top: 0 !important;
}
:where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
  margin: 40px 0;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  background-color: #000;
  color: #fff;
  padding: 0 10px;
}
:where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
  margin: 40px 0 32px;
  font-size: 30px;
  font-size: 3rem;
  border-bottom: 1px solid #000;
  line-height: 1.5;
}
:where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
  margin: 32px 0 26px;
  font-size: 20px;
  font-size: 2rem;
  border-left: 4px solid #000;
  line-height: 1.5;
  padding: 0 16px;
  margin-bottom: 26px;
}
:where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
  margin: 24px 0 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
}
:where(.u-editor) h6:where(:not(.is-reset-wp-block)) {
  margin: 20px 0 16px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) h2:where(:not(.is-reset-wp-block)) {
    font-size: 24px;
    font-size: 2.4rem;
  }
  :where(.u-editor) h3:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
  }
  :where(.u-editor) h4:where(:not(.is-reset-wp-block)) {
    font-size: 20px;
    font-size: 2rem;
  }
  :where(.u-editor) h5:where(:not(.is-reset-wp-block)) {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
:where(.u-editor) p {
  margin-top: 1.2em;
  line-height: 2;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) p {
    margin-top: 1em;
    line-height: 1.8;
  }
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
:where(.u-editor) ul:where(:not(.is-reset-wp-block)) li:before {
  content: "⚫︎";
  font-size: 10px;
  color: var(--color-main);
  margin-right: 5px;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
  list-style-type: none;
  counter-reset: count 0;
  margin-top: 40px;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li {
  display: flex;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
  text-decoration: none;
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
  color: var(--color-main);
}
:where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: var(--color-main);
  padding-left: 3px;
  margin-right: 5px;
  font-weight: bold;
}
:where(.u-editor) dt,
:where(.u-editor) dd {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) ul:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) {
    list-style-type: none;
    counter-reset: count 0;
    margin-top: 40px;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a {
    text-decoration: none;
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li a:hover {
    color: var(--color-main);
  }
  :where(.u-editor) ol:where(:not(.is-reset-wp-block)) li:before {
    content: counter(count) ". ";
    counter-increment: count 1;
    color: var(--color-main);
    padding-left: 3px;
    margin-right: 5px;
    font-weight: bold;
  }
}
.btn-type2 a {
  position: relative;
  padding: 14px 47px 14px 7px;
  text-decoration: none;
  border-bottom: 1px solid #999;
  transition: 0.4s;
  color: var(--color-blue);
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  font-weight: bold;
}
.btn-type2 a::after {
  content: "";
  background: url(../img/common/btn-arrow2.png);
  width: 34px;
  height: 8px;
  right: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn-type2 a:hover {
  opacity: 0.7;
}
.btn-type1,
.wp-block-button:where(:not(.is-reset-wp-block)) {
  text-align: center;
  margin: 30px auto 0;
}
.btn-type1 a,
.wp-block-button:where(:not(.is-reset-wp-block)) a {
  position: relative;
  display: block;
  color: var(--color-blue);
  font-size: 16px;
  font-size: 1.6rem;
  background: var(--color-white);
  padding: 18px 0;
  margin-top: 40px;
  text-decoration: none;
  border: 1px solid var(--color-blue);
  box-shadow: 6px 6px 0 0 #ECECEC;
  transition: 0.4s;
  text-align: left;
  padding-left: 40px;
  width: fit-content;
  padding-right: 90px;
  border-radius: 0;
}
.btn-type1 a::after,
.wp-block-button:where(:not(.is-reset-wp-block)) a::after {
  content: "";
  background: url(../img/common/btn-arrow.png);
  width: 38px;
  height: 15px;
  right: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.btn-type1 a:hover,
.wp-block-button:where(:not(.is-reset-wp-block)) a:hover {
  opacity: 0.7;
}
.single .c-for-list a {
  margin: 40px auto 0;
}

:where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .c-for-list,
  .btn-type1,
  .wp-block-button:where(:not(.is-reset-wp-block)) {
    text-align: center;
    margin: 30px auto 64px;
    display: block !important;
  }
  .c-for-list a,
  .btn-type1 a,
  .wp-block-button:where(:not(.is-reset-wp-block)) a {
    position: relative;
    display: block;
    width: fit-content;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 18px 90px 18px 20px;
    margin: 60px auto 0;
  }
  :where(.u-editor) .wp-block-buttons:where(:not(.is-reset-wp-block)) {
    margin-top: 30px;
  }
  .btn-type1 a {
    margin: 0 auto 0;
  }
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px;
  background-color: #F2F2F2;
  position: relative;
}
:where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) {
    width: 90%;
    margin: 40px auto 0;
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 20px;
    background-color: #F2F2F2;
    position: relative;
  }
  :where(.u-editor) blockquote:where(:not(.is-reset-wp-block)) cite {
    display: block;
    text-align: right;
    margin-top: 20px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
  margin-top: 40px;
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
  max-width: 100%;
  height: auto;
}
:where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) {
    margin-top: 40px;
  }
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) img {
    max-width: 100%;
    height: auto;
  }
  :where(.u-editor) .wp-block-image:where(:not(.is-reset-wp-block)) figcaption {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 16px;
  }
}
:where(.u-editor) iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}

:where(.u-editor) {
  --table-border-color: #000;
  --table-bg-color: #fff;
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
:where(.u-editor) table {
  margin-top: 40px;
  border-collapse: collapse;
  border: 1px solid var(--table-border-color);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
:where(.u-editor) table tr {
  border-bottom: 1px solid var(--table-border-color);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
:where(.u-editor) table tr th,
:where(.u-editor) table tr td {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 30px;
  text-align: left;
  border-color: var(--table-border-color);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
:where(.u-editor) table thead th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
:where(.u-editor) table tbody th {
  background-color: var(--table-bg-color);
  border-right: 1px solid var(--table-border-color);
}
:where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
:where(.u-editor) table tbody td {
  border-right: 1px solid var(--table-border-color);
}

@media screen and (max-width: 767px) {
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table.has-fixed-layout {
    width: max-content !important;
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table,
  :where(.u-editor) table {
    margin-top: 40px;
    border-collapse: collapse;
    border: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr,
  :where(.u-editor) table tr {
    border-bottom: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td,
  :where(.u-editor) table tr th,
  :where(.u-editor) table tr td {
    line-height: 1.3;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 30px;
    text-align: left;
    border-color: var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table thead th,
  :where(.u-editor) table thead th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody th,
  :where(.u-editor) table tbody th {
    background-color: var(--table-bg-color);
    border-right: 1px solid var(--table-border-color);
  }
  :where(.u-editor) .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tbody td,
  :where(.u-editor) table tbody td {
    border-right: 1px solid var(--table-border-color);
  }
}
.wp-pagenavi {
  margin: 80px auto 0;
  text-align: center;
}
.wp-pagenavi span,
.wp-pagenavi a {
  padding: 12px 12px !important;
  font-size: 16px;
  font-size: 1.6rem;
  border: none !important;
  background: var(--color-base);
  color: var(--color-blue);
}
.wp-pagenavi span.current,
.wp-pagenavi a.current {
  background-color: var(--color-blue);
  color: #fff;
}
.wp-pagenavi span.pages,
.wp-pagenavi a.pages {
  background: none;
  display: block;
  margin-bottom: 10px;
}
.wp-pagenavi a {
  text-decoration: underline !important;
  color: var(--color-blue);
}
.wp-pagenavi a:hover {
  background-color: var(--color-blue);
  color: #fff;
}
.wp-pagenavi span.extend {
  padding: 0 !important;
  margin: 0 10px;
  background: none;
}

.next-prev {
  margin: 100px auto 0;
}
.next-prev .prev {
  float: left;
  width: 50%;
}
.next-prev .prev a {
  max-width: 46%;
  display: inline-block;
  padding: 2% 2% 1.5% 2em;
  border-radius: 10px;
  text-indent: -0.8em;
  color: var(--color-blue);
  font-size: 13px;
  text-decoration: underline;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev .next {
  float: right;
  width: 50%;
  text-align: right;
}
.next-prev .next a {
  display: inline-block;
  max-width: 46%;
  color: var(--color-blue);
  padding: 2%;
  border-radius: 10px;
  text-align: right;
  padding: 2% 1.5em 2% 2%;
  border-radius: 10px;
  text-indent: 1em;
  font-size: 13px;
  text-decoration: underline;
  max-width: 100%;
  transition: 0.3s;
}
.next-prev::after {
  content: "";
  display: block;
  clear: both;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 80px auto 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    padding: 15px 19px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .wp-pagenavi span.current, .wp-pagenavi span:hover,
  .wp-pagenavi a.current,
  .wp-pagenavi a:hover {
    color: #fff;
  }
  .wp-pagenavi span.extend,
  .wp-pagenavi a.extend {
    /*display: none;*/
  }
  .wp-pagenavi span.pages, .wp-pagenavi span.first, .wp-pagenavi span.last,
  .wp-pagenavi a.pages,
  .wp-pagenavi a.first,
  .wp-pagenavi a.last {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 15px 10px;
  }
  .wp-pagenavi span.pages,
  .wp-pagenavi a.pages {
    width: 100%;
  }
  .wp-pagenavi span.pages:hover,
  .wp-pagenavi a.pages:hover {
    border: 1px solid #BFBFBF;
    background-color: transparent;
    color: #333;
  }
  .next-prev {
    margin: 80px auto 0;
  }
  .next-prev .prev {
    float: left;
    max-width: 44%;
  }
  .next-prev .prev a {
    display: inline-block;
    padding: 2% 2% 1.5% 2em;
    border-radius: 10px;
    text-indent: -0.8em;
    font-size: 13px;
    max-width: 100%;
  }
  .next-prev .next {
    float: right;
    max-width: 44%;
  }
  .next-prev .next a {
    display: inline-block;
    padding: 2%;
    border-radius: 10px;
    text-align: right;
    padding: 2% 1.5em 2% 2%;
    border-radius: 10px;
    text-indent: 1em;
    font-size: 13px;
    max-width: 100%;
  }
  .next-prev::after {
    content: "";
    display: block;
    clear: both;
    font-size: 0;
    line-height: 0;
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

:where(.u-editor) .wp-block-column > :first-child,
:where(.u-editor) .wp-block-group__inner-container > :first-child,
:where(.u-editor) .wp-block-media-text__content > :first-child,
:where(.u-editor) blockquote.wp-block-quote > :first-child {
  margin-top: 0 !important;
}
:where(.u-editor) .wp-block-column > :last-child,
:where(.u-editor) .wp-block-group__inner-container > :last-child,
:where(.u-editor) .wp-block-media-text__content > :last-child,
:where(.u-editor) blockquote.wp-block-quote > :last-child {
  margin-bottom: 0 !important;
}

/*
 * pages
 */
.cat-area {
  margin: 0 auto 40px;
}
.cat-area p.toggle {
  position: relative;
  background: var(--color-base);
  font-size: 18px;
  font-size: 1.8rem;
  padding: 24px;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: bold;
}
.cat-area p.toggle::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  width: 22px;
  height: 2px;
  background-color: #999;
  top: 40px;
}
.cat-area p.toggle::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  width: 22px;
  height: 2px;
  background-color: #999;
  transform: rotate(90deg);
  top: 40px;
}
.cat-area p.toggle.open::after {
  content: none;
}
.cat-area p.date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 26px;
}
.cat-area .cat-toggle {
  display: none;
}
.cat-area ul.cat {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  background: var(--color-base);
  font-size: 18px;
  font-size: 1.8rem;
  padding: 0 24px 24px 24px;
}
.cat-area ul.cat li {
  list-style: none;
  /*span.current {
  	display: inline-block;
  	padding: 10px 24px;
  	@include fz(18);
  	background-color: var(--color-main);
  	color: #fff;
  	line-height: 1;
  	text-decoration: none;
  	margin-right: 20px;
  	font-weight: bold;
  	transition: 0.3s;
  	border-radius: 5px;
  }*/
}
.cat-area ul.cat li::before {
  content: none;
}
.cat-area ul.cat li a {
  display: inline-block;
  padding: 0;
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--color-blue);
  line-height: 1;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: underline;
}
.cat-area ul.cat li a.current {
  color: var(--color-main);
  pointer-events: none;
  text-decoration: none;
}

.archive .news-list article:last-child dl,
.blog .news-list article:last-child dl,
.related-wrap .news-list article:last-child dl,
.page-thanks .news-list article:last-child dl {
  margin-bottom: 0px;
}
.archive .news-list a,
.blog .news-list a,
.related-wrap .news-list a,
.page-thanks .news-list a {
  text-decoration: none;
  color: var(--color-main);
  transition: 0.4s;
}
.archive .news-list a:hover dl,
.blog .news-list a:hover dl,
.related-wrap .news-list a:hover dl,
.page-thanks .news-list a:hover dl {
  background: var(--color-base);
}
.archive .news-list dl,
.blog .news-list dl,
.related-wrap .news-list dl,
.page-thanks .news-list dl {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  background: var(--color-white);
}
.archive .news-list dl dt,
.blog .news-list dl dt,
.related-wrap .news-list dl dt,
.page-thanks .news-list dl dt {
  text-align: left;
  padding: 12px;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-nsa);
}
.archive .news-list dl dt time,
.blog .news-list dl dt time,
.related-wrap .news-list dl dt time,
.page-thanks .news-list dl dt time {
  margin-right: 10px;
}
.archive .news-list dl dt .nl-cat,
.blog .news-list dl dt .nl-cat,
.related-wrap .news-list dl dt .nl-cat,
.page-thanks .news-list dl dt .nl-cat {
  color: var(--color-blue);
  background: var(--color-base);
  border: 1px solid var(--color-lightgrey);
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 5px;
  font-weight: normal;
  margin-right: 5px;
}
.archive .news-list dl dt .cat-list,
.blog .news-list dl dt .cat-list,
.related-wrap .news-list dl dt .cat-list,
.page-thanks .news-list dl dt .cat-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px 0;
}
.archive .news-list dl dd,
.blog .news-list dl dd,
.related-wrap .news-list dl dd,
.page-thanks .news-list dl dd {
  text-align: left;
  padding: 0 12px 12px 12px;
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.single-testimonials .related-wrap h3 {
  border-left: none;
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.post-type-archive-ourteam .cat-menu {
  display: flex;
  gap: 10px 50px;
  flex-wrap: wrap;
}
.post-type-archive-ourteam .cat-menu a {
  font-size: 16px;
  font-size: 1.6rem;
}
.post-type-archive-ourteam .staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}
.post-type-archive-ourteam .staff-list .staff-box {
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 10px;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info {
  display: flex;
  flex-direction: column;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info .staff-name-en {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info .staff-name-jp {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.3;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info .staff-occupation {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 1px 9px;
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: normal;
  width: fit-content;
  margin: 10px 0;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info a {
  text-decoration: none;
  transition: 0.4s;
}
.post-type-archive-ourteam .staff-list .staff-box .staff-info a:hover {
  opacity: 0.7;
}
.post-type-archive-ourteam .staff-list .staff-box.representative {
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 0px;
}
.post-type-archive-ourteam .staff-list .staff-box.representative .staff-img {
  width: 45%;
}
.post-type-archive-ourteam .staff-list .staff-box.representative .staff-info {
  width: 50%;
}
.post-type-archive-ourteam .staff-list .staff-box.representative .staff-info .staff-occupation {
  padding: 1px 30px;
}

@media screen and (max-width: 767px) {
  .cat-area {
    width: 100%;
    display: block;
  }
  .cat-area p.date {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .cat-area ul.cat {
    display: flex;
    flex-wrap: wrap;
  }
  .cat-area ul.cat li::before {
    content: none;
  }
  .cat-area ul.cat li a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 16px;
  }
  .cat-area ul.cat li a:active {
    background-color: var(--color-main);
    color: #fff;
    filter: brightness(1);
  }
  .cat-area ul.cat li span.current {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-right: 16px;
  }
  .post-type-archive-ourteam .staff-list {
    gap: 4%;
  }
  .post-type-archive-ourteam .staff-list .staff-box {
    width: 48%;
  }
  .post-type-archive-ourteam .staff-list .staff-box.representative {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .post-type-archive-ourteam .staff-list .staff-box.representative .staff-img {
    width: 100%;
  }
  .post-type-archive-ourteam .staff-list .staff-box.representative .staff-img img {
    width: 100%;
  }
  .post-type-archive-ourteam .staff-list .staff-box.representative .staff-info {
    width: 100%;
  }
  .post-type-archive-ourteam .staff-list .staff-box.representative .staff-info .staff-occupation {
    padding: 1px 30px;
  }
}
.single-main {
  background: var(--color-base);
  margin-bottom: 80px;
}
.single-main .title-wrap {
  width: 1000px;
  padding: 64px 0;
  margin: 0 auto;
}
.single-main .title-wrap .title-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-main .title-wrap .title-info .date {
  font-size: 16px;
  font-size: 1.6rem;
  color: #999;
}
.single-main .title-wrap .title-info .category .category-name a {
  color: var(--color-blue);
  background: var(--color-base);
  border: 1px solid var(--color-lightgrey);
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 5px;
  font-weight: normal;
  transition: 0.4s;
  margin-right: 5px;
}
.single-main .title-wrap .title-info .category .category-name a:hover {
  opacity: 0.7;
}
.single-main h1 {
  margin: 8px auto 0;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1.4;
  font-family: var(--font-nse);
  color: var(--color-main);
}

@media screen and (max-width: 767px) {
  .single-main {
    margin-bottom: 52px;
  }
  .single-main .title-wrap {
    width: 100%;
    padding: 32px 4%;
  }
  .single-main .title-wrap .title-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .single-main h1 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
.u-main {
  position: relative;
}
.u-main .bg-bnr {
  content: "";
  width: 1024px;
  height: 160px;
  background: url(../img/page/page_bg.jpg) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: -40px;
  right: 0;
  z-index: 0;
}
.u-main .title-wrap {
  width: 100%;
  height: 200px;
  margin: 40px auto 80px;
  background: linear-gradient(90deg, #151B6A 0, #191C45 79.9%, transparent 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.u-main .title-wrap .h1-wrap {
  text-align: center;
}
.u-main .title-wrap .h1-wrap h1 {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 10px;
  color: var(--color-white);
  font-family: var(--font-nse);
  width: 58vw;
}

/* 404 */
.not-found-wrap p.not-found {
  text-align: center;
  margin-top: 0;
}

.error404 .c-for-list a {
  margin: 40px auto;
}

.page-aboutus .philosophy_cont {
  font-size: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-aboutus .philosophy_cont .pc_en {
  font-family: var(--font-en);
}
.page-aboutus .philosophy_cont .pc_ja {
  font-family: var(--font-nse);
}

.page-ouroffices iframe {
  width: 100%;
  height: 284px;
}

.page-thanks .news-list h3 {
  border-left: none;
  margin: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

/* ourservices */
.service-wrap {
  padding: 24px;
}
.service-wrap > *:first-child {
  margin-top: 0;
}

.sl-list {
  margin: 30px 0 0px;
  padding-left: 0;
}
.sl-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.sl-list li img {
  width: 17%;
  height: fit-content;
}
.sl-list li div {
  width: 81%;
}
.sl-list li div p {
  margin-bottom: 0;
  letter-spacing: 0;
  line-height: 1.5;
}
.sl-list li div .sl-title {
  margin-bottom: 5px;
  padding-left: 1em;
  position: relative;
}
.sl-list li div .sl-title::before {
  content: "";
  width: 4.8px;
  height: 9.5px;
  background: url(../img/page/side-arrow.svg) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 11px;
  /*transform: translateY(-50%);*/
  left: 6px;
}
.sl-list li div .sl-title a {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--font-nse);
  color: var(--color-blue);
}

.part-link01 .pl01-box .pl01-link {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.part-link01 .pl01-box .pl01-link a {
  background: var(--color-base);
  width: 290px;
  display: block;
  position: relative;
  padding: 25px 47px 25px 17px;
  text-decoration: none;
  border-bottom: 1px solid #999;
  transition: 0.4s;
  font-family: var(--font-nse);
  color: var(--color-blue);
  font-size: 20px;
  font-size: 2rem;
  text-align: left;
  font-weight: bold;
}
.part-link01 .pl01-box .pl01-link a:hover {
  opacity: 0.7;
}
.part-link01 .pl01-box .pl01-link a::after {
  content: "";
  background: url(../img/common/btn-arrow2.png);
  width: 34px;
  height: 8px;
  right: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

ul.eb5flow {
  padding-left: 0em !important;
}

ul.eb5flow li {
  display: flex;
  margin-bottom: 40px !important;
  position: relative;
  flex-wrap: wrap;
}

ul.eb5flow li::before {
  content: "↓";
  width: 10px;
  height: 10px;
  position: absolute;
  display: block;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

ul.eb5flow li:last-child::before {
  content: none;
}

ul.eb5flow li .num {
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px 0;
  width: 10%;
  background: #dddddd;
}

ul.eb5flow li .eb5fl-title {
  border: 1px solid;
  border-left: 0;
  padding: 5px 10px;
  text-align: center;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dddddd;
}

ul.eb5flow li small {
  margin-left: 10%;
}

@media screen and (max-width: 767px) {
  .u-main {
    width: 100%;
    height: auto;
    margin: 18.115942029vw auto 52px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .u-main .bg-bnr {
    content: "";
    width: 96%;
    height: 36.231884058vw;
    background: url(../img/page/page_bg-sp.jpg) center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: -18.115942029vw;
    right: 0;
    z-index: 0;
  }
  .u-main .title-wrap {
    height: auto;
    margin: 0 auto 0px;
    background: none;
  }
  .u-main .title-wrap .h1-wrap {
    text-align: center;
    width: 100%;
    background: linear-gradient(90deg, #151B6A 0, #191C45 96.9%, transparent 97%);
  }
  .u-main .title-wrap .h1-wrap .en {
    font-size: 20px;
    font-size: 2rem;
    font-family: "Outfit";
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1;
  }
  .u-main .title-wrap .h1-wrap h1 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.3;
    margin-top: 10px;
    width: 97%;
    padding: 40px 0;
  }
  .not-found-wrap p.not-found {
    text-align: left;
    margin-top: 0;
  }
  .page-ourservices .service-wrap {
    padding: 3%;
  }
  .page-ourservices .sl-list li {
    align-items: center;
  }
  .page-ourservices .sl-list li img {
    width: 30%;
  }
  .page-ourservices .sl-list li div {
    width: 68%;
  }
  .part-link01 .pl01-box .pl01-link {
    flex-direction: column;
    gap: 30px;
  }
  .part-link01 .pl01-box .pl01-link a {
    width: 100%;
  }
}
.en {
  font-family: var(--font-en);
}

.nsa {
  font-family: var(--font-nsa);
}

.nse {
  font-family: var(--font-nse);
}

.main-image {
  width: 100%;
  height: auto;
  padding-top: 90px;
}
.main-image .mv-wrap .mv-part1 {
  background: url(../img/top/mv-bg.jpg?id=001);
  height: 606px;
  margin-left: 80px;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right -0.5vw;
}
.main-image .mv-wrap .mv-part1 img {
  top: 124px;
  left: 0px;
  position: absolute;
}
@media screen and (max-width: 1920px) {
  .main-image .mv-wrap .mv-part1 img {
    top: 6.4583333333vw;
    max-width: 846px;
    width: 44.0625vw;
    height: auto;
  }
}
@media screen and (max-width: 1920px) {
  .main-image .mv-wrap .mv-part1 {
    height: 31.5625vw;
  }
}
.main-image .mv-wrap .mv-part2 {
  background: linear-gradient(90deg, #151B6A 0%, #191C45 100%);
  margin-right: 127px;
  display: flex;
  justify-content: space-between;
  padding: 3.125vw 45.1041666667vw 4.53125vw 4.5833333333vw;
  margin-top: -209px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1920px) {
  .main-image .mv-wrap .mv-part2 {
    margin-top: -10.8854166667vw;
  }
}
.main-image .mv-wrap .mv-part2 .mv-part2-box {
  height: 6vw;
  width: 49%;
  max-width: 100%;
  flex-shrink: 1;
  display: block;
}

.section01 {
  width: 100%;
  background-color: #ffdb9e;
}

.section02 {
  width: 100%;
  background-color: #ffd0d4;
}

.c-for-list {
  text-align: right;
  width: var(--content-width);
  margin: 0 auto 0;
  padding: 0 20px;
}

a {
  font-family: var(--font-nsa);
}

.top-section .inner {
  width: var(--content-width);
  margin: 0 auto;
  padding: 40px;
}
.top-section .inner p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--color-main);
  font-family: var(--font-nsa);
}
.top-section h3 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #452309;
  position: relative;
  z-index: 10;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-top: 32px;
}
.top-section h4 {
  font-size: 20px;
  font-size: 2rem;
  margin: 40px auto 0;
}

.top-column {
  width: 100%;
  padding: 60px 0 436px;
  text-align: center;
  background: url("../img/top/bg-column.jpg");
  background-position: 0 0;
  background-size: cover;
}
.top-column .inner {
  width: var(--content-width);
  margin: 60px auto 0;
  padding: 50px 20px 29px;
  display: flex;
  justify-content: space-between;
}
.top-column .inner .news-list {
  width: 846px;
}
.top-column .inner article:last-child dl {
  margin-bottom: 0px;
}
.top-column .inner dl {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  margin-bottom: 0;
  height: 92px;
}
.top-column .inner dl dt {
  /*width: 290px;*/
  text-align: left;
  padding: 12px 0 12px 12px;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-family: var(--font-nsa);
  margin-right: 12px;
}
.top-column .inner dl dt .nl-date {
  /*width: 110px;*/
  margin-right: 12px;
}
.top-column .inner dl dt .nl-cat {
  /*width: 180px;*/
}
.top-column .inner dl dt .nl-cat a {
  color: var(--color-blue);
  background: var(--color-base);
  border: 1px solid var(--color-lightgrey);
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 5px;
  font-weight: normal;
  transition: 0.4s;
}
.top-column .inner dl dt .nl-cat a:hover {
  opacity: 0.7;
}
.top-column .inner dl dd {
  text-align: left;
  padding: 12px 0;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.top-column .inner dl dd h3 {
  font-size: 16px;
  font-size: 1.6rem;
  width: 560px;
  padding: 0;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.5;
  font-weight: normal;
}
.top-column .inner dl dd h3 a {
  text-decoration: none;
  color: var(--color-main);
  transition: 0.4s;
}
.top-column .inner dl dd h3 a:hover {
  opacity: 0.7;
}

.top-service-list {
  position: relative;
  padding-bottom: 0;
}
.top-service-list .inner {
  padding: 40px 40px 60px;
  max-width: 1760px;
  margin: -300px auto 0;
  background: var(--color-base);
  border-top: 1px solid var(--color-blue);
  width: 90vw;
  min-width: 1300px;
}
.top-service-list .inner .sl-wrap {
  max-width: var(--content-width);
  padding: 0;
  margin: 0 auto;
}
.top-service-list .inner .sl-wrap .sl-box .sl-title {
  font-size: 3rem;
  font-family: var(--font-nse);
  font-weight: bold;
  color: var(--color-white);
  background: var(--color-blue);
  text-align: center;
  border-radius: 5px;
}
.top-service-list .inner .sl-wrap .sl-box .sl-desc {
  text-align: center;
  font-size: 2rem;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont {
  padding-left: 0;
  margin: 30px 0 88px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li {
  width: 550px;
  list-style: none;
  display: flex;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div {
  margin-left: 15px;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div h4 {
  margin-top: 0;
  font-size: 2rem;
  color: var(--color-blue);
  font-family: var(--font-nse);
  line-height: 1.5;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div p {
  margin-top: 10px;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div a {
  position: relative;
  padding: 14px 47px 14px 0px;
  text-decoration: none;
  transition: 0.4s;
  color: var(--color-blue);
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div a::after {
  content: "";
  background: url(../img/common/btn-arrow3.png);
  width: 35px;
  height: 21px;
  right: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.top-service-list .inner .sl-wrap .sl-box .sl-cont li div a:hover {
  opacity: 0.7;
}
.top-group {
  width: 100%;
  padding: 117px 0 0;
}
.top-group .group-01 {
  display: flex;
}
.top-group .group-01 .support-img {
  width: 50vw;
  max-width: 860px;
}
@media screen and (max-width: 1200px) {
  .top-group .group-01 .support-img {
    width: 600px;
  }
}
.top-group .group-01 .support-cont {
  margin-left: max(-10.5vw, -120px);
  padding-top: 55px;
}
.top-group .group-01 .support-cont h2 {
  font-family: var(--font-nse);
  font-size: 4.4rem;
  font-weight: bold;
  color: var(--color-blue);
}
.top-group .group-01 .support-cont p {
  font-family: var(--font-nse);
  font-size: 2.2rem;
  margin-top: 40px;
  line-height: 2;
}
.top-group .group-02 {
  background: linear-gradient(90deg, #fff 4%, #151B6A 4.1%, #191C45 100%);
  margin-top: max(-33vw, -495px);
}
@media screen and (max-width: 1430px) {
  .top-group .group-02 {
    margin-top: -25vw;
  }
}
.top-group .group-02 .plan-list {
  padding: 64px 0 64px min(52vw, 920px);
}
@media screen and (max-width: 1200px) {
  .top-group .group-02 .plan-list {
    padding: 64px 0 64px 624px;
  }
}
.top-group .group-02 .plan-list li {
  list-style: none;
  color: var(--color-white);
  width: 540px;
  margin-bottom: 40px;
}
.top-group .group-02 .plan-list li img {
  max-width: initial;
}
.top-group .group-02 .plan-list li p {
  margin-top: 8px;
}
.top-group .group-02 .group02-2 {
  background: linear-gradient(90deg, #fff 94.9%, transparent 95%);
}
.top-group .group-02 .group02-2 .inner {
  padding: 97px 40px;
}
.top-group .group-02 .group02-2 .h2-wrap {
  margin-bottom: 48px;
}
.top-group .group-02 .group02-2 article:last-child dl {
  margin-bottom: 0px;
}
.top-group .group-02 .group02-2 dl {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  margin-bottom: 0;
  height: 70px;
}
.top-group .group-02 .group02-2 dl dt {
  text-align: left;
  padding: 12px;
  padding-left: 0;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-family: var(--font-nsa);
}
.top-group .group-02 .group02-2 dl dt .nl-date {
  width: 110px;
}
.top-group .group-02 .group02-2 dl dd {
  text-align: left;
  padding: 12px 0;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.top-group .group-02 .group02-2 dl dd h3 {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.5;
  font-weight: normal;
}
.top-group .group-02 .group02-2 dl dd h3 a {
  text-decoration: none;
  color: var(--color-main);
  transition: 0.4s;
}
.top-group .group-02 .group02-2 dl dd h3 a:hover {
  opacity: 0.7;
}
.top-group .group-02 .group02-2 .btn-type1 {
  margin-top: 48px;
}
.top-group .group-02 .group02-2 .btn-type1 a {
  margin: 0 auto;
}
.top-group .group-02 .group02-2 .voice-wrap {
  margin-top: 88px;
}
.top-group .group-02 .group02-2 .voice-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.top-group .group-02 .group02-2 .voice-list li {
  list-style: none;
}
.top-group .group-02 .group02-2 .voice-list li a {
  text-decoration: none;
  color: var(--color-main);
  background: var(--color-base);
  border-bottom: 2px solid #0A136F;
  position: relative;
  width: 370px;
  height: 328px;
  display: block;
  padding: 96px 32px 0;
  transition: 0.4s;
}
.top-group .group-02 .group02-2 .voice-list li a::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/top/icon-planlist.png) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.top-group .group-02 .group02-2 .voice-list li a:hover {
  opacity: 0.7;
}

.top-usvisa {
  width: 100%;
  padding: 60px 0 120px;
  background: var(--color-base);
}
.top-usvisa .inner {
  width: var(--content-width);
  margin: 60px auto 0;
  padding: 50px 20px 0;
}
.top-usvisa .inner h3 {
  font-family: var(--font-nse);
  font-size: 3rem;
  color: var(--color-main);
  line-height: 1;
  margin-top: 48px;
}
.top-usvisa .inner .usvisa-flow-wrap {
  margin-bottom: 106px;
}
.top-usvisa .inner .usvisa-flow-wrap .flow-img {
  margin-top: 40px;
}
.top-usvisa .inner .usvisa-flow-wrap .btn-type1 {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.top-usvisa .inner .usvisa-flow-wrap .btn-type1 a {
  margin-top: 0;
}
.top-usvisa .inner .usvisa-status-wrap {
  display: flex;
  gap: 75px;
}
.top-usvisa .inner .usvisa-status-wrap h3 {
  margin-top: 0;
}
.top-usvisa .inner .usvisa-trouble-wrap h3 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 100px;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list {
  padding-left: 0;
  display: flex;
  justify-content: space-between;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li {
  list-style: none;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li a {
  text-decoration: none;
  font-family: var(--font-nse);
  font-size: 2.8rem;
  color: var(--color-white);
  line-height: 1;
  display: block;
  width: 572px;
  height: 240px;
  position: relative;
  background: url(../img/top/bg_trouble01.png);
  background-position: center;
  background-size: 100%;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li a:hover {
  background-size: 130%;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li a::before {
  content: "";
  width: 122px;
  height: 14px;
  background: #fff;
  background: url(../img/top/trouble-arrow.png) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  bottom: 28px;
  right: 28px;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li:last-child a {
  background: url(../img/top/bg_trouble02.png);
  background-position: center;
  background-size: 100%;
  transition: 0.4s;
}
.top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li:last-child a:hover {
  background-size: 130%;
}

.top-teamrecruit {
  padding-top: 120px;
}
.top-teamrecruit .inner {
  max-width: 1920px;
  overflow: hidden;
  margin: 0 auto;
}
.top-teamrecruit .inner .tr-wrap {
  display: flex;
  min-width: 1560px;
}
.top-teamrecruit .inner .tr-wrap:last-child {
  margin-top: 96px;
}
.top-teamrecruit .inner .tr-wrap .tr-img {
  position: relative;
}
.top-teamrecruit .inner .tr-wrap .tr-img img {
  width: 50vw;
  max-width: 800px;
}
.top-teamrecruit .inner .tr-wrap .tr-cont {
  background: var(--color-base);
  padding: 94px 0 95px 140px;
  margin-left: -60px;
  margin-top: 80px;
  width: 100%;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .h2-wrap {
  margin-bottom: 48px;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box {
  width: 660px;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .link-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 41px;
  margin-top: 40px;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .link-wrap .btn-type2 a {
  width: 234px;
  display: block;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition {
  position: relative;
  padding: 0 24px;
  width: fit-content;
  margin-top: 30px;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition::before {
  content: "";
  width: 10px;
  height: 38px;
  border: 1px solid #999999;
  border-right: none;
  position: absolute;
  display: block;
  top: -4px;
  left: 0;
}
.top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition::after {
  content: "";
  width: 10px;
  height: 38px;
  border: 1px solid #999999;
  border-left: none;
  position: absolute;
  display: block;
  top: -4px;
  right: 0;
}
.top-teamrecruit .inner .tr-wrap.tr-reverse {
  flex-direction: row-reverse;
}
.top-teamrecruit .inner .tr-wrap.tr-reverse .tr-cont {
  margin-left: 0;
  padding: 94px 140px 95px 40px;
  margin-right: -60px;
}
.top-teamrecruit .inner .tr-wrap.tr-reverse .tr-cont .tr-box {
  margin: 0 0 0 auto;
}

.top-news {
  width: 100%;
  padding: 156px 0 117px;
  text-align: center;
}
.top-news .inner {
  width: var(--content-width);
  margin: 0px auto 0;
  padding: 0 20px 0;
  display: flex;
  justify-content: space-between;
}
.top-news .inner .news-list {
  width: 846px;
}
.top-news .inner article:last-child dl {
  margin-bottom: 0px;
}
.top-news .inner dl {
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  margin-bottom: 0;
  height: 92px;
}
.top-news .inner dl dt {
  width: 290px;
  text-align: left;
  padding: 12px;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-family: var(--font-nsa);
}
.top-news .inner dl dt .nl-date {
  width: 110px;
}
.top-news .inner dl dt .nl-cat {
  width: 180px;
}
.top-news .inner dl dt .nl-cat a {
  color: var(--color-blue);
  background: var(--color-base);
  border: 1px solid var(--color-lightgrey);
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 5px;
  font-weight: normal;
  transition: 0.4s;
}
.top-news .inner dl dt .nl-cat a:hover {
  opacity: 0.7;
}
.top-news .inner dl dd {
  text-align: left;
  padding: 12px 0;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.top-news .inner dl dd h3 {
  font-size: 16px;
  font-size: 1.6rem;
  width: 560px;
  padding: 0;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.5;
  font-weight: normal;
}
.top-news .inner dl dd h3 a {
  text-decoration: none;
  color: var(--color-main);
  transition: 0.4s;
}
.top-news .inner dl dd h3 a:hover {
  opacity: 0.7;
}
.top-news .c-for-list {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .main-image {
    width: 100%;
    height: auto;
    padding-top: 60px;
  }
  .main-image img {
    width: 100%;
    height: auto;
  }
  .main-image .mv-sp-under {
    background: linear-gradient(90deg, #151B6A 0%, #191C45 100%);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 17px 0 4px;
    flex-wrap: wrap;
  }
  .main-image .mv-sp-under .mv-sp-under-box.mv-ph01-sp {
    width: 80%;
    margin-right: 3vw;
    margin-bottom: 4.2vw;
  }
  .main-image .mv-sp-under .mv-sp-under-box.mv-ph02-sp {
    width: 71%;
    margin-right: 12vw;
    margin-bottom: 3.7vw;
  }
  .main-image .mv-sp-under .mv-sp-under-box.mv-ph03-sp {
    width: 75%;
    margin-right: 7vw;
    margin-bottom: 4.2vw;
  }
  .main-image .mv-sp-under .mv-sp-under-box.mv-ph04-sp {
    width: 72%;
    margin-right: 10vw;
    margin-bottom: 3.2vw;
  }
  .section01 {
    width: 100%;
    background-color: #ffdb9e;
  }
  .section02 {
    width: 100%;
    background-color: #ffd0d4;
  }
  .c-for-list a {
    margin: 0 0 0 auto;
  }
  .top-section .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 4%;
  }
  .top-section h2 {
    font-size: 30px;
    font-size: 3rem;
    color: #452309;
    position: relative;
    z-index: 10;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .top-section .h3-wrap h3 {
    font-size: 26px;
    font-size: 2.6rem;
    text-align: center;
    margin: 0 auto;
    text-align: center;
    border-bottom: 4px solid #452309;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
    line-height: 2;
  }
  .top-section .h3-wrap span {
    color: #a0a0a0;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 16px;
    display: block;
    line-height: 1;
  }
  .top-column {
    margin-top: 54px;
    width: 100%;
    padding: 60px 0;
    margin-top: 0;
    text-align: center;
    background: url("../img/top/bg-column-sp.jpg");
    background-position: 0 0;
    background-size: cover;
  }
  .top-column .inner {
    margin: 0px auto;
    padding: 0px 4%;
    display: flex;
    flex-direction: column;
  }
  .top-column .inner .h2-wrap {
    margin-bottom: 30px;
  }
  .top-column .inner .news-list {
    width: 100%;
  }
  .top-column .inner article dl {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 15px;
    display: block;
    height: auto;
  }
  .top-column .inner article dl dt {
    width: 100%;
    text-align: left;
    padding: 12px 0 0;
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .top-column .inner article dl dd {
    width: 100%;
    text-align: left;
    padding: 5px 0 12px;
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .top-column .inner article dl dd h3 {
    width: 100%;
  }
  .top-column .inner article dl dd a h3 {
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 5px;
    line-height: 1;
  }
  .top-column .inner article dl dd a h3 span {
    color: #a0a0a0;
    font-size: 10px;
    font-size: 1rem;
  }
  .top-column .inner article dl dd a:hover {
    color: #452309;
  }
  .top-service-list .inner {
    max-width: initial;
    min-width: initial;
    width: 100%;
    top: 0;
    padding: 67.5px 4%;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-title {
    font-size: 5vw;
    padding: 10px;
    margin-top: 50px;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-desc {
    font-size: 1.8rem;
    text-align: left;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-cont {
    margin: 30px 0 60px;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-cont li {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-lightgrey);
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-cont li img {
    width: 32%;
    height: fit-content;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-cont li div {
    width: 68%;
  }
  .top-service-list .inner .sl-wrap .sl-box .sl-cont li div h4 {
    font-size: 1.8rem;
  }
  .top-group {
    padding: 0;
  }
  .top-group .group-01 {
    flex-direction: column;
  }
  .top-group .group-01 .support-img {
    width: 100%;
  }
  .top-group .group-01 .support-cont {
    margin-left: 0;
    padding: 32px 4% 0;
  }
  .top-group .group-01 .support-cont h2 {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
  .top-group .group-01 .support-cont p {
    font-size: 1.8rem;
    margin-top: 20px;
  }
  .top-group .group-02 {
    background: linear-gradient(90deg, #151B6A 0%, #191C45 100%);
    margin-top: 0;
    padding-bottom: 16px;
  }
  .top-group .group-02 .plan-list {
    padding: 44px 4% 0;
  }
  .top-group .group-02 .plan-list li {
    list-style: none;
    color: var(--color-white);
    width: 100%;
    margin-bottom: 40px;
  }
  .top-group .group-02 .plan-list li img {
    max-width: 100%;
  }
  .top-group .group-02 .plan-list li p {
    margin-top: 8px;
  }
  .top-group .group-02 .group02-2 {
    background: none;
  }
  .top-group .group-02 .group02-2 .inner {
    padding: 40px 4%;
    background: var(--color-white);
    width: 92%;
  }
  .top-group .group-02 .group02-2 .h2-wrap {
    margin-bottom: 30px;
  }
  .top-group .group-02 .group02-2 dl {
    height: auto;
    flex-direction: column;
  }
  .top-group .group-02 .group02-2 dl dt {
    text-align: left;
    padding: 12px 0 0;
    padding-left: 0;
    color: #999;
    font-size: 16px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    font-family: var(--font-nsa);
  }
  .top-group .group-02 .group02-2 dl dt .nl-date {
    width: 110px;
  }
  .top-group .group-02 .group02-2 dl dd {
    text-align: left;
    padding: 0 0 20px;
    display: flex;
    align-items: center;
    font-weight: bold;
  }
  .top-group .group-02 .group02-2 dl dd h3 {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0;
    letter-spacing: 0;
    margin-top: 0;
    line-height: 1.5;
    font-weight: normal;
  }
  .top-group .group-02 .group02-2 dl dd h3 a {
    text-decoration: none;
    color: var(--color-main);
    transition: 0.4s;
  }
  .top-group .group-02 .group02-2 dl dd h3 a:hover {
    opacity: 0.7;
  }
  .top-group .group-02 .group02-2 .btn-type1 {
    margin-top: 32px;
  }
  .top-group .group-02 .group02-2 .btn-type1 a {
    width: 100%;
  }
  .top-group .group-02 .group02-2 .voice-wrap {
    margin-top: 60px;
  }
  .top-group .group-02 .group02-2 .voice-wrap *:last-child {
    margin-bottom: 0;
  }
  .top-group .group-02 .group02-2 .voice-list {
    flex-direction: column;
    gap: 14px;
  }
  .top-group .group-02 .group02-2 .voice-list li {
    list-style: none;
  }
  .top-group .group-02 .group02-2 .voice-list li a {
    width: 100%;
    height: auto;
    padding: 96px 32px 20px;
  }
  .top-usvisa {
    padding: 80px 0 80px;
  }
  .top-usvisa .inner .btn-type1 {
    margin-bottom: 0;
  }
  .top-usvisa .inner .btn-type1 a {
    width: 100%;
  }
  .top-usvisa .inner h3 {
    font-size: 2.4rem;
    line-height: 1.7;
    margin-top: 40px;
  }
  .top-usvisa .inner .usvisa-flow-wrap {
    margin-bottom: 70px;
  }
  .top-usvisa .inner .usvisa-status-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .top-usvisa .inner .usvisa-trouble-wrap h3 {
    margin-top: 70px;
  }
  .top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list {
    flex-direction: column;
    gap: 20px;
  }
  .top-usvisa .inner .usvisa-trouble-wrap .usvisa-trouble-list li a {
    width: 100%;
    height: 180px;
  }
  .top-teamrecruit {
    padding-top: 60px;
  }
  .top-teamrecruit .inner .tr-wrap {
    flex-direction: column;
    min-width: initial;
  }
  .top-teamrecruit .inner .tr-wrap .tr-img img {
    width: 96%;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont {
    padding: 50px 4% 60px;
    margin-left: 0;
    margin-top: 0;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box {
    width: 100%;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .link-wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .link-wrap .btn-type2 a {
    width: 100%;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition {
    position: relative;
    padding: 0 24px;
    width: fit-content;
    margin-top: 33px;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition::before {
    content: "";
    width: 10px;
    height: 80px;
    border: 1px solid #999999;
    border-right: none;
    position: absolute;
    display: block;
    top: -9px;
    left: 0;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .recruit-condition::after {
    content: "";
    width: 10px;
    height: 80px;
    border: 1px solid #999999;
    border-left: none;
    position: absolute;
    display: block;
    top: -9px;
    right: 0;
  }
  .top-teamrecruit .inner .tr-wrap .tr-cont .tr-box .btn-type1 {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .top-teamrecruit .inner .tr-wrap.tr-reverse {
    flex-direction: column;
    margin-top: 64px;
  }
  .top-teamrecruit .inner .tr-wrap.tr-reverse .tr-img img {
    margin: 0 0 0 auto;
  }
  .top-teamrecruit .inner .tr-wrap.tr-reverse .tr-cont {
    padding: 50px 4% 60px;
    margin-right: 0;
  }
  .top-news {
    margin-top: 54px;
    width: 100%;
    margin-top: 0;
    text-align: center;
    padding: 80px 0;
  }
  .top-news .inner {
    margin: 0px auto;
    padding: 0px 4%;
    display: flex;
    flex-direction: column;
  }
  .top-news .inner .h2-wrap {
    margin-bottom: 30px;
  }
  .top-news .inner .news-list {
    width: 100%;
  }
  .top-news .inner article dl {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 15px;
    display: block;
    height: auto;
  }
  .top-news .inner article dl dt {
    width: 100%;
    text-align: left;
    padding: 12px 0 0;
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  .top-news .inner article dl dd {
    width: 100%;
    text-align: left;
    padding: 5px 0 12px;
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .top-news .inner article dl dd h3 {
    width: 100%;
  }
  .top-news .inner article dl dd a h3 {
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
    margin: 0 auto 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding-bottom: 5px;
    line-height: 1;
  }
  .top-news .inner article dl dd a h3 span {
    color: #a0a0a0;
    font-size: 10px;
    font-size: 1rem;
  }
  .top-news .inner article dl dd a:hover {
    color: #452309;
  }
  .top-news .c-for-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 374px) {
  .top-section h2 {
    font-size: 9vw;
    line-height: 1.5;
  }
  .top-section h3 {
    font-size: 8vw;
    line-height: 1.5;
  }
  .top-section h4 {
    font-size: 7vw;
    line-height: 1.5;
  }
}
.m0 {
  margin: 0 !important;
}

.u-contents {
  width: var(--content-width-page);
  margin: 0 auto;
  padding-bottom: 100px;
}
.u-contents > *:first-child {
  margin-top: 0 !important;
}
.u-contents .column-body > *:first-child {
  margin-top: 0 !important;
}
.u-contents * {
  font-family: var(--font-nsa);
}
.u-contents p {
  margin-bottom: 16px;
  color: var(--color-main);
  letter-spacing: 2px;
}
.u-contents p a {
  text-decoration: underline;
  color: #007EEB;
  transition: 0.4s;
  line-break: anywhere;
}
.u-contents p a:hover {
  opacity: 0.7;
}
.u-contents h2 {
  padding: 5px 15px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: var(--font-nse);
  color: var(--color-white);
  background: var(--color-blue);
  font-weight: normal;
  margin-top: 120px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.u-contents h3 {
  padding: 0 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: var(--font-nse);
  border-left: 2px solid var(--color-blue);
  font-weight: normal;
  margin-top: 72px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.u-contents h4 {
  font-size: 20px;
  font-size: 2rem;
  font-family: var(--font-nse);
  color: var(--color-blue);
  font-weight: normal;
  margin-top: 64px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.u-contents h5 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--font-nsa);
  color: var(--color-blue);
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.u-contents ol {
  margin: 40px 0;
  padding-left: 3em;
}
.u-contents ol li {
  margin-bottom: 5px;
  color: var(--color-main);
}
.u-contents ol li::marker {
  font-family: var(--font-nse);
  color: var(--color-blue);
}
.u-contents ul {
  margin: 40px 0;
  padding-left: 4em;
}
.u-contents ul li {
  margin-bottom: 5px;
  color: var(--color-main);
  letter-spacing: 2px;
}
.u-contents ul li::marker {
  color: var(--color-blue);
}
.u-contents ul li a {
  text-decoration: underline;
  color: #007EEB;
  transition: 0.4s;
}
.u-contents ul li a:hover {
  opacity: 0.7;
}
.u-contents .wp-block-image {
  margin-bottom: 16px;
}
.u-contents div#ez-toc-container {
  padding: 24px;
}
.u-contents div#ez-toc-container .ez-toc-title-container {
  margin-bottom: 10px;
}
.u-contents div#ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: var(--font-nsa);
}
.u-contents div#ez-toc-container nav ul li {
  padding: 10px;
  border-top: 1px solid var(--color-lightgrey);
}
.u-contents div#ez-toc-container nav ul li a {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: var(--font-nsa);
}
.u-contents div#ez-toc-container nav ul li:last-child {
  border-bottom: 1px solid var(--color-lightgrey);
}
.u-contents figcaption {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--color-main);
}
.u-contents .wp-block-flexible-table-block-table {
  margin: 40px 0;
}
.u-contents .wp-block-flexible-table-block-table > table tr th {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-blue);
  border-color: var(--color-grey) !important;
  background-color: var(--color-base) !important;
}
.u-contents .wp-block-flexible-table-block-table > table tr td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-main);
  border-color: var(--color-grey) !important;
}
.u-contents .wp-block-flexible-table-block-table ul {
  margin: 0;
  padding-left: 2em;
}
.u-contents .wp-block-flexible-table-block-table a {
  text-decoration: underline;
  color: #007EEB;
  transition: 0.4s;
  line-break: anywhere;
}
.u-contents .wp-block-flexible-table-block-table a:hover {
  opacity: 0.7;
}
.u-contents .wp-block-table {
  margin: 40px 0;
}
.u-contents .wp-block-table table tr:first-child td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-blue);
  border-color: var(--color-grey) !important;
  background-color: var(--color-base) !important;
}
.u-contents .wp-block-table table tr td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-main);
  border-color: var(--color-grey) !important;
}
.u-contents .wp-block-table ul {
  margin: 0;
  padding-left: 2em;
}
.u-contents .wp-block-table a {
  text-decoration: underline;
  color: #007EEB;
  transition: 0.4s;
  line-break: anywhere;
}
.u-contents .wp-block-table a:hover {
  opacity: 0.7;
}
.u-contents blockquote {
  background: var(--color-base);
  position: relative;
  color: var(--color-main);
  padding: 40px 80px;
}
.u-contents blockquote cite {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: right;
  color: #626262;
}
.u-contents blockquote::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/page/icon-blockquote-start.png) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 16px;
  left: 24px;
}
.u-contents blockquote::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/page/icon-blockquote-end.png) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  bottom: 16px;
  right: 24px;
}
.u-contents .hidden-default {
  display: none;
}
.u-contents .wp-block-details > *:not(summary) {
  display: none;
  overflow: hidden;
}
.u-contents .wp-block-details {
  margin: 48px 0;
  position: relative;
}
.u-contents .wp-block-details::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-blue);
  position: absolute;
  display: block;
  right: 7px;
  transform: rotate(90deg) translateY(-50%);
  bottom: 50%;
  z-index: 1;
}
.u-contents .wp-block-details[open]::after {
  content: none;
}
.u-contents .wp-block-details summary {
  font-size: 18px;
  font-size: 1.8rem;
  color: var(--color-blue);
  background: var(--color-base);
  font-family: var(--font-nse);
  padding: 14px 22px 14px 15px;
  border-left: 44px solid;
  line-height: 1.5;
  position: relative;
}
.u-contents .wp-block-details summary::marker {
  content: none;
}
.u-contents .wp-block-details summary::before {
  content: "Q";
  font-family: var(--font-en);
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: -32px;
}
.u-contents .wp-block-details summary::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-blue);
  position: absolute;
  display: block;
  right: 7px;
  transform: translateY(-50%);
  bottom: 50%;
  z-index: 1;
}
.u-contents .wp-block-details p {
  line-height: 2;
  padding: 10px 16px 0 60px;
  position: relative;
  margin-bottom: 0;
}
.u-contents .wp-block-details p:nth-child(2)::before {
  content: "A";
  font-family: var(--font-en);
  color: var(--color-blue);
  font-size: 21px;
  font-size: 2.1rem;
  position: absolute;
  display: block;
  top: 23px;
  left: 0;
  width: 44px;
  border-bottom: 1px solid;
  text-align: center;
  padding-bottom: 9px;
  line-height: 0.6;
}
.u-contents h3.toggle-head {
  color: var(--color-blue);
  background: var(--color-base);
  border-left: none;
  border-right: 44px solid;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 14px;
}
.u-contents h3.toggle-head::before {
  content: "";
  width: 26px;
  height: 2px;
  background: #fff;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
}
.u-contents h3.toggle-head::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #fff;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
  transform: rotate(90deg);
}
.u-contents h3.toggle-head.active::after {
  content: none;
}

.column-2-wrap {
  display: flex;
  justify-content: space-between;
}
.column-2-wrap .column-body {
  width: 630px;
}
.column-2-wrap .column-side {
  width: 300px;
}
.column-2-wrap .column-side .cat-box {
  margin-bottom: 40px;
}
.column-2-wrap .column-side .cat-box h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
  background: none;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
}
.column-2-wrap .column-side .cat-box .wpp-shortcode,
.column-2-wrap .column-side .cat-box .cat-list {
  display: flex;
  flex-direction: column;
}
.column-2-wrap .column-side .cat-box .wpp-shortcode a,
.column-2-wrap .column-side .cat-box .cat-list a {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--color-lightgrey);
  padding: 16px;
  text-decoration: none;
  color: var(--color-main);
  transition: 0.4s;
}
.column-2-wrap .column-side .cat-box .wpp-shortcode a:hover,
.column-2-wrap .column-side .cat-box .cat-list a:hover {
  background: var(--color-base);
}
.column-2-wrap .column-side .cat-box .wpp-shortcode a.selected,
.column-2-wrap .column-side .cat-box .cat-list a.selected {
  color: #fff;
  background: #727272;
}
.column-2-wrap .column-side .cat-box .side-link01 {
  margin-bottom: 0;
}
.column-2-wrap .column-side .cat-box .side-link01 a {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
  background: var(--color-base);
  color: var(--color-blue);
  border-left: 2px solid var(--color-blue);
  display: block;
  text-decoration: none;
  padding: 5px 15px;
}
.column-2-wrap .column-side .cat-box .side-link01 a span {
  font-family: var(--font-nse);
  position: relative;
}
.column-2-wrap .column-side .cat-box .side-link01 a span::before {
  content: "";
  width: 4.8px;
  height: 9.5px;
  background: url(../img/page/side-arrow.svg) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}
.column-2-wrap .column-side .cat-box .side-link01.selected a {
  color: #fff;
  background: #727272;
  border-left: none;
}
.column-2-wrap .column-side .cat-box .side-link01.selected a span::before {
  content: none;
}
.column-2-wrap .column-side .cat-box .side-link02 {
  margin-bottom: 0;
}
.column-2-wrap .column-side .cat-box .side-link02 a {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
  background: none;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  display: block;
  text-decoration: none;
  padding: 5px 15px;
  font-family: var(--font-nse);
  position: relative;
}
.column-2-wrap .column-side .cat-box .side-link02 a::before {
  content: "";
  width: 4.8px;
  height: 9.5px;
  background: url(../img/page/side-arrow.svg) center center no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.column-2-wrap .column-side .cat-box .side-link02 span {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
  background: none;
  color: var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  display: block;
  text-decoration: none;
  padding: 5px 15px;
  font-family: var(--font-nse);
  position: relative;
}
.column-2-wrap .column-side .cat-box .side-link02 span::before {
  content: none;
}
.column-2-wrap .column-side .cat-box .side-link02.selected a {
  color: #fff;
  background: #727272;
  border-bottom: none;
}
.column-2-wrap .column-side .cat-box .side-link02.selected a::before {
  content: none;
}

@media screen and (max-width: 767px) {
  #wrapper {
    background: #fff;
  }
  .u-contents {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .u-contents h2 {
    font-size: 20px;
    font-size: 2rem;
    background: var(--color-blue);
    margin-top: 60px;
    margin-bottom: 26px;
  }
  .u-contents h3 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 52px;
    margin-bottom: 16px;
  }
  .u-contents h4 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .u-contents h5 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 36px;
    margin-bottom: 16px;
  }
  .u-contents .wp-block-flexible-table-block-table.is-scroll-on-mobile {
    position: relative;
  }
  .u-contents .wp-block-flexible-table-block-table.is-scroll-on-mobile::after {
    font-size: 16px;
    font-size: 1.6rem;
    content: "←　この表は左右にスライドできます　→";
    color: var(--color-main);
    bottom: 0;
    left: 0;
  }
  .u-contents blockquote {
    padding: 40px 10%;
  }
  .u-contents blockquote cite {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: right;
    color: #626262;
  }
  .u-contents blockquote::before {
    top: 2vw;
    left: 2vw;
  }
  .u-contents blockquote::after {
    bottom: 2vw;
    right: 2vw;
  }
  .column-2-wrap {
    flex-direction: column;
  }
  .column-2-wrap .column-body {
    width: 100%;
  }
  .column-2-wrap .column-side {
    width: 100%;
    margin-top: 100px;
  }
}/*# sourceMappingURL=style.css.map */