@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
/* ボタンカラー */
/* フォント系 */
/*
	Noto Sans使用する場合
	'Noto Sans JP', 'Open Sans', Verdana, Roboto, 'Droid Sans'
*/
/*! このファイルを変更する場合は「.scss」から変更して下さい */
/*! 「.scss」ファイルがつかえない場合はcustom.cssを変更する */
body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
}

em, strong {
  font-weight: inherit;
  font-style: inherit;
}

form {
  display: inline;
}

ul.none, ol.none {
  list-style-type: none;
}
ul.fa_list li:before, ol.fa_list li:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 0.5em;
}
ul li, ol li {
  margin: 0px;
  padding: 0px;
}
ul.icon li, ol.icon li {
  text-indent: -20px;
  margin-left: 20px;
}
ul.icon li:before, ol.icon li:before {
  content: "\f0c8";
  font-family: FontAwesome;
  margin-right: 0.5em;
  color: #005eae;
}

a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

/* 標準アニメーション準備 */
.ani {
  transition: 1s all ease-out;
}
.ani.ani--fast {
  transition: 0.3s all ease-out;
}
.ani.ani_fade {
  opacity: 0;
}
.ani.ani_fade.move {
  opacity: 1;
}
.ani.ani_fadeup {
  opacity: 0;
  position: relative;
  top: 100px;
}
.ani.ani_fadeup.move {
  opacity: 1;
  top: 0;
}
.ani.ani_fadedown {
  opacity: 0;
  position: relative;
  top: -100px;
}
.ani.ani_fadedown.move {
  opacity: 1;
  top: 0;
}
.ani.ani_rightleft {
  opacity: 0;
  position: relative;
  right: -100px;
}
.ani.ani_rightleft.move {
  opacity: 1;
  right: 0;
}
.ani.ani_leftright {
  opacity: 0;
  position: relative;
  left: -100px;
}
.ani.ani_leftright.move {
  opacity: 1;
  left: 0;
}
.ani.ani_expand {
  opacity: 0;
  letter-spacing: -1em;
  font-size: 30rem;
  position: relative;
  left: -30px;
  transition: 0.5s all ease-out;
}
.ani.ani_expand.move {
  letter-spacing: 0em;
}
.ani.ani_expand.move {
  opacity: 1;
  left: 0px;
}

.slide-img {
  opacity: 0;
  transform: translateX(-50px);
}
.slide-img.in-view {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.img_wipe {
  position: relative;
  top: 0;
  left: 0;
}
.img_wipe::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c7b6aa;
  content: "";
  transition: all 0.3s ease-out;
}
.img_wipe.wipe_open::before {
  width: 0;
}

.ani_wipe {
  position: relative;
  top: 0;
  left: 0;
}
.ani_wipe::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #c7b6aa;
  content: "";
  transition: all 0.3s ease-out;
}
.ani_wipe.move::before {
  width: 0;
}

.ani_rotateopen {
  text-align: center;
}
.ani_rotateopen img {
  width: 0;
  height: 100%;
  transition: all 0.3s ease-out;
}
.ani_rotateopen.move img {
  width: 100%;
}

.ani_float {
  position: relative;
  top: 30px;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease-out;
  transition-delay: 0.2s;
}
.ani_float.move {
  top: 0px;
  opacity: 1;
}

.container {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.flexiblebox {
  position: relative;
}
.flexiblebox:before {
  content: "";
  display: block;
  padding-top: 75%; /* 高さを幅の75%に固定 */
}
.flexiblebox .flexiblebox__inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.flexbox_list {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between; /* Safari */
  justify-content: space-between;
}
.flexbox_list.list_reverse {
  flex-direction: row-reverse;
}

.lines-on-sides {
  position: relative;
  top: 0;
  left: 0;
  text-align: center;
}
.lines-on-sides:before {
  content: "";
  display: block;
  border-top: solid 1px #ccc;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.lines-on-sides span {
  background: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.lines-on-sides.sides_left {
  text-align: left;
}
.lines-on-sides.sides_left span {
  padding-left: 0;
}
.lines-on-sides.sides_right {
  text-align: right;
}
.lines-on-sides.sides_right span {
  padding-right: 0;
}

/* ボールド */
.f_bold {
  font-weight: bold;
  font-family: "Open Sans", Verdana, Roboto, "Droid Sans", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* 明朝体 */
.f_mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

/* サンセリフ体 */
.f_sserif {
  font-family: "Open Sans", sans-serif;
}

/* セリフ体 */
.f_serif {
  font-family: "Times New Roman", serif;
}

/* 数字 */
.f_number {
  font-family: "Times New Roman", serif;
}

.scroll-indicator {
  position: relative;
  bottom: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  cursor: pointer;
  color: #bbb;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.scroll-indicator__label {
  font-weight: 600;
}

.scroll-indicator__chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-indicator__chevron {
  margin-top: -1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  border-right: 0.1rem solid #cfcfcf;
  border-bottom: 0.1rem solid #cfcfcf;
  transform: rotate(45deg);
  animation: scroll-indicator-bounce 1.6s infinite;
}

.scroll-indicator__chevron:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes scroll-indicator-bounce {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0;
  }
  30% {
    transform: translateY(0.4rem) rotate(45deg);
    opacity: 1;
  }
  60% {
    transform: translateY(0.4rem) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 1.6rem;
    font-size: 2rem;
  }
  .scroll-indicator__chevron {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.page-top {
  position: fixed;
  right: 1.6rem;
  bottom: 2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  z-index: 9500;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  opacity: 0.7;
}

.page-top img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .page-top {
    right: 1.2rem;
    bottom: 1.8rem;
    width: 4.2rem;
    height: 4.2rem;
  }
}
.img-hover {
  position: relative;
  display: inline-block;
}
.img-hover img {
  display: block;
}
.img-hover img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.img-hover:hover img:nth-of-type(1) {
  opacity: 0;
  transition: opacity 0.3s;
}
.img-hover:hover img:nth-of-type(2) {
  opacity: 1;
}

/* ベース：PC */
html {
  font-size: 62.5%; /* 10px相当 */
}

body {
  font-size: 1.6rem; /* 16px相当 */
}

/* 狭いPC〜タブレット */
@media (max-width: 1024px) {
  html {
    font-size: 53.125%; /* 8.5px相当 */
  }
}
/* スマホ */
@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 9px相当 */
  }
}
/*
　レスポンシブ対応
 */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  br.sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  br.pc {
    display: none !important;
  }
}