@charset "UTF-8";
/* 共通 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #5d3500;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin: 0;
  width: 100vw;
  overflow: auto;
}

main {
  padding-top: 100px;
}
@media screen and (max-width: 540px) {
  main {
    padding-top: 60px;
  }
}

.content_inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .content_inner {
    width: 90%;
  }
}

img {
  width: 100%;
  height: auto;
}

.text_center {
  text-align: center;
}

.mg_auto {
  margin: auto;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .mb_20 {
    margin-bottom: 10px;
  }
}

.mb_30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 820px) {
  .mb_30 {
    margin-bottom: 15px;
  }
}

.mb_40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 820px) {
  .mb_40 {
    margin-bottom: 20px;
  }
}

.mb_50 {
  margin-bottom: 50px;
}
@media screen and (max-width: 820px) {
  .mb_50 {
    margin-bottom: 25px;
  }
}

.mb_60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .mb_60 {
    margin-bottom: 30px;
  }
}

.mb_70 {
  margin-bottom: 70px;
}
@media screen and (max-width: 820px) {
  .mb_70 {
    margin-bottom: 35px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 820px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 820px) {
  .mb_100 {
    margin-bottom: 50px;
  }
}

.mb_140 {
  margin-bottom: 140px;
}
@media screen and (max-width: 820px) {
  .mb_140 {
    margin-bottom: 70px;
  }
}

.p_bold {
  font-weight: bold;
}

.p18 {
  font-size: 18px;
}
@media screen and (max-width: 540px) {
  .p18 {
    font-size: 16px;
  }
}

.p22 {
  font-size: 22px;
}
@media screen and (max-width: 540px) {
  .p22 {
    font-size: 20px;
  }
}

.p24 {
  font-size: 24px;
}
@media screen and (max-width: 540px) {
  .p24 {
    font-size: 22px;
  }
}

.p36 {
  font-size: 36px;
}
@media screen and (max-width: 540px) {
  .p36 {
    font-size: 30px;
  }
}

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

.tab_display {
  display: none;
}
@media screen and (max-width: 820px) {
  .tab_display {
    display: block;
  }
}

.sp_display {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp_display {
    display: block;
  }
}

.to_top {
  width: 76px;
  position: fixed;
  bottom: 50px;
  right: 50px;
}
@media screen and (max-width: 540px) {
  .to_top {
    width: 42px;
    position: fixed;
    bottom: 25px;
    right: 25px;
  }
}

/* ------- 404 ----------- */
.s_error {
  min-height: 500px;
}
.s_error p {
  margin-top: 50px;
  text-align: center;
}

/* ------- タイトル ----------- */
/* ------- 共通 ----------- */
.term_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
.term_box .term_item1,
.term_box .term_item2 {
  width: 48%;
  border-radius: 25px;
  font-weight: bold;
}
.term_box .term_item1 .term_ttl,
.term_box .term_item2 .term_ttl {
  font-size: 32px;
  color: #fff;
  text-align: center;
  line-height: 64px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 36px;
}
.term_box .term_item1 .term_text,
.term_box .term_item2 .term_text {
  margin-bottom: 45px;
}
.term_box .term_item1 .term_text p,
.term_box .term_item2 .term_text p {
  font-size: 35px;
  color: #5d3500;
  margin-bottom: 20px;
  text-align: center;
}
.term_box .term_item1 .term_text p span,
.term_box .term_item2 .term_text p span {
  font-size: 53px;
}
.term_box .term_item1 .term_text .arrow,
.term_box .term_item2 .term_text .arrow {
  width: 26px;
  height: auto;
  margin: auto;
  margin-bottom: 20px;
}
.term_box .term_item1 {
  border: 6px solid #00aa96;
}
.term_box .term_item1 .term_ttl {
  background-color: #00aa96;
}
.term_box .term_item2 {
  border: 6px solid #ff8e37;
}
.term_box .term_item2 .term_ttl {
  background-color: #ff8e37;
}
@media screen and (max-width: 540px) {
  .term_box {
    display: block;
    margin-bottom: 60px;
  }
  .term_box .term_item1,
  .term_box .term_item2 {
    width: 90%;
    margin: auto;
    border-radius: 20px;
    margin-bottom: 30px;
  }
  .term_box .term_item1 .term_ttl,
  .term_box .term_item2 .term_ttl {
    font-size: 32px;
    color: #fff;
    text-align: center;
    line-height: 64px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 36px;
  }
  .term_box .term_item1 .term_text,
  .term_box .term_item2 .term_text {
    margin-bottom: 45px;
  }
  .term_box .term_item1 .term_text p,
  .term_box .term_item2 .term_text p {
    line-height: 60px;
    font-size: 35px;
    color: #5d3500;
    margin-bottom: 20px;
    text-align: center;
  }
  .term_box .term_item1 .term_text p span,
  .term_box .term_item2 .term_text p span {
    font-size: 53px;
  }
  .term_box .term_item1 .term_text .arrow,
  .term_box .term_item2 .term_text .arrow {
    width: 26px;
    height: auto;
    margin: auto;
    margin-bottom: 10px;
  }
  .term_box .term_item1 {
    border: 6px solid #00aa96;
  }
  .term_box .term_item1 .term_ttl {
    background-color: #00aa96;
  }
  .term_box .term_item2 {
    border: 6px solid #ff8e37;
  }
  .term_box .term_item2 .term_ttl {
    background-color: #ff8e37;
  }
}

/* ------- btn -------- */
.btn {
  position: relative;
  text-decoration: none;
  padding: 16px 32px 16px 16px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 25px;
  z-index: 2;
}
.btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/arrow_g.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media screen and (max-width: 540px) {
  .btn {
    padding: 10px 20px 10px 10px;
    font-size: 18px;
    border-radius: 20px;
    z-index: 2;
  }
  .btn::after {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../images/arrow_g.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 4;
  }
}

.btn_s {
  color: #5d3500;
  background-color: #fff;
  border-bottom: solid 3px #00bea0;
}
.btn_s::after {
  background-image: url(../images/arrow_g.png);
}

.btn_l {
  text-align: center;
  display: block;
  width: 660px;
  padding: 38px 0;
  margin: auto;
  font-size: 24px;
}
.btn_l::after {
  width: 15px;
  height: 17px;
  right: 20px;
}
@media screen and (max-width: 540px) {
  .btn_l {
    text-align: center;
    display: block;
    width: 90%;
    padding: 30px 0;
    margin: auto;
    font-size: 24px;
  }
  .btn_l::after {
    width: 15px;
    height: 17px;
    right: 10px;
  }
}

.btn_white {
  background-color: #fff;
  color: #5d3500;
  border-bottom: solid 5px #008878;
}
.btn_white::after {
  background-image: url(../images/arrow_g.png);
}

.btn_green {
  color: #fff;
  background-color: #00bea0;
  border-bottom: solid 5px #008878;
}
.btn_green::after {
  background-image: url(../images/arrow_w.png);
}

.btn_orange {
  color: #fff;
  background-color: #ff8e37;
  border-bottom: solid 5px #e16200;
}
.btn_orange::after {
  background-image: url(../images/arrow_w.png);
}

/* ------ リンクリスト ------ */
.maru_ul {
  list-style: none;
  padding-left: 20px;
}
.maru_ul li {
  position: relative;
}
.maru_ul li::before {
  position: absolute;
  left: -20px;
}
.maru_ul .maru_li1::before {
  content: "①";
}
.maru_ul .maru_li2::before {
  content: "②";
}
.maru_ul .maru_li3::before {
  content: "③";
}
.maru_ul .maru_li4::before {
  content: "④";
}

/* 投稿一覧 */
.archive_inner {
  width: 800px;
  margin: auto;
  min-height: 400px;
}
@media screen and (max-width: 540px) {
  .archive_inner {
    width: 90%;
  }
}

.archive_title h2 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 38px;
  line-height: 1.5em;
}

.archive_news {
  padding: 50px 0;
  margin-bottom: 100px;
}
.archive_news dl {
  margin-top: 60px;
  margin-bottom: 45px;
  border-bottom: solid 1px #5d3500;
}
.archive_news dl a {
  text-decoration: none;
  color: #5d3500;
  display: block;
}
.archive_news dl a:hover {
  background-color: #00aa96;
  color: #fff;
}
.archive_news dl dt,
.archive_news dl dd {
  border-top: solid 1px #5d3500;
}
.archive_news dl dt {
  clear: left;
  float: left;
  width: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 50px;
  line-height: 1.5em;
}
.archive_news dl dd {
  width: 80%;
  /* box-sizing: border-box; */
  margin-left: 20%;
  padding: 30px 0;
  line-height: 1.5em;
}
@media screen and (max-width: 540px) {
  .archive_news {
    padding: 40px 0;
  }
  .archive_news h2 {
    margin-bottom: 40px;
    text-align: center;
    color: #5d3500;
    font-size: 32px;
  }
  .archive_news dl {
    margin-top: 60px;
    margin-bottom: 45px;
    border-bottom: solid 1px #5d3500;
  }
  .archive_news dl a {
    text-decoration: none;
    color: #5d3500;
    display: block;
  }
  .archive_news dl a:hover {
    background-color: #5d3500;
    color: #5d3500;
  }
  .archive_news dl dt,
  .archive_news dl dd {
    border-top: solid 1px #5d3500;
  }
  .archive_news dl dt {
    clear: left;
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    line-height: 1.5em;
  }
  .archive_news dl dd {
    width: 100%;
    /* box-sizing: border-box; */
    margin-left: 10px;
    padding: 10px;
    line-height: 1.5em;
  }
}

.single_inner {
  width: 650px;
  margin: auto;
  margin-bottom: 90px;
}
@media screen and (max-width: 540px) {
  .single_inner {
    width: 90%;
  }
}

.single_title {
  border-bottom: 2px solid #5d3500;
  margin-bottom: 40px;
}
.single_title h2 {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1.5em;
}
.single_title time {
  font-size: 14px;
}
@media screen and (max-width: 540px) {
  .single_title h2 {
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1.5em;
  }
  .single_title time {
    font-size: 14px;
  }
}

.single_content {
  min-height: 400px;
  margin-bottom: 70px;
}

header {
  width: 100%;
  position: fixed;
  min-width: 1080px;
  padding: 0 40px;
  background-color: #008878;
  z-index: 999;
}

.header_inner {
  width: 100%;
  height: 100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_inner h1 {
  color: #fff;
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_inner h1 a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .header_inner {
    width: 100%;
    height: 60px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_inner h1 {
    font-size: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header_inner .global_nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_inner .global_nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header_inner .global_nav ul li {
  padding: 0 13px;
}
.header_inner .global_nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.3;
  transition: all 0.3;
}
.header_inner .global_nav ul li a:hover {
  -webkit-transition: all 0.3;
  transition: all 0.3;
  opacity: 0.6;
}
@media screen and (max-width: 540px) {
  .header_inner .global_nav {
    display: none;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 820px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 999;
    right: 20px;
    top: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp_global_nav {
  display: none;
  height: 100vh;
  overflow: auto;
  position: fixed;
  background: #00aa96;
  z-index: 555;
  top: 0;
  right: 0;
  color: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  padding: 60px 5%;
  font-size: 16px;
}
.sp_global_nav ul {
  list-style: none;
  margin-bottom: 50px;
}
.sp_global_nav ul li {
  padding: 15px 0;
  border-bottom: #fff solid 1px;
}
.sp_global_nav ul li:nth-child(1) {
  border-top: #fff solid 1px;
}
.sp_global_nav ul li a {
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .sp_global_nav {
    display: block;
  }
}

.sp_header_logo {
  width: 50%;
  height: auto;
}
.sp_header_logo h1 {
  margin-bottom: 20px;
}
.sp_header_logo img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 540px) {
  .sp_header_logo img {
    width: 100%;
  }
}

.sp_global_nav.active {
  overflow: auto;
  z-index: 555;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

footer {
  background-color: #dffffb;
}
footer .f_up_line {
  background-color: #00bea0;
  font-size: 32px;
  line-height: 82px;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}
footer .f_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
footer .f_flex .f_name {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  padding: 0 10px;
}
footer .f_flex .f_tel {
  font-size: 64px;
  font-weight: bold;
}
footer .f_flex .f_tel span {
  font-size: 34px;
}
footer .f_flex .f_tel a {
  text-decoration: none;
  color: #5d3500;
}
footer .f_time {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
}
footer .f_bottom_line {
  background-color: #00bea0;
  padding: 50px 0 30px;
}
footer .f_bottom_line .content_inner {
  position: relative;
}
footer .f_bottom_line .f_icon01 {
  width: 140px;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer .f_bottom_line .f_icon02 {
  width: 190px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .f_bottom_line a {
  text-decoration: none;
  color: #5d3500;
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
footer .f_bottom_line p {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 540px) {
  footer .f_last {
    padding-bottom: 150px;
  }
  footer .f_flex {
    display: block;
    margin-bottom: 15px;
  }
  footer .f_flex .f_name {
    font-size: 22px;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  footer .f_flex .f_tel {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
  }
  footer .f_flex .f_tel span {
    font-size: 24px;
  }
  footer .f_bottom_line .f_icon01 {
    width: 100px;
    height: auto;
    position: absolute;
    top: -150px;
    left: 0;
  }
  footer .f_bottom_line .f_icon02 {
    width: 140px;
    height: auto;
    position: absolute;
    top: -150px;
    right: 0;
  }
  footer .f_bottom_line a {
    margin-bottom: 30px;
  }
}

/* TOP */
.top_hero {
  margin-bottom: 60px;
}

.news {
  background-color: #00aa96;
  padding: 50px 0;
  margin-bottom: 100px;
}
.news h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  font-size: 32px;
}
.news dl {
  margin-top: 60px;
  margin-bottom: 45px;
  border-bottom: solid 1px #fff;
}
.news dl a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.news dl a:hover {
  background-color: #fff;
  color: #5d3500;
}
.news dl dt,
.news dl dd {
  border-top: solid 1px #fff;
}
.news dl dt {
  clear: left;
  float: left;
  width: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 50px;
  line-height: 1.5em;
}
.news dl dd {
  width: 80%;
  /* box-sizing: border-box; */
  margin-left: 20%;
  padding: 30px 0;
  line-height: 1.5em;
}
@media screen and (max-width: 540px) {
  .news {
    padding: 40px 0;
  }
  .news h2 {
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
    font-size: 32px;
  }
  .news dl {
    margin-top: 60px;
    margin-bottom: 45px;
    border-bottom: solid 1px #fff;
  }
  .news dl a {
    text-decoration: none;
    color: #fff;
    display: block;
  }
  .news dl a:hover {
    background-color: #fff;
    color: #5d3500;
  }
  .news dl dt,
  .news dl dd {
    border-top: solid 1px #fff;
  }
  .news dl dt {
    clear: left;
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px;
    line-height: 1.5em;
  }
  .news dl dd {
    width: 100%;
    /* box-sizing: border-box; */
    margin-left: 10px;
    padding: 10px;
    line-height: 1.5em;
  }
}

.conditions {
  margin-bottom: 100px;
}

.conditions_text {
  width: 660px;
  margin: auto;
  margin-bottom: 48px;
}
.conditions_text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
}
.conditions_text hr {
  border: none;
  height: 2px;
  background-color: #5d3500;
  margin-bottom: 20px;
}
.conditions_text p {
  font-size: 18px;
  line-height: 1.5em;
}
@media screen and (max-width: 540px) {
  .conditions_text {
    width: 80%;
    margin: auto;
    margin-bottom: 48px;
  }
  .conditions_text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
  .conditions_text hr {
    border: none;
    height: 2px;
    background-color: #5d3500;
    margin-bottom: 20px;
  }
  .conditions_text p {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.jizen {
  position: relative;
  border: 3px solid #ff8e37;
  border-radius: 25px;
  padding: 50px 0;
  background-color: #fff4ec;
  margin-bottom: 90px;
}

.jizen_content {
  width: 660px;
  margin: auto;
  text-align: center;
}
.jizen_content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 0;
}
.jizen_content hr {
  border: none;
  height: 2px;
  background-color: #5d3500;
  margin-bottom: 20px;
}
.jizen_content p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.jizen_content p:nth-of-type(1) {
  font-size: 20px;
  letter-spacing: normal;
}
.jizen_content .jizen_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.jizen_content .jizen_flex button {
  padding: 9px 20px;
  border-radius: 10px;
  border: 2px solid #5d3500;
  background-color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-right: 15px;
}
.jizen_content .jizen_flex p {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}
.jizen_content .jizen_flex p span {
  font-size: 36px;
}
.jizen_content .jizen_icon {
  position: absolute;
  width: 130px;
  right: 10px;
  bottom: -10px;
}
@media screen and (max-width: 540px) {
  .jizen_content {
    width: 95%;
  }
  .jizen_content h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .jizen_content p {
    line-height: 1.5em;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .jizen_content p:nth-of-type(1) {
    font-size: 20px;
    letter-spacing: normal;
  }
  .jizen_content .jizen_flex {
    display: block;
    margin-bottom: 30px;
  }
  .jizen_content .jizen_flex button {
    padding: 9px 20px;
    border-radius: 10px;
    border: 2px solid #5d3500;
    background-color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-right: 15px;
  }
  .jizen_content .jizen_flex p {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0;
  }
  .jizen_content .jizen_flex p span {
    font-size: 36px;
  }
  .jizen_content .btn_c {
    margin-bottom: 100px;
  }
  .jizen_content .jizen_icon {
    position: absolute;
    width: 130px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: -50px;
  }
}

/* gift */
.gift {
  padding-top: 70px;
  line-height: 1.5em;
}
.gift h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}
.gift h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.gift hr {
  border: none;
  height: 2px;
  background-color: #5d3500;
  margin-bottom: 30px;
}
.gift h4 {
  font-size: 28px;
  font-weight: bold;
}
.gift p {
  margin: 0;
  margin-bottom: 5px;
  font-size: 18px;
}
.gift p a {
  color: #00aa96;
}
.gift .p36 {
  font-size: 30px;
}
.gift .p28 {
  font-size: 24px;
}
.gift .p24 {
  font-size: 20px;
}
.gift .p22 {
  font-size: 20px;
}
.gift .p18 {
  font-size: 18px;
}
.gift .p16 {
  font-size: 16px;
}
.gift .p_bold {
  font-weight: bold;
}
.gift .mb_30 {
  margin-bottom: 30px;
}
.gift .mb_10 {
  margin-bottom: 10px;
}
.gift .gift_content {
  margin-bottom: 70px;
}
@media screen and (max-width: 540px) {
  .gift .gift_content {
    overflow: scroll;
  }
}
.gift button {
  width: 170px;
  text-align: center;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid #5d3500;
  background-color: #fff;
  color: #5d3500;
}

.gift_imgflex {
  width: 760px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gift_imgflex .gift_img {
  width: 48%;
  height: auto;
}

.gift_ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
.gift_ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 80px;
  background-color: #dffffb;
}
.gift_ul li p {
  text-align: center;
}
.gift_ul li::after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  pointer-events: none;
  content: "";
  border: 2px solid #00aa96;
  z-index: 5;
}
@media screen and (max-width: 540px) {
  .gift_ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gift_tb {
  width: 100%;
  border: 2px solid #00aa96;
  border-collapse: collapse;
}
.gift_tb th {
  width: 50%;
  background-color: #dffffb;
  padding: 15px;
  border: 2px solid #00aa96;
}
.gift_tb td {
  width: 50%;
  border: 2px solid #00aa96;
  padding: 20px;
}
@media screen and (max-width: 540px) {
  .gift_tb {
    width: 500px;
  }
  .gift_tb th {
    width: 250px;
  }
  .gift_tb td {
    width: 250px;
  }
}

.kome_ul {
  list-style: none;
  padding-left: 40px;
}
.kome_ul li {
  position: relative;
}
.kome_ul li::before {
  position: absolute;
  left: -40px;
}
.kome_ul .kome_li1::before {
  content: "※1.";
}
.kome_ul .kome_li2::before {
  content: "※2.";
}
.kome_ul .kome_li3::before {
  content: "※3.";
}
.kome_ul .kome_li4::before {
  content: "※4.";
}
.kome_ul .kome_li5::before {
  content: "※5.";
}
.kome_ul .kome_li6::before {
  content: "※6.";
}

.tyui_ul,
.privacy_ul {
  list-style: none;
  padding-left: 30px;
}
.tyui_ul li,
.privacy_ul li {
  position: relative;
}
.tyui_ul li::before,
.privacy_ul li::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #5d3500;
  border-radius: 50%;
  display: block;
  left: -30px;
  top: 3px;
}

/* privacy */
.privacy {
  width: 660px;
  margin: auto;
  padding-top: 70px;
  line-height: 1.5em;
}
.privacy h2 {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}
.privacy h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.privacy hr {
  border: none;
  height: 2px;
  background-color: #5d3500;
  margin-bottom: 30px;
}
.privacy h4 {
  font-size: 32px;
  font-weight: bold;
}
.privacy p {
  margin: 0;
  margin-bottom: 5px;
  font-size: 16px;
}
.privacy p a {
  color: #00aa96;
}
.privacy .mb_30 {
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .privacy {
    width: 90%;
    margin: auto;
    padding-top: 70px;
    line-height: 1.5em;
  }
  .privacy h2 {
    font-size: 30px;
  }
  .privacy h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5em;
  }
}

.privacy_content {
  margin-bottom: 60px;
}

.privacy_ul {
  list-style: none;
  padding-left: 30px;
}
.privacy_ul li {
  position: relative;
}
.privacy_ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #5d3500;
  border-radius: 50%;
  display: block;
  left: -25px;
  top: 6px;
}

/* contact */
.contact {
  width: 660px;
}
.contact .contact_content {
  margin-bottom: 50px;
}
.contact h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 70px;
}
.contact h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact hr {
  border: none;
  height: 2px;
  background-color: #5d3500;
  margin-bottom: 30px;
}
.contact h4 {
  font-size: 24px;
}
.contact p {
  font-size: 18px;
  line-height: 1.5em;
}
.contact button {
  width: 170px;
  text-align: center;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid #5d3500;
  background-color: #fff;
  color: #5d3500;
}
@media screen and (max-width: 540px) {
  .contact {
    width: 90%;
  }
  .contact .contact_content {
    margin-bottom: 50px;
  }
  .contact h2 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .contact h3 {
    font-size: 24px;
  }
  .contact h4 {
    font-size: 20px;
  }
  .contact p {
    font-size: 16px;
  }
}

.contact_form dl {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact_form dl dt span {
  background-color: #ff4848;
  color: #fff;
  font-size: 14px;
  margin-left: 10px;
  border-radius: 6px;
  padding: 2px 6px;
}
.contact_form dl dd {
  padding-top: 10px;
  margin: 0;
}
.contact_form .dl_flex {
  display: table;
}
.contact_form .dd_item {
  font-size: 20px;
  display: table-cell;
}
.contact_form .dd_item:nth-of-type(2) {
  padding-left: 20px;
}
.contact_form input[type=text],
.contact_form input[type=tel],
.contact_form textarea,
.contact_form select {
  padding: 15px;
  font-size: 18px;
  border: solid 1px #bebebe;
  border-radius: 10px;
}
.contact_form .s_dd {
  width: 140px;
}
.contact_form .ss_dd {
  width: 330px;
}
.contact_form .btn_submit {
  margin-top: 50px;
}
.contact_form .btn_return {
  text-align: center;
  margin-top: 20px;
}
.contact_form .btn_s {
  padding: 10px 20px;
}
@media screen and (max-width: 540px) {
  .contact_form dl {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .contact_form dl dt span {
    font-size: 13px;
    margin-left: 6px;
    border-radius: 4px;
    padding: 2px 6px;
  }
  .contact_form dl dd {
    padding-top: 10px;
    margin: 0;
  }
  .contact_form .dd_item {
    font-size: 18px;
    display: inline-block;
  }
  .contact_form .dd_item:nth-of-type(2) {
    padding-left: 0;
  }
  .contact_form input[type=text],
  .contact_form textarea,
  .contact_form select {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: solid 1px #bebebe;
    border-radius: 10px;
  }
  .contact_form .ss_dd {
    width: 100%;
  }
  .contact_form .s_dd {
    width: 100px;
  }
  .contact_form input.s_dd {
    width: 100px;
  }
  .contact_form .btn_s {
    padding: 10px 20px;
  }
  .contact_form .btn_submit {
    margin-top: 50px;
  }
  .contact_form .btn_return {
    text-align: center;
    margin-top: 20px;
  }
}

.mw_wp_form_input .open-area {
  display: none;
}