@charset "UTF-8";
/*--------------------------------------------------------
Reset
--------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem; /*16px*/
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
}

/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
a img {
  border-style: none;
}

img {
  vertical-align: bottom; /* 一番上の画像だけ注意。隙間が空く可能性あり */
  line-height: 0 !important;
  /* display:block; */
}

button {
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
button:focus {
  outline: none;
}
button:hover {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------
定数（基本的に、全サイト共通に使えるもの）
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

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

.r {
  text-align: right !important;
}

.l {
  text-align: left !important;
}

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

.block {
  display: block;
}

.vertical-top {
  vertical-align: top;
}

.vertical-middle {
  vertical-align: middle;
}

.pointer {
  cursor: pointer;
}

.br::before {
  content: "\a";
  white-space: pre;
}

.margin_b100 {
  margin-bottom: 100px;
}

.margin_b90 {
  margin-bottom: 90px;
}

.margin_b80 {
  margin-bottom: 80px;
}

.margin_b70 {
  margin-bottom: 70px;
}

.margin_b60 {
  margin-bottom: 60px;
}

.margin_b50 {
  margin-bottom: 50px;
}

.margin_b40 {
  margin-bottom: 40px;
}

.margin_b30 {
  margin-bottom: 30px;
}

.margin_b20 {
  margin-bottom: 20px;
}

.margin_b10 {
  margin-bottom: 10px;
}

.padding_t100 {
  padding-top: 100px;
}

.padding_t90 {
  padding-top: 90px;
}

.padding_t80 {
  padding-top: 80px;
}

.padding_t70 {
  padding-top: 70px;
}

.padding_t60 {
  padding-top: 60px;
}

.padding_t50 {
  padding-top: 50px;
}

.padding_t40 {
  padding-top: 40px;
}

.padding_t30 {
  padding-top: 30px;
}

.padding_t20 {
  padding-top: 20px;
}

.padding_t10 {
  padding-top: 10px;
}

@media screen and (max-width: 900px) {
  .margin_b100 {
    margin-bottom: 11%;
  }
  .margin_b90 {
    margin-bottom: 10%;
  }
  .margin_b80 {
    margin-bottom: 9%;
  }
  .margin_b70 {
    margin-bottom: 8%;
  }
  .margin_b60 {
    margin-bottom: 7%;
  }
  .margin_b50 {
    margin-bottom: 6%;
  }
  .margin_b40 {
    margin-bottom: 5%;
  }
  .margin_b30 {
    margin-bottom: 4%;
  }
  .margin_b20 {
    margin-bottom: 3%;
  }
  .margin_b10 {
    margin-bottom: 2%;
  }
  .padding_t100 {
    padding-top: 11%;
  }
  .padding_t90 {
    padding-top: 10%;
  }
  .padding_t80 {
    padding-top: 9%;
  }
  .padding_t70 {
    padding-top: 8%;
  }
  .padding_t60 {
    padding-top: 7%;
  }
  .padding_t50 {
    padding-top: 6%;
  }
  .padding_t40 {
    padding-top: 5%;
  }
  .padding_t30 {
    padding-top: 4%;
  }
  .padding_t20 {
    padding-top: 3%;
  }
  .padding_t10 {
    padding-top: 2%;
  }
}
.visible1800, .visible1000, .visible900, .visible750, .visible600, .visible500, .visible400, .visible320 {
  display: none;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*重なりの優先度*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*要素固定*/
.fixed {
  position: fixed;
  z-index: 999;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z7 {
  z-index: 7;
}

.z8 {
  z-index: 8;
}

.z9 {
  z-index: 9;
}

.z10 {
  z-index: 10;
}

/*横幅*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.disabled {
  pointer-events: none; /*リンクを無効にする*/
}

.cp {
  font-family: Verdana, "Droid Sans", "メイリオ", sans-serif;
}

.vh100 {
  height: 100%;
  min-height: 100vh;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.fullscreen {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contents {
  width: 900px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.contents1000 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.img_center {
  margin-left: -450px;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.red {
  color: #f00;
}

.gray {
  color: #555;
}

.orange {
  color: #f6ab00;
}

.light_orange {
  color: #feeab9;
}

.brown {
  color: #572e1e;
}

.bold {
  font-weight: bold;
}

.bg_black {
  background-color: #333;
}
.bg_white {
  background-color: #fff;
}
.bg_orange {
  background-color: #f6ab00;
}
.bg_light_orange {
  background-color: #feeab9;
}
.bg_clear {
  background-color: transparent;
}

/*--------------------------------------------------------
animation
--------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***********
* pickup *
************/
@-webkit-keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pickup {
  display: block;
  -webkit-animation-name: pickup;
          animation-name: pickup;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/*********************
* move-y
*********************/
@-webkit-keyframes move-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2%);
  }
}
@keyframes move-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2%);
  }
}
.move-y {
  -webkit-animation: move-y 3.5s infinite;
          animation: move-y 3.5s infinite;
}

/*********************
* rubberBand
*********************/
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand.go {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  text-align: center;
  background-image: url(../img/sfo_bg_bottom02.png);
  background-size: contain;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}

.footer {
  /* position: absolute; */
  bottom: 0.2%;
  left: 0;
  right: 0;
  z-index: 2;
}
.bg_foot {
  background-image: url(../img/sfo_bg_bottom02.png);
  background-size: contain;
}
.copyright {
  display: block;
  justify-content: center;
  align-items: center;
  padding: 7px 3%;
}

.copyright,
.copyright a {
  font-size: 1.8rem;
  line-height: 2;
  color: #f6ab00;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.sfo_11_1 {
  top: 0%;
}
.sfo_11_2 {
  bottom: 5%;
}
.sfo_20_1_btn {
  top: 44%;
}
.sfo_22 {
  top: 26%;
}
.sfo_btn {
  bottom: 3.4%;
}

/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --プラポリ-- */
.privacy_wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.privacy_title {
  font-size: clamp(3rem , calc(1.2666666667rem + 0.0481481481 * 100vw) , 5.6rem);
}

.privacy_head {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.8rem , calc(1rem + 0.0222222222 * 100vw) , 3rem);
}
.privacy_head_radius {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  padding: 0.5em 2em;
}

.privacy_contents {
  border-radius: 20px;
  padding: 10px 20px;
  font-size: clamp(1.4rem , calc(1.2666666667rem + 0.0037037037 * 100vw) , 1.6rem);
  line-height: 1.8;
}
.privacy_contents__border {
  border: 5px solid #000;
}
.privacy_contents p {
  margin-bottom: 2rem;
}

.privacy_subtitle {
  font-size: clamp(1.6rem , calc(1.3333333333rem + 0.0074074074 * 100vw) , 2rem);
}

.back_btn {
  display: inline-block;
  padding: 0.3em 1.5em;
  font-size: clamp(2rem , calc(1.3333333333rem + 0.0185185185 * 100vw) , 3rem);
  font-weight: bold;
  color: #fff;
  background-color: #572e1e;
  border-radius: 10px;
}

/* --プラポリ-end-- */
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*# sourceMappingURL=base.css.map */

/* -------------------- */

.accbox {
  padding: 2em 2%;
  width: 100%;
  /* background-color: #ffffe6; */
}
.accshow h3 {
text-align: left;
padding-left:0.5%;
margin:2% 2% 0;

}
.red{
  color: red;
}
.accshow p {
  padding:2%;

  text-align: justify;
  text-justify: inter-ideograph;

  font-feature-settings: "palt";
}

.pdf_box_margin {
margin:3% auto;
}
.pdf_box {
padding:2%;
background-color: #263047;
}
a.pdf_box {
color:#FFF;
}

.accbox label {
  display: block;
  padding : 11px 12px;
  color :white;
  background-color: #78c846;
  font-weight: bold;
  /* background :#263047; */
  cursor :pointer;
  transition: all 0.5s;
  border-radius: 0.7rem;
}



#label1_txt {
display:none;
background: #fffeea;
color: #572e1e;
border: solid 1px #78c846;
word-break: break-all;
}
#label2_txt {
display:none;
background: white;
border-top: 4px solid #cccccc;
border-left: 4px solid #cccccc;
}


#label3_txt {
display:none;
background: white;
border-top: 4px solid #cccccc;
border-left: 4px solid #cccccc;
}

li {
list-style: disc;
margin-left: 20px;
padding: 0;
}
.bg-yellow {
  background-color: #fdf0b1;
  margin: 2% 2% -2% 2%;
  padding: 1%;
}
.sfo_bg_bottom01 img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像比率を維持しつつ隙間をなくす */
}
.bg_foot a {
  color: #572e1e !important;
}