@charset "utf-8";
:root {
  --default-font: "Noto Serif JP", serif;
  --gothic-font: "Noto Sans JP", sans-serif;
  --line-font: "LINE Seed JP", sans-serif;
  --icon-bootstrap: "bootstrap-icons";
  --google-icon: "Material Symbols Outlined";
  --main-color: #00347f;
  --sub-color: #f0f4fa;
  --border-color: rgb(220, 221, 221); /*#dcdddd*/
  --base-color: #2f3031;
  --gradation: linear-gradient(
    rgb(248, 253, 253),
    rgb(229, 235, 235) 90%,
    rgb(228, 232, 232)
  );
  --large-size: 2.5rem;
  --normal: 400;
  --medium: 500;
  --bold: 700;
}
* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
p {
  color: var(--base-color);
}
a {
  text-decoration: none;
  color: var(--link-color);
}
header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 4% 1rem;
  position: fixed;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
}
header #logo {
  aspect-ratio: 61/10;
  width: 365px;
  height: auto;
  transition: all 0.2s ease-in-out;
}
header nav > ul {
  display: flex;
  justify-content: flex-end;
}
header nav#header-nav {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
header nav#header-nav ul {
  align-items: center;
}
header nav#header-nav ul li {
  position: relative;
  line-height: 1.4;
}
header nav#header-nav ul li:not(:nth-of-type(n + 7)) {
  margin-right: 1.5rem;
}
header nav#header-nav ul li:not(:nth-of-type(n + 6))::before {
  content: "";
  background-color: var(--border-color);
  height: 100%;
  width: 1px;
  position: absolute;
  right: -0.75rem;
  top: 0;
}
header nav#header-nav ul li:nth-of-type(7) {
  margin-right: 1rem;
}
header nav#header-nav ul li img {
  aspect-ratio: 1/1;
  width: 21px;
  height: auto;
}
header #global-nav > ul {
  gap: 4rem;
  font-size: 1.1rem;
}
#global-nav {
  position: relative;
}
.has-child-list {
  position: fixed;
  top: 95px;
  left: 0;
  width: 100vw;
  background: #f8fafa;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  display: flex;
}
.has-child-list > li:first-of-type {
  padding: 6rem 10.5rem;
  background-image: url(../../img/common/menu01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-right: 3.75rem;
  max-width: 450px;
  width: 100%;
}
.has-child:first-child .has-child-list > li:first-of-type {
  background-image: url(../../img/common/menu01.jpg);
}
.has-child:nth-child(2) .has-child-list > li:first-of-type {
  background-image: url(../../img/common/menu02.jpg);
}
.has-child:nth-child(3) .has-child-list > li:first-of-type {
  background-image: url(../../img/common/menu03.jpg);
}
.has-child:nth-child(4) .has-child-list > li:first-of-type {
  background-image: url(../../img/common/menu04.jpg);
}
.has-child:nth-child(5) .has-child-list > li:first-of-type {
  background-image: url(../../img/common/menu05.jpg);
}
.has-child-list > li:first-of-type::before {
  content: "";
  background-color: rgba(77, 102, 146, 0.79);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.has-child-list > li:first-of-type h2 {
  color: #fff;
  font-weight: var(--medium);
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.has-child-list > li:nth-of-type(2) {
  flex: 1;
}
.has-child-list .flex {
  padding: 2rem 3.75rem 2rem 0;
  text-align: left;
  font-size: 0.9rem;
  font-weight: var(--medium);
  gap: 5rem;
  height: 240px;
}
.has-child-list .flex ul {
  width: calc((100% - 10rem) / 3);
}
.has-child-list .dropdown-menu li {
  position: relative;
}
.has-child-list .dropdown-menu li a {
  position: relative;
}
.has-child-list .dropdown-menu li a::after {
  content: "";
  background-image: url(../../img/common/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 7/14;
  width: 7px;
  height: auto;
  position: absolute;
  right: 0;
  top: 38%;
  transform: translateY(-50%);
}
.has-child-list .dropdown-menu li:not(:last-of-type) a {
  border-bottom: 1px solid var(--border-color);
}
.has-child-list .dropdown-menu li a {
  display: block;
  width: 100%;
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
}
.has-child-list .dropdown-menu li:last-of-type a {
  margin-bottom: 0;
}
.has-child:hover > .has-child-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/*
.has-child-list .flex > .dropdown-menu:last-of-type li:first-of-type a {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}
  */
.has-child-list
  .flex
  > .dropdown-menu:not(:only-of-type):last-of-type
  li:first-of-type
  a {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}
.has-child-list .dropdown-menu li a.external-link span::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.3em;
  aspect-ratio: 1;
  background: url(../../img/common/link_icon.svg) no-repeat center / contain;
  vertical-align: -0.1em;
}
#index-billboard {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 80px;
}
#index-billboard figure {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
/*
#index-billboard figure::before {
  content: "";
  background-color: #7cb5d8;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
}
*/
#index-billboard figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#index-billboard .text-box {
  position: absolute;
  bottom: 30px;
  left: 3.5%;
  text-align: left;
}
#index-billboard .text-box p {
  font-size: 1.1rem;
  font-weight: var(--bold);
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.53);
  color: #fff;
}
#index-billboard .text-box h2 {
  font-size: 5.25rem;
  line-height: 1.2;
  text-shadow: 0px 0px 50px rgba(0, 0, 0, 0.53);
  color: #fff;
}
#index-billboard .text-box .size130 {
  font-size: 1.3em;
}

.fixed-btn {
  position: fixed;
  z-index: 20;
}
.fixed-btn--right {
  right: 0;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.fixed-btn--right ul {
  display: flex;
  gap: 3px;
  color: #fff;
  font-size: 0.9rem;
}
.fixed-btn--right ul li {
  width: 100%;
  height: 138px;
  border-radius: 3px 0 0 3px;
  position: relative;
}
.fixed-btn--right ul li:first-of-type {
  background-image: linear-gradient(rgb(35, 193, 114), rgb(19, 224, 161));
}
.fixed-btn--right ul li:first-of-type::before {
  content: "";
  background-image: url(../../img/common/info_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  aspect-ratio: 1/1;
  width: 1.1rem;
  height: auto;
  top: 18px;
  left: 50%;
  transform: translateX(-46%);
}
.fixed-btn--right ul li:nth-of-type(2) {
  background-color: var(--main-color);
}
.fixed-btn--right ul li:nth-of-type(2) a {
  padding: 3rem 0.5rem 1.5rem;
  width: 42px;
}
.fixed-btn--right ul li:nth-of-type(2)::before {
  content: "";
  background-image: url(../../img/common/pencil_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  aspect-ratio: 1/1;
  width: 1.1rem;
  height: auto;
  top: 26px;
  left: 50%;
  transform: translateX(-46%);
}
.fixed-btn--right ul li a {
  display: inline-block;
  width: 42px;
  height: 100%;
  padding: 2.3rem 0.5rem 1.2rem 0.2rem;
}
.fixed-btn--bottom {
  right: 78px;
  bottom: 18px;
}
.fixed-btn--bottom ul {
  display: flex;
  align-items: flex-end;
}
.fixed-btn--bottom li {
  display: flex;
  align-items: center;
}
.fixed-btn--bottom li .close-btn,
.fixed-btn--bottom li .close-btn01 {
  cursor: pointer;
}

.fixed-btn--bottom li h3 {
  line-height: 1.2;
}
.fixed-btn--bottom li p {
  line-height: 1.6;
}
.fixed-btn--bottom li:first-of-type {
  margin-right: 0.5rem;
  padding: 0 0.6rem 0 0.4rem;
}
.fixed-btn--bottom li .text-box {
  padding-left: 0.7rem;
  width: 170px;
  overflow: hidden;
  opacity: 1;
  white-space: nowrap;
  transition:
    width 0.35s ease,
    opacity 0.35s ease,
    padding 0.35s ease;
}
.fixed-btn--bottom li.is-closed .text-box {
  width: 0;
  opacity: 0;
  padding-left: 0;
}
.fixed-btn--bottom li:first-of-type h3 {
  color: #06c756;
  letter-spacing: -0.04rem;
}
.fixed-btn--bottom li figure {
  margin-bottom: 0 !important;
}
.fixed-btn--bottom li:first-of-type figure img {
  aspect-ratio: 1/1;
  width: 44px;
}
.fixed-btn--bottom li:nth-of-type(2) {
  margin-right: 1rem;
  overflow: hidden;
  padding: 0 0.4rem;
}
.fixed-btn--bottom li:nth-of-type(2) figure img {
  aspect-ratio: 7/9;
  width: 56px;
  height: auto;
}
.fixed-btn--bottom li {
  background-color: #fff;
  border-radius: 16px;
  height: 68px;
}
.fixed-btn--bottom li:nth-of-type(2) h3 {
  font-weight: 800;
  color: var(--main-color);
  letter-spacing: 0;
}

.fixed-btn--bottom li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.fixed-btn--bottom li:nth-of-type(2) a {
  gap: 0.4rem;
}
.fixed-btn--bottom li span {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  font-family: var(--gothic-font);
  color: #585858;
  letter-spacing: 0;
  padding-right: 0.5rem;
  position: relative;
}
.fixed-btn--bottom li span::after {
  content: "";
  background-color: #585858;
  clip-path: polygon(8px 50%, 0% 0%, 0% 12px);
  aspect-ratio: 8/12;
  width: 8px;
  height: auto;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.fixed-btn--bottom li.is-closed span::after {
  transform: translateY(-50%) rotate(180deg);
}
.fixed-btn--bottom li h3 {
  font-family: var(--line-font);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.2;
}
.fixed-btn--bottom li p {
  font-size: 0.85rem;
  font-family: var(--gothic-font);
  letter-spacing: 0;
}

#scrollUp {
  bottom: 20px;
  right: 20px;
  border-radius: 0;
  display: inline-block;
  width: 56px;
  height: auto;
  position: absolute;
  background-color: #bdbdbd;
  text-indent: 0;
  text-indent: -9999px;
}
#scrollUp::before {
  content: "";
  background-image: url(../../img/common/arrow_top.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 17/8;
  width: 23px;
  height: auto;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}
#scrollUp::after {
  content: "TOP";
  color: #fff;
  font-size: 0.7rem;
  text-indent: 0;
  letter-spacing: 0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

ul.button-list a {
  width: 256px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-weight: var(--medium);
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  text-align: center;
  display: block;
  padding: 0.8rem 0 0.85rem;
  border-radius: 999px;
  position: relative;
  transition: 0.2s ease-in-out;
}
ul.button-list a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.index-container > div:not(#index-slider) {
  padding: 0 10%;
}
#index-info {
  display: grid;
  gap: 7.5%;
  grid-template-columns: auto 1fr;
  text-align: left;
  margin-bottom: 96px;
}
.title-box h2 {
  font-size: 2.5rem;
  font-weight: var(--medium);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 80px;
}
#index-info .info-list li {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
#index-info .info-list li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
#index-info .info-list li .flex {
  align-items: center;
  margin-bottom: 0.2rem;
}
#index-info .info-list .date {
  font-size: 0.9rem;
  margin-right: 0.9rem;
}

#index-info .info-list li a.is-pdf p::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 24px;
  margin-left: 8px;
  background-color: red;
  -webkit-mask-image: url("../../img/common/pdf_icon.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("../../img/common/pdf_icon.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  vertical-align: -5px;
}

.tab {
  color: var(--main-color);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  background-color: var(--sub-color);
  padding: 0.15rem 0.2rem;
  width: 95px;
}
#index-slider {
  overflow: hidden;
  padding-bottom: 100px;
}
.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slider img {
  width: 100%;
  height: auto;
  display: block;
}
.slider li {
  margin-right: 1.5rem;
  text-align: left;
  font-size: 1.2rem;
}
.slider li h3 {
  font-weight: var(--medium);
  margin-top: 0.2rem;
  position: relative;
  display: inline-block;
}
.slider li h3::before {
  content: "";
  background-color: var(--sub-color);
  aspect-ratio: 1/1;
  width: 25px;
  height: auto;
  border-radius: 999px;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
}
.slider li h3::after {
  content: "\e5cc";
  font-family: var(--google-icon);
  font-weight: 200;
  font-size: 1.4rem;
  color: var(--main-color);
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}

.slider .slick-dots {
  bottom: -55px;
}
.slider .slick-dots li button::before {
  content: "" !important;
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: var(--sub-color) !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.slider .slick-dots li.slick-active button::before {
  opacity: 1 !important;
  background: var(--main-color) !important;
}
.arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 300px;
  margin: 23px 0 0;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  aspect-ratio: 1/1;
  width: 42px;
  height: auto;
  background: var(--sub-color);
  border-radius: 999pc;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}
.prev-arrow::before,
.next-arrow::before {
  content: "\e5cc";
  font-family: var(--google-icon);
  font-weight: 200;
  font-size: 1.8rem;
  color: var(--main-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-48%, -50%);
}
.slider figure {
  overflow: hidden;
  position: relative;
}
.slider a img {
  transition: all 0.2s ease-in-out;
}
.slider a:hover img {
  transform: scale(1.15);
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.8%;
  margin-bottom: 3.5rem;
}
.blog-list li {
  width: calc((100% - 5.4%) / 4);
  background-color: #fff;
  box-shadow: 0px 3px 30px -7px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.blog-list figure {
  margin-bottom: 0;
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
}
.blog-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-list .text-box {
  padding: 1.25rem 0.75rem;
}
.blog-list .text-box .tab {
  background-color: var(--main-color);
  color: #fff;
  padding: 0.1rem 0.4rem;
}
.blog-list .text-box .date {
  font-size: 0.8rem;
}
.blog-list .text-box .tab + .date {
  margin-left: 0.8rem;
}
.blog-list .text-box h3 {
  font-weight: var(--normal);
  font-size: 1rem;
  margin-top: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.blog-list figure {
  overflow: hidden;
  position: relative;
}
.blog-list a img {
  transition: all 0.2s ease-in-out;
}
.blog-list a:hover img {
  transform: scale(1.15);
}
.blog-list a:hover figure::before {
  content: "";
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  height: auto;
  background-color: rgba(0, 52, 127, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#index-blog ul.button-list {
  display: flex;
  justify-content: center;
}
#index-blog ul.button-list li a {
  width: 307px;
}
#index-btn-container {
  margin-top: 126px;
  margin-bottom: 164px;
}
#index-btn-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contact-btn-container ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 3rem;
}
.contact-btn-container .button-list li a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 0;
  font-size: 0.95rem;
  width: 330px;
  padding: 1.2rem 0;
  position: relative;
}
.contact-btn-container .button-list a .icon {
  position: relative;
  padding-left: 1.7rem;
}
.contact-btn-container .button-list li:first-of-type a .icon::before {
  content: "";
  background-image: url(../../img/common/mail_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 20/14;
  width: 20px;
  height: auto;
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
.contact-btn-container .button-list li:nth-of-type(2) a .icon {
  padding-left: 1.5rem;
}
.contact-btn-container .button-list li:nth-of-type(2) a .icon::before {
  content: "";
  background-image: url(../../img/common/document_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 19px;
  height: auto;
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
.footer-nav-container {
  background-color: #f8fafa;
  padding: 74px 10% 78px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: left;
}
.footer-nav-container .main {
  font-size: 1.1rem;
  font-weight: var(--medium);
  margin-bottom: 1rem;
}
.footer-nav-container ul li:not(.main) {
  padding-left: 1rem;
  padding-bottom: 0.4rem;
  position: relative;
  letter-spacing: 0;
}
.footer-nav-container ul li:last-of-type {
  padding-bottom: 0;
}
.footer-nav-container ul {
  position: relative;
}
.footer-nav-container ul li:not(.main)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(112, 112, 112, 0.3);
  position: absolute;
  bottom: 0;
  left: 0px;
}
.footer-banner {
  margin-top: 25px;
  padding: 0 24%;
}
.footer-banner ul.matsusho-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.footer-banner ul.matsusho-group li {
  width: 235px;
  height: auto;
}
.footer-banner ul.matsusho-group li a {
  display: block;
  aspect-ratio: 235/78;
  width: 100%;
  height: 78px;
  border: 1px solid #dedede;
  background-image: linear-gradient(180deg, #ffffff, #ffffff 80%, #f4f4f4);
  overflow: hidden;
  padding: 1rem 0.8rem;
}
.footer-banner ul.matsusho-group li:first-of-type img {
  aspect-ratio: 313/68;
  width: 208px;
  height: auto;
  object-fit: contain;
}
.footer-banner ul.matsusho-group li:nth-of-type(2) a {
  padding: 1.6rem 0.8rem 1.5rem;
}
.footer-banner ul.matsusho-group li:nth-of-type(2) img {
  aspect-ratio: 314/45;
  width: 208px;
  height: auto;
  object-fit: contain;
}
.footer-banner ul.matsusho-group li:nth-of-type(3) a {
  padding: 1.5rem 0.8rem;
}
.footer-banner ul.matsusho-group li:nth-of-type(3) img {
  aspect-ratio: 285/50;
  width: 190px;
  height: auto;
  object-fit: contain;
  display: inline-block;
}
.expansion-banner {
  aspect-ratio: 358/91;
  width: 25%;
  min-width: 358px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  background-image: linear-gradient(#c5b37c, #c5b37c 75%, #90835b);
  border: 1px solid #dedede;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}
.expansion-banner a {
  line-height: 1.4;
  display: block;
  padding: 0.3rem 0.8rem 0.6rem;
  letter-spacing: 0;
}
.expansion-banner .size14 {
  font-size: 0.9rem;
}
.expansion-banner .eng {
  color: #fff;
  font-size: 0.75rem;
  margin-top: 0.3rem;
  position: relative;
}
.expansion-banner .eng .border {
  position: relative;
  display: inline-block;
}
.expansion-banner .eng .border::before {
  content: "";
  width: 52%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -45px;
  top: 52%;
  transform: translateY(-50%);
}
.expansion-banner .eng .border::after {
  content: "";
  width: 52%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: -45px;
  top: 52%;
  transform: translateY(-50%);
}
footer {
  background-color: var(--main-color);
  padding-top: 53px;
}
footer p {
  color: #fff;
}
footer .logo img:first-of-type {
  aspect-ratio: 38/33;
  width: 75px;
  height: auto;
  margin: 0 auto 0.2rem;
  display: inline-block;
}
footer .logo img:nth-of-type(2) {
  aspect-ratio: 465/46;
  width: 310px;
  height: auto;
  margin: 0 auto 1.5rem;
}
footer .footer-address p {
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0;
}
footer .contact-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
footer .contact-btn-container ul {
  gap: 0.65rem;
}
footer .contact-btn-container ul li {
  border: 1px solid #fff;
}
footer .contact-btn-container ul.button-list li a {
  width: 175px;
  font-size: 0.75rem;
  padding: 0.8rem;
}
footer .contact-btn-container ul {
  margin-bottom: 0 !important;
}
footer ul.sns-list {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}
footer ul.sns-list img {
  aspect-ratio: 1/1;
  width: 24px;
  height: auto;
}
footer ul.sns-list li:nth-of-type(2) img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(152deg) brightness(103%) contrast(103%);
}
footer .footer-box {
  padding: 1rem 2% 1.1rem;
  text-align: center;
}
footer .footer-box a {
  display: inline-block;
  margin-bottom: 3rem;
}
footer .footer-box p {
  letter-spacing: 0;
  font-size: 0.8rem;
}
footer .footer-box p.copy {
  font-family: var(--gothic-font);
}

.footer-nav-container a.external-link::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 1;
  margin-left: 0.3em;
  background: url(../../img/common/link_icon.svg) no-repeat center / contain;
  vertical-align: -0.1em;
}
/*=======================================
  block
========================================= */
.block-contents {
  text-align: left;
}
.block-contents:has(h2) {
  margin-bottom: 0;
}
.block-contents > h2 {
  font-size: 1.5rem;
  font-weight: var(--normal);
  color: var(--main-color);
  margin-bottom: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.block-contents > h2 span {
  display: inline-block;
  position: relative;
}
.block-contents > h2 span::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -0.05rem;
}

.block-contents .contents-block > h3 + .text-box {
  margin-top: 0.8rem;
}
.block-contents .photo-box .text-box h4 {
  color: var(--main-color);
  font-weight: var(--medium);
}
.block-contents > p {
  margin-bottom: 1em;
}
.block-contents ul > li,
.block-contents ol > li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.block-contents ul > li:last-child,
.block-contents ol > li:last-child {
  margin-bottom: 1em;
  margin-left: 0;
  list-style: none;
}
.block-contents ul > li {
  list-style: disc outside;
}
.block-contents ol > li {
  list-style: decimal outside;
}
.block-contents .flex ul li {
  list-style: none;
  margin-left: 0;
}
.block-contents .photo-box {
  width: 100%;
}
.block-contents.flex-row .photo-box,
.block-contents.flex-row-reverse .photo-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 2rem;
}
.block-contents.flex-row-reverse .photo-box {
  flex-direction: row-reverse;
}
.block-contents .photo-box > .photo {
  margin-bottom: 1rem;
}
.block-contents .photo-box > .photo figure {
  margin-bottom: 0;
}
.block-contents.flex-row .photo-box > .photo,
.block-contents.flex-row-reverse .photo-box > .photo {
  box-sizing: border-box;
  width: 300px;
}
.block-contents.flex-row .photo-box > .recruit-photo,
.block-contents.flex-row-reverse .photo-box > .recruit-photo {
  box-sizing: border-box;
  width: calc(40% - 2rem);
}
.block-contents .photo-box .media-body {
  margin-top: 1rem;
}
.block-contents .photo-box > .photo > figure.border {
  border: 1px solid #ededed;
  padding: 1rem;
}
.block-contents .photo-box > .photo > figcaption {
  font-size: 0.85em;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.25em;
  margin-bottom: 5em;
}
.block-contents .photo-box .text-box {
  flex: 1;
}
.block-contents .photo-box .text-box p {
  margin-bottom: 1em;
}
.block-contents ul.pdf-list {
  margin-top: 1rem;
}
.block-contents ul.pdf-list > li {
  list-style: none;
  margin-bottom: 1em;
  margin-left: 0;
  padding-left: 1.8em;
  position: relative;
}
/*
.block-contents ul.pdf-list > li::before {
  content: "";
  width: 1.3rem;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(15%);
}

.block-contents ul.pdf-list > li .file-size {
  display: inline-block;
  font-size: 0.85em;
  color: var(--font-color);
  margin-left: 0.5em;
}
*/
.block-contents ul.pdf-list > li.pdf a::after {
  content: "";
  background-image: url(../../img/common/pdf_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 14 / 18;
  width: 0.9rem;
  position: absolute;
  transform: translateY(6px);
}

.block-contents ul.pdf-list > li.xls a::after {
  content: "";
  background-image: url(../../img/svg/xls.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1rem;
  aspect-ratio: 3 / 4;
  position: absolute;
  transform: translateY(6px);
}
.block-contents ul.pdf-list > li.doc a::after {
  content: "";
  background-image: url(../../img/svg/doc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1rem;
  aspect-ratio: 3 / 4;
  position: absolute;
  transform: translateY(6px);
}
.block-contents ul.pdf-list > li.ppt a::after {
  content: "";
  background-image: url(../../img/svg/ppt.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.1rem;
  aspect-ratio: 3 / 4;
  position: absolute;
  transform: translateY(6px);
}

table.block-table01 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  margin: 0.8rem auto;
  font-size: 0.95rem;
}
table.block-table01 tr {
  border-bottom: 0.05rem dashed var(--border-color);
}
table.block-table01 th,
table.block-table01 td {
  text-align: left;
  vertical-align: top;
  padding: 0.8rem 1.2rem;
}
table.block-table01 th {
  background-color: var(--sub-color);
  font-weight: var(--normal);
  width: 50%;
}

table.block-table02 {
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.6;
  width: 100%;
  margin: 0.8rem auto;
  border: 1px solid var(--border-color);
}
table.block-table02 thead tr {
  border-bottom: 0.2rem double var(--border-color);
}
table.block-table02 thead th {
  font-size: 0.9em;
  line-height: 1.8;
  font-weight: var(--bold);
  text-align: center;
  padding: 0.3em;
  background-color: var(--sub-color);
}

table.block-table02 tbody td {
  text-align: left;
  padding: 0.75em 1em;
}

table.block-table01 thead,
table.block-table02 thead {
  text-align: center;
}
table.block-table01 tbody tr {
  border-top: 1px solid var(--border-color);
}
table.block-table01 thead tr th:not(:last-of-type),
table.block-table01 thead tr th,
table.block-table01 tbody tr td:not(:last-of-type) {
  border-right: 1px solid var(--border-color);
}
table.block-table01 + p.caption {
  font-size: 0.75rem;
  line-height: 1.5;
}
table.block-table02 tbody tr {
  border-top: 1px solid var(--border-color);
}
table.block-table02 thead tr th:not(:last-of-type),
table.block-table02 thead tr th,
table.block-table02 tbody tr td:not(:last-of-type) {
  border-right: 1px solid var(--border-color);
}
table.block-table02 + p.caption {
  font-size: 0.75rem;
  line-height: 1.5;
}
.block-contents ul.photo-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
.block-contents ul.photo-list > li {
  list-style: none;
  margin: 0;
}
ul.photo-list.column2 > li {
  width: calc((100% - 1rem) / 2);
}
ul.photo-list.column3 > li {
  width: calc((100% - 2rem) / 3);
}
ul.photo-list > li > figure {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
ul.photo-list > li > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul.photo-list > li > figcaption {
  font-size: 0.85em;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.3em;
}
.block-movie {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.block-movie > iframe {
  width: 100%;
  height: 100%;
}
.block-contents .full {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}
.block-contents .full ul:not(.disc-list) {
  display: flex;
  gap: 1.5rem;
}
.block-contents .full ul:not(.disc-list) li {
  list-style: none;
  margin-left: 0;
}
.block-contents .full figure {
  margin-bottom: 0;
}
.block-contents .flex-row-reverse {
  flex-direction: row-reverse;
}
.page-child .block-contents + .block-contents:has(ul.hissu-list) {
  margin-top: 1rem;
}
ul.hissu-list li {
  list-style: none;
  margin-left: 0;
}
/*=======================================
  クラシックエディタ用（テキストエディタ）
========================================= */
.block-contents h1,
.info-contents h1 {
}
.block-contents h2,
.info-contents h2 {
}
.block-contents em,
.info-contents em {
  font-style: italic !important;
}
.block-contents > ul,
.block-contents > ol,
.info-contents > ul,
.info-contents > ol {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2em;
}

.block-contents > ul > li,
.info-contents > ul > li {
  list-style: disc outside !important;
  margin: 0 0 0.5em 1.25em;
}

.block-contents > ol > li,
.info-contents > ol > li {
  list-style: decimal outside !important;
  margin: 0 0 0.5em 1.25em;
}

.block-contents blockquote,
.info-contents blockquote {
  margin: 2.5em 0;
  padding: 1.5em 2em;
  background: #ffffff;
  border-left: 4px solid var(--main-color);
  color: #222;
}

.block-contents blockquote p,
.info-contents blockquote p {
  margin: 0 !important;
}

.block-contents blockquote cite,
.info-contents blockquote cite {
  display: block;
  margin-top: 0.8em;
  font-size: 0.9em;
  color: #888;
  text-align: right;
}

.block-contents > hr,
.info-contents > hr {
  border: 0;
  width: 100%;
  margin: 2rem 0;
  border-top: 2px solid #ccc;
}
.wp-pagenavi .pages,
.wp-pagenavi .last,
.wp-pagenavi .first {
  display: none;
}
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #f0f4fa;
  color: #00347f;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border: none !important;
}

.wp-pagenavi .current {
  background: #00347f;
  color: #fff;
}
.wp-pagenavi .extend {
  width: 23px;
  height: 4px;
  background-color: transparent;
  padding: 0 0 10px;
}
.wp-pagenavi .extend:last-of-type {
  display: none;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  color: transparent;
}
.wp-pagenavi .nextpostslink::before {
  content: "\e5cc";
  font-family: var(--google-icon);
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wp-pagenavi .previouspostslink::after {
  content: "\e5cb";
  font-family: var(--google-icon);
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*=======================================
  1日の流れ
========================================= */
ul.oneday-box li {
  list-style: none;
  margin-left: 0;
}
ul.oneday-box li h4 {
  position: relative;
  padding-left: 2rem;
}
ul.oneday-box li h4::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 24px;
  height: auto;
  position: absolute;
  left: 0;
  top: 3px;
}
ul.oneday-box li:first-of-type h4::before {
  background-image: url(../../img/activities/oneday/icon0845.svg);
}
ul.oneday-box li:nth-of-type(2) h4::before {
  background-image: url(../../img/activities/oneday/icon0855.svg);
}
ul.oneday-box li:nth-of-type(3) h4::before {
  background-image: url(../../img/activities/oneday/icon0910.svg);
}
ul.oneday-box li:nth-of-type(4) h4::before {
  background-image: url(../../img/activities/oneday/icon1200.svg);
}
ul.oneday-box li:nth-of-type(5) h4::before {
  background-image: url(../../img/activities/oneday/icon1250.svg);
}
ul.oneday-box li:nth-of-type(6) h4::before {
  background-image: url(../../img/activities/oneday/icon1545.svg);
}
ul.oneday-box li:nth-of-type(7) h4::before {
  background-image: url(../../img/activities/oneday/icon1610.svg);
}
ul.oneday-box li p {
  padding-left: 2rem;
}

.spirit-image {
  width: 80%;
  margin: 0 auto 2rem;
}
.spirit-logo {
  margin: 0 auto;
  aspect-ratio: 428/70;
  width: 60%;
  height: auto;
  overflow: hidden;
  margin-bottom: 4rem;
}
.spirit-text p {
  text-align: center;
  font-size: 1.3em;
  line-height: 2;
  font-weight: bold;
}

.remarks-box {
  background-color: var(--sub-color);
  padding: 1rem 1.5rem;
}
.remarks-box h4 {
  margin-bottom: 0.2rem;
}
.remarks-box p {
  font-size: 0.85rem;
}
.item-list .flex img {
  object-fit: contain !important;
}

.item-list .text-box h3 {
  margin-bottom: 1rem;
}
.item-list .text-box h4 {
  margin-bottom: 0.5rem;
}
.item-list .text-box p {
  margin-bottom: 1.5rem;
}
ul.button-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
ul.button-list li {
  list-style: none !important;
}

ul.button-list li.pdf a span {
  position: relative;
  padding-right: 1rem;
}
ul.button-list li.pdf a span::before {
  content: "";
  background-image: url(../../img/common/pdf_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 14 / 18;
  width: 0.8rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
ul.button-list li.xls a span::before {
  content: "";
  background-image: url(../../img/svg/xls.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3 / 4;
  width: 1.1rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-40%);
}
ul.button-list li.doc a span::before {
  content: "";
  background-image: url(../../img/svg/doc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3 / 4;
  width: 1.1rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-40%);
}
ul.button-list li.ppt a span::before {
  content: "";
  background-image: url(../../img/svg/ppt.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 3 / 4;
  width: 1.1rem;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-40%);
}
ul.button-list li.pdf a:hover span::before,
ul.button-list li.xls a:hover span::before,
ul.button-list li.doc a:hover span::before,
ul.button-list li.ppt a:hover span::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(189deg) brightness(104%) contrast(102%);
}

.name-list li {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-left: 0 !important;
  margin-bottom: 1rem;
}
.name-list li figure {
  aspect-ratio: 1/1;
  width: 80px;
  height: auto;
  border: 1px solid #ccc;
  overflow: hidden;
  padding: 1rem;
  margin-bottom: 0;
}
.name-list li:last-of-type figure {
  padding: 0.5rem;
}
.name-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.name-list li p {
  flex: 1;
}

ul.pdf-list.pdf-text-link li a {
  color: var(--base-color);
  padding-right: 1rem;
}
ul.pdf-list.pdf-text-link li a:hover {
  color: var(--main-color);
}
ul.pdf-list.pdf-text-link li.pdf,
ul.pdf-list.pdf-text-link li.xls,
ul.pdf-list.pdf-text-link li.doc,
ul.pdf-list.pdf-text-link li.ppt {
  padding-left: 0 !important;
}

.block-contents .text-box p a {
  text-decoration: underline;
}
.block-contents .text-box p a:hover {
  color: var(--main-color);
}
/*=======================================
  第一階層ページ
========================================= */
.sub-billboard {
  width: 100%;
  height: 241px;
  padding-top: 96px;
  background-image: linear-gradient(
    rgba(248, 253, 253, 0.39),
    rgba(248, 253, 253, 0.39) 45%,
    rgba(229, 235, 235, 0.39) 90%,
    rgba(228, 232, 232, 0.39)
  );
  text-align: left;
  margin-bottom: 2.6rem;
}
ul.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 0.2rem 3% 1.5rem;
  font-size: 0.7rem;
}
ul.crumb li:last-of-type {
  pointer-events: none;
  color: #585858;
}
ul.crumb li {
  position: relative;
}
ul.crumb li:not(:last-of-type) {
  color: var(--main-color);
}
ul.crumb li:not(:last-of-type)::after {
  content: "\e315";
  font-family: var(--google-icon);
  font-size: 1.25rem;
  color: var(--border-color);
  font-weight: 300;
  line-height: 1.2;
  position: absolute;
  top: 50%;
  transform: translateY(-47%);
  right: -1.3rem;
}
.sub-billboard h2 {
  font-size: 2.5rem;
  margin: 0 auto;
  width: calc(100% - 20%);
  max-width: 1400px;
  font-weight: var(--medium);
  line-height: 1.3;
}
main {
  width: calc(100% - 20%);
  max-width: 1400px;
  margin: 0 auto;
}
.page-lower {
  padding: 0 0 6.4rem;
}
.page-lower ul.guide-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3.5rem 1.5rem;
}
.page-lower ul.guide-list li {
  width: calc((100% - 4.5rem) / 4);
  padding-bottom: 0.8rem;
  text-align: left;
  position: relative;
}
.page-lower ul.guide-list li a {
  display: grid;
  grid-auto-rows: 1fr auto;
}
.page-lower ul.guide-list li figure {
  overflow: hidden;
  aspect-ratio: 260/206;
  width: 100%;
  height: auto;
  margin-bottom: 0.8rem;
  position: relative;
}
.page-lower ul.guide-list li figure::after {
  content: "";
  aspect-ratio: 260/206;
  width: 100%;
  height: auto;
  background-color: rgba(124, 181, 216, 0.4);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}
.page-lower ul.guide-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-lower ul.guide-list li h3 {
  font-weight: var(--medium);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-right: 1.8rem;
}
.page-lower ul.guide-list li h3::after {
  content: "\e315";
  font-family: var(--google-icon);
  font-size: 2.4rem;
  font-weight: 100;
  color: var(--main-color);
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-48%);
}
.page-lower ul.guide-list li::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
ul.guide-list .external-link-text::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 1;
  margin-left: 0.3em;
  background: url(../../img/common/link_icon.svg) no-repeat center / contain;
  vertical-align: -0.1em;
}
.guide-list figure {
  overflow: hidden;
  position: relative;
}
.guide-list a img {
  transition: all 0.2s ease-in-out;
}
.guide-list a:hover img {
  transform: scale(1.15);
}
.guide-list a:hover figure::before {
  content: "";
  aspect-ratio: 260/206;
  display: block;
  width: 100%;
  height: auto;
  background-color: rgba(0, 52, 127, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
/*=======================================
  第2階層ページ
========================================= */
.page-child {
  display: flex;
  justify-content: space-between;
  gap: 6.8rem;
  text-align: left;
  padding: 0 0 12.5em;
}
.page-child-container {
  flex: 1;
}

.block-contents > .description-box {
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.block-contents > .description-box h2 {
  font-weight: var(--medium);
  margin-bottom: 0.7rem;
  color: var(--base-color);
  border-bottom: none;
}
.block-contents + .block-contents {
  margin-top: 5rem;
}
.page-child p + .block-contents {
  margin-top: 5rem;
}
.block-contents.headline + .block-contents {
  margin-top: 1.5rem;
}
.block-contents h2 {
  font-size: 1.5rem;
  font-weight: var(--normal);
  color: var(--main-color);
  margin-bottom: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.block-contents h2 .border {
  position: relative;
  display: inline-block;
}
.block-contents h2 .border::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
}
.block-contents ul.item-list > li {
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  margin-bottom: 0.8rem;
  list-style: none !important;
  margin-left: 0;
}
.block-contents ul.item-list > li h3 + .flex {
  margin-top: 0.8rem;
}
.block-contents h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: var(--medium);
  position: relative;
  padding-left: 0.8rem;
}
.block-contents h3 + .text-box {
  margin-top: 0.8rem;
}
.block-contents h3::before {
  content: "";
  background-color: var(--main-color);
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.block-contents .title-box {
  background-color: var(--sub-color);
  padding: 0.6rem 1.2rem;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  position: relative;
}
.block-contents .title-box::before {
  content: "";
  background-color: var(--main-color);
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.block-contents .title-box .num {
  font-size: 1.1rem;
  font-weight: var(--medium);
  color: var(--main-color);
  margin-right: 1.5rem;
}
.block-contents .title-box p {
  font-size: 1.75rem;
}
.block-contents .title-box p .size80 {
  font-size: 0.9rem;
  margin-left: 0.2rem;
}
.block-contents .flex {
  gap: 1.5rem;
}
.block-contents .flex + .course-box {
  margin-top: 1rem;
}
.block-contents .flex figure {
  width: 304px;
  margin-bottom: 0;
  position: relative;
}

.block-contents .flex figure img {
  width: 100%;
  height: auto;
  display: block;
}
/*
.block-contents .flex figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(124, 181, 216, 0.4);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
*/
.block-contents ul.disc-list li {
  list-style: none;
  position: relative;
  margin-left: 0;
  padding-left: 1.25rem;
  margin-bottom: 0.1rem;
}
.block-contents ul.disc-list li::before {
  content: "";
  background-color: var(--main-color);
  aspect-ratio: 1/1;
  width: 0.9rem;
  height: auto;
  border-radius: 999px;
  position: absolute;
  top: 8px;
  left: 0%;
}
.course-box {
  background-color: var(--sub-color);
  padding: 1.75rem;
}
.course-box h4.blue {
  color: var(--main-color);
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.8rem;
}
.course-box-contents {
  background-color: var(--main-color);
  padding: 1.75rem;
}
.course-box-contents > p {
  text-align: center;
  color: #fff;
}
.course-box-contents > p:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.course-box-contents ul {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
}
.course-box-contents ul > li {
  background-color: #fff;
  text-align: center;
  font-size: 1.2rem;
  flex: 1;
  line-height: 1.8;
  padding: 0.8rem 0 0.45rem;
  margin-bottom: 0.8rem;
  margin-left: 0;
  list-style: none;
}
.course-box-contents ul > li:last-child {
  margin-bottom: 0.8rem;
}
.course-box-contents ul > li p {
  color: var(--main-color);
}
.course-box-contents ul > li .size70 {
  font-size: 0.65em;
  display: block;
  line-height: 1.5;
}
main aside {
  max-width: 240px;
  width: 100%;
}
main aside .side-title {
  background-color: var(--main-color);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}
main aside .side-title h3 {
  color: #fff;
}
main aside ul.side-menu li a {
  padding: 1rem 0.6rem;
  display: block;
  color: var(--main-color);
  font-size: 0.9rem;
  position: relative;
}
main aside ul.side-menu li a::after {
  content: "\e315";
  font-family: var(--google-icon);
  font-size: 2rem;
  color: var(--main-color);
  font-weight: 100;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
main aside ul.side-menu li:not(:last-of-type) {
  border-bottom: 1px solid var(--main-color);
}
main aside ul.side-menu li.active {
  background-color: var(--sub-color);
}
main aside ul.side-menu li.active li {
  background-color: #fff;
}
main aside ul.side-menu li ul li a {
  padding: 0.8rem 2.5rem 0.8rem 1.5rem;
}
main aside ul.side-menu li li:not(:last-of-type) {
  border-bottom: none;
}
.side-menu-item .external-link-text::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  aspect-ratio: 1;
  margin-left: 0.3em;
  background: url(../../img/common/link_icon.svg) no-repeat center / contain;
  vertical-align: -0.1em;
}
/*=======================================
  部活動ページ　第2階層
========================================= */
.club-box .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
}
.club-box .card-list li {
  width: calc((100% - 3rem) / 3);
  list-style-type: none;
  margin-left: 0;
}
.club-box .card-list li a {
  transition: all 0.2s ease-in-out;
}
.club-box .card-list li figure {
  aspect-ratio: 240/135;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 0.4rem;
  position: relative;
}
.club-box .card-list a figure::before,
.club-box .card-list a figure::after {
  transition: background-color 0.2s ease-in-out;
}
.club-box .card-list a:hover figure::before {
  content: "";
  aspect-ratio: 240/135;
  display: block;
  width: 100%;
  height: auto;
  background-color: rgba(0, 52, 127, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.club-box .card-list a:hover figure::after {
  content: "";
  background-image: url(../../img/common/cricle_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  display: block;
  width: 1.25rem;
  height: auto;
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}
.club-box .card-list a img {
  transition: transform 0.2s ease-in-out;
}
.club-box .card-list a:hover img {
  transform: scale(1.15);
}
.club-box .card-list li p {
  text-align: center;
}
.club-box .card-list li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.club-box .card-list + h2 {
  margin-top: 3.8rem;
}
/*=======================================
  モーダル
========================================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  //transform: translateY(40px);
  z-index: 101;
}
.modal.show {
  display: flex;
}
.modal-inner {
  background: #fff;
  max-width: 1107px;
  width: 90%;
  position: relative;
}
.modal .modal-inner .flex {
  gap: 4rem;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 4rem;
}
.modal .modal-inner .text-box {
  flex: 1;
  text-align: left;
}
.modal .modal-inner .text-box h2 {
  font-size: 1.4rem;
  font-weight: var(--medium);
  line-height: 1.6;
  color: var(--base-color);
  margin-bottom: 1rem;
  border-bottom: none;
}
.modal .modal-inner .text-box h3::before {
  background-color: transparent;
}
.modal .modal-inner .text-box h3 {
  font-size: 1.1rem;
  font-weight: var(--medium);
  color: var(--main-color);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.modal .modal-inner .image-box figure {
  aspect-ratio: 237/157;
  height: auto;
  overflow: hidden;
  margin-bottom: 0;
}
.modal .modal-inner .image-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 1px;
  background: var(--main-color);
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*=======================================
  年間行事
========================================= */
.page-event {
  padding-bottom: 8.5rem;
}
.event-box:first-of-type {
  margin-top: 1rem;
}
.event-box {
  display: grid;
  grid-template-columns: auto 265px 1fr;
  justify-content: space-between;
  align-items: start;
}
.event-box:not(:last-of-type) {
  margin-bottom: 4.5rem;
}
.event-box h3::before {
  background-color: transparent;
}
.event-box .month {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 1rem;
  margin-right: 3rem;
  width: 124px;
  position: relative;
}
.event-box .month::after {
  content: "";
  width: 1px;
  height: 116px;
  background-color: var(--main-color);
  position: absolute;
  right: 0;
  top: 0;
}
.event-box .month h3 {
  color: var(--main-color);
  font-size: 5rem;
  font-weight: var(--normal);
  line-height: 1;
  padding-left: 0;
  transform: translateY(-18px);
}
.event-box .month p {
  color: var(--main-color);
  font-weight: var(--medium);
  font-size: 1.25rem;
  letter-spacing: 0;
  transform: translateY(-4px);
}
.event-box .image-box {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}
.event-box .image-box figure {
  margin-bottom: 0;
  aspect-ratio: 152 /117;
  width: calc((100% - 1.5rem) / 2);
  max-width: 152px;
  height: auto;
  overflow: hidden;
}
.event-box .image-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*=======================================
  入試情報
========================================= */
.entrance-box table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
  margin: 0.8rem auto;
  font-size: 0.95rem;
}

.entrance-box table thead,
.entrance-box table tr th {
  background-color: var(--sub-color);
  font-weight: var(--normal);
}
.entrance-box table thead {
  text-align: center;
}
.entrance-box table tr th,
.entrance-box table tr td {
  padding: 0.1rem 0.75rem;
}
.entrance-box table tbody tr {
  border-top: 1px solid var(--border-color);
}
.entrance-box table thead tr th:not(:last-of-type),
.entrance-box table thead tr th,
.entrance-box table tbody tr td:not(:last-of-type) {
  border-right: 1px solid var(--border-color);
}
.entrance-box table + p.caption {
  font-size: 0.75rem;
  line-height: 1.5;
}
.entrance-box ul.pdf-button {
  margin-top: 1.5rem;
}
.entrance-box ul.pdf-button li {
  width: calc((100% - 3rem) / 3);
  //height: 77px;
}
.entrance-box ul.pdf-button li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f8fafa;
  border: 1px solid #cad4ec;
  padding: 0.5rem 2.1rem 0.5rem 2.1rem;
  position: relative;
  letter-spacing: 0;
}
.entrance-box ul.pdf-button li a::before {
  content: "";
  background-image: url(../../img/common/circle-blue_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 1.1rem;
  position: absolute;
  top: 15px;
  left: 0.8rem;
}
.entrance-box ul.pdf-button li a::after {
  content: "";
  background-image: url(../../img/common/pdf_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 14/18;
  width: 0.9rem;
  position: absolute;
  top: 13px;
  right: 0.8rem;
}
.entrance-box ul.pdf-text-link {
  padding-top: 0.8rem;
}
.entrance-box ul.pdf-text-link li {
  position: relative;
  padding-left: 1rem;
}
.entrance-box + .entrance-box {
  margin-top: 5rem;
}
.entrance-box .club-box + .club-box {
  margin-top: 3.8rem;
}
.entrance-box ul.pdf-text-link li {
  position: relative;
  padding-left: 1.4rem;
  list-style: none !important;
  margin-left: 0 !important;
}
.entrance-box ul.pdf-text-link li::before {
  content: "\e5e1";
  font-family: var(--google-icon);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--main-color);
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
}
.entrance-box ul.pdf-text-link li a {
  color: var(--main-color);
  text-decoration: underline;
  position: relative;
  display: inline-block;
  padding-right: 1.5rem;
}
.entrance-box ul.pdf-text-link li a::before {
  content: "";
  background-image: url(../../img/common/pdf_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 14/18;
  width: 0.9rem;
  position: absolute;
  top: 6px;
  right: 0;
}
.page-entrance {
  padding-bottom: 11.25rem;
}
.entrance-box ul.button-list {
  margin: 2.2rem auto 0.5rem;
  display: flex;
  justify-content: center;
}
ul.button-list li {
  margin-bottom: 0 !important;
}
.entrance-box ul.button-list li a {
  width: 358px;
  padding: 0.8rem 2rem 0.75rem;
  line-height: 1.2;
  cursor: pointer;
}
.entrance-box ul.pdf-text-link + h3 {
  margin-top: 2.6rem;
}
.entrance-box p.text-link {
  color: var(--main-color);
  text-decoration: underline;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
}
.entrance-box .entrance-menu-container > ul {
  display: flex;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 2rem;
}
.entrance-box .entrance-menu-container > ul > li {
  width: 50%;
  background-color: #f8fafa;
  padding: 1rem 0;
  text-align: center;
  color: rgba(47, 48, 49, 0.25);
  cursor: pointer;
  margin: 0 !important;
  list-style: none;
}
.entrance-box .entrance-menu-container > ul > li.is-selected {
  background-color: var(--main-color);
  color: #fff;
}
.entrance-box .tab-content {
  display: none;
}
.entrance-box .tab-content.is-selected {
  display: block;
}
.entrance-box .tab-content ul.pdf-button {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0.8rem auto 0rem;
}
.entrance-box .tab-content ul.pdf-button:not(:last-of-type) {
  margin-bottom: 2rem;
}

.entrance-box-inner {
  margin-bottom: 2rem;
}
.page-entrance .tuition-remarks li {
  list-style: none;
  font-size: 0.8rem;
  margin-left: 0;
}
/*=======================================
  お問い合わせ
========================================= */
.page-child.page-contact {
  display: block;
  justify-items: stretch;
  padding-bottom: 8rem;
}
.page-child.page-contact ul {
  margin: 1.8rem 0;
}
.page-child.page-contact ul li .title-box {
  width: 152px;
  justify-content: center;
  margin: 0;
}
.page-child.page-contact ul li.flex {
  align-items: center;
}
.page-child.page-contact ul li.flex:not(:last-of-type) {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.page-child.page-contact ul li .title-box p {
  font-size: 1.35rem;
  line-height: 1.4;
}
.size175 {
  font-size: 1.75em;
  font-weight: var(--medium);
  letter-spacing: 0.02rem;
}
/*=======================================
  説明会情報
========================================= */
.entrance-box dl {
  background-color: #f8fafa;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 200px auto;
}

.entrance-box dl + dl {
  margin-top: 0.5rem;
}
.entrance-box dl dt {
  position: relative;
}
.entrance-box dl dt::before {
  content: "";
  background-color: var(--border-color);
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.entrance-box dl dt h3 {
  padding-left: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.entrance-box dl dt h3::before {
  background-color: transparent;
}
.entrance-box dl dd .flex {
  align-items: flex-start;
  margin-bottom: 1rem;
}
.entrance-box dl dd .flex p {
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: var(--medium);
  position: relative;
}
.entrance-box .blue {
  color: var(--main-color);
}
.entrance-box dl dd .flex p.blue {
  width: 108px;
}
.entrance-box dl dd .flex p:not(.blue) {
  padding-left: 1rem;
}
.entrance-box dl dd .flex p:not(.blue)::before {
  content: "";
  background-color: var(--base-color);
  width: 0.05rem;
  height: 86%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.entrance-box dl dd {
  padding-left: 2rem;
}
.entrance-box dl dd > p {
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  //-webkit-line-clamp: 2;
  //overflow: hidden;
}
.entrance-box dl dd > a {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0;
  display: inline-block;
  text-decoration: underline;
}
.entrance-box > .text-box > p {
  font-size: 1rem;
  margin-top: 1.5rem;
}
.entrance-text-box {
  font-size: 0.9rem;
}
/*=======================================
  お知らせ　一覧
========================================= */
.page-info {
  padding-bottom: 6.25rem;
}
.page-info ul.info-list .flex {
  align-items: center;
}
.page-info ul.info-list li {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-color);
}
.page-info ul.info-list li .date {
  font-size: 0.9rem;
}
.page-info ul.info-list li .flex {
  gap: 1rem;
}
.page-info aside ul.side-menu + .side-title {
  margin-top: 2.75rem;
}
/*=======================================
  お知らせ　詳細
========================================= */
.page-info .info-title {
  margin-bottom: 2em;
}
.page-info .info-title .flex {
  align-items: center;
  gap: 1em;
}
.page-info .info-title h2 {
  margin-top: 0.4rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--main-color);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
.page-info .info-contents p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.page-info .info-contents a {
  color: var(--main-color);
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page-info .info-contents figure {
  margin-bottom: 1.5rem;
}
.page-info .info-list li a.is-pdf p::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 24px;
  margin-left: 8px;
  background-color: red;
  -webkit-mask-image: url("../../img/common/pdf_icon.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("../../img/common/pdf_icon.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  vertical-align: -5px;
}
ul.button-list.center {
  display: flex;
  justify-content: center;
  margin-bottom: 10.25rem;
}
ul.button-list.center li a {
  width: 310px;
}
/*=======================================
  ブログページ
========================================= */
.page-blog .blog-list li {
  width: calc((100% - 5.4%) / 3);
}
.page-blog .blog-list li figure {
  margin-bottom: 0;
}
.page-blog .blog-list li h3 {
  padding-left: 0;
  font-weight: var(--normal);
  font-size: 1rem;
}
.page-blog .blog-list li h3::before {
  background-color: transparent;
}
.page-blog aside ul.side-menu + .side-title {
  margin-top: 2.75rem;
}
.page-blog .blog-title {
  margin-bottom: 2em;
}
.page-blog .blog-title .flex {
  align-items: center;
  gap: 1em;
}
.page-blog .blog-title h2 {
  margin-top: 0.4rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--main-color);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
.page-blog .blog-contents p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.page-blog .blog-contents a {
  color: var(--main-color);
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.page-blog .blog-contents .button-list a {
  text-decoration: none;
}
.page-blog .blog-contents figure {
  margin-bottom: 1.5rem;
}
/*=======================================
  施設・設備ページ
========================================= */
.description-box + section {
  margin-top: 2.5rem;
}
.map-hover {
  pointer-events: all;
  cursor: pointer;
}
.cls-16 {
  pointer-events: none;
}
.page-facility .modal {
  display: none;
}
.page-facility .modal.show {
  display: flex;
}
.page-facility section {
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}
section.page-facility {
  padding: 5rem 6rem;
}
.page-facility .modal-inner {
  height: auto;
  width: auto;
  padding: 4.5rem 5.4rem;
}

.page-facility .modal-inner .modal-content .image-box {
  width: auto;
}
.page-facility .modal-inner .image-box {
  display: block;
}
.page-facility .modal-inner .image-box > img {
  width: 600px;
  height: auto;
  overflow: hidden;
  object-fit: cover;
}
.page-facility .modal-inner .flex .image-box > img {
  width: 480px;
  height: auto;
  overflow: hidden;
  object-fit: cover;
}
.page-facility section + section {
  margin-top: 1.5rem;
}
.cls-1 {
  font-size: 6px;
}
.cls-1,
.cls-2,
.cls-3,
.cls-4,
.cls-5,
.cls-6,
.cls-7,
.cls-8,
.cls-9,
.cls-10 {
  fill: #231815;
}
.cls-2,
.cls-7 {
  font-size: 6px;
}
.cls-11 {
  stroke-dasharray: 0 0 0.6 0.6;
}
.cls-11,
.cls-12,
.cls-13,
.cls-14,
.cls-15 {
  fill: none;
  stroke: #231815;
  stroke-miterlimit: 10;
}
.cls-11,
.cls-12,
.cls-15 {
  stroke-width: 0.3px;
}
.cls-16,
.cls-17 {
  fill: #fff;
}
.cls-3,
.cls-6 {
  font-size: 5.5px;
}
.cls-17 {
  font-size: 7px;
}
.cls-12 {
  stroke-dasharray: 0 0 0.6 0.6;
}
.cls-18 {
  letter-spacing: -0.02em;
}
.cls-19 {
  letter-spacing: -0.03em;
}
.cls-20 {
  fill: #040000;
}
.cls-4 {
  font-size: 7.2px;
}
.cls-5 {
  font-size: 5.75px;
}
.cls-13 {
  stroke-width: 0.25px;
}
.cls-21 {
  letter-spacing: 0.05em;
}
.cls-22 {
  letter-spacing: 0.05em;
}
.cls-23 {
  letter-spacing: -0.02em;
}
.cls-6 {
  letter-spacing: -0.06em;
}
.cls-24 {
  letter-spacing: -0.01em;
}
.cls-25 {
  letter-spacing: -0.05em;
}
.cls-7 {
  glyph-orientation-vertical: 0deg;
  text-orientation: upright;
  writing-mode: tb;
}
.cls-14 {
  stroke-width: 0.3px;
}
.cls-8 {
  font-size: 6px;
}
.cls-26 {
  letter-spacing: 0em;
}
.cls-27 {
  letter-spacing: -0.04em;
}
.cls-9 {
  font-size: 5px;
}
.cls-28 {
  fill: #0c3f87;
}
.cls-29 {
  fill: #666;
}
.cls-30 {
  letter-spacing: 0.02em;
}
.map-hover {
  cursor: pointer;
}
.map-hover rect {
  fill: #12428f;
}
.map-hover .hover-text {
  fill: #12428f;
}
/*=======================================
  7つの教育目標
========================================= */
.page-child ul.guide-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  align-items: stretch;
}

.page-child ul.guide-list li {
  width: calc((100% - 1.5rem) / 2);
  text-align: left;
  position: relative;
  border: 1px solid var(--border-color);
  background: #fff;
}

.page-child ul.guide-list li a {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  height: 100%;
}

.page-child ul.guide-list li figure {
  overflow: hidden;
  aspect-ratio: 260 / 206;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  position: relative;
}

.page-child ul.guide-list li figure::after {
  content: "";
  aspect-ratio: 260 / 206;
  width: 100%;
  height: auto;
  background-color: rgba(124, 181, 216, 0.4);
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
}

.page-child ul.guide-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-child ul.guide-list li h3 {
  font-weight: var(--medium);
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  padding-right: 3rem;
  margin: 0;
  word-break: break-word;
}

.page-child ul.guide-list li h3::after {
  content: "\e315";
  font-family: var(--google-icon);
  font-size: 2.4rem;
  font-weight: 100;
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-48%);
}

/*=======================================
  ブログ移行
========================================= */
.option .category {
  font-weight: bold;
  text-decoration: none;
  margin-left: 1em;
}
.option .category:hover {
  text-decoration: underline;
}

.wp-style {
  //padding-top: 2rem;
}
.wp-style img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1110px) {
  .wp-style {
    //padding-top: 3rem;
  }
}

.info ul.list-article > li > a div.article {
  padding: 18px 15px 45px 15px;
  padding: 40px 15px 45px 15px;
}
.info ul.list-article > li > a div.article > div.option {
  position: relative;
  top: 0;
}
.info ul.list-article > li > a div.article i.icon-new {
  position: absolute;
  top: 23px;
  right: 18px;
}

.post_pic {
  width: 300px;
  float: right;
  margin-left: 35px;
}
.post_pic p {
  width: 100%;
  margin-bottom: 15px;
}
.post_pic p img {
  width: 100%;
}
@media (max-width: 1110px) {
  .post_pic {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .post_pic p {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .post_pic {
    width: 100%;
  }
}
@media screen and (max-width: 1279px) {
  .fixed-btn--right ul li {
    height: 140px;
  }

  .fixed-btn--right ul li a {
    display: inline-block;
    width: 45px;
    height: 100%;
    padding: 2rem 0.6rem 1rem;
  }

  .fixed-btn--right ul li:nth-of-type(2) a {
    padding: 2rem 0.6rem 1rem;
    width: 45px;
  }
  .page-child ul.guide-list li a {
    display: block;
  }
  .page-child ul.guide-list li h3 {
    padding: 10px 3rem 10px 10px;
  }
  header #logo {
    width: 200px;
  }
  header nav#header-nav {
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
  }
  header #global-nav > ul {
    gap: 2rem;
    font-size: 0.8rem;
  }
  .has-child-list > li:first-of-type {
    max-width: 200px;
    width: 100%;
  }
  .has-child-list .flex {
    padding: 2rem 3.75rem 2rem 0;
    text-align: left;
    font-size: 0.6rem;
  }
  .has-child-list .dropdown-menu li a.external-link span::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-left: 0.3em;
    aspect-ratio: 1;
    background: url(../../img/common/link_icon.svg) no-repeat center / contain;
    vertical-align: -0.1em;
  }
  .block-contents .flex {
    display: block;
  }
  .block-contents .flex figure {
    width: 100%;
  }
}
