@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@600&family=M+PLUS+1p:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap");
:root {
  --main-c: #0b3477;
  --sub-c: #194da2;
  --black: #222;
  --gray: #b0b0b0;
  --blue-gray: #eceef2;
  --light-gray: #fafafa;
}

.pc-disp {
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .pc-disp {
    display: none;
  }
}

.tab-disp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab-disp {
    display: inline-block;
  }
}

.sp-disp {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-disp {
    display: inline-block;
  }
}

.mt10 {
  margin-top: 1rem !important;
}

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

.mt20 {
  margin-top: 2rem !important;
}

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

.mt30 {
  margin-top: 3rem !important;
}

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

.mt40 {
  margin-top: 4rem !important;
}

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

.mt50 {
  margin-top: 5rem !important;
}

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

.mt60 {
  margin-top: 6rem !important;
}

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

.mt70 {
  margin-top: 7rem !important;
}

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

.mt80 {
  margin-top: 8rem !important;
}

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

.mt90 {
  margin-top: 9rem !important;
}

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

.mt100 {
  margin-top: 10rem !important;
}

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

.mt110 {
  margin-top: 11rem !important;
}

.mb110 {
  margin-bottom: 11rem !important;
}

.mt120 {
  margin-top: 12rem !important;
}

.mb120 {
  margin-bottom: 12rem !important;
}

.w100 {
  width: 100%;
  margin: 0 auto;
}

.large {
  font-size: 120%;
}

.small {
  font-size: 80%;
}

.al-r {
  text-align: right;
}

.bold {
  font-weight: 500;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1p", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  color: var(--black);
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.transition, .wp-pagenavi a.page:hover, .slider .prev_icon,
.slider .next_icon, .sidebar__list--item, .more-btn a:hover::after, .floating-banner, .header__logo, a,
a *,
button,
input[type=button],
input[type=submit] {
  transition: ease-out 0.2s;
}

.shine, .header__mail a, .shine_hover {
  overflow: hidden;
  position: relative;
}
.shine::before, .header__mail a::before, .shine_hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  transform: skewX(-25deg);
  animation: shine 1.5s ease-in-out 1s infinite normal;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.shine_hover::before {
  animation: none;
}
.shine_hover:hover::before {
  animation: shine 1s;
}

section {
  padding: 8rem 4rem;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 3rem 2rem;
  }
}

.bg-gray {
  background-color: var(--light-gray);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  z-index: 998;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 6rem;
    border-bottom: solid 1px #ccc;
    background-color: #fff;
    padding: 0 2rem;
    justify-content: space-between;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 6rem;
    padding: 0 1rem;
  }
}
.header__logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    display: block;
    margin-right: 2rem;
  }
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo img {
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .header__logo img {
    width: 14rem;
  }
}
@media screen and (max-width: 599px) {
  .header__logo img {
    width: 13rem;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__sns {
  display: flex;
  align-items: center;
}
.header__sns--item a {
  width: 6rem;
  height: 6rem;
  background-color: #b93138;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header__sns--item a {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__sns--item a svg {
    transform: scale(70%);
  }
}
.header__sns--item a:hover {
  background-color: #fff;
}
.header__sns--item a:hover svg path {
  fill: #b93138;
}
.header__mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  height: 6rem;
  background-color: var(--main-c);
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .header__mail a::before {
    animation: none;
  }
}
@media screen and (max-width: 1024px) {
  .header__mail a {
    display: none;
  }
}
.header__mail a:hover {
  background-color: var(--blue-gray);
  color: var(--main-c);
}
.header__spnav {
  margin-left: 2rem;
  position: relative;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  width: 34px;
  height: 21px;
  transition: all 1s;
}
@media screen and (max-width: 599px) {
  .header__spnav {
    margin-left: 1rem;
  }
}
.header__spnav span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: all ease-out 0.3s;
}
.header__spnav span:nth-of-type(1) {
  top: 0;
}
.header__spnav span:nth-of-type(2) {
  top: 10px;
}
.header__spnav span:nth-of-type(3) {
  bottom: 0;
}
.header__spnav.active span {
  background-color: var(--main-c);
}
.header__spnav.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__spnav.active span:nth-of-type(2) {
  opacity: 0;
}
.header__spnav.active span:nth-of-type(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 6rem 0 2rem;
  border-bottom: solid 1px #ccc;
}
@media screen and (max-width: 599px) {
  .header__nav {
    padding-top: 6rem;
  }
}
.header__nav.active {
  opacity: 100;
  visibility: visible;
  display: block;
}
.header__nav--list {
  padding: 0 2rem;
  border-top: solid 1px #ccc;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .header__nav--list {
    justify-content: space-between;
  }
}
.header__nav--list--item {
  width: calc(50% - 2rem);
  margin-top: 2rem;
}
.header__nav--list--item:nth-child(odd) {
  margin-right: 2rem;
}
@media screen and (max-width: 599px) {
  .header__nav--list--item {
    width: calc(50% - 1rem);
    margin-top: 1rem;
  }
  .header__nav--list--item:nth-child(odd) {
    margin-right: 1rem;
  }
}
.header__nav--list--item a {
  border-radius: 1rem;
  border: 1px solid var(--main-c);
  color: var(--main-c);
  background-color: #fff;
  width: 100%;
  padding: 1rem;
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  .header__nav--list--item a {
    padding: 0.5rem;
  }
}
.header__nav--list--item .en {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  display: block;
  font-size: 2rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .header__nav--list--item .en {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
}
.header__nav--list--item.current a, .header__nav--list--item:hover a {
  color: #fff;
  background-color: var(--main-c);
}

.footer {
  margin-left: 24rem;
  background-color: var(--black);
  color: #fff;
  padding: 8rem 2rem 5rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 2rem 2rem 8rem;
  }
}
.footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .footer__nav {
    font-size: 1.2rem;
    flex-direction: column;
    margin-bottom: 5rem;
  }
}
.footer__nav--box {
  margin: 0 5%;
}
@media screen and (max-width: 1024px) {
  .footer__nav--box {
    margin: 0 2%;
  }
}
@media screen and (max-width: 599px) {
  .footer__nav--box {
    margin: 0;
  }
}
.footer__nav--box li {
  margin-top: 2rem;
}
@media screen and (max-width: 599px) {
  .footer__nav--box li {
    margin-top: 1.5rem;
  }
}
.footer__nav--subbox > li {
  margin-left: 1.5rem;
}
.footer__nav a::before {
  content: "▶";
  font-size: 60%;
  margin-right: 1em;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer .copyright {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer .copyright {
    font-size: 1.2rem;
  }
}

.floating-banner {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 10rem;
  z-index: 99999;
  display: none;
}
@media screen and (max-width: 599px) {
  .floating-banner {
    right: 2rem;
    bottom: 2rem;
    width: 7rem;
  }
}
.floating-banner:hover {
  transform: rotate(8deg);
}

.top-ttl {
  margin-bottom: 8rem;
}
@media screen and (max-width: 599px) {
  .top-ttl {
    margin-bottom: 4rem;
  }
}
.top-ttl h2 {
  color: var(--main-c);
  font-size: 10rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media screen and (max-width: 599px) {
  .top-ttl h2 {
    font-size: 6rem;
  }
}
.more-btn {
  width: 20rem;
  height: 6rem;
  border: solid 1px var(--main-c);
  margin: 4rem 0 0 auto;
}
@media screen and (max-width: 599px) {
  .more-btn {
    width: 18rem;
    height: 5rem;
  }
}
.more-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  margin: 4px;
  background-color: var(--blue-gray);
  font-weight: 500;
  color: var(--main-c);
  padding: 0 3rem;
}
.more-btn a::after {
  content: "";
  background-image: url(../images/icon_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
}
.more-btn a:hover::after {
  right: 0.8rem;
}

main {
  margin-left: 24rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main {
    margin-top: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1025px) {
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow-y: scroll;
    scrollbar-width: none;
    width: 24rem;
    height: 100vh;
    box-shadow: 0 0 20px 0 rgba(14, 52, 119, 0.1);
    background-color: var(--main-c);
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    background-color: #fff;
    margin-top: 6rem;
    border-bottom: 1px solid #ccc;
    overflow-x: auto;
    scrollbar-width: none;
  }
}
@media screen and (max-width: 599px) {
  .sidebar {
    margin-top: 6rem;
  }
}
.sidebar__logo {
  background-color: var(--blue-gray);
  padding: 2rem;
}
@media screen and (max-width: 1024px) {
  .sidebar__logo {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar__list {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 1rem;
  }
}
.sidebar__list--item {
  font-size: 1.3rem;
  color: var(--light-gray);
  border-bottom: 1px dashed var(--blue-gray);
}
.sidebar__list--item a {
  padding: 1.5rem 2rem;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .sidebar__list--item {
    color: var(--black);
    padding: 0 2rem;
    border-right: 1px solid var(--blue-gray);
    border-bottom: none;
  }
  .sidebar__list--item a {
    padding: 0;
  }
  .sidebar__list--item:first-child {
    padding-left: 1rem;
  }
  .sidebar__list--item:last-child {
    border-right: none;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .sidebar__list--item {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  .sidebar__list--item:first-child {
    padding-left: 0;
  }
  .sidebar__list--item:last-child {
    padding-right: 0;
  }
}
.sidebar__list--item .en {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  color: var(--light-gray);
  font-size: 2.2rem;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  margin-bottom: 5px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .sidebar__list--item .en {
    display: none;
  }
}
.sidebar__list--item:last-child {
  margin-bottom: 0;
}
.sidebar__list--item.current, .sidebar__list--item:hover {
  background-color: var(--light-gray) !important;
}
.sidebar__list--item.current *, .sidebar__list--item:hover * {
  color: var(--main-c) !important;
}

.slick-slider {
  display: none;
}

.slider {
  padding: 0;
}
.slider__wrap--item {
  margin: 0;
}
.slider__wrap--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 984/481;
}
.slider__wrap--item a:hover {
  opacity: 0.8;
}
.slider .prev_icon,
.slider .next_icon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 5.5rem;
  z-index: 1;
  cursor: pointer;
}
.slider .prev_icon:hover,
.slider .next_icon:hover {
  opacity: 0.9;
}
.slider .prev_icon {
  left: 8%;
}
.slider .next_icon {
  right: 8%;
}
@media screen and (max-width: 599px) {
  .slider .slick-dotted.slick-slider {
    margin-bottom: 20px;
  }
}
.slider .slick-dots {
  bottom: -40px;
}
@media screen and (max-width: 599px) {
  .slider .slick-dots {
    bottom: -30px;
  }
}
.slider .slick-dots li button:before {
  font-size: 10px;
}
@media screen and (max-width: 599px) {
  .slider .slick-dots li button:before {
    font-size: 7px;
  }
}
.slider .slick-dots li.slick-active button:before,
.slider .slick-dots li button:hover:before {
  color: var(--main-c);
}

.top-service {
  background-image: url(../images/bg_service.jpg);
  background-size: cover;
  background-position: center bottom;
}
.top-service .top-ttl,
.top-service .top-ttl h2 {
  color: #fff;
}
.top-service__wrap {
  display: flex;
  flex-wrap: wrap;
}
.top-service__list {
  width: calc((100% - 3rem) / 2);
  margin-right: 3rem;
  margin-bottom: 3rem;
}
.top-service__list:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 599px) {
  .top-service__list {
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}
.top-service__list a {
  display: inline-block;
  width: 100%;
}
.top-service__list a:hover {
  opacity: 0.6;
}

.news__list {
  border-bottom: 1px dashed var(--gray);
}
.news__list a {
  display: inline-block;
  padding: 2rem 0;
  width: 100%;
}
.news__list a:hover {
  opacity: 0.6;
}
.news__list article {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .news__list article {
    flex-wrap: wrap;
  }
}
.news__category {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3rem;
  padding: 4px 10px 3px;
  background-color: var(--main-c);
  color: #fff;
}
.news__title {
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .news__title {
    width: 100%;
    margin-top: 1rem;
  }
}

.books__wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .books__wrap {
    flex-direction: column;
  }
}
.books__item {
  width: calc((100% - 8rem) / 3);
  margin-right: 4rem;
  margin-bottom: 4rem;
}
.books__item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .books__item {
    width: calc((100% - 4rem) / 2);
  }
  .books__item:nth-child(2n) {
    margin-right: 0;
  }
  .books__item:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .books__item {
    width: 100%;
    margin-right: 0;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--blue-gray);
  }
}
.books__item a:hover {
  opacity: 0.7;
}
.books__item--img {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ccc;
}
.books__item--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.books__item--ttl {
  margin: 2rem 0 1rem;
  font-weight: 500;
}
.books__item--content {
  font-size: 1.4rem;
}
.books__item--link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 2rem;
  border-radius: 2rem;
  border: solid 2px var(--main-c);
  background-color: #fff;
  font-size: 1.4rem;
  color: var(--main-c);
  line-height: 1;
  width: 12rem;
}
.books__item--link:hover {
  background-color: var(--main-c);
  color: #fff;
}

.youtube__banner {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
@media screen and (max-width: 599px) {
  .youtube__banner {
    margin-bottom: 4rem;
  }
}
.youtube__banner--item {
  width: calc((100% - 4rem) / 3);
  margin-right: 2rem;
}
.youtube__banner--item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .youtube__banner--item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.youtube__banner--item img {
  border: solid 1px var(--gray);
}
.youtube__wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
.youtube__item {
  width: calc((100% - 4rem) / 2);
  margin-right: 4rem;
  margin-bottom: 4rem;
}
.youtube__item:nth-child(2n) {
  margin-right: 0;
}
.youtube__item--wrap {
  aspect-ratio: 16/9;
}
.youtube__item--wrap iframe {
  width: 100%;
  height: 100%;
}
.youtube__item a:hover {
  opacity: 0.7;
}
.youtube__item--ttl {
  margin: 1.5rem 0 1rem;
  font-weight: 500;
}

.sub-header {
  position: relative;
  background-color: var(--light-gray);
  padding-right: 24rem;
  border-bottom: 2px solid var(--blue-gray);
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .sub-header {
    padding-right: 10rem;
  }
}
@media screen and (max-width: 599px) {
  .sub-header {
    padding-right: 2rem;
  }
}
.sub-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blue-gray);
  clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 30% 100%);
  z-index: -1;
}
.sub-header__ttl {
  color: var(--main-c);
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .sub-header__ttl {
    font-size: 1.2rem;
  }
}
.sub-header__ttl .en {
  font-size: 10rem;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
  display: block;
}
@media screen and (max-width: 599px) {
  .sub-header__ttl .en {
    font-size: 6rem;
  }
}

.single .sub-header__ttl {
  font-size: 6rem;
  margin-top: 1rem;
}
@media screen and (max-width: 599px) {
  .single .sub-header__ttl {
    font-size: 3rem;
  }
}
.single .sub-header__category {
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  padding: 4px 10px 3px;
  background-color: var(--main-c);
  color: #fff;
}

.wp-pagenavi {
  margin: 6rem auto 4rem;
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.wp-pagenavi a {
  color: var(--black);
}
.wp-pagenavi a:hover {
  color: var(--main-c);
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 1rem;
  line-height: 2;
  padding: 0 1.2rem;
  display: block;
  border-bottom: 4px solid transparent;
}
.wp-pagenavi span.current {
  border-bottom: 4px solid var(--main-c);
}
.wp-pagenavi a.page {
  background: none;
}
.wp-pagenavi a.page:hover {
  border-bottom: 4px solid var(--main-c);
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
  margin-right: 1.5rem;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: none;
}

.under {
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
}
.under.news::before {
  content: none;
}
.under h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--main-c);
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  .under h3 {
    font-size: 1.8rem;
  }
}
.under h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-c);
  border-bottom: 2px solid var(--main-c);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  .under h4 {
    font-size: 1.8rem;
  }
}
.under table {
  width: 100%;
}
.under table tr {
  border-bottom: 1px solid #ccc;
}
.under table tr:first-child {
  border-top: 1px solid #ccc;
}
.under table th {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 2rem;
  vertical-align: middle;
  background-color: var(--light-gray);
}
@media screen and (max-width: 599px) {
  .under table th {
    font-size: 1.2rem;
    padding: 1rem;
    width: 25%;
  }
}
.under table td {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 1rem 2rem;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .under table td {
    font-size: 1.2rem;
    padding: 1rem;
  }
}
.under table td a {
  text-decoration: underline;
}
.under table td a:hover {
  color: var(--main-c);
}
.under__img {
  text-align: center;
}
.under__img img {
  width: 800px;
  margin: 0 auto;
}
.under__box {
  border: 2px solid var(--main-c);
  padding: 1.5rem;
  font-size: 1.4rem;
}
.under .flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .under .flex-box {
    flex-direction: column;
  }
}
.under .flex-box__item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .under .flex-box__item {
    width: 100%;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .under .flex-box__item {
    margin-bottom: 2rem;
  }
}
.under .flex-box__item img {
  width: 100%;
  max-width: 100%;
}
.under .flex-box.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .under .flex-box.reverse {
    flex-direction: column;
  }
}
.under .flex-box + .flex-box {
  margin-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .under .flex-box + .flex-box {
    margin-top: 4rem;
  }
}
.under .iframe-wrap {
  margin: 0 auto;
}
.under .iframe-wrap iframe {
  width: 100%;
  height: 50vh;
}
.under p + p {
  margin-top: 1rem;
}
.under a:hover {
  opacity: 0.7;
}

.content {
  line-height: 1.8;
}
.content p + p {
  margin-top: 1.5rem;
}
.content img {
  max-width: 800px;
  margin: 0 auto;
}

.contact__form {
  line-height: 1.8;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .contact__form {
    width: 100%;
  }
}
.contact__form p .must {
  color: #a00b0b;
  padding-left: 0.3em;
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=tel],
.contact__form textarea {
  width: 100%;
  border: solid 1px var(--gray);
  background-color: var(--light-gray);
  padding: 0 8px;
}
.contact__form__item {
  margin-bottom: 2rem;
}
.contact__form .wpcf7-list-item {
  margin: 0 1em 0 0;
}
.contact__form input[type=radio] {
  position: relative;
  width: 16px;
  height: 16px;
  border: solid 1px var(--gray);
  background-color: var(--light-gray);
  border-radius: 50%;
  vertical-align: -2px;
  font-size: 1.8rem;
}
.contact__form input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--main-c);
  content: "";
}
.contact__form input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: solid 1px var(--gray);
  background-color: var(--light-gray);
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .contact__form input[type=checkbox] {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}
.contact__form input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--main-c);
  border-bottom: 2px solid var(--main-c);
  content: "";
}
@media screen and (max-width: 599px) {
  .contact__form input[type=checkbox]:checked:before {
    left: 4px;
    width: 6px;
    height: 10px;
  }
}
.contact__form .agreement {
  text-align: center;
}
.contact__form .agreement p {
  font-size: 1.3rem;
}
.contact__form .agreement label {
  display: flex;
  align-items: center;
}
.contact__form .agreement a {
  text-decoration: underline;
}
.contact__form .agreement a:hover {
  color: var(--main-c);
}
.contact__form .agreement .wpcf7-list-item {
  margin: 0;
}
.contact__form .wpcf7-not-valid-tip {
  color: #a00b0b;
  font-weight: 600;
  font-size: 1.6rem;
}
.contact__form .cta__btn {
  width: 30rem;
  height: 6rem;
  margin: 4rem auto;
  position: relative;
}
@media screen and (max-width: 599px) {
  .contact__form .cta__btn {
    width: 18rem;
    height: 5rem;
  }
}
.contact__form .cta__btn input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: var(--main-c);
  font-weight: 500;
  color: #fff;
}
.contact__form .cta__btn input[type=submit]:disabled {
  background-color: var(--gray);
}
.contact__form .cta__btn input[type=submit]:not(:disabled):hover {
  background-color: var(--blue-gray);
  color: var(--main-c);
}
.contact .form__recaptcha {
  text-align: center;
  font-size: 1.2rem;
}
.contact .form__recaptcha a {
  text-decoration: underline;
}
.contact .form__recaptcha a:hover {
  opacity: 0.7;
}

form.sent .contact__form {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2rem !important;
  background: #fff;
  text-align: center;
  padding: 1rem !important;
}

.grecaptcha-badge {
  visibility: hidden;
}