@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
変数 fonts.scss
===========================================*/
/*===================================
userSS 追加
=====================================*/
.sec-article {
  position: relative;
}
.sec-article.border {
  border-top: 1px solid #000;
}
.sec-article.border::before {
  content: none;
  width: 10em;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  top: 2em;
  left: 2em;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.sec-article.border::after {
  content: "";
  width: 1px;
  display: inline-block;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0%;
  transform: translate(0%, 0);
}
@media screen and (max-width: 960px) {
  .sec-article.border::after {
    height: 90%;
  }
}
.sec-article.border h2 {
  position: relative;
}
.sec-article.border h2::after {
  content: "";
  width: 150%;
  left: -30%;
}
.sec-article .article-inner {
  overflow-x: hidden;
}

.editor-style {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
@media all and (-ms-high-contrast: none) {
  .editor-style {
    word-break: break-all;
  }
}
.editor-style p {
  line-height: 2;
}
.editor-style p:not(:last-child) {
  margin-bottom: 3em;
}
.editor-style mark {
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.editor-style mark::after {
  content: "";
  width: 100%;
  display: inline-block;
  background: #ff0;
  z-index: -1;
}
.editor-style a {
  color: #005096;
  text-decoration: underline;
}
.editor-style a img {
  transition: 0.3s;
}
.editor-style a:hover {
  text-decoration: underline !important;
}
.editor-style a:hover img {
  opacity: 0.5;
}
.editor-style img {
  height: auto;
}
.editor-style h3 {
  line-height: 1.4;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: bold;
  padding: 0 0 1em;
  margin: 1em 0 2em;
  position: relative;
}
.editor-style h3::after {
  content: "";
  width: 110%;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: -5%;
  transform: translate(0%, 0);
}
.editor-style h4 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: bold;
  padding: 0 0 0 1em;
  margin: 1em 0 1.5em;
  line-height: 1.5;
  position: relative;
}
.editor-style h4::after {
  content: "";
  width: 9px;
  display: inline-block;
  height: 70%;
  background: #333;
  position: absolute;
  bottom: 50%;
  left: 0%;
  transform: translate(0%, 50%);
}
.editor-style h5 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  margin: 1em 0 1.5em;
}
.editor-style h6 {
  border-block: 3px solid #333;
  padding: 0.5em 0;
  margin: 2em 0 2em;
}
.editor-style strong {
  font-weight: bold;
}
.editor-style em {
  font-style: italic;
}
.editor-style ul {
  margin: 2em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .editor-style ul {
    padding: 1em;
  }
}
.editor-style ul li {
  position: relative;
  padding: 0 0 0 1.5em;
}
.editor-style ul li:not(:last-child) {
  margin-bottom: 0.7em;
}
.editor-style ul li::before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  top: 0;
  left: 0;
  position: absolute;
}
.editor-style ol {
  margin: 4em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .editor-style ol {
    padding: 1em;
  }
}
.editor-style ol li {
  padding: 0 0 0 2.5em;
  position: relative;
}
.editor-style ol li::before {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  content: counter(number);
  counter-increment: number;
  left: 0;
  top: 0.35em;
  width: 1.5em;
  height: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #202b51;
  color: white;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.editor-style ol li:not(:last-child) {
  margin-bottom: 1em;
}
.editor-style .blocks-gallery-grid,
.editor-style .wp-block-gallery {
  margin: 0;
}
.editor-style li.blocks-gallery-item {
  padding-left: 0;
}
.editor-style li.blocks-gallery-item::before {
  display: none;
}
.editor-style .wp-block-table {
  margin-block: 4em;
}
.editor-style .wp-block-image {
  margin-block: 4em;
}
.editor-style .wp-block-buttons {
  margin-block: 4em;
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button:last-of-type {
    margin-top: 2em;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
    width: 100%;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
    width: 100%;
  }
}
.editor-style .wp-block-columns {
  margin-block: 2em;
}
.editor-style .wp-block-table thead {
  border-bottom: 0px solid;
  background: #202b51;
  color: #fff;
  border: 1px solid #202b51;
}
.editor-style hr {
  border-top: 3px solid #000;
  width: 70%;
  margin: clamp(30px, 6vw, 60px) auto;
}
.editor-style table {
  width: 100%;
}
.editor-style table th, .editor-style table td {
  border: 1px solid #202b51;
  padding: 1em;
}
.editor-style table th {
  text-align: center;
}
.editor-style table th:not(:first-of-type) {
  border-left: 2px solid #fff;
}

.format-area {
  font-weight: 500;
}
.format-area .format-wrap {
  max-width: 100%;
  margin-inline: auto;
}
.format-area .format-img-box {
  max-width: 100%;
  margin-inline: auto;
  width: auto;
}
@media screen and (max-width: 576px) {
  .format-area .wrapW-P,
  .format-area .wrapW,
  .format-area .wrap-inner {
    width: 100%;
    padding: 0;
  }
  .format-area .wrapW-P p,
  .format-area .wrapW p,
  .format-area .wrap-inner p {
    padding: 0 5vw;
  }
}
.format-area .format-heading {
  text-align: left;
  font-size: clamp(2rem, 2.0833333333vw, 4rem);
}
@media screen and (max-width: 767px) {
  .format-area .format-heading {
    font-size: clamp(2rem, 5.2151238592vw, 4rem);
  }
}
.format-area .article-mainimg {
  margin: 60px auto;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .format-area .article-mainimg {
    margin: 40px auto;
  }
}
.format-area .format-txt {
  font-size: 1.6rem;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .format-area .format-txt {
    letter-spacing: 0em;
  }
}
.format-area .format-txt a {
  color: blue;
  text-decoration: underline !important;
}
.format-area .format-txt a img {
  transition: 0.3s;
}
.format-area .format-txt a:hover {
  text-decoration: underline !important;
  opacity: 0.5;
}
.format-area .format-txt a:hover img {
  opacity: 0.5;
}
.format-area .format-txt p:not(:last-child) {
  margin-bottom: 1em;
}
.format-area .format-txt strong {
  font-weight: bold;
}
.format-area .format-txt em {
  font-style: italic;
}
.format-area .format-txt img {
  height: auto;
}
.format-area .format-txt ul {
  margin: 1em 0;
}
.format-area .format-txt ul li {
  position: relative;
  padding: 0 0 0 1em;
}
.format-area .format-txt ul li:not(:last-child) {
  margin-bottom: 0.7em;
}
.format-area .format-txt ul li::before {
  top: 0.6em;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
}
.format-area .format-txt ol {
  list-style-type: decimal;
  margin: 1em 0 1em 1em;
}
.format-area .format-txt ol li {
  padding: 0;
}
.format-area .format-txt ol li:not(:last-child) {
  margin-bottom: 0.7em;
}
.format-area .format-img {
  font-size: 0;
  text-align: center;
  position: relative;
}
.format-area .format-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: max-content;
}
.format-area .img-title {
  font-size: 2rem;
  text-align: left;
  padding-bottom: 10px;
  margin-block: 10px;
}
.format-area .img-caption {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 10px;
  text-align: justify;
}
.format-area .format-row {
  display: flex;
  justify-content: space-between;
}
.format-area .format01 {
  margin: 60px auto;
}
.format-area .format02 {
  margin: 60px auto;
}
.format-area .format03 {
  margin: 60px auto;
}
.format-area .format04 {
  margin: 60px auto;
}
.format-area .format05 {
  margin: 60px auto;
}
.format-area .format06 {
  margin: 60px auto;
}
.format-area .format07 {
  margin: 60px auto;
}
.format-area .format08 {
  margin: 60px auto;
}
.format-area .format09 {
  margin: 60px auto;
}
.format-area .format10 {
  margin: 60px auto;
}
.format-area .format20 {
  margin: 60px auto;
}
.format-area .format30 {
  margin: 60px auto;
}
.format-area .format40 {
  margin: 60px auto;
}
.format-area .format50 {
  margin: 60px auto;
}
.format-area .format60 {
  margin: 60px auto;
}
.format-area .format70 {
  margin: 60px auto;
}
.format-area .format80 {
  margin: 60px auto;
}
.format-area .format90 {
  margin: 60px auto;
}
.format-area .format01 .ttl-lrg {
  text-align: left;
  font-size: 2.4rem;
  position: relative;
}
.format-area .format01 .ttl-lrg.border_none::after {
  content: none;
}
.format-area .format01 .ttl-lrg::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -20px;
}
.format-area .format01 .format-heading {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .format-area .format01 .format-heading {
    font-size: clamp(2rem, 3.125vw, 3rem);
  }
}
.format-area .format02 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .format-area .format02 {
    margin-bottom: 60px;
  }
}
.format-area .format02 .ttl-mid {
  text-align: left;
  font-size: 2.1rem;
  position: relative;
  margin-left: 30px;
}
.format-area .format02 .ttl-mid.before_none::before {
  content: none;
}
.format-area .format02 .ttl-mid:before {
  content: "";
  position: absolute;
  width: 14.5px;
  border-top: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}
.format-area .format05 .format-img img {
  width: auto;
  max-height: max-content;
  object-fit: contain;
  aspect-ratio: auto;
}
.format-area .format06 .format-img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.format-area .format07 .format-img img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 100%;
}
@media screen and (min-width: 577px) {
  .format-area .format09 .format-img {
    width: 48%;
  }
}
.format-area .format09 .format-img img {
  object-fit: cover;
  max-height: max-content;
}
@media screen and (min-width: 577px) {
  .format-area .format09 .format-txt {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format09 .format-txt {
    margin-top: 40px;
  }
}
@media screen and (min-width: 577px) {
  .format-area .format10 .format-img {
    width: 48%;
  }
}
.format-area .format10 .format-img img {
  object-fit: cover;
  max-height: max-content;
}
@media screen and (min-width: 577px) {
  .format-area .format10 .format-txt {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format10 .format-txt {
    margin-top: 40px;
  }
}
.format-area .format11 .format-movie {
  width: 100%;
}
.format-area .format11 .format-movie iframe {
  width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.772972973;
}
@media screen and (max-width: 767px) {
  .format-area .format11 .format-movie iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.6666666667;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format11 .format-movie iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.1111111111;
  }
}
@media screen and (min-width: 768px) {
  .format-area .format12 {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .format-area .format12 .format-movie {
    width: 30%;
  }
  .format-area .format12 .format-movie:nth-of-type(n+2) {
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .format-area .format12 .format-movie {
    max-width: 420px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .format-area .format12 .format-movie:nth-of-type(n+2) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .format-area .format-rowPC {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .format-area .format-rowPC .head,
  .format-area .format-rowPC .body {
    width: 48%;
  }
  .format-area .format04 .format-txt {
    width: 48%;
  }
  .format-area .format04 .format-txt-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format04 .format-txt-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format06 .format-img {
    width: 48%;
  }
  .format-area .format06 .format-img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format06 .format-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format07 .format-img {
    width: 48%;
  }
  .format-area .format07 .format-img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format07 .format-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format08 .format-img {
    width: 31.3333333333%;
    margin: 0 1%;
    position: relative;
    overflow: hidden;
    padding-top: 22.2%;
  }
  .format-area .format08 .format-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format08 .format-img {
    padding-top: 0%;
  }
  .format-area .format08 .format-img img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    margin: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img {
    width: 31.3333333333%;
    margin: 0 1%;
    position: relative;
    overflow: hidden;
    padding-top: 22.2%;
  }
  .format-area .format11 .format-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format11 .format-img {
    padding-top: 0%;
    margin-bottom: 60px;
  }
  .format-area .format11 .format-img img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    margin: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format10 .format-rowPC {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .format-area .format-rowPC .head {
    margin-bottom: 25px;
  }
  .format-area .format01 .ttl-lrg {
    font-size: 2.4rem;
  }
  .format-area .format02 .ttl-mid {
    font-size: 2rem;
  }
  .format-area .format04 .format-row {
    display: block;
    margin-bottom: 60px;
  }
  .format-area .format04 .format-txt {
    width: 100%;
  }
  .format-area .format04 .format-txt:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format06 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format06 .format-img {
    width: 100%;
  }
  .format-area .format06 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format07 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format07 .format-img {
    width: 100%;
  }
  .format-area .format07 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format08 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format08 .format-img img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format08 .format-img:nth-of-type(1) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(1) img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:nth-of-type(2) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(2) img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:nth-of-type(3) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(3) img {
    width: 100%;
  }
  .format-area .format11 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .format-area .format11 .format-img img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format11 .format-img:nth-of-type(1) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(1) img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:nth-of-type(2) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(2) img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:nth-of-type(3) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(3) img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format01 {
    margin: 40px auto;
  }
  .format-area .format02 {
    margin: 40px auto;
  }
  .format-area .format03 {
    margin: 40px auto;
  }
  .format-area .format04 {
    margin: 40px auto;
  }
  .format-area .format05 {
    margin: 40px auto;
  }
  .format-area .format06 {
    margin: 40px auto;
  }
  .format-area .format07 {
    margin: 40px auto;
  }
  .format-area .format08 {
    margin: 40px auto;
  }
  .format-area .format09 {
    margin: 40px auto;
  }
  .format-area .format10 {
    margin: 40px auto;
  }
  .format-area .format20 {
    margin: 40px auto;
  }
  .format-area .format30 {
    margin: 40px auto;
  }
  .format-area .format40 {
    margin: 40px auto;
  }
  .format-area .format50 {
    margin: 40px auto;
  }
  .format-area .format60 {
    margin: 40px auto;
  }
  .format-area .format70 {
    margin: 40px auto;
  }
  .format-area .format80 {
    margin: 40px auto;
  }
  .format-area .format90 {
    margin: 40px auto;
  }
  .format-area .format01 .ttl-lrg {
    font-size: 2.2rem;
  }
  .format-area .format02 .ttl-mid {
    font-size: 1.8rem;
  }
  .format-area .format06 .format-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 60px;
  }
  .format-area .format06 .format-img {
    width: 100%;
  }
  .format-area .format06 .format-img:not(:first-child) {
    margin-top: 60px;
  }
}
.wrapW_pc {
  width: 100%;
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 4%;
}

.cts-wrap {
  position: relative;
}

.cts-head {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cts-head {
    flex-direction: column;
  }
}

.cts-body {
  position: relative;
  z-index: 2;
}

.cts-ttl-en {
  margin: 0;
  font-size: clamp(2rem, 1.875vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
  display: block;
}
@media screen and (max-width: 960px) {
  .cts-ttl-en {
    font-size: clamp(2rem, 3.75vw, 3.6rem);
  }
}

.cts-ttl-ja {
  margin-top: 0.8em;
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .cts-ttl-ja {
    font-size: clamp(1.6rem, 1.875vw, 1.8rem);
  }
}

/*==========================================
  zeh
===========================================*/
.sec-fv-wrap {
  background: url("../img/se/img_fv.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
  top: 0;
  height: 100dvh;
}
.sec-fv-wrap .sec-fv {
  position: absolute;
  top: 120px;
  z-index: 1;
  width: 100%;
  color: #000;
}
.sec-fv-wrap .sec-fv-txt {
  position: relative;
  height: 100dvh;
}
@media screen and (max-width: 767px) {
  .sec-fv-wrap .sec-fv-txt {
    height: 89vh;
  }
}
.sec-fv-wrap .sec-fv-txt .cts-head {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec-se .blockttl {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: clamp(30px, 5vw, 70px);
}
.sec-se p {
  font-size: clamp(1.6rem, 2.5vw, 1.8rem);
  line-height: 2;
  padding-bottom: clamp(20px, 3vw, 30px);
  letter-spacing: 0.2em;
}
.sec-se .secttl {
  font-size: clamp(2rem, 3vw, 2.4rem);
}
.sec-se .breadcrumbs_area {
  margin-bottom: 0;
}
.sec-se .flex {
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 767px) {
  .sec-se .flex {
    flex-direction: column;
  }
}
.sec-se .flex .flex_harf {
  flex: 0 0 48%;
}
.sec-se .block02 .col03 {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  justify-content: space-between;
}
.sec-se .block02 .col03 .list-item {
  justify-content: space-between;
  flex: 0 0 26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .sec-se .block02 .col03 .list-item {
    margin: 50px auto;
  }
}
.sec-se .block02 .col03 .list-item .itemttl {
  font-size: 2.1rem;
  margin-bottom: 2em;
  text-align: center;
}
.sec-se .block02 .col03 .list-item .txt {
  margin-top: 2em;
}
.sec-se .block03 .blockttl {
  text-align: center;
}
.sec-se .block03 .txt {
  text-align: center;
}
.sec-se .block03 .select {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .select {
    flex-wrap: wrap;
  }
}
.sec-se .block03 .select-item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .select-item {
    flex: 0 0 100%;
  }
}
.sec-se .block03 .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  position: relative;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .btn-link {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    min-height: 40px;
    background-color: #f5f5f5;
    margin-bottom: 10px;
  }
}
.sec-se .block03 .btn-link:hover {
  background: #f5f5f5;
}
.sec-se .block03 .btn-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .btn-link::after {
    display: none;
  }
}
.sec-se .block03 .select-item:first-child .btn-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .select-item:first-child .btn-link::before {
    display: none;
  }
}
.sec-se .block03 .point01 {
  display: flex;
  gap: 4%;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 {
    flex-direction: column;
  }
}
.sec-se .block03 .point01 .pcwrap_left,
.sec-se .block03 .point01 .pcwrap_right {
  flex: 0 0 48%;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_left,
  .sec-se .block03 .point01 .pcwrap_right {
    display: contents;
  }
}
.sec-se .block03 .point01 .pcwrap_left .point01__ttl,
.sec-se .block03 .point01 .pcwrap_right .point01__ttl {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: clamp(20px, 3vw, 40px);
}
.sec-se .block03 .point01 .pcwrap_left .colum02,
.sec-se .block03 .point01 .pcwrap_right .colum02 {
  background-color: #e5e5e5;
  padding: clamp(30px, 4vw, 80px) clamp(20px, 3vw, 30px);
  margin: clamp(30px, 4vw, 60px) 0;
}
.sec-se .block03 .point01 .pcwrap_left .colum02 .point01__ttl,
.sec-se .block03 .point01 .pcwrap_right .colum02 .point01__ttl {
  margin-bottom: clamp(20px, 3vw, 40px);
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
.sec-se .block03 .point01 .pcwrap_left .colum02 .point01__ttl:after,
.sec-se .block03 .point01 .pcwrap_right .colum02 .point01__ttl:after {
  content: "";
  display: block;
  width: clamp(70px, 20vw, 300px);
  height: 1px;
  background-color: #000;
  margin-left: 20px;
}
.sec-se .block03 .point01 .pcwrap_left .colum02 ul li,
.sec-se .block03 .point01 .pcwrap_right .colum02 ul li {
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_left .colum02,
  .sec-se .block03 .point01 .pcwrap_right .colum02 {
    order: 2;
  }
}
.sec-se .block03 .point01 .pcwrap_left .colum03 .txt,
.sec-se .block03 .point01 .pcwrap_right .colum03 .txt {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_left .colum03,
  .sec-se .block03 .point01 .pcwrap_right .colum03 {
    order: 4;
  }
}
.sec-se .block03 .point01 .pcwrap_left .txtttl,
.sec-se .block03 .point01 .pcwrap_right .txtttl {
  font-size: clamp(2rem, 2vw, 2.1rem);
  margin-bottom: clamp(20px, 3vw, 50px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_left .txtttl,
  .sec-se .block03 .point01 .pcwrap_right .txtttl {
    margin-top: 30px;
  }
}
.sec-se .block03 .point01 .pcwrap_right {
  position: sticky;
  top: 100px;
  max-height: fit-content;
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_right {
    position: static;
  }
}
.sec-se .block03 .point01 .pcwrap_right img {
  margin-bottom: clamp(20px, 3vw, 50px);
}
@media screen and (max-width: 767px) {
  .sec-se .block03 .point01 .pcwrap_right .column04 {
    order: 3;
  }
}
.sec-se .block04 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: url("../img/se/img_se15.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: clamp(100px, 20vw, 350px) clamp(20px, 4vw, 50px);
}
.sec-se .block04 .txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-se .block04 .txt {
    text-align: left;
  }
}
.sec-se .block05 .blockttl,
.sec-se .block05 .leadtxt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-se .block05 .blockttl,
  .sec-se .block05 .leadtxt {
    text-align: left;
  }
}
.sec-se .block05 .block05_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sec-se .block05 .block05_item .txt {
  width: 85%;
  margin: clamp(30px, 5vw, 50px) auto;
}
@media screen and (max-width: 767px) {
  .sec-se .block05 .block05_item .txt {
    width: 100%;
  }
}
.sec-se .block05 .block05_item:first-child:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #000;
}
@media screen and (max-width: 767px) {
  .sec-se .block05 .block05_item:first-child:after {
    display: none;
  }
}

.sec-form .packCts-item .cts-ttl-en,
.sec-form .packCts-item .cts-ttl-ja {
  color: #fff;
}

.sec-form .packCts-item .btn-link:hover:hover .cts-ttl-en,
.sec-form .packCts-item .btn-link:hover:hover .cts-ttl-ja {
  color: #202b51;
}

/*# sourceMappingURL=se.css.map */
