@charset "UTF-8";
:root {
  --color_bg: #ecf5f9;
  --color_text: #000;
  --color_primary: #2c4d7a;
  --color_sub01: #bbd1ef;
  --color_sub02: #83abd8;
  --color_primary_rgb: 44, 77, 122;
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_serif: "Noto Serif JP", serif;
  --font_medium: 500;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

/*-----------------------------------------------------------
Base
-----------------------------------------------------------*/
body {
  font-family: var(--font_base);
  color: var(--color_text);
  font-size: 1.6rem;
  line-height: 1.625;
}
body.is-hidden {
  display: flow-root;
  overflow: clip;
}

@media (max-width: 800px) {
  body {
    font-size: 1.5rem;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

th,
dt {
  font-weight: bold;
}

.link {
  text-decoration: underline;
  word-break: break-all;
  position: relative;
}
.link:is(:hover, :focus) {
  text-decoration: none;
}
.link[target=_blank]::after {
  content: "";
  display: inline-block;
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  margin-left: 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1200px;
}
.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.header .btn-more {
  letter-spacing: 0.1em;
}

.header-layout {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
  height: 100px;
}

.h-txt {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 5px;
}

@media (max-width: 1024px) {
  .header {
    position: absolute;
  }
  .header-layout {
    padding: 0;
    height: 75px;
  }
  .h-logo img {
    max-width: 170px;
  }
  .h-txt {
    font-size: 1.2rem;
    margin-top: 0;
  }
  .h-btn,
  .gnavi {
    display: none;
  }
}
/*-----------------------------------------------------------
Gnavi
-----------------------------------------------------------*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}
.gnavi-list > li > a {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: linear-gradient(#000) no-repeat bottom right/0 1px;
  padding-bottom: 2px;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .gnavi-list > li > a:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  position: relative;
  margin-top: 100px;
}

.hero-catch {
  width: 90%;
  color: var(--color_primary);
  font-family: var(--font_serif);
  font-size: clamp(3rem, 3.5vw, 5.1rem);
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 25px rgb(255, 255, 255), 0px 0px 25px rgb(255, 255, 255), 0px 0px 25px rgb(255, 255, 255), 0px 0px 25px rgb(255, 255, 255), 0px 0px 25px rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-catch .txt {
  display: block;
}
.hero-catch .bracket01 {
  letter-spacing: -0.35em;
}
.hero-catch .bracket02 {
  letter-spacing: -0.35em;
}

.hero-img img {
  width: 100%;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 75px;
  }
  .hero-catch {
    font-size: 7vw;
    line-height: 1.343;
    text-shadow: 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 5px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 10px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 15px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255), 0px 0px 20px rgb(255, 255, 255);
    top: 30px;
    transform: translateX(-50%);
  }
  .hero-catch .txt + .txt {
    margin-top: 10px;
  }
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.sec-ttl {
  background-color: var(--color_primary);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding: 12px 5%;
}
.sec-ttl.pd-large {
  padding: 24px 5%;
}

.t-ttl01 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

.t-ttl02 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.t-ttl03 {
  color: var(--color_primary);
  text-align: center;
  margin-bottom: 60px;
}
.t-ttl03 .txt01 {
  font-size: 3.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.t-ttl03 .txt02 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.t-ttl04 {
  color: var(--color_primary);
  margin-bottom: 15px;
}

.t-catch {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 800px) {
  .sec-ttl {
    font-size: 2rem;
    padding: 10px 5%;
  }
  .sec-ttl.pd-large {
    padding: 20px 5%;
  }
  .t-ttl01 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .t-ttl02 {
    margin-bottom: 20px;
  }
  .t-ttl03 {
    margin-bottom: 30px;
  }
  .t-ttl03 .txt01 {
    font-size: 2.8rem;
  }
}
/*------------
sec01
--------------*/
.sec01-layout01 {
  padding: 60px 0 95px;
}

.sec01-layout02 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding: 85px 0;
}

@media (max-width: 800px) {
  .sec01-layout01,
  .sec01-layout02 {
    padding: 60px 0;
  }
}
/*------------
sec02
--------------*/
.sec02 .container {
  padding: 40px 0 70px;
}

@media (max-width: 800px) {
  .sec02 .container {
    padding: 40px 0;
  }
}
/*------------
sec03
--------------*/
.sec03 .container {
  padding: 40px 0 90px;
}

@media (max-width: 800px) {
  .sec03 .container {
    padding: 40px 0;
  }
}
/*------------
sec04
--------------*/
.sec04 .container {
  padding: 50px 0 90px;
}

@media (max-width: 800px) {
  .sec04 .container {
    padding: 40px 0;
  }
}
/*------------
sec05
--------------*/
.sec05 .container {
  padding: 40px 0 90px;
}

@media (max-width: 800px) {
  .sec05 .container {
    padding: 40px 0;
  }
}
/*------------
sec06
--------------*/
.sec06 .container {
  padding: 50px 0 95px;
}

.sec06-layout + .sec06-layout {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec06 .container {
    padding: 40px 0;
  }
  .sec06-layout + .sec06-layout {
    margin-top: 30px;
  }
}
/*------------
sec07
--------------*/
.sec07 .container {
  padding: 50px 0 90px;
}

.sec07-layout + .sec07-layout {
  margin-top: 50px;
}

@media (max-width: 800px) {
  .sec07 .container {
    padding: 40px 0;
  }
  .sec07-layout + .sec07-layout {
    margin-top: 30px;
  }
}
/*------------
sec08
--------------*/
.sec08 .container {
  padding: 50px 0 90px;
}

@media (max-width: 800px) {
  .sec08 .container {
    padding: 40px 0;
  }
}
/*------------
sec09
--------------*/
.sec09 .container {
  padding: 50px 0 100px;
}

@media (max-width: 800px) {
  .sec09 .container {
    padding: 40px 0;
  }
}
/*------------
sec10
--------------*/
.sec10 .container {
  padding: 50px 0 95px;
}

@media (max-width: 800px) {
  .sec10 .container {
    padding: 40px 0;
  }
}
/*------------
sec11
--------------*/
.sec11 .container {
  padding: 50px 0 105px;
}

@media (max-width: 800px) {
  .sec11 .container {
    padding: 40px 0;
  }
}
/*------------
sec12
--------------*/
.sec12 .container {
  padding: 50px 0 100px;
}

@media (max-width: 800px) {
  .sec12 .container {
    padding: 40px 0;
  }
}
/*------------
Table
--------------*/
.table-style01 thead th {
  font-size: 1.8rem;
}
.table-style01 th,
.table-style01 td {
  padding: 7px;
  border: 1px solid #c2c7d0;
  vertical-align: middle;
  line-height: 1.2;
}
.table-style01 th {
  background: var(--color_primary);
  color: #fff;
}
.table-style01 th.bg01 {
  background: #dae3f4;
  color: var(--color_text);
}
.table-style01 th.bg-white {
  background: #fff;
  color: var(--color_text);
}
.table-style01 td {
  display: table-cell;
  height: 60px;
  font-weight: var(--font_medium);
  text-align: center;
}
.table-style01 td.bg01 {
  background: #dae3f4;
  color: var(--color_text);
}

.table-style02 th,
.table-style02 td {
  padding: 7px;
  border: 1px solid #c2c2c2;
  vertical-align: middle;
  line-height: 1.4;
}
.table-style02 th {
  background: var(--color_primary);
  color: #fff;
  text-align: center;
}
.table-style02 th.bg01 {
  background: #d9d9d9;
  color: var(--color_text);
}
.table-style02 td {
  font-weight: var(--font_medium);
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-style01 thead th {
    font-size: 1.6rem;
  }
  .table-style01 th,
  .table-style01 td {
    font-size: 1.4rem;
  }
  .table-style01.sp-block colgroup {
    display: none;
  }
  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }
  .table-style01.sp-block th {
    border-bottom: none;
  }
  .table-style02 th,
  .table-style02 td {
    font-size: 1.4rem;
  }
  .table-style02.sp-block colgroup {
    display: none;
  }
  .table-style02.sp-block th,
  .table-style02.sp-block td {
    display: block;
  }
  .table-style02.sp-block th {
    border-bottom: none;
  }
  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}
/*------------
Flow
--------------*/
.flow-style01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
.flow-style01 > li {
  min-height: 216px;
  background-color: #fff;
  border: 2px solid var(--color_primary);
  position: relative;
}
.flow-style01 > li:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 26px 0 26px 24px;
  border-color: transparent transparent transparent #aabbd6;
  position: absolute;
  top: 50%;
  right: -47px;
  transform: translateY(-50%);
}
.flow-style01 .flow-desc {
  padding: 10px 20px;
}
.flow-style01 .flow-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 7px;
}
.flow-style01 .flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #fff;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .flow-style01 {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .flow-style01 > li {
    min-height: auto;
  }
  .flow-style01 > li:not(:last-child)::after {
    border-width: 20px 0 20px 18px;
    top: auto;
    bottom: -40px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
/*------------
List
--------------*/
.top-list01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-list01 li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 30px;
  background-color: var(--color_primary);
  color: #fff;
  border-radius: 20px;
  padding: 40px 15px 35px;
}
.top-list01 .list-img {
  display: grid;
  place-items: center;
}
.top-list01 .list-desc {
  display: grid;
  place-items: center;
}
.top-list01 .list-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.top-list01 .list-ttl .large {
  font-size: 3rem;
}
.top-list01 .list-ttl .small {
  font-size: 1.6rem;
  font-weight: normal;
}

.list-disc {
  display: grid;
  gap: 12px;
}
.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}
.list-disc li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  top: 10px;
  left: 0;
}

@media (max-width: 800px) {
  .top-list01 {
    grid-template-columns: 1fr;
  }
  .top-list01 li {
    gap: 15px;
  }
  .list-disc li:before {
    top: 9px;
  }
}
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.f-layout01 {
  background-color: var(--color_primary);
  color: #fff;
  padding: 45px 0 55px;
}

.f-txt {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.f-layout02 {
  background-color: #7dabdf;
  color: #fff;
  padding: 50px 0 55px;
}

.f-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.f-links {
  font-weight: bold;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}
.f-links a {
  letter-spacing: 0.1em;
  background: linear-gradient(#fff) no-repeat bottom right/0 1px;
  padding-bottom: 2px;
  transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
  .f-links a:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
.copyright {
  text-align: center;
}
.copyright small {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .f-layout01 {
    padding: 40px 0;
  }
  .f-layout02 {
    padding: 40px 0;
  }
  .f-logo {
    margin-bottom: 30px;
  }
  .f-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }
  :root {
    --navi-background: #2c4d7a;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
  }
  /* ボタン類 */
  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    white-space: nowrap;
  }
  .sp-navi-btns .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
  }
  .sp-navi-btns .item:last-child {
    border-right: none;
  }
  .sp-navi-btns .item .ttl {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 1.1rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs14 {
  font-size: 1.4rem;
}

.jp {
  font-family: var(--font_jp);
}

.en,
[lang=en] {
  font-family: var(--font_en);
}

.bold,
strong {
  font-weight: bold;
}

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #80FF00 50%);
}

.notice {
  font-size: 1.3rem;
  text-indent: -1.4em;
  padding-left: 1.4em;
}

.arrow {
  color: var(--color_sub01);
}

.wave {
  text-decoration: underline wavy red;
  text-decoration-thickness: 1px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb40_30 {
  margin-bottom: 40px !important;
}

.mb50_30 {
  margin-bottom: 50px !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.img-center {
  display: grid;
  justify-content: center;
}

.col2,
.col3,
.col4 {
  display: grid;
}
.col2.gap,
.col3.gap,
.col4.gap {
  gap: 5%;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
}

.col4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mb40_30,
  .mb50_30 {
    margin-bottom: 30px !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
  .col2,
  .col3,
  .col4 {
    grid-template-columns: 1fr;
  }
  .col2.gap,
  .col3.gap,
  .col4.gap {
    gap: 30px;
  }
}
/*ボタン*/
.btn-more {
  background-color: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  min-height: 82px;
  min-width: 623px;
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
}
.btn-more::after {
  content: "";
  display: block;
  background-color: #fff;
  mask: url(../images/share/icon_arrow_right.svg) no-repeat center/contain;
  width: 13px;
  height: 22px;
  margin-top: 2px;
  transition: background-color 0.3s;
}
.btn-more.small {
  font-size: 1.6rem;
  min-height: 50px;
  min-width: 167px;
}
.btn-more.small::after {
  width: 9px;
  height: 14px;
}
.btn-more.white {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--color_primary);
}
.btn-more.white::after {
  background-color: var(--color_primary);
}

@media (hover: hover) {
  .btn-more:hover {
    background-color: transparent;
    color: var(--color_primary);
  }
  .btn-more:hover::after {
    background-color: var(--color_primary);
  }
  .btn-more.white:hover {
    background-color: var(--color_primary);
    color: #fff;
  }
  .btn-more.white:hover::after {
    background-color: #fff;
  }
}
.btn-out {
  padding-right: 15px;
  position: relative;
}
.btn-out::before {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 0.2em;
  right: 0;
}
.btn-out::after {
  content: "";
  transition: background-size 0.3s;
  background: linear-gradient(to top, currentColor 0px, currentColor 1.1px, transparent 1px) no-repeat right bottom;
  background-size: 0% auto;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 1px;
  width: 100%;
}
.btn-out:hover::after {
  background-position: left bottom;
  background-size: 100% auto;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {
  .btn-more {
    font-size: 2rem;
    width: 100%;
    min-width: 100%;
    min-height: 60px;
  }
  .btn-more.small {
    width: 100%;
    min-width: 100%;
  }
}
/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}

.read-box {
  margin: 0 auto;
  max-width: 700px;
}
