@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;
  -webkit-box-sizing: border-box;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:where(a, input, button, textarea, select) {
  -ms-touch-action: manipulation;
  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;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

::-moz-selection {
  background: #d4dcd6;
}

::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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 50px;
}

.gnavi-list>li>a {
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, left bottom, from(#000)) no-repeat bottom right/0 1px;
  background: linear-gradient(#000) no-repeat bottom right/0 1px;
  padding-bottom: 2px;
  -webkit-transition: background-size 0.3s ease-out;
  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: #532100;
  font-family: var(--font_serif);
  font-size: clamp(3rem, 4.583vw, 5.5rem);
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 18px rgb(255, 255, 247), 0px 0px 18px rgb(255, 255, 247), 0px 0px 18px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 15px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 10px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 5px rgb(255, 255, 247), 0px 0px 2px rgb(255, 255, 247), 0px 0px 2px rgb(255, 255, 247);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-catch span {
  display: block;
}

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

@media (max-width: 800px) {
  .hero {
    margin-top: 75px;
  }

  .hero-catch {
    font-size: 7.5vw;
    line-height: 1.314;
  }

  .hero-catch span+span {
    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 {
  color: var(--color_primary);
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

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

.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 {
  background-color: var(--color_sub02);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 3px 15px;
  margin-bottom: 30px;
}

.sub-ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.sub-ttl .small {
  font-size: 1.4rem;
  font-weight: normal;
}

@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;
  }

  .t-ttl02 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .t-ttl03 {
    margin-bottom: 30px;
  }

  .t-ttl03 .txt01 {
    font-size: 2.8rem;
  }

  .sub-ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .t-ttl04 {
    font-size: 1.8rem;
  }
}

/*------------
sec01
--------------*/
.sec01-layout01 {
  background-color: #e0eff6;
  padding: 35px 0 50px;
}

.sec01-layout02 {
  padding: 95px 0;
}

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

@media (max-width: 800px) {
  .sec01-layout01 {
    padding: 40px 0;
  }

  .sec01-layout02 {
    padding: 60px 0;
  }

  .sec01-layout03 {
    padding: 60px 0;
  }
}

/*------------
sec02
--------------*/
.sec02 .container {
  padding: 45px 0 70px;
}

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

/*------------
sec03
--------------*/
.sec03 .container {
  padding: 45px 0 70px;
}

.sec03 .box-style01 {
  margin-bottom: 65px;
}

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

  .sec03 .box-style01 {
    margin-bottom: 30px;
  }

  .sec03-layout .t-ttl04 {
    margin-bottom: 30px;
  }
}

/*------------
sec04
--------------*/
.sec04 .container {
  padding: 50px 0 70px;
}

.sec04-box {
  background-color: #e7f6f7;
  padding: 25px;
}

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

/*------------
sec05
--------------*/
.sec05 .container {
  padding: 60px 0 70px;
}

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

/*------------
sec06
--------------*/
.sec06 .container {
  padding: 40px 0 100px;
}

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

@media (max-width: 800px) {
  .sec06 .container {
    padding: 40px 0;
  }

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

/*------------
sec07
--------------*/
.sec07 .container {
  padding: 50px 0 90px;
}

@media (max-width: 800px) {
  .sec07 .container {
    padding: 40px 0;
  }
}

/*------------
List
--------------*/
.top-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 65px;
}

.top-list01>li {
  width: calc(20% - 13.6px);
}

@media (max-width: 800px) {
  .top-list01 {
    gap: 10px;
    margin-bottom: 30px;
  }

  .top-list01>li {
    width: calc(33.333% - 6.666px);
  }
}

/*------------
Box
--------------*/
.box-style01 {
  background-color: var(--color_bg);
  padding: 15px 20px 30px;
}

.box-ttl01 {
  color: var(--color_primary);
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 800px) {
  .box-ttl01 {
    font-size: 1.6rem;
  }
}

.box-style02 {
  border: 2px solid var(--color_primary);
  padding: 5%;
}

.box-style02 .box-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .box-style02 {
    padding: 20px;
  }

  .box-style02 .box-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/*------------
Layout
--------------*/
.graph-layout {
  text-align: center;
}

.graph-layout .txt01 {
  color: #ff0000;
  border: 1px solid #ff0000;
  font-weight: bold;
  padding: 7px 15px;
  margin-bottom: 20px;
}

.graph-layout .txt02 {
  font-weight: var(--font_medium);
  margin-bottom: 25px;
  position: relative;
}

.graph-layout .txt02 span {
  position: relative;
  z-index: 2;
}

.graph-layout .txt02::before {
  content: "";
  display: block;
  background: url(../images/share/icon_arrow_down.svg) no-repeat center/contain;
  width: 51px;
  height: 58px;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.graph-layout .img-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.graph-layout .txt03 {
  font-weight: bold;
}

/*------------
Table
--------------*/
.table-style01 th,
.table-style01 td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table-style01 th {
  background: var(--color_primary);
  color: #fff;
  text-align: center;
}

.table-style01 th.bg01 {
  background: var(--color_sub01);
  color: #333;
}

@media (max-width: 800px) {
  .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;
  }
}

/*-----------------------------------------------------------
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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 45px;
}

.f-links {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.f-links a {
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff)) no-repeat bottom right/0 1px;
  background: linear-gradient(#fff) no-repeat bottom right/0 1px;
  padding-bottom: 2px;
  -webkit-transition: background-size 0.3s ease-out;
  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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--navi-background);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    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>* {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: 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 {
  -webkit-transition: opacity 0.5s;
  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: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #80FF00));
  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);
}

.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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  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: "";
  -webkit-transition: background-size 0.3s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: 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 {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

.card-style01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.card-style01 > li {
  background-color: #f5f5f5;
  padding: 15px;
}

.card-style01 .card-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .card-style01 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}
