@charset "UTF-8";

/**
 * base
 * NOTE:
 *
 * input要素のスタイルの上書きが難しくになることを避ける目的で
 * input要素をbase.cssにおいて、input[type="submit"]などと書かないでください。
 * [type="submit"] や [type="checkbox"]など属性セレクタのみにしてください。
 * ※この記述ならば優先度が低いためクラス名1つで上書きが可能です。
 *
**/
/**
 * 変数
 * NOTE:
**/
:root {
  --site-font-gothic: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;;
  --site-font-serif: YuMincho, serif;
  --site-font-alpha: Arial, Helvetica, sans-serif;
  --site-c-blue: #04045b;/* バリエーション default #04045b, light #8181eb */
  --site-c-red: #ec6e6e;
  --site-c-bg-ui: #f6f6f8;/* バリエーション default #f1f0f0, light #f6f6f8 */
}

/**
 * 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,
[type="submit"],
[type="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: inherit;
  font-family: inherit;
}

/* iOS */
[type="submit"],
[type="button"] {
  border-radius: 0;
  -webkit-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
}

.select {
  position: relative;
}

.select select {
  width: 100%;
  height: 44px;
  line-height: 43px;
  padding: 0 25px 0 15px;
  background: #fff;
  border: 1px solid #d1d0d0;
}

.select select::-ms-expand {
  display: none
}

.select span::after {
  content: '▼';
  margin-top: -11px;
  top: 50%;
  right: 10px;
  position: absolute;
}

@media screen and (max-width: 1200px) {
  .select select {
    padding-left: 5px;
    font-size: 12px
  }
}

label {
  cursor: pointer;
}

/* 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 {
  font-family: var(--site-font-gothic);
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  font-weight: 500;
  color: #444;
}

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
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 1px 5px 0 0
}

p {
  line-height: 1.65
}

a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s
}

a:hover {
  color: var(--site-c-blue);
  cursor: pointer;
  opacity: 0.9
}

a.active {
  color: var(--site-c-blue) !important
}

img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
  transition: 0.6s
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/**
 * font color
**/
.fc__color {
  color: var(--site-c-blue)
}

.fc__pink {
  color: #88d9d5
}

.fc__blue {
  color: #aee5d8
}

/**
 * background color
**/
.bg__color {
  background: #ebf5ff
}

.bg__gray {
  background: #f6f6f8
}

/**
 * display
**/
/** SP以下表示 **/
.sp--disp {
  display: none !important
}

@media only screen and (max-width: 959px) {
  .sp--disp {
    display: block !important
  }
}

/** tablet以下表示 **/
.tl--disp {
  display: none !important
}

@media only screen and (max-width: 1200px) {
  .tl--disp {
    display: block
  }
}

/** tablet以上表示 **/
@media only screen and (max-width: 959px) {
  .pc--disp {
    display: none !important
  }
}

/**
 * section
**/
section {
  padding: 50px 0
}

@media only screen and (max-width: 1200px) {
  section {
    padding: 30px 0
  }
}

/**
 * container
**/
.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative
}

@media only screen and (max-width: 1200px) {
  .l-container {
    max-width: unset;
    padding: 0 40px
  }
}

@media only screen and (max-width: 959px) {
  .l-container {
    width: 750px;
    max-width: 100%;
    padding: 0 15px
  }
}

/**
 * display flex
**/
.c-flex {
  display: flex
}

.c-flex--wrap {
  flex-wrap: wrap
}

.c-flex--between {
  justify-content: space-between
}

/**
 * subpage-head
**/
.subpage-head {
  padding: 60px 0
}

.subpage-head .c-head {
  margin-bottom: 0
}

@media screen and (max-width:767px) {
  .subpage-head {
    padding: 20px 0;
  }
}

/**
 * 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;
  text-align: center
}

.c-head__logo {
  width: 260px;
  margin-bottom: 40px;
  padding: 30px;
  background: #000;
  box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}

.c-head__ttl {
  font-family: var(--site-font-serif);
  font-size: 42px;
}

.c-head__subttl {
  font-weight: 400;
  font-family: "Cinzel", serif;
  font-size: 28px;
  letter-spacing: 0.1ex;
}

.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: 1200px) {
  .c-head {
    margin-bottom: 30px
  }

  .c-head--second {
    margin-top: 50px
  }
}

@media only screen and (max-width: 959px) {
  .c-head__ttl {
    font-size: 24px
  }

  .c-head__subttl {
    font-size: 16px;
  }

  .c-head__txt {
    margin-top: 10px;
    font-size: 14px;
  }
}

/**
 * button
**/
.btn {
  width: 380px;
  margin-top: 40px;
  max-width: 100%;
  font-weight: 700;
  position: relative
}

.btn a,
.btn input,
.btn button,
.btn>span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  background: var(--site-c-blue);
  color: #fff;
  font-size: 18px;
  width: 100%;
  height: 64px;
  cursor: pointer;
}
.btn a::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-left: 1ex;
  display: inline-block;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.btn a:hover,
.btn input:hover,
.btn button:hover,
.btn>span:hover {
  background: #dadae8
}
@media only screen and (max-width: 1200px) {
  .btn {
    margin-top: 30px
  }
}

.btn--small {
  width: 100%;
  max-width: 256px;
  position: relative
}
.btn--small a,
.btn--small button,
.btn--small input,
.btn--small>span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3em;
  border: 1px solid var(--site-c-blue);
  background: #fff;
  color: var(--site-c-blue);
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  height: 44px;
  padding: 0 1ex;
}
@media only screen and (max-width:767px) {
  .btn--small a,
  .btn--small button,
  .btn--small input,
  .btn--small>span {
    height: 32px;
    font-size: 12px;
  }
}

.btn--like a,
.btn--like a:hover {
  border-radius: 3em;
  border: 1px solid var(--site-c-blue);
  background: #fff;
  color: var(--site-c-blue);
  font-weight: 500;
}
.btn--like a::before {
  content: '\f004';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  /*font-weight: 400;*//* outline style */
  font-weight: 900;/* outline style */

  display: inline-block;
  color: #fff;
  -webkit-text-stroke: 1.75px var(--site-c-blue);
  text-stroke: 1.75px var(--site-c-blue);
  transform: scale(1.875);
  position: relative;
  top: 0;
  transition: all 0.2s ease;
  margin-right: 0.5em;
}
@media only screen and (max-width: 767px) {
  .btn--like a::before {
    transform: scale(1.25);
    margin-right: 0.25em;
  }
}
.btn--like a:hover::before,
.btn--likeoff a::before {
  color: var(--site-c-blue);
  font-weight: 900;/* fill style */
  -webkit-text-stroke: 1.75px var(--site-c-blue);
  text-stroke: 1.75px var(--site-c-blue);
}


.btn--fav a {
  border-radius: 3em;
  border: 1px solid var(--site-c-red);
  background: var(--site-c-red);
  color: #fff;
  font-weight: 500;
}
.btn--fav a::before {
  content: '\f005';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 400;/* outline style */
  /*font-weight: 900;*//* fill style */

  display: inline-block;
  transform: scale(2);
  position: relative;
  top: 0;
  transition: all 0.2s ease;
  margin-right: 0.5em;
}
@media only screen and (max-width: 767px) {
  .btn--fav a::before {
    transform: scale(1.25);
    margin-right: 0.25em;
  }
}


.btn--message a {
  border-radius: 3em;
  border: 1px solid var(--site-c-blue);
  background: var(--site-c-blue);
  color: #fff;
  font-weight: 500;
}
.btn--message a::before {
  content: '\f4ad';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-size: 1em;
  font-weight: 400;

  display: inline-block;
  margin-right: 0.5em;
  transform: scale(2);
  position: relative;
  top: 0;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .btn--message a::before {
    margin-right: 0.25em;
    transform: scale(1.25);
  }
}



.btn-under-txt {
  margin-top: 20px;
  text-align: center
}

.btn-under-txt a {
  color: var(--site-c-blue)
}

/** 横並びボタン **/
.btnBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.btnBox .btn {
  width: 49%;
  max-width: none;
  margin: 0
}

.btnBox .btn--small {
  width: 24.5%
}

.btnBox .btn a {
  height: 44px;
  font-size: 15px;
  gap: 4px
}

.btnBox .btn a::after {
  display: none
}

@media only screen and (max-width: 959px) {}

/**
 * swipe
**/
@media only screen and (max-width: 959px) {
  .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: 960px) {
  .formset {
    margin-bottom: 40px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15)
  }
}

.formset__item {
  width: 100%;
  display: table;
  margin-bottom: 20px;
  border-bottom: 1px solid #d1d0d0
}

.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__item_list > ul > li {
  display: inline-flex;
  margin: 0 10px 10px 0;
}
.honbucheck {
  margin: 0 10px 10px 0;
}
@media (max-width: 959px) {

  .formset__item:last-child .formset__ttl {
    padding-bottom: 20px;
  }
}

.formset__ttl {
  display: table-cell;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  width: 170px;
}

.formset__must {
  margin-left: 5px;
  padding: 3.5px 8px;
  color: #fff;
  font-size: 10px;
  background: #da2900;
  display: inline-block;
  vertical-align: bottom;
}

.formset__optional {
  margin-left: 5px;
  padding: 3.5px 8px;
  color: #fff;
  font-size: 10px;
  background:#0000ff;
  display: inline-block;
  vertical-align: bottom;
}


.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: 5px
}

.formset__input ul li {
  display: inline-flex;
  margin: 0 10px 10px 0
}

.formset__input .honbucheck::before {
  content: "✔"; /* チェックマークの文字 */
  color: blue;  /* チェックマークの色 */
  margin-right: 8px; /* テキストとの間隔 */
}

.formset__input .honbucheckNG::before {
  content: "✕"; /* チェックマークの文字 */
  color: red;  /* チェックマークの色 */
  margin-right: 8px; /* テキストとの間隔 */
}

.input_select,
.formset__input [type="text"],
.formset__input [type="number"],
.formset__input [type="email"],
.formset__input [type="password"],
.formset__input [type="date"],
textarea {
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid rgba(68, 68, 68, 0.1);
}

.input_select {
  width: auto
}

textarea {
  max-width: none
}

.formset__btn {
  margin-left: auto;
  margin-right: auto
}

.formset__btn--back {
  margin-top: 10px;
}

.formset__btn--back button {
  color: var(--site-c-blue);
  background: #fff;
  border: 1px solid var(--site-c-blue);
}

.formset__btn--back button:hover {
  background: #edf9ff;
}

.txt-delete {
  top: -3px;
}

@media only screen and (max-width: 1200px) {
  .formset__ttl {
    width: 210px
  }
}

@media screen and (max-width: 959px) {
  .formset {
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d0d0
  }

  .formset__ttl,
  .formset__input {
    width: 100%;
    display: block;
    padding: 0 0 20px
  }

  .formset__input img {
    width: 120px;
    height: 120px
  }
}

.form__compact {
  width: 550px;
  max-width: 100%;
  margin: 0 auto;
}

.form__compact .formset__item {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.form__compact .formset__ttl,
.form__compact .formset__input {
  width: 100%;
  padding: 0
}

.form__compact .input_select,
.form__compact .formset__input [type="text"],
.form__compact .formset__input [type="number"],
.form__compact .formset__input [type="email"],
.form__compact .formset__input [type="password"],
.form__compact .formset__input [type="date"],
.form__compact textarea {
  max-width: unset;
}

@media screen and (max-width: 959px) {
  .form__compact .formset {
    padding: 0;
    border: none
  }
}

.tableset {
  width: 100%;
  background: #fff
}

@media screen and (min-width: 960px) {
  .tableset {
    margin-bottom: 30px;
    padding: 40px;
    border: 1px solid #d1d0d0;
    border-radius: 5px
  }
}

.tableset__list {
  width: 100%;
  display: table;
  text-align: left
}

.tableset__list:last-child {
  margin-bottom: 40px
}

.tableset__ttl {
  width: 240px;
  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: #da2900;
  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: 5px
}

.tableset__txt ul li {
  display: inline-flex;
  margin: 0 10px 10px 0
}

.input_select,
.tableset__txt [type="text"],
.tableset__txt [type="number"],
.tableset__txt [type="email"],
.tableset__txt [type="password"],
.tableset__txt [type="date"],
textarea {
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid rgba(68, 68, 68, 0.1);
}

.input_select {
  width: auto
}

textarea {
  max-width: none
}

.tableset__btn {
  margin-left: auto;
  margin-right: auto
}
.search_area_all,
.search_area_region {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 .5em;
}
.search_area_all {
  height: 1em;
}
.search_area_region {
  background-color: #eee;
  height: 2.2em;
  width: 100% !important;
}
.search_area_list {
  padding: 0 2em;
}
@media only screen and (max-width: 1200px) {
  .tableset__ttl {
    width: 210px
  }
}

@media screen and (max-width: 959px) {

  .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, 44px);
  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, -44px)
}

.fade-b {
  transform: translate(0, 44px)
}

.fade-r {
  transform: translate(44px, 0)
}

.fade-l {
  transform: translate(-44px, 0)
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0)
}
.mt10 {margin-top: 10px;}
.search__item > input {
  background-color: #fff;
  padding: .8em;
  border-radius: 4px;
  border: solid 1px #04045b;
}
.formset__box01 {
  background-color: #f6f6f8;
  padding: 1.5rem;
  border-bottom: none;
  margin-bottom: 1rem;
  border-radius: .2rem;
}
.formset__box01 > p.sindan_txt {
  font-weight: bold;
  font-size: 16px;
  padding: .4rem;
  margin: -1.5rem 0 1.5rem -1.5rem;
  background-color: #dadae7;
  width: 12em;
  text-align: center;
}
.formset__box01 > p.honbucheck {
  font-weight: normal;
}
.sindan_list > li {
  padding: 1rem 1.5rem 1rem 0;
  border-bottom: solid 1px #d1d0d0;
}
.sindan_list > li:last-child {
  border-bottom: none;
}
.sindan_list > li:first-child {
  border-bottom: none;
  padding: .5rem 1.5rem 0 0;
}
.border_none {
  border-bottom: none;
  margin-bottom: 0;
}
.small_txt {
  font-size: 15px;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  .outline-inner-cts__table .formset__box01 {
    margin: 1rem -1.5rem 0;
  }
}