@charset "UTF-8";
img {
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

/* PC・スマホ 表示切替 */
@media screen and (max-width: 1060px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 520px) {
  .pc-tb {
    display: none;
  }
}

.tb-sp {
  display: none;
}
@media screen and (max-width: 1060px) {
  .tb-sp {
    display: block;
  }
}

.ini-tb-sp {
  display: none;
}
@media screen and (max-width: 1060px) {
  .ini-tb-sp {
    display: initial;
  }
}

.tb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .tb {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .tb {
    display: none;
  }
}

.ini-tb {
  display: none;
}
@media screen and (max-width: 1060px) {
  .ini-tb {
    display: initial;
  }
}
@media screen and (max-width: 520px) {
  .ini-tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .sp {
    display: block;
  }
}

.ini-sp {
  display: none;
}
@media screen and (max-width: 520px) {
  .ini-sp {
    display: initial;
  }
}

/*-- 改行 */
@media screen and (max-width: 1060px) {
  br.tb-sp {
    display: initial;
  }
}
@media screen and (max-width: 1060px) {
  br.tb {
    display: initial;
  }
}
@media screen and (max-width: 520px) {
  br.tb {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  br.sp {
    display: initial;
  }
}

/*-- alignment */
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

/* 電話番号（スマホ時タップ可能） */
a[href^="tel:"] {
  color: #000;
  background: none;
  pointer-events: none;
}
@media screen and (max-width: 1060px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* フォント */
/*-- フォントファミリー */
.jp {
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Familjen Grotesk", sans-serif;
}

.text__gradient {
  background-image: var(--var-linear-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* パーツ */
/*-- リンク */
a {
  color: #0e94bc;
  text-decoration: none;
}
a.drop-shadow {
  position: relative;
}
a.drop-shadow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: all 0.2s var(--var-animation-timing-function);
}
@media screen and (max-width: 1060px) {
  a.drop-shadow::after {
    display: none;
  }
}
a.drop-shadow > * {
  position: relative;
  z-index: 1;
}
a.drop-shadow:hover {
  z-index: 10;
}
a.drop-shadow:hover::after {
  opacity: 1;
}
a .underline,
a .shrink-stretch {
  display: inline-block;
  position: relative;
}
a .underline::before,
a .shrink-stretch::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}
a .shrink-stretch::before {
  transform-origin: left;
}
a .underline::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s var(--var-animation-timing-function);
}
a .zoom-up img {
  transition: all 0.2s var(--var-animation-timing-function);
  transform: scale(1);
}
a:hover .underline::before {
  transform: scaleX(1);
}
@media screen and (max-width: 1060px) {
  a:hover .underline::before {
    transform: scaleX(0);
  }
}
a:hover .shrink-stretch::before {
  animation: shrink-stretch 0.2s var(--var-animation-timing-function) 1 normal forwards;
}
@media screen and (max-width: 1060px) {
  a:hover .shrink-stretch::before {
    animation: none;
  }
}
a:hover .zoom-up img {
  transform: scale(1.03);
}

.link__btn01 {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.link__btn01 .text {
  color: #000;
  margin-right: 1.5rem;
}
.link__btn01 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 100%;
  background-color: #000;
  position: relative;
  transition: all 0.3s var(--var-animation-timing-function);
}
@media screen and (max-width: 1060px) {
  .link__btn01 .icon {
    width: 7rem;
    height: 7rem;
  }
}
.link__btn01 .icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-image: var(--var-linear-gradient);
  transition: all 0.3s var(--var-animation-timing-function);
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .link__btn01 .icon::before {
    display: none;
  }
}
.link__btn01 .icon svg {
  position: relative;
  z-index: 1;
  width: 1.9rem;
  height: 1.7rem;
}
@media screen and (max-width: 1060px) {
  .link__btn01 .icon svg {
    width: 2.3rem;
    height: 2.1rem;
  }
}
.link__btn01:hover .icon {
  background-color: #fff;
}
@media screen and (max-width: 1060px) {
  .link__btn01:hover .icon {
    background-color: #000;
  }
}
.link__btn01:hover .icon::before {
  opacity: 1;
}
.link__btn01:hover .icon svg {
  animation: move-left-to-right 0.3s var(--var-animation-timing-function) 1 normal forwards;
}
@media screen and (max-width: 1060px) {
  .link__btn01:hover .icon svg {
    animation: none;
  }
}

.link__btn02 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 280px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.06);
}
.link__btn02 .text {
  color: #000;
}
.link__btn02 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s var(--var-animation-timing-function);
}
.link__btn02 .icon svg {
  display: inline;
}
.link__btn02:hover {
  box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1060px) {
  .link__btn02:hover {
    box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.06);
  }
}

/* コンテンツ幅 */
.cw00 {
  position: relative;
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 1060px) {
  .cw00 {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

.cw01,
.cw02,
.cw03,
.cw04,
.cw05 {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.cw01 {
  max-width: 1920px;
}
.cw01 .cw__inner {
  width: 100%;
  padding-left: calc(22.2rem + 60px);
}
@media screen and (max-width: 1730px) {
  .cw01 .cw__inner {
    padding-left: calc(12.8324% + 60px);
  }
}
@media screen and (max-width: 1628px) {
  .cw01 .cw__inner {
    padding-left: calc(10% + 60px);
  }
}
@media screen and (max-width: 1220px) {
  .cw01 .cw__inner {
    padding-left: calc(6% + 60px);
  }
}
@media screen and (max-width: 1020px) {
  .cw01 .cw__inner {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1060px) {
  .cw01 .cw__inner {
    padding-left: 0;
  }
}

.cw03 {
  max-width: 1470px;
  padding-left: 60px;
}
@media screen and (max-width: 1060px) {
  .cw03 {
    padding-left: 3.5rem;
  }
}

.cw04 {
  max-width: 1160px;
  padding-left: 60px;
}
@media screen and (max-width: 1060px) {
  .cw04 {
    padding-left: 3.5rem;
  }
}

.cw05 {
  max-width: 1220px;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 1060px) {
  .cw05 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

/* セクション（標準） */
.section__inner {
  border-left: 1px solid #ccc;
  padding-right: 60px;
}
@media screen and (max-width: 1060px) {
  .section__inner {
    border-left: none;
    padding-right: 3.5rem;
  }
}

.section__title {
  border-bottom: 1px solid #ccc;
}
.section__title .title__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 1060px) {
  .section__title .title__inner {
    padding-top: 15rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
  }
}
.section__title .title__inner .title__text {
  padding-left: 6.5rem;
  padding-bottom: 0.8rem;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .section__title .title__inner .title__text {
    display: block;
    padding-left: 3.5rem;
    padding-bottom: 0;
  }
}
.section__title .title__inner .title__text::before {
  content: "";
  display: block;
  width: 5px;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}
@media screen and (max-width: 1060px) {
  .section__title .title__inner .title__text::before {
    height: 11rem;
    width: 0.7rem;
  }
}
.section__title .title__inner .title__text span {
  vertical-align: middle;
  line-height: 1;
}
@media screen and (max-width: 1060px) {
  .section__title .title__inner .title__text span {
    display: block;
  }
}
.section__title .title__inner .title__text .en {
  font-weight: 600;
  margin-right: 3.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1060px) {
  .section__title .title__inner .title__text .en {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
}

.section__title .title__inner .title__text .en br.sp-inline {
  display: none;
}

@media screen and (max-width: 1060px) {
  .section__title .title__inner .title__text .en br.sp-inline {
    display: inline-block;
  }
}
.section__title .title__inner .title__text .jp {
  font-weight: 700;
}

.section__title02 {
  border-left: 5px solid #000;
  padding: 0 60px 0 3.5rem;
  margin-bottom: 7rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1060px) {
  .section__title02 {
    padding-right: 0;
  }
}

.bg__gray {
  background-color: #f9f9f7;
}

/* 汎用スタイル */
.general__style p,
.general__style ol,
.general__style ul {
  margin-bottom: 2.5rem;
}
.general__style p:last-child,
.general__style ol:last-child,
.general__style ul:last-child {
  margin-bottom: 0;
}
.general__style figure {
  margin-bottom: 6rem;
}
.general__style figure figcaption {
  margin-top: 2rem;
  text-align: left;
}
.general__style h2 {
  margin-bottom: 6rem;
  position: relative;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 3.5rem;
}
.general__style h2::before {
  content: "";
  display: block;
  width: 5px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}
@media screen and (max-width: 1060px) {
  .general__style h2::before {
    height: 6rem;
    width: 0.7rem;
  }
}
.general__style h3 {
  margin-top: 6rem;
  margin-bottom: 6rem;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: 2px solid #000;
  padding-bottom: 1.5rem;
}
.general__style h4 {
  margin-bottom: 3.5rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: #fff;
  padding: 1.5rem 2.5rem;
  position: relative;
}
.general__style h4::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
}
@media screen and (max-width: 1060px) {
  .general__style h4::before {
    width: 7rem;
  }
}
.general__style h5 {
  position: relative;
  padding-left: 18px;
}
.general__style h5::before {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background-image: var(--var-linear-gradient);
  position: absolute;
  top: 15px;
  left: 0;
  font-weight: 700;
}
.general__style ul li {
  position: relative;
  padding-left: 2rem;
}
.general__style ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #0e94bc;
  border-radius: 100%;
}
.general__style ol {
  counter-reset: item 0;
}
.general__style ol li {
  position: relative;
  padding-left: 2rem;
}
.general__style ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: item;
  content: counter(item) ".";
  color: #0e94bc;
  font-family: "Familjen Grotesk", sans-serif;
}
.general__style p.literature {
  margin-left: 18px;
}
.general__style .mgb-60 {
  margin-bottom: 6rem;
}
.general__style .two__img__cols {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  .general__style .two__img__cols {
    display: block;
  }
}
.general__style .two__img__cols figure {
  width: 48.18%;
}
@media screen and (max-width: 1060px) {
  .general__style .two__img__cols figure {
    width: 100%;
  }
}
.general__style .two__img__cols figure figcaption {
  margin-top: 2rem;
}
.general__style .two__img__cols figure figcaption.size-l {
  margin-top: 3rem;
  font-weight: bold;
}
.general__style table {
  width: 100%;
  margin-bottom: 2.5rem;
  background-image: var(--var-linear-gradient);
}
.general__style table tr > * {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1.5rem 3rem;
  vertical-align: top;
}
.general__style table tr > *:last-child {
  border-right: none;
}
.general__style table tr:first-child > * {
  border-top: 1px solid #ccc;
}
.general__style table thead tr {
  color: #fff;
  font-weight: 700;
}
.general__style table thead tr th {
  text-align: center;
}
.general__style table tbody th {
  background-image: var(--var-linear-gradient);
  color: #fff;
  font-weight: 700;
  width: 30%;
  word-break: break-all;
}
.general__style table td {
  background-color: #fff;
}
.general__style table td p,
.general__style table td ul,
.general__style table td ol {
  margin-bottom: 3rem;
}
.general__style table td p:last-child,
.general__style table td ul:last-child,
.general__style table td ol:last-child {
  margin-bottom: 0;
}
.general__style .alignright {
  float: right;
  margin-left: 3rem;
}
@media screen and (max-width: 1060px) {
  .general__style .alignright {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.general__style .alignleft {
  float: left;
  margin-right: 3rem;
}
@media screen and (max-width: 1060px) {
  .general__style .alignleft {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-align: center;
  }
}
.general__style .aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}
.general__style .contents__block {
  margin-bottom: 8rem;
}
.general__style .contents__block h2,
.general__style .contents__block h3,
.general__style .contents__block h4 {
  margin-bottom: 4.5rem;
}
.general__style .contents__block p,
.general__style .contents__block ol,
.general__style .contents__block ul,
.general__style .contents__block figure {
  margin-bottom: 3.5rem;
}
.general__style .contents__block p.border,
.general__style .contents__block ol.border,
.general__style .contents__block ul.border,
.general__style .contents__block figure.border {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3rem;
}
.general__style .contents__block p.border img,
.general__style .contents__block ol.border img,
.general__style .contents__block ul.border img,
.general__style .contents__block figure.border img {
  display: inline-block;
}
.general__style .contents__block p figcaption,
.general__style .contents__block ol figcaption,
.general__style .contents__block ul figcaption,
.general__style .contents__block figure figcaption {
  margin-top: 1.5rem;
}
.general__style .contents__block .two__cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 1060px) {
  .general__style .contents__block .two__cols {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  .general__style .contents__block .two__cols .col {
    margin-bottom: 3.5rem;
  }
}
.general__style .contents__block .two__cols.cols-5_5 .col {
  flex-basis: 48.18%;
}
.general__style .contents__block .two__cols.cols-6_3 .col:nth-child(1) {
  flex-basis: 62.27%;
}
.general__style .contents__block .two__cols.cols-6_3 .col:nth-child(2) {
  flex-basis: 31.82%;
}
.general__style .contents__block .two__cols.cols-3_6 .col:nth-child(1) {
  flex-basis: 31.82%;
}
.general__style .contents__block .two__cols.cols-3_6 .col:nth-child(2) {
  flex-basis: 62.27%;
}
.general__style .contents__block > * :last-child {
  margin-bottom: 0;
}

.general__style a,
a.text__link {
  transition: all 0.2s;
  background-image: linear-gradient(#0e94bc, #0e94bc);
  background-position: 100% 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  display: inline;
  margin-right: 5px;
}
.general__style a[target^="_blank"],
a.text__link[target^="_blank"] {
  position: relative;
  background-position: calc(100% - 25px) 100%;
  background-size: calc(100% - 20px) 1px;
}
@media screen and (max-width: 1060px) {
  .general__style a[target^="_blank"],
  a.text__link[target^="_blank"] {
    background-position: calc(100% - 3rem) 100%;
    background-size: calc(100% - 3rem) 1px;
  }
}
.general__style a[target^="_blank"]::after,
a.text__link[target^="_blank"]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 15px;
  margin-left: 8px;
  background-image: url("../img/common/icon_link.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 1060px) {
  .general__style a[target^="_blank"]::after,
  a.text__link[target^="_blank"]::after {
    width: 2.3rem;
    height: 1.8rem;
  }
}
.general__style a:hover,
a.text__link:hover {
  background-size: 0 1px;
}
@media screen and (max-width: 1060px) {
  .general__style a:hover,
  a.text__link:hover {
    background-size: 100% 1px;
  }
}
.general__style a:hover[target^="_blank"],
a.text__link:hover[target^="_blank"] {
  background-size: 0 1px;
}
@media screen and (max-width: 1060px) {
  .general__style a:hover[target^="_blank"],
  a.text__link:hover[target^="_blank"] {
    background-size: calc(100% - 3rem) 1px;
  }
}
.general__style a[href^="tel:"],
a.text__link[href^="tel:"] {
  background: none;
}
.general__style a[href^="tel:"]::after,
a.text__link[href^="tel:"]::after {
  display: none;
}

.general__style figure a[target^="_blank"]::after {
  display: none;
}
.general__style p.literature a[target^="_blank"]::after,
.general__style small a[target^="_blank"]::after {
  width: 12.8px;
  height: 12px;
}

@media screen and (max-width: 1060px) {
  .general__style .table__wrapper {
    overflow: auto;
    width: 100%;
  }
  .general__style .table__wrapper .table__wrapper__inner {
    width: 200%;
    padding-right: 3.5rem;
  }
}

.general__style .blk_txt {
  overflow: hidden;
}

.general__style p.txt {
  overflow: hidden;
}
@media screen and (max-width: 1060px) {
  .general__style .blk_txt {
    overflow: initial;
  }
  .general__style p.txt {
    overflow: initial;
  }
}
.general__style .section::after {
  content: "";
  display: block;
  clear: both;
}
.general__style .section .imgR {
  float: right;
  display: inline;
  margin-left: 15px;
}
@media screen and (max-width: 1060px) {
  .general__style .section .imgR {
    float: none;
    margin-left: 0px;
  }
}

.in-view {
  opacity: 0;
}
.in-view.is-animated {
  animation: scroll-animation 0.3s ease-in forwards;
  animation-delay: 0.3s;
}

.title-anime {
  opacity: 0;
}
.title-anime.is-animated {
  animation: page-title-animation 0.3s ease-in forwards;
  animation-delay: 0.3s;
}

@keyframes move-arrowhead {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  0% {
    transform: translateX(0);
  }
}
@keyframes move-arrow-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  0% {
    transform: translateY(0);
  }
}
@keyframes move-left-to-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(240%);
  }
  50.1% {
    transform: translateX(-240%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes move-left-to-right_100 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  50.1% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes shrink-stretch {
  0% {
    transform: scaleX(0%);
  }
  100% {
    transform: scaleX(100%);
  }
}
@keyframes general-link-move {
  0% {
    background-size: 100%/100% 1px;
  }
  50% {
    background-size: 100%/0 1px;
  }
  50.1% {
    background-size: 100%/0 1px;
  }
  100% {
    background-size: 100%/100% 1px;
  }
}
@keyframes scroll-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes page-title-animation {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes page-title-animation_sp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes move-scroll {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100%);
  }
  50.1% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
