@charset "UTF-8";
/* ---------------------------------------------------------------------------------------------
 * variables.css
--------------------------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------
 # Color
-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
 # Path
-----------------------------------------------------------------------*/
/* ---------------------------------------------------------------------------------------------
 * mixins.css
--------------------------------------------------------------------------------------------- */
/*-----------------------------------------------------------------------
 # ribbon
-----------------------------------------------------------------------*/
.jp {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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

* {
  box-sizing: border-box;
  hanging-punctuation: allow-end;
}

.red {
  color: #eb0000 !important;
}

.btn_main {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
}

.btn_main a,
.btn_main .btn_inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #ffa800;
  border: 2px solid transparent;
  border-radius: 10em;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 1.1em;
  font-weight: normal;
  font-weight: bold;
  padding: 1em 2.6em 0.9em;
  position: relative;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  width: 100%;
  z-index: 2;
}

.btn_main a .icon_arrow,
.btn_main a .icon_plus,
.btn_main .btn_inner .icon_arrow,
.btn_main .btn_inner .icon_plus {
  bottom: 0;
  margin: auto 0;
  position: absolute;
  right: 5%;
  top: 0;
}

.btn_main a .icon_plus::before, .btn_main a .icon_plus::after,
.btn_main .btn_inner .icon_plus::before,
.btn_main .btn_inner .icon_plus::after {
  background: #a8a6a5;
}

.btn_main a:hover,
.btn_main .btn_inner:hover {
  opacity: 1;
}

.btn_main::after {
  background: #afafaf;
  border-radius: 10em;
  content: '';
  display: block;
  height: 100%;
  left: 0.2em;
  position: absolute;
  top: 0.2em;
  width: 100%;
  z-index: 1;
}

.btn_main:hover {
  opacity: 0.75;
}

.btn_main.blue01 a, .btn_main.blue01 .btn_inner {
  background: #289baa;
}

.btn_main.blue02 a, .btn_main.blue02 .btn_inner {
  background: #5a87c8;
}

.btn_main.blue03 a, .btn_main.blue03 .btn_inner {
  background: #2caebd;
}

.btn_main.green01 a, .btn_main.green01 .btn_inner {
  background: #289baa;
}

.btn_main.green02 a, .btn_main.green02 .btn_inner {
  background: #2CAEBD;
}

.btn_main.btn_vertical {
  display: inline-block;
  vertical-align: middle;
}

.btn_main.btn_vertical a {
  padding: 2em 1.5em 3em;
}

.btn_main.btn_vertical a .btn_vertical_inner {
  display: inline-block;
  line-height: 1.1;
  margin: 0 auto;
  width: 1em;
}

.btn_main.btn_vertical a .icon_arrow {
  bottom: 1em;
  left: 50%;
  margin-left: -0.5em;
  right: 0;
  top: auto;
}

.icon_arrow {
  display: inline-block;
  height: 1.2rem;
  position: relative;
  vertical-align: middle;
  width: 1.2rem;
}

.icon_arrow::before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 5rem;
  content: '';
  display: block;
  height: 100%;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  width: 100%;
}

.icon_arrow::after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-bottom: 0.1em solid #ffa800;
  border-right: 0.1em solid #ffa800;
  bottom: 0;
  content: '';
  height: 30%;
  left: -1%;
  margin: auto;
  position: absolute;
  right: 0;
  top: -15%;
  transform: rotate(45deg);
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: ease;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .icon_arrow::after {
    left: -10%;
  }
}

.icon_arrow.blue01::after {
  border-color: #289baa;
}

.icon_arrow.blue02::after {
  border-color: #5a87c8;
}

.icon_arrow.blue03::after {
  border-color: #2caebd;
}

.icon_arrow.green01::after {
  border-color: #289baa;
}

.icon_arrow.green02::after {
  border-color: #2CAEBD;
}

.icon_arrow.black::before {
  background: #fff;
}

.icon_arrow.black::before, .icon_arrow.black::after {
  border-color: #333;
}

.icon_arrow.top::after {
  left: 0%;
  top: 15%;
  transform: rotate(-135deg);
}

.icon_arrow.right::after {
  left: -18%;
  top: -10%;
  transform: rotate(-45deg);
}

.pc-none {
  display: none;
}

@media screen and (max-width: 1032px) {
  .pc-none {
    display: inline-block;
  }
}

.sp-none {
  display: inline-block;
}

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

.pc-only {
  display: inline-block;
}

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

.sp-only {
  display: none;
}

@media screen and (max-width: 900px) {
  .sp-only {
    display: inline-block;
  }
}

.tb-none {
  display: inline-block;
}

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

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

.tb-only {
  display: none;
}

@media screen and (max-width: 1032px) {
  .tb-only {
    display: inline-block;
  }
}

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

.delay1 {
  animation-delay: 100ms;
}

.delay2 {
  animation-delay: 200ms;
}

.delay3 {
  animation-delay: 300ms;
}

.delay4 {
  animation-delay: 400ms;
}

.delay5 {
  animation-delay: 500ms;
}

.delay6 {
  animation-delay: 600ms;
}

.delay7 {
  animation-delay: 700ms;
}

.delay8 {
  animation-delay: 800ms;
}

.delay9 {
  animation-delay: 900ms;
}

.delay10 {
  animation-delay: 1000ms;
}

.inview {
  animation-play-state: running;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fadein.inview {
  opacity: 0;
}

.fadein.inview.on {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadein;
  animation-timing-function: ease;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeup.inview {
  opacity: 0;
  transform: translateY(20px);
}

.fadeup.inview.on {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: fadeup;
  animation-timing-function: ease;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.rotatein.inview {
  transform: rotateX(-90deg);
}

.rotatein.inview.on {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: rotatein;
  animation-timing-function: ease;
}

@keyframes rotatein {
  0% {
    transform: rotateX(-90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.blur.inview {
  blur: 40px;
  filter: blur(40px);
}

.blur.inview.on {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: blur;
  animation-timing-function: ease;
}

@keyframes blur {
  0% {
    filter: blur(40px);
  }
  100% {
    filter: blur(0px);
  }
}

.swing.inview {
  transform-origin: bottom;
}

.swing.inview.on {
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-name: swing;
  animation-timing-function: ease;
}

@keyframes swing {
  0% {
    transform: rotate(5deg);
  }
  10% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(3deg);
  }
  27% {
    transform: rotate(-3deg);
  }
  33% {
    transform: rotate(1deg);
  }
  37% {
    transform: rotate(-1deg);
  }
  40% {
    transform: rotate(0deg);
  }
}

.bound.inview.on {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: bound;
  animation-timing-function: ease;
}

@keyframes bound {
  0% {
    transform: translateY(0px);
  }
  15% {
    transform: translateY(-5px);
  }
  30% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0px);
  }
  55% {
    transform: translateY(-1px);
  }
  60% {
    transform: translateY(0px);
  }
}

button:not([disabled]) > b {
  display: block;
  margin: auto;
  position: absolute;
  text-align: center;
}

button:not([disabled]) > i.spinner {
  opacity: 0;
}

button[disabled] > i.spinner {
  opacity: 1;
}

button[disabled] > b {
  display: none;
}

.btn02 {
  background: black;
  border-radius: 0px;
  color: white;
  display: block;
  height: 50px;
  margin: 0 auto;
  position: relative;
  transition: 0.5s;
  width: 180px;
}

@media screen and (max-width: 900px) {
  .btn02 {
    width: 180px;
  }
}

@media screen and (max-width: 900px) and (max-width: 680px) and (orientation: portrait), screen and (max-width: 900px) and (max-width: 737px) and (orientation: landscape) {
  .btn02 {
    height: 50px;
    margin: 30px auto 0;
    width: 230px;
  }
}

.btn02:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.btn.arrow {
  position: relative;
}

.btn.arrow::after {
  border-right: solid 2px white;
  border-top: solid 2px white;
  content: "";
  height: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  z-index: 1;
}

.spinner {
  -webkit-animation: spinner 1.3s infinite linear;
  animation: spinner 1.3s infinite linear;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 10px;
  height: 1em;
  margin: auto;
  position: relative;
  text-indent: -9999em;
  transform: scale(0.55);
  width: 1em;
}

@keyframes spinner {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

/*---------------------------------------------
    ページ内共通部分
---------------------------------------------*/
@font-face {
  font-family: 'Kazesawa-Bold';
  font-style: normal;
  font-weight: normal;
  src: url("font/Kazesawa-Bold.woff") format("woff");
}

@font-face {
  font-family: 'Kazesawa-Extrabold';
  font-style: normal;
  font-weight: normal;
  src: url("font/Kazesawa-Extrabold.woff") format("woff");
}

body {
  background: url(../common/img/bg01.png) repeat center center/auto 58px;
}

.setWidth {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.mainBox {
  padding: 0 10px;
}

.text-red {
  color: #cc0033;
}

.boxShadow_Content {
  border-radius: 31px;
  margin: auto;
  max-width: 1000px;
}

/*---------------------------------------------
    パンくずリスト
---------------------------------------------*/
.pankuzu_inner {
  margin: 10px 10px 25px 10px;
}

.pankuzu_list {
  overflow: hidden;
}

.pankuzu_list li {
  float: left;
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 1em;
}

.pankuzu_list li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  text-align: center;
  width: 24px;
}

.pankuzu_list li a {
  border-bottom: solid 1px #000;
  display: inline-block;
}

/*---------------------------------------------
    コンテンツ部分
---------------------------------------------*/
.mainContent_inner {
  margin: 0 auto 34px auto;
  max-width: 1000px;
  padding: 0 0 6px 0;
  width: 100%;
}

/*---------------------------------------------
   ヘッダー部分
---------------------------------------------*/
.page_navi {
  position: sticky;
  top: 0;
}

/*---------------------------------------------
 タイトル部分
---------------------------------------------*/
.page_title {
  background: #eb5505;
  height: 80px;
  line-height: 80px;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.page_title > h1 {
  color: white;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: inherit;
  vertical-align: middle;
}

/*---------------------------------------------
 アーカイブ部分
---------------------------------------------*/
.archive-column {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.archive-column > li {
  background: white;
  border-radius: 1em;
  box-shadow: 0px 1px 10px gray;
  height: 300px;
  margin: 0 auto 2em auto;
  max-width: 480px;
  min-width: 0;
  overflow: auto;
  transition: 0.5s;
  width: 90%;
}

.archive-column > li > a {
  width: 100%;
}

.archive-column > li > a > figure {
  height: 45%;
  overflow: hidden;
  width: 100%;
}

.archive-column > li > a > figure > img {
  transition: 0.5s;
  width: 100%;
}

.archive-column > li > a > .info_wrap {
  height: 55%;
  padding: 1em;
  width: 100%;
}

.archive-column > li > a > .info_wrap > .date {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 16px;
}

.archive-column > li > a > .info_wrap > .ttl {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #cc0033;
  display: -webkit-box;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 24px;
  margin-bottom: 0.2em;
  margin-top: 0.3em;
  overflow: hidden;
}

.archive-column > li > a > .info_wrap > .mes {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 20px;
  overflow: hidden;
}

.archive-column > li > a > .info_wrap > .more {
  color: #2caebd;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  height: 18px;
  letter-spacing: 0.1em;
  line-height: 21px;
  margin-top: 1em;
  text-align: right;
}

.archive-column > li > a > .info_wrap > .more .circle-arrow {
  background: #2caebd;
  border-radius: 50%;
  display: inline-block;
  height: 18px;
  margin-right: 0.5em;
  position: relative;
  transform: rotateZ(90deg);
  transform-origin: center;
  width: 18px;
}

.archive-column > li > a > .info_wrap > .more .circle-arrow::after {
  border-right: solid 2px white;
  border-top: solid 2px white;
  content: "";
  height: 4.5px;
  left: 6px;
  position: absolute;
  top: 7.2px;
  transform: rotate(315deg);
  width: 4.5px;
}

.archive-column > li > a > .info_wrap > .more span {
  height: inherit;
  line-height: inherit;
  vertical-align: middle;
}

.archive-column > li:hover {
  box-shadow: 0px 1px 12px gray;
  transition: 0.5s;
}

.archive-column > li:hover > a > figure > img {
  transform: scale(1.1);
  transition: 0.5s;
}

/*---------------------------------------------
 記事詳細部分
---------------------------------------------*/
.single-column {
  background: white;
  border-radius: 2em;
  box-shadow: 0px 1px 10px gray;
  display: block;
  width: 100%;
}

.single-column .cont-wrap {
  padding: 2em 1.5em;
}

.single-column .cont-wrap .date {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 16px;
}

/*---------------------------------------------
 pagenaviのスタイル
---------------------------------------------*/
.pagenavi {
  margin-top: 1em;
  padding-top: 1em;
}

.pagenavi a,
.pagenavi span {
  margin: 0.35em;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 680px) and (orientation: portrait), screen and (max-width: 737px) and (orientation: landscape) {
  .pagenavi a,
  .pagenavi span {
    margin: 0.4em;
  }
}

.pagenavi .btn_large {
  background: #28aabe;
  border-radius: 1.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  color: white;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 22px;
  margin-left: 1em;
  margin-right: 1em;
  max-width: 15em;
  padding: 1.2em 1.5em 1em;
}

.pagenavi .btn_large img {
  margin-right: 0.5em;
  width: 2em;
}

.pagenavi .btn_large.orange {
  background: #eb5505;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0.8em 1.5em;
}

.pagenavi.archive .prevnext {
  margin: 0 auto;
  text-align: center;
}

.pagenavi.archive .prev {
  position: relative;
}

.pagenavi.archive .prev .text {
  display: block;
  padding: 0 1em;
}

.pagenavi.archive .prev .circle-arrow {
  background: white;
  border-radius: 50%;
  display: inline-block;
  height: 21px;
  margin: 0.3em 0 0 0;
  position: relative;
  transform: rotateZ(-90deg);
  transform-origin: center;
  width: 21px;
}

.pagenavi.archive .prev .circle-arrow::after {
  border-right: solid 2px #2caebd;
  border-top: solid 2px #2caebd;
  content: "";
  height: 5.25px;
  left: 7px;
  position: absolute;
  top: 8.4px;
  transform: rotate(315deg);
  width: 5.25px;
}

.pagenavi.archive .next {
  position: relative;
}

.pagenavi.archive .next .text {
  display: block;
  padding: 0 1em;
}

.pagenavi.archive .next .circle-arrow {
  background: white;
  border-radius: 50%;
  display: inline-block;
  height: 21px;
  margin: 0.3em 0 0 0;
  position: relative;
  transform: rotateZ(90deg);
  transform-origin: center;
  width: 21px;
}

.pagenavi.archive .next .circle-arrow::after {
  border-right: solid 2px #2caebd;
  border-top: solid 2px #2caebd;
  content: "";
  height: 5.25px;
  left: 7px;
  position: absolute;
  top: 8.4px;
  transform: rotate(315deg);
  width: 5.25px;
}

.pagenavi.archive .pagenum {
  margin: 1em auto;
  text-align: center;
}

.pagenavi.archive .pagenum .page {
  background: white;
  border: 2px solid #28aabe;
  border-radius: 0.2em;
  color: #28aabe;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 20px;
  padding: 0.4em;
}

.pagenavi.archive .pagenum .page.current {
  background: #28aabe;
  color: white;
}

.pagenavi.single {
  border-top: 3px solid #fce1d2;
  padding: 1em 1.5em 1.5em;
  text-align: center;
}

.pagenavi.single .prevnext {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.pagenavi.single .prev,
.pagenavi.single .next {
  color: #003333;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 16px;
  transform: scale(0.9);
}

.pagenavi.single .prev {
  position: relative;
}

.pagenavi.single .prev .circle-arrow {
  background: #28aabe;
  border-radius: 50%;
  display: inline-block;
  height: 21px;
  margin-right: 0.5em;
  position: relative;
  transform: rotateZ(-90deg);
  transform-origin: center;
  width: 21px;
}

.pagenavi.single .prev .circle-arrow::after {
  border-right: solid 2px white;
  border-top: solid 2px white;
  content: "";
  height: 5.25px;
  left: 7px;
  position: absolute;
  top: 8.4px;
  transform: rotate(315deg);
  width: 5.25px;
}

.pagenavi.single .next .circle-arrow {
  background: #28aabe;
  border-radius: 50%;
  display: inline-block;
  height: 21px;
  margin-left: 0.5em;
  position: relative;
  transform: rotateZ(90deg);
  transform-origin: center;
  width: 21px;
}

.pagenavi.single .next .circle-arrow::after {
  border-right: solid 2px white;
  border-top: solid 2px white;
  content: "";
  height: 5.25px;
  left: 7px;
  position: absolute;
  top: 8.4px;
  transform: rotate(315deg);
  width: 5.25px;
}

.pagenavi.single .backto {
  border-radius: 5rem;
  display: block;
  margin: 1em auto;
}
