@charset "UTF-8";
/**
 * base
 * NOTE:
 * 
 * input要素のスタイルの上書きが難しくなることを避ける目的で
 * input要素をbase.cssにおいて、input[type="submit"]のように書かないでください。
 * [type="submit"] や [type="checkbox"]など属性セレクタのみにしてください。
 * ※この記述ならば優先度が低いためクラス名1つで上書きが可能です。
 * 
 * ラッパー、ボタン、フォームのレスポンシブの調整はvariable.cssで可能です。
 * 
**/

/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit
}
input.btn, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 16px
}
/* iOS */
[type="submit"], [type="button"] {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
[type="submit"]::-webkit-search-decoration, [type="button"]::-webkit-search-decoration {
  display: none
}
[type="submit"]::focus, [type="button"]::focus {
  outline-offset: -2px
}
label {
  cursor: pointer;
}
.select {
  position: relative;
}
.select select {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  border-radius: var(--btn-radius);
  border: 1px solid #e9eced;
  background: #fff;
  line-height: var(--btn-height);
  height: var(--btn-height);
  padding: 0 2.25em 0 1em;
  cursor: pointer;
}
.select select::-ms-expand {
  display: none;
}
.select:has(span) span::after,
.select::after {
  content: '';
  display: block;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0,-50%) rotate(135deg);
}
.select:has(span)::after {
  display: none;
}
@media screen and (max-width: 959px) {
  .select select {
    font-size: 12px;
  }
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  transition: 0.6s;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}


/**
 * 再定義
**/
html {
  font-size: 62.5%;
  scroll-behavior: smooth
}
body {
  color: var(--font-c);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  font-weight: 400;
}
body > .wrap {
  overflow: hidden;
}
table {
  letter-spacing: 0;
  empty-cells: show;
}
tbody {
  position: unset;
}
table tr, table th, table td {
  empty-cells: show;
  transition: 0.6s;
  position: unset;
}
input, select, textarea {
  font-size: 90%;
  background: none;
  transition: 0.6s;
}
[type="checkbox"], [type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 5px 0 0;
}
p {
  line-height: 1.65;
}
a {
  color: var(--text-link-c);
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
a:hover {
  color: var(--text-link-c-hover);
  cursor: pointer;
  opacity: 0.9;
}
a.active {
  color: var(--text-link-c-hover);
}
img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  transition: 0.6s;
}
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* NOTE: ここにpositionは設定しないでください。 */
}

/**
 * font color
**/
.fc__color {
  color: var(--main-c)
}
.fc__red,
.fc__pink {
  color: var(--font-c-red);
}
.fc__blue {
  color: var(--font-c-blue);
}
/**
 * background color
**/
.bg__color {
  background: var(--bg-c-light);
}
.bg__gray {
  background: var(--bg-c-dark);
}


/**
 * display
**/
@media (min-width: 768px) {
  .sp-disp,
  .sp_disp,
  .sp--disp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc-disp,
  .pc_disp,
  .pc--disp {
    display: none !important;
  }
}


/**
 * section
**/
section {
  padding: 40px 0;
}
.sub section {
  border-bottom: 1px solid #e9eced;
}
@media only screen and (max-width: 959px) {
  section {
    padding: 30px 0;
  }
}


/**
 * container
**/
.base_wrap,/* pbase移植用 */
.l-container {
  width: 100%;
  max-width: var(--basewrap-width);
  margin: 0 auto;
  padding: 0 var(--basewrap-padding-inline);
  position: relative;
}


/**
 * display flex
**/
.flex,/* pbase移植用 */
.c-flex {
  display: flex;
}
.flex_wrap,/* pbase移植用 */
.c-flex--wrap {
  flex-wrap: wrap;
}
.c-flex--between {
  justify-content: space-between;
}

.flex_wrap {/* pbase移植用 */
  display: flex;
  justify-content: space-between;
}


/**
 * subpage-head
**/
.subpage-head {
  padding: 40px 0 20px;
}

/**
 * TITLE
**/
.c-head {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}
.c-head--second {
  margin-top: 80px
}
.c-head--center {
  align-items: center;
}
.c-head__logo {
  width: 260px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--font-c);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
.c-head__ttl {
  font-size: 24px;
  font-weight: 700;
}
.c-head__ttl-link {
  display: inline-block;
  letter-spacing: -10px;
  transform: scale(0.6, 1);
}
.c-head__txt {
  margin-top: 15px;
}
@media only screen and (max-width: 959px) {
  .c-head {
    margin-bottom: 30px;
  }
  .c-head--second {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .c-head__ttl {
    font-size: 20px;
  }
}


/**
 * button
**/
.btn {
  max-width: var(--btn-width);
  width: 100%;
  margin: var(--btn-margin-top) 0 0;
  position: relative;
}
.btn a, .btn input, .btn button, .btn > span {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--btn-shadow);
  border-radius: var(--btn-radius);
  border: solid 1px var(--main-c);
  background: var(--main-c);
  color: #fff;
  font-weight: 700;
  width: 100%;
  height: var(--btn-height);
}
.btn a::after {
  content: '';
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  width: 8px;
  height: 8px;
  margin-left: 1ex;
  transform: rotate(45deg);
}
.btn a:hover, .btn input:hover, .btn button:hover, .btn > span:hover {
  border: solid 1px #44bdf2;
  background: #44bdf2;
  color: #fff;
}



.btn--small {
  width: 100%;
  max-width: var(--btn-small-width);
  position: relative;
}
.btn--small a, .btn--small button, .btn--small input, .btn--small > span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--btn-small-radius);
  border: 1px solid var(--main-c);
  background: #fff;
  color: var(--main-c);
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  height: var(--btn-small-height);
  padding: 0 0.5em;
}

/* fav */
.btn--like a, .btn--like a:hover {
  border: 1px solid var(--font-c-red);
  background: #fff;
  color: var(--font-c-red);
}
.btn--like a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--likeoff.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--like a:hover::before, .btn--likeoff a::before {
  background-image: url("../images/icon__btn--like.png");
}

/* chat */
.btn--message a {
  color: var(--main-c);
  background: #fff;
  border: 1px solid var(--main-c)
}
.btn--message a::before {
  content: '';
  display: inline-block;
  background: url("../images/icon__btn--message.png") center center / 100% no-repeat;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}
.btn--message a:hover {
  background: #edf9ff;
}


/** ボタン上部・下部テキスト **/
.btn-over-txt {
  margin-bottom: 20px;
  text-align: center;
}
.btn-under-txt {
  margin-top: 20px;
  text-align: center;
}
.btn-over-txt a,
.btn-under-txt a {
  color: var(--main-c);
}
@media only screen and (max-width: 767px) {}

/** 横並びボタン **/
.box-btn,
.btnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--btn-wrapper-width);
  width: 100%;
  /*margin-inline: auto;*/
  gap: var(--btn-wrapper-gap);
}
.box-btn .btn,
.btnBox .btn {
  width: calc( (100% - var(--btn-wrapper-gap)) / 2 );/* 2col */
  max-width: none;
}
.box-btn .btn--small,
.btnBox .btn--small {
  width: calc( (100% - var(--btn-wrapper-gap)*3) / 4 );/* 4col */
}
@media only screen and (max-width: 767px) {}


/**
 * swipe
**/
@media only screen and (max-width: 767px) {
  .swipe {
    width: auto;
    padding: 10px;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto
  }
}
@media screen and (min-width: 768px) {
  .formset {
    margin-bottom: 30px;
    padding: 40px;
    background: #fff;
    border: 1px solid #e9eced;
    border-radius: var(--btn-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
  }
}
.formset__item {
  width: 100%;
  display: table;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9eced
}
.formset__item:last-child {
  margin-bottom: 0;
  border: none
}
.formset__item:last-child .formset__ttl, .formset__item:last-child .formset__input {
  padding-bottom: 0
}
.formset__ttl {
  width: 280px;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 20px 10px;
  font-weight: 700
}
.formset__must {
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 10px;
  background: #ec5937;
  border-radius: var(--btn-radius);
  float: right;
  display: flex;
  align-items: center;
  justify-content: center
}
.formset__input {
  display: table-cell;
  padding: 0 0 20px 40px
}
.formset__input img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: var(--btn-radius)
}

.formset__input ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.formset__input ul li {
  display: inline-flex;
  margin: 0;
}
.input_select, .formset__input [type="text"], .formset__input [type="number"], .formset__input [type="date"], .formset__input [type="email"], .formset__input [type="password"], textarea {
  width: 100%;
  max-width: 500px;
  height: var(--btn-height);
  padding: 0 1em;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--btn-radius)
}
.formset__input .input_select {
  width: auto;
}
.formset__input textarea {
  max-width: none;
  height: auto;
  padding: 1em;
}
.formset__btn {
  margin-inline: auto;
}
.formset__btn--back {
  margin-top: 10px;
}
.formset__btn--back button {
  color: var(--main-c);
  background: #fff;
  border: 1px solid var(--main-c);
}
.formset__btn--back button:hover {
  background: #edf9ff;
}
.txt-delete {
  top: -3px;
}
@media only screen and (max-width: 959px) {
  .formset__ttl {
    width: 210px
  }
}
@media screen and (max-width: 767px) {
  .formset {
    padding-bottom: 20px;
    border-bottom: 1px solid #e9eced
  }
  .formset__ttl, .formset__input {
    width: 100%;
    display: block;
    padding: 0 0 20px
  }
  .formset__input img {
    width: 120px;
    height: 120px
  }
}
.tableset {
  width: 100%;
  background: #fff
}
@media screen and (min-width: 768px) {
  .tableset {
    margin-bottom: 30px;
    padding: 40px;
    border: 1px solid #e9eced;
    border-radius: var(--btn-radius)
  }
}
.tableset__list {
  width: 100%;
  display: table;
  text-align: left
}
.tableset__list:first-child {
  margin-top: 40px
}
.tableset__list:last-child {
  margin-bottom: 40px
}
.tableset__ttl {
  width: 320px;
  display: table-cell;
  vertical-align: middle;
  padding: 20px 40px;
  font-weight: 700
}
.tableset__must {
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 10px;
  background: #ec5937;
  border-radius: var(--btn-radius);
  float: right;
  display: flex;
  align-items: center;
  justify-content: center
}
.tableset__txt {
  display: table-cell;
  padding: 20px
}
.tableset__txt img {
  width: 180px;
  height: 180px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: var(--btn-radius)
}

.tableset__txt ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.tableset__txt ul li {
  display: inline-flex;
  margin: 0;
}

.tableset__txt .input_select, .tableset__txt [type="text"], .tableset__txt [type="number"], .tableset__txt [type="date"], .tableset__txt [type="email"], .tableset__txt [type="password"], .tableset__txt textarea {
  width: 100%;
  max-width: 500px;
  height: var(--btn-height);
  padding: 0 1em;
  font-size: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--btn-radius)
}
.tableset__txt .input_select {
  width: auto;
}
.tableset__txt textarea {
  height: auto;
  padding: 1em;
}
.tableset__btn {
  margin-inline: auto;
}
@media only screen and (max-width: 959px) {
  .tableset__ttl {
    width: 210px
  }
}
@media screen and (max-width: 767px) {
  .tableset__ttl, .tableset__txt {
    width: 100%;
    display: block;
    padding: 0 0 20px
  }
  .tableset__txt img {
    width: 120px;
    height: 120px
  }
}
/**
 * エフェクト
**/
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1000ms
}
.effect-fade-2 {
  transform: translate(0, 90px)
}
.effect-fade-3 {
  transform: translate(0, 135px)
}
.effect-fade-4 {
  transform: translate(0, 180px)
}
.effect-fade-5 {
  transform: translate(0, 225px)
}
.effect-fade-6 {
  transform: translate(0, 270px)
}
.fade-t {
  transform: translate(0, -45px)
}
.fade-r {
  transform: translate(45px, 0)
}
.fade-l {
  transform: translate(-45px, 0)
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0)
}

/* 忍者ツールズ
--------------------------------- */
@media (max-width: 768px) {
  .ninja_onebutton_output_overlay, .ninja_onebutton_output_overlay.show {
    display: table !important;
    /* NOTE: .showがbootstrapとコンフリクトしているため、!importantが必要です。 */
    width: 100%;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
}
/* NOTE: twitterをXに変更 */
.ninja_onebutton_output_overlay .twitter, .ninja_onebutton_output_responsive .twitter,
.wrap .ninja_onebutton_output_overlay .twitter,
.wrap .ninja_onebutton_output_responsive .twitter,
.ninja_onebutton_output_overlay .twitter,
.ninja_onebutton_output_responsive .twitter {

  /* ninja default style */
  /*background-color: #55acee;*/
  /*color: #ffffff;*/

  background-color: #444 !important;
  color: rgba(0, 0, 0, 0) !important;
}
.wrap .ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.wrap .ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before,
.ninja_onebutton_output_overlay [class*='onebtn_overlay'].twitter::before,
.ninja_onebutton_output_responsive [class*='onebtn_responsive_'].twitter::before {

  /* NOTE: 元のアイコンを非表示 */

  /* ninja default style */
  /*content: "\e606";*/
  /*font-family: 'omatome_icomoon', sans-serif;*/
  /*vertical-align: middle;*/

  display: inline-block;
  /* X logo mark svg */
  /* 
   * NOTE:
   * URLデコードなので直接文言変更でSVGを編集出来ます。
   * 「fill%3D%22white」というキーワードを探して色を変更してください。
   * 「white」の部分に色をCSSの記法で指定できます。
   * 例えば#333などは、%23333です。「%23」が「#」
  */
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%201200%201227%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M714.163%20519.284L1160.89%200H1055.03L667.137%20450.887L357.328%200H0L468.492%20681.821L0%201226.37H105.866L515.491%20750.218L842.672%201226.37H1200L714.137%20519.284H714.163ZM569.165%20687.828L521.697%20619.934L144.011%2079.6944H306.615L611.412%20515.685L658.88%20583.579L1055.08%201150.3H892.476L569.165%20687.854V687.828Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E');
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  color: rgba(0, 0, 0, 0);
  transform: scale(0.9);
}
