@charset "UTF-8";
:root {
  --black: 22,22,22;
  --main: 0,95,164;
  --sub: 10,127,213;
  --green: 0,163,175;
  --red: 255,0,0;
  --gray: 136,136,136;
  --border: 204,204,204;
  --contents_width: 960px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1020px;
  --sidebar_width: 250px;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
a:link, a:visited {
  color: unset;
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-size: 13px;
  line-height: 1.75em;
  -webkit-text-size-adjust: 100%;
}
@media all and (min-width: 768px) {
  body {
    min-width: auto;
  }
}
@media (min-width: 768px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

.l-wrapper {
  position: relative;
}

.l-container {
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media all and (min-width: 768px) {
  .l-container {
    font-size: 1.6rem;
  }
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1020px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1019px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1020px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1020px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-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;
}

.u-bold {
  font-weight: 700;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-right: 20px;
  padding-left: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width_with_padding);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5625vw;
    padding-left: 1.5625vw;
  }
}
@media all and (min-width: 1020px) {
  .u-inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/*  font
---------------------------------------- */
.u-en {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  padding: 15px 0;
  border-bottom: 1px solid rgb(var(--border));
}
.c-archive01__item:first-of-type {
  border-top: 1px solid rgb(var(--border));
}
.c-archive01__date {
  margin-bottom: 3px;
}
.c-archive01__area-txt h3 {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.c-archive01__area-txt a {
  text-decoration: underline;
  color: rgb(var(--main));
}
.c-archive01__area-txt ol {
  padding-left: 0;
  text-indent: -1em;
  counter-reset: number 0;
}
.c-archive01__area-txt ol li {
  position: relative;
  margin-left: 1em;
  box-sizing: border-box;
  counter-increment: number 1;
  list-style-type: none;
}
.c-archive01__area-txt ol li::before {
  content: counter(number) ".";
  letter-spacing: 0.1em;
  color: rgb(var(--main));
}
.c-archive01__area-txt ul {
  padding-left: 0;
}
.c-archive01__area-txt ul li {
  position: relative;
  padding-left: 10px;
  list-style-type: none;
}
.c-archive01__area-txt ul li::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(var(--main));
}
.c-archive01__head {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.c-archive01__txt a {
  text-decoration: underline !important;
  color: rgb(var(--main));
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 25px;
  }
  .c-archive01__date {
    width: 113px;
  }
  .c-archive01__area-txt {
    flex: 1;
  }
  .c-archive01__area-txt h3 {
    font-size: 1.8rem;
  }
  .c-archive01__area-txt a {
    transition: opacity 0.3s ease;
  }
  .c-archive01__area-txt a:hover {
    text-decoration: none;
  }
  .c-archive01__area-txt ul li:before {
    top: 15px;
  }
  .c-archive01__head {
    font-size: 1.8rem;
  }
  .c-archive01__txt a {
    transition: opacity 0.3s ease;
  }
  .c-archive01__txt a:hover {
    opacity: 0.7;
  }
}

/* c-btn01  アイコンつき
=======================================*/
.c-btn01 {
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
}
.c-btn01__in {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  border: 2px solid currentColor;
  border-radius: 9999px;
  padding: 0 50px;
  color: rgb(var(--main));
  cursor: pointer;
}
.c-btn01__in[href] .c-btn01__ico:before {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: rgb(var(--main));
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
}
.c-btn01__in[href] .c-btn01__ico:after {
  content: none;
}
.c-btn01__ico {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: rgb(var(--sub), 0.1);
  border: 1px solid rgba(var(--main), 0.1);
  border-radius: 50%;
}
.c-btn01__ico:before, .c-btn01__ico:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: rgb(var(--main));
}
.c-btn01__ico:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media all and (min-width: 768px) {
  .c-btn01 {
    width: 350px;
    margin: 50px auto 0;
  }
  .c-btn01__in {
    min-height: 70px;
    padding: 0 60px;
    transition: all 0.3s ease;
  }
  .c-btn01__in:hover {
    color: #fff;
    background: rgb(var(--main));
    border-color: rgb(var(--main));
  }
  .c-btn01__in:hover .c-btn01__ico {
    border-color: #fff;
    background: #fff;
  }
  .c-btn01__ico {
    right: 30px;
    transition: all 0.3s ease;
  }
}

/* .c-color-main
================================================== */
.c-color-main {
  color: rgb(var(--main));
}

/* .c-color-sub
================================================== */
.c-color-sub {
  color: rgb(var(--sub));
}

/* .c-color-green
================================================== */
.c-color-green {
  color: rgb(var(--green));
}

/* .c-color-gray
================================================== */
.c-color-gray {
  color: rgb(var(--gray));
}

/* .c-color-red
================================================== */
.c-color-red {
  color: rgb(var(--red));
}

/* .c-head01 英語＋日本語
====================================== */
.c-head01 {
  margin-bottom: 14px;
}
.c-head01__en {
  display: inline-block;
  margin-right: 10px;
  line-height: 1.2;
  font-size: 3rem;
}
.c-head01__main {
  display: inline-block;
  line-height: 1.7;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 34px;
  }
  .c-head01__en {
    margin-right: 14px;
    line-height: 1;
    font-size: 4rem;
  }
  .c-head01__main {
    vertical-align: 3px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* c-link01 下線付き
============================== */
.c-link01 {
  margin: 14px 0 0;
  text-align: center;
}
.c-link01__in {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  font-size: 1.2rem;
  overflow: hidden;
}
.c-link01__in:before {
  content: "";
  background: currentColor;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-link01__ico {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
}
@media all and (min-width: 768px) {
  .c-link01 {
    margin: 26px 0 0;
  }
  .c-link01__in {
    font-size: 1.6rem;
  }
  .c-link01__in:before {
    transition: transform 0.1s ease;
    transform-origin: 0 0;
  }
  .c-link01__in:after {
    content: "";
    transition: transform 0.6s ease;
    background: currentColor;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: 100% 0;
    transform: scaleX(0);
  }
  .c-link01__in:hover:before {
    transform-origin: 100% 0;
    transform: scaleX(0);
  }
  .c-link01__in:hover:after {
    transform-origin: 0 0;
    transform: scaleX(1);
  }
  .c-link01__ico {
    width: 14px;
    height: 14px;
  }
}

/* c-link01.is-right-tb
------------------------------- */
@media all and (min-width: 768px) {
  .c-link01.is-right-tb {
    text-align: right;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

/* .l-footer
================================================ */
/* .l-header
================================================ */
/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  background: #ccc;
  font-size: 2rem;
  text-align: center;
}
.l-main-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 50vh;
}
@media all and (min-width: 768px) {
  .l-main-img {
    font-size: 3rem;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  background: #ccc;
  font-size: 1.5rem;
  text-align: center;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 120px;
}
@media all and (min-width: 768px) {
  .l-sub-img {
    font-size: 2rem;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

/* js-c-toggle-list01
=============================== */
.js-c-toggle-list01-item {
  transition: all 0.3s ease;
}
.js-c-toggle-list01-item.is-hide {
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* top-service
========================== */
.top-service {
  background: url(../img/top/bg_service01_sp.jpg) no-repeat center/cover;
}
.top-service__inner {
  position: relative;
  z-index: 1;
  padding-top: 29px;
  padding-bottom: 30px;
}
.top-service-sec {
  box-sizing: border-box;
  margin-right: -20px;
  margin-left: -20px;
  padding: 19px 20px 20px;
}
.top-service-sec + .top-service-sec {
  margin-top: 5px;
}
.top-service-sec.is-blue {
  background: rgba(var(--sub), 0.1);
}
.top-service-sec.is-green {
  background: rgba(var(--green), 0.1);
}
.top-service-sec__head {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.top-service-sec__head-ico {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin: 0 10px 0 -2px;
  vertical-align: -2px;
}
@media all and (min-width: 768px) {
  .top-service {
    background: url(../img/top/bg_service01_pc.jpg) no-repeat center/cover;
  }
  .top-service__inner {
    padding-top: 61px;
    padding-bottom: 53px;
  }
  .top-service-sec {
    position: relative;
    margin: 0;
    padding: 28px 30px 32px 145px;
  }
  .top-service-sec + .top-service-sec {
    margin-top: 8px;
  }
  .top-service-sec__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 39px;
    left: 30px;
    width: 85px;
    font-size: 2rem;
  }
  .top-service-sec__head-ico {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
  }
}

/* top-service-list
---------------------------- */
.top-service-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 0 0;
}
.top-service-list__item {
  box-sizing: border-box;
  width: calc(50% - 5px);
  margin: 0 5px 0 0;
}
.top-service-list__in {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 11px 13px 11px 15px;
  border-left: 2px solid;
  background: #fff;
  box-shadow: 0 0 20px rgba(var(--main), 0.1);
}
.top-service-list__img {
  width: 25.9259259259%;
  max-width: 55px;
  margin: 0 13% 0 0;
}
.top-service-list__head {
  flex: 1;
  line-height: 1.5;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.top-service-list__head.has-indent {
  text-indent: -0.5em;
}
.top-service-list__head span {
  display: inline-block;
}
.top-service-list__txt {
  width: 100%;
  margin-top: 7px;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.top-service-list__txt span {
  display: inline-block;
}
.top-service-list__txt span.has-indent {
  text-indent: -0.5em;
}
.top-service-list__ico {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.485 8.485"><path d="m5.13.887-.753.753 2.07 2.07H.533v1.066h5.912L4.4 6.82l.754.754 3.332-3.332Z" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
}
@media all and (min-width: 768px) {
  .top-service-list {
    margin: 0 -15px 0 0;
  }
  .top-service-list__item {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
  }
  .top-service-list__in {
    padding: 23px 35px 17px 17px;
    border-left: 3px solid;
    transition: all 0.3s ease;
  }
  .top-service-list__in:hover {
    box-shadow: 0 0 30px rgba(var(--main), 0.2);
  }
  .top-service-list__in:hover .top-service-list__img img {
    transform: scale(1.1);
    opacity: 1;
  }
  .top-service-list__in:hover .top-service-list__head:before {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
  .top-service-list__img {
    width: 65px;
    max-width: 65px;
    margin-right: 17px;
    overflow: hidden;
  }
  .top-service-list__img img {
    transition: all 0.3s ease;
  }
  .top-service-list__head {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2rem;
    overflow: hidden;
  }
  .top-service-list__head.is-small-pc {
    font-size: 1.8rem;
  }
  .top-service-list__head:before {
    content: "";
    transition: transform 0.3s ease;
    background: currentColor;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 100% 0;
    width: 100%;
  }
  .top-service-list__txt {
    font-size: 1.2rem;
  }
  .top-service-list__ico {
    bottom: auto;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
  }
}
@media all and (min-width: 1020px) {
  .top-service-list__in {
    display: grid;
    grid-template-columns: 65px auto;
    grid-template-rows: auto;
    grid-column-gap: 16px;
    padding: 18px 40px 17px 17px;
  }
  .top-service-list__img {
    width: 65px;
    grid-column: 1/2;
    grid-row: 1/3;
    margin: 0;
  }
  .top-service-list__head {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .top-service-list__head.is-small-pc {
    margin-bottom: 5px;
  }
  .top-service-list__txt {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 0;
  }
}

/* top-news
============================ */
.top-news__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.top-news__head {
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .top-news__inner {
    padding-top: 66px;
    padding-bottom: 60px;
  }
  .top-news__head {
    margin-bottom: 30px;
  }
}