@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */
@font-face {
  font-family: 'PixelMplus12';
  src: url('https://cdn.leafscape.be/PixelMplus/PixelMplus12-Bold_web.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  /*font-weight:500;*/
}
  @media screen and (max-width: 430px) {
    body {
      font-size: 3.58vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #F08300;
}
a:active {
  color: #F08300;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.mincho {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Hiragino Mincho ProN W3", 'Noto Serif JP', serif;
}
.ff01 {
  font-weight: 600;
  font-family: 'PixelMplus12', sans-serif;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 430px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 汎用クラス
--------------------------------------------------- */
.inline {
  display:inline;
}
.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.block {
  display:block;
}
.flex {
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.table_cell {
  display: table-cell;
  vertical-align: middle;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.tC {
  text-align: center;
}
.tR {
  text-align: right;
}
.pc_none {
  display:none;
}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}
.alpha:hover {
  opacity: 0.7;
}
.no_alpha {
  opacity: 1!important;
}

@media screen and (max-width: 430px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .fl,.fr {
    box-sizing:border-box;
    width:100%!important;
    float:none!important;
  }
  .sp_block {
    display: block;
  }
}

.nolink {
  pointer-events: none;
}
.pc_nolink {
  pointer-events: none;
}
  @media screen and (max-width: 430px) {
    .pc_nolink {
      pointer-events: painted;
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
}
.column_center {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding-top: 82px;
  padding-bottom: 10px;
  line-height: 1.6;
  background: url("../img/ft_bg.jpg") center bottom no-repeat;
  background-size: 100% auto;
}
.column_center::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 2px;
  height: 100%;
  background: #000;
  z-index: 150;
}
.column_center::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 2px;
  height: 100%;
  background: #000;
  z-index: 150;
}

#contents {
  padding-top: 56px;
  padding-bottom: 20px;
}
.inner {
  position: relative;
  z-index: 5;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
  @media screen and (max-width: 430px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    .column_center {
      max-width: 100%;
      padding-bottom: 2.56vw;
    }
    .column_center::before,
    .column_center::after {
      display: none;
    }
    #contents {
      padding-top: 14.35vw;
      padding-bottom: 5.12vw;
    }
    .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 5.12vw;
      padding-right: 5.12vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 82px;
  text-align: center;
}
.hd_wrap {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  height: 100%;
  background: rgba(255,255,255,0.9);
  border-bottom: solid 1px #000;
}
#header.open .hd_wrap {
  background: rgba(255,255,255,1);
}
.hd_wrap::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 5;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
.hd_logo {
  display: block;
  padding: 6px 0 4px;
}
  @media screen and (max-width: 430px) {
    .hd_wrap {
      max-width: 100%;
    }
  }

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
}
#crumbs li {
  display: inline;
}
#crumbs li br {
  display: none;
}

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  position: relative;
  z-index: 10;
}
.ft_inner {
  padding: 0 20px;
}
.ft_box {
  background: #fff;
}
  @media screen and (max-width: 430px) {
    .ft_inner {
      padding: 0 5.12vw;
    }
  }

.sns_links {
  position: relative;
  border-bottom: solid 1px #000;
  padding: 45px 0;
}
.sns_links::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: 5;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
.sns_links h2 {
  margin-bottom: 20px;
}
.sns_links li {
  margin: 0 15px;
}
.sns_links li a img {
  transition: all 0.4s ease-in-out 0s;
}
.sns_links li a:hover img {
  transform: scale(1.08);
}
  @media screen and (max-width: 430px) {
    .sns_links {
      padding: 11.53vw 0;
    }
    .sns_links h2 {
      margin-bottom: 5.12vw;
    }
    .sns_links h2 img {
      width: 31.28vw;
      height: auto;
      vertical-align: bottom;
    }
    .sns_links li {
      margin: 0 3.84vw;
    }
    .sns_links li img {
      width: 12.3vw;
      height: auto;
    }
    .sns_links li a:hover img {
      transform: scale(1);
    }
  }

.ft_info {
  text-align: center;
  padding: 25px 20px 40px;
}
.ft_info h2 {
  margin-bottom: 30px;
}
.ft_info li {
  position: relative;
  padding: 0 15px;
}
.ft_info li::after {
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  z-index: 5;
  content: "";
  width: 1px;
  height: 10px;
  background: #000;
}
.ft_info li:last-child::after {
  display: none;
}
.ft_info li a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
}
.ft_info li a:hover {
  color: #F08300;
}
  @media screen and (max-width: 430px) {
    .ft_info {
      padding: 6.41vw 5.12vw 10.25vw;
    }
    .ft_info h2 {
      margin-bottom: 7.69vw;
    }
    .ft_info h2 img {
      width: 41vw;
      height: auto;
    }
    .ft_info li {
      padding: 0 3.84vw;
    }
    .ft_info li::after {
      top: calc(50% - 1.28vw);
      height: 2.56vw;
    }
    .ft_info li a {
      font-size: 3.07vw;
    }
  }

.ft_message {
  padding: 225px 0 140px;
  text-align: center;
  color: #fff;
}
.home .ft_message {
  padding-top: 120px;
}
.copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}
  @media screen and (max-width: 430px) {
    .ft_message {
      padding: 57.69vw 0 35.89vw;
    }
    .home .ft_message {
      padding-top: 30.76vw;
    }
    .copyright {
      font-size: 2.56vw;
    }
  }

.column_left {
  position: fixed;
  width: calc(50% - 195px);
  height: 100%;
  left: 0;
  top: 135px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 10px;
}
.column_left_inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.column_left_inner h2 {
  font-size: min(2vw,2.2rem);
  margin-bottom: 32px;
}
.column_left_list {
  max-width: 300px;
}
.column_left_box {
  width: 33.33%;
  text-align: center;
  padding: 0 0.2% 25px;
}
.column_left_box figure {
  width: 100%;
  height: 45px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.column_left_box h3 {
  font-size: min(1.25vw,1.4rem);
}
  @media screen and (max-width: 899px) {
    .column_left {
      display: none;
    }
  }

.column_right {
  position: fixed;
  width: calc(50% - 195px);
  right: 0;
  top: 135px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1% 0 1.5%;
}
.column_right_inner {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.column_right_inner h2 {
  font-size: min(2vw,2.2rem);
  margin-bottom: 28px;
}
.column_right_txt p {
  font-size: min(1.15vw,1.4rem);
  line-height: 1.5;
  margin-bottom: 20px;
  white-space: nowrap;
}
.column_right_txt p:last-child {
  margin-bottom: 0;
}
.column_right_txt figure {
  padding-top: 10px;
}
.column_right_txt figure span {
  display: inline-block;
}
  @media screen and (max-width: 899px) {
    .column_right {
      display: none;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
.page_ttl {
}
  @media screen and (max-width: 430px) {
  }

.sub_ttl01 {
  text-align: center;
  margin-bottom: 40px;
}
.sub_ttl01 small {
  display: block;
  color: #F08300;
  font-size: 1.4rem;
}
.sub_ttl01 span {
  display: block;
  font-size: 4rem;
}
  @media screen and (max-width: 430px) {
    .sub_ttl01 {
      margin-bottom: 10.25vw;
    }
    .sub_ttl01 small {
      font-size: 3.58vw;
    }
    .sub_ttl01 span {
      font-size: 10.25vw;
    }
  }

.sub_ttl02 {
  text-align: center;
  margin-bottom: 30px;
}
.sub_ttl02 small {
  display: block;
}
.sub_ttl02 span {
  display: block;
  font-size: 2.1rem;
}
  @media screen and (max-width: 430px) {
  }

.sub_ttl03 {
}

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.btn01 a {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 280px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  vertical-align: bottom;
  border: solid 1px #000;
  background: #fff;
  padding: 10px;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.btn01 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-100% - 20px);
  width: calc(100% + 10px);
  height: 100%;
  background: #E87F00;
  transform: skewX(25deg);
  transition: left 0.35s ease;
}
.btn01 a:hover {
  color: #fff;
  border: solid 1px #E87F00;
}
.btn01 a:hover::before {
  left: -5px; /* 横移動は今までと同じ */
}
.btn01 a span {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding-right: 20px;
  background: url("../img/ico_arrow01a.svg") right center no-repeat;
  background-size: 16px auto;
}
.btn01 a:hover span {
  background: url("../img/ico_arrow01b.svg") right center no-repeat;
  background-size: 16px auto;
}
  @media screen and (max-width: 430px) {
    .btn01 a {
      max-width: 71.79vw;
      padding: 2.56vw;
      border-radius: 6.41vw;
      font-size: 4.1vw;
    }
    .btn01 a:hover {
      border: solid 1px #000;
      color: #000;
    }
    .btn01 a::before {
      display: none;
    }
    .btn01 a span {
      padding-right: 5.12vw;
      background: url("../img/ico_arrow01a.svg") right center no-repeat;
      background-size: 4.1vw auto;
    }
    .btn01 a:hover span {
      background: url("../img/ico_arrow01a.svg") right center no-repeat;
      background-size: 4.1vw auto;
    }
  }

.btn02 a {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 260px;
  display: inline-block;
  color: #000;
  text-decoration: none;
  vertical-align: bottom;
  border: solid 1px #000;
  background: #fff;
  padding: 10px;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.btn02 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #E87F00;
  transition: left 0.35s ease;
}
.btn02 a:hover {
  color: #fff;
  border: solid 1px #E87F00;
}
.btn02 a:hover::before {
  left: 0;
}
.btn02 a span {
  position: relative;
  z-index: 5;
  display: inline-block;
  padding-right: 20px;
  background: url("../img/ico_arrow03a.svg") right center no-repeat;
  background-size: 18px auto;
}
.btn02 a:hover span {
  background: url("../img/ico_arrow03b.svg") right center no-repeat;
  background-size: 18px auto;
}
.btn02 b {
  display: inline-block;
  position: relative;
  z-index: 5;
}
  @media screen and (max-width: 430px) {
    .btn02 a {
      max-width: 66.66vw;
      padding: 2.56vw;
      border-radius: 6.41vw;
      font-size: 4.1vw;
    }
    .btn02 a:hover {
      border: solid 1px #000;
      color: #000;
    }
    .btn02 a::before {
      display: none;
    }
    .btn02 a span {
      padding-right: 5.12vw;
      background: url("../img/ico_arrow03a.svg") right center no-repeat;
      background-size: 4.61vw auto;
    }
    .btn02 a:hover span {
      background: url("../img/ico_arrow03a.svg") right center no-repeat;
      background-size: 4.61vw auto;
    }
  }

/*----------------------------------------------------
  共通テーブル
--------------------------------------------------- */

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

.trs {
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}
/*trp*/
.trp {
  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  transition: opacity .1s ease;
  opacity: 1;
  filter: alpha(opacity=100);
}
.trp:hover {
  opacity: .6;
  filter: alpha(opacity=60);
}
/* trs-dr */
.trs-dr02 {
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -ms-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
}
.trs-dr03 {
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  -ms-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
}
.trs-dr05 {
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  -ms-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s;
}
.trs-dr06 {
  -webkit-transition-duration: .6s;
  -moz-transition-duration: .6s;
  -ms-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
}
.trs-dr08 {
  -webkit-transition-duration: .8s;
  -moz-transition-duration: .8s;
  -ms-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s;
}
.trs-dr12 {
  -webkit-transition-duration: 1.2s;
  -moz-transition-duration: 1.2s;
  -ms-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}
/* trs-tf */
.trs-tfCb {
  -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
  transition-timing-function: cubic-bezier(0, .96, .4, .99);
}

#menuTrigger {
  position: absolute;
  z-index: 150;
  top: calc(50% - 26px);
  right: 15px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  background: #000;
}
#header.open #menuTrigger {
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
}
.menuIcon_line {
  position: absolute;
  height: 2px;
  background: #fff;
}
.menuIcon_line:nth-of-type(1) {
  width: 18px;
  left: calc(50% - 9px);
  top: calc(50% - 8px);
}
.menuIcon_line:nth-of-type(2) {
  width: 14px;
  left: calc(50% - 7px);
  top: calc(50% - 1px);
}
.menuIcon_line:nth-of-type(3) {
  width: 26px;
  left: calc(50% - 13px);
  top: calc(50% + 7px);
}
/* open */
#header.open .menuIcon_line {
  background: #fff;
}
#header.open .menuIcon_line:nth-of-type(1) {
  width: 16px;
  left: calc(50% - 8px);
  top: calc(50% - 7px);
}
#header.open .menuIcon_line:nth-of-type(2) {
  width: 12px;
  left: calc(50% - 6px);
  transform: rotate(90deg);
}
#header.open .menuIcon_line:nth-of-type(3) {
  width: 22px;
  left: calc(50% - 11px);
  top: calc(50% + 6px);
}
#hbMenu {
  position: fixed;
  top: 82px;
  left: calc(50% - 195px);
  width: 100%;
  max-width: 390px;
  height: 100vh;
  background: rgba(255,255,255,0.6);
  overflow: hidden;
  display: none;
  z-index: 90;
}
  @media screen and (max-width: 430px) {
    #hbMenu {
      left: 0;
      max-width: 100%;
    }
  }

.hb_eyan {
  overflow: hidden;
  position: absolute;
  right: 13px;
  top: 54px;
  z-index: 50;
}
.hb_eyan img {
  opacity: 0;
  position: relative;
  top: -100px;
  transition: all 0.4s ease-in-out 0s;
}
#header.open .hb_eyan img {
  opacity: 1;
  top: 0;
}
  @media screen and (max-width: 430px) {

  }

#hbNav {
  padding: 85px 20px;
  text-align: center;
  background: rgba(255,255,255,1);
}
#hbNav .sns_links {
  border-bottom: none;
  padding-bottom: 0;
}
#hbNav .sns_links::after {
  display: none;
}
#hbNav .sns_links h2 {
  margin-bottom: 18px;
}
  @media screen and (max-width: 430px) {
    #hbNav {
      padding: 21.79vw 5.12vw;
    }
    #hbNav .sns_links h2 {
      margin-bottom: 4.61vw;
    }
  }

.hb_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.hb_menu ul {
  display: inline-block;
}
.hb_menu li {
  margin-bottom: 20px;
  text-align: left;
}
.hb_menu li a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  display: inline-block;
  padding-left: 32px;
  background-position: 0 center;
  background-size: 16px auto;
}
.hb_menu li a:hover {
  background: url("../img/ico_arrow02a.svg") 0 center no-repeat;
  background-size: 16px auto;
  color: #000;
}
  @media screen and (max-width: 430px) {
    .hb_menu {
      padding-bottom: 6.66vw;
    }
    .hb_menu li {
      margin-bottom: 5.12vw;
    }
    .hb_menu li a {
      font-size: 5.12vw;
      padding-left: 8.2vw;
      background: url("../img/ico_arrow02a.svg") 0 center no-repeat;
      background-size: 4.1vw auto;
      color: #000;
    }
    .hb_menu li a:hover {
      background: url("../img/ico_arrow02a.svg") 0 center no-repeat;
      background-size: 4.1vw auto;
      color: #000;
    }
  }

/*アニメーション関連*/
.mask-wrap {
  display: table;
  overflow: hidden;
}
.mask-wrap .mask_img {
  display: table;
  position: relative;
  left: -100%;
  overflow: hidden;
}
.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: #F08300;
}
.zoom-in {
  display: inline-block;
}

.fade-in-left,
.fade-in-right,
.zoom-in {
  opacity: 0;
}