@charset "UTF-8";
/* Scss Document */
/*=============================
  		全体に指定
  =============================*/
/*リセット*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  * {
    font-size: 16px;
  }
}

img {
  vertical-align: bottom;
}

a img {
  border: 0px;
}

a {
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 1260px) {
  a {
    transition: all 0.2s ease-in-out;
  }
}

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

a img {
  transition: all 0.2s ease-in-out;
}

a:visited {
  color: #000;
}

a:link {
  color: #000;
}

a:active {
  color: #000;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

table th,
table td {
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}

.clear_b {
  clear: both;
}

/*=============================
スマホのみ,PCのみに指定
=============================*/
.sp_none {
  display: none;
}
@media screen and (min-width: 1260px) {
  .sp_none {
    display: block;
  }
}

@media screen and (min-width: 1260px) {
  br.sp_br {
    display: none;
  }
}

br.pc_br {
  display: none;
}
@media screen and (min-width: 1260px) {
  br.pc_br {
    display: block;
  }
}

/*--------------------------*/
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body a,
body a span {
  font-family: "Noto Sans JP", sans-serif;
}

button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper_all_body {
  position: relative;
  /*min-height: 100%;*/
  overflow: hidden;
}

/*=============================
		ヘッダーに指定
=============================*/
.header_wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
#header {
  position: relative;
}
@media screen and (min-width: 1260px) {
  #header {
    width: 1240px;
    margin: 0 auto;
  }
}

/*--*/
.header_logo_contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header_logo_contact .title_logo,
.header_logo_contact #title_logo {
  box-sizing: border-box;
  padding-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact .title_logo,
  .header_logo_contact #title_logo {
    padding-top: 0px;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
.header_logo_contact .title_logo a,
.header_logo_contact #title_logo a {
  font-size: 26px;
  font-weight: 900;
  line-height: 37px;
}
.header_logo_contact .title_logo a span,
.header_logo_contact #title_logo a span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: #611c30;
  letter-spacing: 4.3px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact .title_logo a,
  .header_logo_contact #title_logo a {
    font-size: 35px;
    line-height: 51px;
    letter-spacing: 7px;
  }
  .header_logo_contact .title_logo a span,
  .header_logo_contact #title_logo a span {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 4.8px;
  }
}
@media screen and (min-width: 1260px) {
  .header_logo_contact .title_logo a:hover,
  .header_logo_contact #title_logo a:hover {
    opacity: 0.7;
  }
}
.header_logo_contact ul.header_tel_mail_line {
  display: none;
  margin: 0 0px 0 5px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-right: 20px;
    margin-left: 0;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin: 5px;
  height: 56px;
  width: calc((100vw - 40px) * 5 / 11);
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone {
    box-shadow: none;
    border-radius: 0%;
    margin: 10px 20px 0 0;
    height: auto;
    width: auto;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #fff;
  padding: 8px 0 5px 5px;
  text-align: center;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a {
    display: inline;
    font-size: 14px;
    color: #000;
    padding: 0;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a span {
  font-size: 12px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a span {
    font-size: 14px;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a span.sp_no {
  display: none;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a span.sp_no {
    display: inline;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a span.blue_txt {
  color: #fff;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a span.blue_txt {
    color: #c30b00;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a span.tel_ico {
  display: inline-block;
  background: url("../img/common/free_ico.svg") 0 0% no-repeat;
  background-size: 24px 15px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a span.tel_ico {
    display: block;
    background: url("../img/common/free_ico.svg") 0 25% no-repeat;
    background-size: 39px 26px;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a span.tel_num {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  color: #c30b00;
  padding-left: 30px;
  margin-bottom: 2px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a span.tel_num {
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 3.4px;
    color: #c30b00;
    padding-left: 50px;
    margin-bottom: 10px;
  }
}
.header_logo_contact ul.header_tel_mail_line li.tel_zone a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.tel_zone a:hover {
    opacity: 1;
  }
}
.header_logo_contact ul.header_tel_mail_line li.mail_line_btn a {
  display: block;
  font-size: 13px;
  text-align: center;
  color: #fff;
  width: 92px;
  width: calc((100vw - 40px) * 3 / 11);
  height: 56px;
  padding-top: 32px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.16));
  border-radius: 3px;
  margin: 5px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.mail_line_btn a {
    font-size: 16px;
    width: 160px;
    height: 65px;
    padding-top: 35px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.16));
    margin: 10px 0 0 10px;
  }
}
.header_logo_contact ul.header_tel_mail_line li.mail_line_btn a span.sp_no {
  display: none;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.mail_line_btn a span.sp_no {
    display: inline;
  }
}
.header_logo_contact ul.header_tel_mail_line li.mail_line_btn a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.mail_btn a {
    background: #0b63b1 url("../img/common/mail_ico.svg") 50% 12px no-repeat padding-box;
    border-radius: 5px;
    background-size: 23px 15px;
  }
}
.header_logo_contact ul.header_tel_mail_line li.line_btn a {
  background: #20bc51 url("../img/common/line_ico.svg") 50% 5px no-repeat padding-box;
  background-size: 27px 25px;
}
@media screen and (min-width: 1260px) {
  .header_logo_contact ul.header_tel_mail_line li.line_btn a {
    background: #20bc51 url("../img/common/line_ico.svg") 50% 7px no-repeat padding-box;
    border-radius: 5px;
    background-size: 25px 23px;
  }
}

@media screen and (min-width: 1260px) {
  .header_scroll #header .header_on_off {
    display: none;
    transition: all 0.5s ease-out;
  }
}

@media screen and (min-width: 1260px) {
  .header_topon #header .header_on_off {
    display: block;
    transition: all 0.5s ease-out;
  }
}

#header #menu-checkbox,
#header .menu_btn_bg {
  display: none;
}

/*--------*/
#menu-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border: 0;
  margin-top: 20px;
  background: transparent;
  text-align: right;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 1260px) {
  #menu-btn {
    display: none;
  }
}

#menu-btn span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.2s ease;
  position: absolute;
  right: 20px;
  width: 36px;
  height: 2px;
  background-color: #611c30;
}

#menu-btn span:nth-of-type(1) {
  top: 8px;
}

#menu-btn span:nth-of-type(2) {
  top: 19px;
}

#menu-btn span:nth-of-type(3) {
  top: 30px;
}

/*------*/
#header div.main_nav {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
}
@media screen and (min-width: 1260px) {
  #header div.main_nav {
    position: relative;
    top: 0;
    width: 1200px;
    height: auto;
    background: transparent;
    opacity: 1;
  }
}

input#menu-checkbox:checked ~ div.main_nav {
  height: 100%;
  opacity: 1;
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(1) {
  top: 0px;
  transform: translateY(20px) rotate(-45deg);
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(2) {
  display: none;
}

input#menu-checkbox:checked ~ #menu-btn span:nth-of-type(3) {
  top: 40px;
  transform: translateY(-20px) rotate(45deg);
}

div.nav_inner {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: calc(100% - 100px);
}
@media screen and (min-width: 1260px) {
  div.nav_inner {
    margin: auto;
    width: 1240px;
    height: auto;
    overflow: visible;
  }
}

/*------*/
div.main_nav nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1260px) {
  div.main_nav nav {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-right: 0px;
    padding: 0;
    border: none;
    background-color: transparent;
  }
}

ul.global_menu {
  list-style: none;
  padding: 0px 0 20px 0;
  border-top: #e0e0e0 solid 1px;
  overflow: visible;
}
@media screen and (min-width: 1260px) {
  ul.global_menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 14px 0 14px 20px;
    padding: 0;
    border-top: none;
    border-left: #e0e0e0 solid 1px;
  }
}
ul.global_menu li {
  position: relative;
  border-bottom: #cccccc solid 1px;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li {
    position: inherit;
    border: none;
  }
}
ul.global_menu li a {
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: left;
  line-height: 21px;
  letter-spacing: 1.9px;
  padding: 20px 0 20px 20px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li a {
    font-size: 16px;
    text-align: center;
    line-height: 23px;
    padding: 6px 20px 6px 20px;
    margin: 0 0 0 0;
    border: none;
    width: 240px;
    border-right: #e0e0e0 solid 1px;
  }
}
ul.global_menu li a.way_link {
  cursor: pointer;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li a.way_link {
    background: url(../img/common/below_arrow.svg) 90% 50% no-repeat;
  }
}
ul.global_menu li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn:hover > a.way_link,
  ul.global_menu li a.way_link:hover {
    background: url(../img/common/upper_arrow.svg) 90% 50% no-repeat;
  }
}
ul.global_menu li.way_btn {
  position: relative;
}
ul.global_menu li.way_btn > a {
  position: relative;
  padding-right: 40px;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn > a {
    padding-right: 20px;
  }
}
ul.global_menu li.way_btn > a.way_link::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn > a.way_link::after {
    content: "";
  }
}
ul.global_menu li.way_btn ul.submenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  /*-*/
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0s linear 0.25s;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn ul.submenu {
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transition: none;
    /*-*/
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.916);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
    width: 240px;
    height: auto;
    padding: 20px 0 0 0;
    z-index: 1000;
    border-radius: 0px 0px 5px 5px;
  }
}
ul.global_menu li.way_btn ul.submenu li {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  border-top: #cccccc solid 1px;
  border-bottom: none;
  padding: 0px;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn ul.submenu li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 10px 0;
    border-top: none;
  }
}
ul.global_menu li.way_btn ul.submenu li a {
  padding: 20px 0 10px 32px;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn ul.submenu li a {
    padding: 6px 20px 6px 20px;
    width: 240px;
  }
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn ul.submenu li:last-child {
    padding-bottom: 20px;
  }
}
ul.global_menu li.way_btn ul.submenu li:last-child a {
  padding: 20px 0 20px 32px;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn ul.submenu li:last-child a {
    padding: 6px 20px 6px 20px;
  }
}
ul.global_menu li.way_btn.is-open > a.way_link::after {
  content: "−";
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn.is-open > a.way_link::after {
    content: "";
  }
}
ul.global_menu li.way_btn.is-open > ul.submenu {
  max-height: 500px; /* 中身の量に応じて十分大きく */
  opacity: 1;
  visibility: visible;
  transition: max-height 0.25s ease, opacity 0.2s ease, visibility 0s;
}
@media screen and (min-width: 1260px) {
  ul.global_menu li.way_btn:hover ul.submenu {
    display: block;
  }
}
/*-------------*/
/*リンクボタン共通-----------------------------------------------*/
div.link_btn a {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  text-decoration: none !important;
  padding: 12px 0 12px 0;
  margin: 0 auto;
  width: 280px;
  height: 52px;
  background: #ecce79 0% 0% no-repeat padding-box;
  border: 1px solid #c9a231;
  border-radius: 10px;
}
@media screen and (min-width: 1260px) {
  div.link_btn a {
    font-size: 20px;
    line-height: 28px;
    padding: 15px 20px 15px 20px;
    width: 328px;
    height: 62px;
    transition: all 0.2s ease-in-out;
  }
}

div.link_btn a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  .link_btn {
    width: 575px;
    margin: 0 auto 0 auto;
  }
}

.link_btn_mb50 {
  margin-bottom: 50px;
}
@media screen and (min-width: 1260px) {
  .link_btn_mb50 {
    margin-bottom: 80px;
  }
}

/*-----------*/
div.link_btn2 a {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  text-align: center;
  text-decoration: none !important;
  padding: 12px 20px 12px 0;
  margin: 0 auto;
  width: calc(100% - 30px); /*平行四辺形の横幅*/
  height: 52px; /*平行四辺形の高さ*/
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.161));
}
@media screen and (min-width: 1260px) {
  div.link_btn2 a {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    margin: 0;
    padding: 15px 20px 15px 20px;
    width: 457px; /*平行四辺形の横幅*/
    height: 57px; /*平行四辺形の高さ*/
    transition: all 0.2s ease-in-out;
  }
}

/*=============================
		body_wrapperに指定
=============================*/
@media screen and (min-width: 1260px) {
  main {
    /*padding-bottom: 418px;*/ /*フッターの高さと同じ*/
  }
}

.body_wrapper {
  position: relative;
  z-index: 0;
}

.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 660px;
}
@media screen and (min-width: 1260px) {
  .container {
    width: 1200px;
    max-width: none;
  }
}

@media screen and (min-width: 1260px) {
  .container_full {
    width: 100%;
    max-width: none;
  }
}

/*=============================
  topに指定
=============================*/
.top_body_wrapper_firstview {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  background: url(../img/top/main_bg4sp@2x.jpg) center/cover;
  margin: 80px auto 0 auto;
  padding-top: 160px;
  max-width: 660px;
  height: 540px;
}
@media screen and (min-width: 1260px) {
  .top_body_wrapper_firstview {
    background: url(../img/top/main_bg4pc.jpg) center/cover;
    margin-top: 141px;
    padding-top: 15px;
    max-width: none;
    height: 676px;
  }
}
.top_body_wrapper_firstview .top_firstview_textset {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.8) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  margin: 0px 10px 0 10px;
  padding: 0 0 15px 0;
}
@media screen and (min-width: 1260px) {
  .top_body_wrapper_firstview .top_firstview_textset {
    width: 922px;
    margin: 50px auto;
    padding-bottom: 0;
  }
}

/*--------*/
.top-catch {
  padding: 25px 0 25px 0;
}
@media screen and (min-width: 1260px) {
  .top-catch {
    padding: 60px 0 60px 0;
  }
}
.top-catch h1 {
  color: #896810;
  font-size: 38px;
  font-weight: 900;
  line-height: 46px;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1260px) {
  .top-catch h1 {
    font-size: 76px;
    font-weight: 900;
    line-height: 106px;
    letter-spacing: 6px;
  }
}
.top-catch h1 span {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: #133656;
}
.top-catch h1 span.txt_d_red {
  color: #611c30;
}

.top_sub-catch {
  padding: 0px 16px 0 16px;
}
@media screen and (min-width: 1260px) {
  .top_sub-catch {
    padding: 0 0 50px 0;
  }
}
.top_sub-catch h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0;
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .top_sub-catch h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.48px;
    padding-bottom: 30px;
  }
}
.top_sub-catch p {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 1260px) {
  .top_sub-catch p {
    display: block;
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 0.36px;
  }
}

/*------------------------*/
.lower_faq_list,
.lower_way3_list,
.lower-privacy_body,
.lower-contact_body,
.top_way3_list,
.top_contact_list,
.top_area_list,
.top_voice_list,
.top_faq_list,
.top_case_list,
.top_items_list,
.top_feature_list {
  padding: 30px 20px 30px 20px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list,
  .lower_way3_list,
  .lower-privacy_body,
  .lower-contact_body,
  .top_way3_list,
  .top_contact_list,
  .top_area_list,
  .top_voice_list,
  .top_faq_list,
  .top_case_list,
  .top_items_list,
  .top_feature_list {
    padding: 60px 0 60px 0px;
  }
}
.lower_faq_list h1:before,
.lower_faq_list h3:before,
.lower_way3_list h1:before,
.lower_way3_list h3:before,
.lower-privacy_body h1:before,
.lower-privacy_body h3:before,
.lower-contact_body h1:before,
.lower-contact_body h3:before,
.top_way3_list h1:before,
.top_way3_list h3:before,
.top_contact_list h1:before,
.top_contact_list h3:before,
.top_area_list h1:before,
.top_area_list h3:before,
.top_voice_list h1:before,
.top_voice_list h3:before,
.top_faq_list h1:before,
.top_faq_list h3:before,
.top_case_list h1:before,
.top_case_list h3:before,
.top_items_list h1:before,
.top_items_list h3:before,
.top_feature_list h1:before,
.top_feature_list h3:before {
  display: block;
  content: " ";
  background-color: #896810;
  height: 3px;
  width: 100px;
  margin: 0 auto 10px auto;
}
.lower_faq_list h1,
.lower_faq_list h3,
.lower_way3_list h1,
.lower_way3_list h3,
.lower-privacy_body h1,
.lower-privacy_body h3,
.lower-contact_body h1,
.lower-contact_body h3,
.top_way3_list h1,
.top_way3_list h3,
.top_contact_list h1,
.top_contact_list h3,
.top_area_list h1,
.top_area_list h3,
.top_voice_list h1,
.top_voice_list h3,
.top_faq_list h1,
.top_faq_list h3,
.top_case_list h1,
.top_case_list h3,
.top_items_list h1,
.top_items_list h3,
.top_feature_list h1,
.top_feature_list h3 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #896810;
  text-align: center;
  padding-bottom: 9px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list h1,
  .lower_faq_list h3,
  .lower_way3_list h1,
  .lower_way3_list h3,
  .lower-privacy_body h1,
  .lower-privacy_body h3,
  .lower-contact_body h1,
  .lower-contact_body h3,
  .top_way3_list h1,
  .top_way3_list h3,
  .top_contact_list h1,
  .top_contact_list h3,
  .top_area_list h1,
  .top_area_list h3,
  .top_voice_list h1,
  .top_voice_list h3,
  .top_faq_list h1,
  .top_faq_list h3,
  .top_case_list h1,
  .top_case_list h3,
  .top_items_list h1,
  .top_items_list h3,
  .top_feature_list h1,
  .top_feature_list h3 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin-bottom: 46px;
    background-size: 274px 11px;
  }
}
.lower_faq_list .main_explin,
.lower_way3_list .main_explin,
.lower-privacy_body .main_explin,
.lower-contact_body .main_explin,
.top_way3_list .main_explin,
.top_contact_list .main_explin,
.top_area_list .main_explin,
.top_voice_list .main_explin,
.top_faq_list .main_explin,
.top_case_list .main_explin,
.top_items_list .main_explin,
.top_feature_list .main_explin {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .main_explin,
  .lower_way3_list .main_explin,
  .lower-privacy_body .main_explin,
  .lower-contact_body .main_explin,
  .top_way3_list .main_explin,
  .top_contact_list .main_explin,
  .top_area_list .main_explin,
  .top_voice_list .main_explin,
  .top_faq_list .main_explin,
  .top_case_list .main_explin,
  .top_items_list .main_explin,
  .top_feature_list .main_explin {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.lower_faq_list .main_explin a,
.lower_way3_list .main_explin a,
.lower-privacy_body .main_explin a,
.lower-contact_body .main_explin a,
.top_way3_list .main_explin a,
.top_contact_list .main_explin a,
.top_area_list .main_explin a,
.top_voice_list .main_explin a,
.top_faq_list .main_explin a,
.top_case_list .main_explin a,
.top_items_list .main_explin a,
.top_feature_list .main_explin a {
  font-size: inherit;
  text-decoration: underline;
}
.lower_faq_list .main_explin a:hover,
.lower_way3_list .main_explin a:hover,
.lower-privacy_body .main_explin a:hover,
.lower-contact_body .main_explin a:hover,
.top_way3_list .main_explin a:hover,
.top_contact_list .main_explin a:hover,
.top_area_list .main_explin a:hover,
.top_voice_list .main_explin a:hover,
.top_faq_list .main_explin a:hover,
.top_case_list .main_explin a:hover,
.top_items_list .main_explin a:hover,
.top_feature_list .main_explin a:hover {
  text-decoration: none;
}

/*------------------*/
.body_top-voice_wrapper,
.body_top-area_wrapper,
.body_top-feature_wrapper {
  scroll-margin-top: 80px;
  background-color: #fbf7e8;
}
@media screen and (min-width: 1260px) {
  .body_top-voice_wrapper,
  .body_top-area_wrapper,
  .body_top-feature_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_top-items_wrapper {
  scroll-margin-top: 80px;
  background-color: #896810;
}
@media screen and (min-width: 1260px) {
  .body_top-items_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_top-faq_wrapper {
  scroll-margin-top: 80px;
  background-color: #eaeaea;
}
@media screen and (min-width: 1260px) {
  .body_top-faq_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_top-case_wrapper {
  scroll-margin-top: 80px;
  background: linear-gradient(to bottom, #eaeaea 0%, #eaeaea 60%, #133656 60%, #133656 100%);
}
@media screen and (min-width: 1260px) {
  .body_top-case_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_lower-column_wrapper,
.body_lower-case_wrapper {
  scroll-margin-top: 80px;
  background-color: #fbf7e8;
}
@media screen and (min-width: 1260px) {
  .body_lower-column_wrapper,
  .body_lower-case_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_lower-case-detail_wrapper {
  scroll-margin-top: 80px;
  background: linear-gradient(to bottom, #f8f0d6 0%, #f8f0d6 50%, #133656 50%, #133656 100%);
}
@media screen and (min-width: 1260px) {
  .body_lower-case-detail_wrapper {
    scroll-margin-top: 50px;
  }
}

.body_top-way3_wrapper {
  scroll-margin-top: 80px;
  background-color: #0f2844;
}
@media screen and (min-width: 1260px) {
  .body_top-way3_wrapper {
    scroll-margin-top: 50px;
  }
}

/*-------------*/
@media screen and (min-width: 1260px) {
  .top_feature_list {
    padding-bottom: 0px;
  }
}
.top_feature_list > div {
  padding-bottom: 15px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div {
    padding-bottom: 20px;
  }
}
.top_feature_list > div .feature_list {
  counter-reset: featureNo;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list {
    margin-bottom: 0px;
  }
}
.top_feature_list > div .feature_list div.each_feature {
  position: relative;
  display: block;
  counter-increment: featureNo;
  background-color: #fff;
  width: calc(100vw - 40px);
  padding-bottom: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature {
    width: 370px;
    max-width: none;
    margin-right: 45px;
    margin-bottom: 45px;
  }
}
.top_feature_list > div .feature_list div.each_feature figure {
  position: relative;
  grid-row: 1;
  width: 100%;
  margin: 0 0px 10px 0;
  padding: 0px 0 0px 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature figure {
    width: 370px;
    margin: 0 0 29px 0;
  }
}
.top_feature_list > div .feature_list div.each_feature figure img {
  width: 100%;
  height: auto;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature figure img {
    width: 370px;
    height: auto;
  }
}
.top_feature_list > div .feature_list div.each_feature figure::before {
  content: counter(featureNo);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #896810;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 5px;
  z-index: 2;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature figure::before {
    width: 73px;
    height: 73px;
    font-size: 50px;
  }
}
.top_feature_list > div .feature_list div.each_feature div {
  padding-top: 10px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature div {
    padding-top: 0;
  }
}
.top_feature_list > div .feature_list div.each_feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: #896810;
  line-height: 24px;
  padding: 0 2px 5px 16px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    padding: 0 0px 5px 16px;
  }
}
.top_feature_list > div .feature_list div.each_feature p {
  font-size: 14px;
  line-height: 22px;
  padding: 12px 2px 10px 16px;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature p {
    font-size: 16px;
    line-height: 28px;
    padding: 12px 5px 10px 16px;
  }
}
.top_feature_list > div .feature_list div.each_feature:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature:nth-of-type(2n) {
    margin-right: 45px;
  }
}
@media screen and (min-width: 1260px) {
  .top_feature_list > div .feature_list div.each_feature:nth-of-type(3n) {
    margin-right: 0;
  }
}
.top_feature_list > div .feature_list div.each_feature:hover figure, .top_feature_list > div .feature_list div.each_feature:hover h4, .top_feature_list > div .feature_list div.each_feature:hover small, .top_feature_list > div .feature_list div.each_feature:hover p {
  opacity: 0.7;
}

/*------------*/
@media screen and (min-width: 1260px) {
  .top_items_list {
    padding-bottom: 0px;
  }
}
.top_items_list > h3,
.top_items_list > h3::before,
.top_items_list > p {
  color: #fff;
}
.top_items_list > h3::before {
  background: #fff;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div {
    padding-bottom: 20px;
  }
}
.top_items_list > div .items_list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul {
    margin-bottom: 0px;
  }
}
.top_items_list > div .items_list ul li {
  margin-right: 20px;
  margin-bottom: 20px;
  width: calc((100vw - 60px) / 2);
  max-width: 300px;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul li {
    margin-right: 45px;
    margin-bottom: 45px;
    width: auto;
    max-width: none;
  }
}
.top_items_list > div .items_list ul li a {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 53% 40%;
  padding-top: 120px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul li a {
    width: 204px;
    height: 218px;
    padding-top: 130px;
  }
}
.top_items_list > div .items_list ul li a h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul li a h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.top_items_list > div .items_list ul li a:hover {
  opacity: 0.8;
}
.top_items_list > div .items_list ul li a:hover h4 {
  opacity: 0.7;
}
.top_items_list > div .items_list ul li:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul li:nth-of-type(2n) {
    margin-right: 45px;
  }
}
@media screen and (min-width: 1260px) {
  .top_items_list > div .items_list ul li:nth-of-type(5n) {
    margin-right: 0;
  }
}

/*-------------*/
/**------------*/
/*------------*/
.top_case_list {
  padding: 30px 0px 30px 0px;
}
@media screen and (min-width: 1260px) {
  .top_case_list {
    padding: 60px 0 50px 0px;
  }
}
.top_case_list > p,
.top_case_list > h3 {
  padding: 0 20px;
}
.top_case_list > h3,
.top_case_list > h3::before,
.top_case_list > p {
  color: #133656;
}
.top_case_list > h3::before {
  background: #133656;
}
.top_case_list div.case_slider,
.top_case_list div.swiper {
  position: relative;
  padding-bottom: 90px;
  padding-left: 0;
  padding-right: 0;
  /* 中央配置 */
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list,
  .top_case_list div.swiper .case_list {
    margin-bottom: 0px;
  }
}
.top_case_list div.case_slider .case_list a.case_item,
.top_case_list div.case_slider .case_list a.swiper-slide,
.top_case_list div.swiper .case_list a.case_item,
.top_case_list div.swiper .case_list a.swiper-slide {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ecce79;
  border-radius: 10px;
  margin-bottom: 15px;
  width: 330px;
  margin: 0 22px; /* GAP=44 の半分 */
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item,
  .top_case_list div.case_slider .case_list a.swiper-slide,
  .top_case_list div.swiper .case_list a.case_item,
  .top_case_list div.swiper .case_list a.swiper-slide {
    width: 330px;
  }
}
.top_case_list div.case_slider .case_list a.case_item figure,
.top_case_list div.case_slider .case_list a.swiper-slide figure,
.top_case_list div.swiper .case_list a.case_item figure,
.top_case_list div.swiper .case_list a.swiper-slide figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 23px 10px 18px 10px;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item figure,
  .top_case_list div.case_slider .case_list a.swiper-slide figure,
  .top_case_list div.swiper .case_list a.case_item figure,
  .top_case_list div.swiper .case_list a.swiper-slide figure {
    margin: 0;
  }
}
.top_case_list div.case_slider .case_list a.case_item figure img,
.top_case_list div.case_slider .case_list a.swiper-slide figure img,
.top_case_list div.swiper .case_list a.case_item figure img,
.top_case_list div.swiper .case_list a.swiper-slide figure img {
  width: 162px;
  height: auto;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item figure img,
  .top_case_list div.case_slider .case_list a.swiper-slide figure img,
  .top_case_list div.swiper .case_list a.case_item figure img,
  .top_case_list div.swiper .case_list a.swiper-slide figure img {
    width: 162px;
    height: auto;
  }
}
.top_case_list div.case_slider .case_list a.case_item div,
.top_case_list div.case_slider .case_list a.swiper-slide div,
.top_case_list div.swiper .case_list a.case_item div,
.top_case_list div.swiper .case_list a.swiper-slide div {
  padding: 0 16px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item div,
  .top_case_list div.case_slider .case_list a.swiper-slide div,
  .top_case_list div.swiper .case_list a.case_item div,
  .top_case_list div.swiper .case_list a.swiper-slide div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
  }
}
.top_case_list div.case_slider .case_list a.case_item h4,
.top_case_list div.case_slider .case_list a.swiper-slide h4,
.top_case_list div.swiper .case_list a.case_item h4,
.top_case_list div.swiper .case_list a.swiper-slide h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item h4,
  .top_case_list div.case_slider .case_list a.swiper-slide h4,
  .top_case_list div.swiper .case_list a.case_item h4,
  .top_case_list div.swiper .case_list a.swiper-slide h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0px;
  }
}
.top_case_list div.case_slider .case_list a.case_item p.quantity,
.top_case_list div.case_slider .case_list a.swiper-slide p.quantity,
.top_case_list div.swiper .case_list a.case_item p.quantity,
.top_case_list div.swiper .case_list a.swiper-slide p.quantity {
  font-size: 14px;
  line-height: 18px;
  min-height: 18px;
  color: #ff0000;
  padding-top: 5px;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item p.quantity,
  .top_case_list div.case_slider .case_list a.swiper-slide p.quantity,
  .top_case_list div.swiper .case_list a.case_item p.quantity,
  .top_case_list div.swiper .case_list a.swiper-slide p.quantity {
    font-size: 16px;
    line-height: 20px;
    min-height: 20px;
  }
}
.top_case_list div.case_slider .case_list a.case_item p.price,
.top_case_list div.case_slider .case_list a.swiper-slide p.price,
.top_case_list div.swiper .case_list a.case_item p.price,
.top_case_list div.swiper .case_list a.swiper-slide p.price {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-align: right;
  color: #ff0000;
  padding: 0px 0 10px 0;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item p.price,
  .top_case_list div.case_slider .case_list a.swiper-slide p.price,
  .top_case_list div.swiper .case_list a.case_item p.price,
  .top_case_list div.swiper .case_list a.swiper-slide p.price {
    font-size: 43px;
    line-height: 53px;
  }
}
.top_case_list div.case_slider .case_list a.case_item p.area,
.top_case_list div.case_slider .case_list a.swiper-slide p.area,
.top_case_list div.swiper .case_list a.case_item p.area,
.top_case_list div.swiper .case_list a.swiper-slide p.area {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border-top: dotted 1px #ccc;
  padding: 10px 0 5px 0;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item p.area,
  .top_case_list div.case_slider .case_list a.swiper-slide p.area,
  .top_case_list div.swiper .case_list a.case_item p.area,
  .top_case_list div.swiper .case_list a.swiper-slide p.area {
    font-size: 16px;
    line-height: 28px;
  }
}
.top_case_list div.case_slider .case_list a.case_item ul,
.top_case_list div.case_slider .case_list a.swiper-slide ul,
.top_case_list div.swiper .case_list a.case_item ul,
.top_case_list div.swiper .case_list a.swiper-slide ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.top_case_list div.case_slider .case_list a.case_item ul li a,
.top_case_list div.case_slider .case_list a.case_item ul li,
.top_case_list div.case_slider .case_list a.swiper-slide ul li a,
.top_case_list div.case_slider .case_list a.swiper-slide ul li,
.top_case_list div.swiper .case_list a.case_item ul li a,
.top_case_list div.swiper .case_list a.case_item ul li,
.top_case_list div.swiper .case_list a.swiper-slide ul li a,
.top_case_list div.swiper .case_list a.swiper-slide ul li {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  min-height: 20px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_case_list div.case_slider .case_list a.case_item ul li a,
  .top_case_list div.case_slider .case_list a.case_item ul li,
  .top_case_list div.case_slider .case_list a.swiper-slide ul li a,
  .top_case_list div.case_slider .case_list a.swiper-slide ul li,
  .top_case_list div.swiper .case_list a.case_item ul li a,
  .top_case_list div.swiper .case_list a.case_item ul li,
  .top_case_list div.swiper .case_list a.swiper-slide ul li a,
  .top_case_list div.swiper .case_list a.swiper-slide ul li {
    font-size: 16px;
    line-height: 28px;
    min-height: 40px;
  }
}
.top_case_list div.case_slider .case_list a.case_item ul li:after,
.top_case_list div.case_slider .case_list a.swiper-slide ul li:after,
.top_case_list div.swiper .case_list a.case_item ul li:after,
.top_case_list div.swiper .case_list a.swiper-slide ul li:after {
  content: "、";
}
.top_case_list div.case_slider .case_list a.case_item ul li:last-of-type:after,
.top_case_list div.case_slider .case_list a.swiper-slide ul li:last-of-type:after,
.top_case_list div.swiper .case_list a.case_item ul li:last-of-type:after,
.top_case_list div.swiper .case_list a.swiper-slide ul li:last-of-type:after {
  content: "";
}
.top_case_list div.case_slider .case_list a.case_item:hover figure, .top_case_list div.case_slider .case_list a.case_item:hover h4, .top_case_list div.case_slider .case_list a.case_item:hover li, .top_case_list div.case_slider .case_list a.case_item:hover p,
.top_case_list div.case_slider .case_list a.swiper-slide:hover figure,
.top_case_list div.case_slider .case_list a.swiper-slide:hover h4,
.top_case_list div.case_slider .case_list a.swiper-slide:hover li,
.top_case_list div.case_slider .case_list a.swiper-slide:hover p,
.top_case_list div.swiper .case_list a.case_item:hover figure,
.top_case_list div.swiper .case_list a.case_item:hover h4,
.top_case_list div.swiper .case_list a.case_item:hover li,
.top_case_list div.swiper .case_list a.case_item:hover p,
.top_case_list div.swiper .case_list a.swiper-slide:hover figure,
.top_case_list div.swiper .case_list a.swiper-slide:hover h4,
.top_case_list div.swiper .case_list a.swiper-slide:hover li,
.top_case_list div.swiper .case_list a.swiper-slide:hover p {
  opacity: 0.7;
}
.top_case_list div.case_slider .swiper-button-prev,
.top_case_list div.case_slider .swiper-button-next,
.top_case_list div.swiper .swiper-button-prev,
.top_case_list div.swiper .swiper-button-next {
  position: absolute;
  bottom: 30px;
  top: auto;
  transform: none;
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 10px;
  color: transparent; /* テキストを透明に */
}
.top_case_list div.case_slider .swiper-button-prev:hover,
.top_case_list div.case_slider .swiper-button-next:hover,
.top_case_list div.swiper .swiper-button-prev:hover,
.top_case_list div.swiper .swiper-button-next:hover {
  opacity: 0.7;
}
.top_case_list div.case_slider .swiper-button-prev,
.top_case_list div.swiper .swiper-button-prev {
  left: 50%;
  transform: translateX(-80px);
}
.top_case_list div.case_slider .swiper-button-next,
.top_case_list div.swiper .swiper-button-next {
  left: 50%;
  transform: translateX(36px);
}
.top_case_list div.case_slider .swiper-button-prev::after,
.top_case_list div.case_slider .swiper-button-next::after,
.top_case_list div.swiper .swiper-button-prev::after,
.top_case_list div.swiper .swiper-button-next::after {
  content: "";
  margin: auto;
  position: absolute;
  color: #000;
  font-size: 1.5rem;
  height: 100%;
  width: 100%;
}
.top_case_list div.case_slider .swiper-button-prev::after,
.top_case_list div.swiper .swiper-button-prev::after {
  background: url("../img/common/prev_arrow.svg") 50% 50% no-repeat;
}
.top_case_list div.case_slider .swiper-button-next::after,
.top_case_list div.swiper .swiper-button-next::after {
  background: url("../img/common/next_arrow.svg") 50% 50% no-repeat;
}
.top_case_list div.case_slider .swiper-toggle,
.top_case_list div.swiper .swiper-toggle {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-22px);
  width: 46px;
  height: 46px;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_case_list div.case_slider .swiper-toggle img,
.top_case_list div.swiper .swiper-toggle img {
  width: 16px; /* ←ここで小さく */
  height: 16px;
}

/*----------------*/
/*-------------*/
@media screen and (min-width: 1260px) {
  .top_way3_list {
    padding-bottom: 0px;
  }
}
.top_way3_list > h3,
.top_way3_list > h3::before,
.top_way3_list > p {
  color: #fff;
}
.top_way3_list > h3::before {
  background: #fff;
}
.top_way3_list > div {
  padding-bottom: 15px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div {
    padding-bottom: 20px;
  }
}
.top_way3_list > div .way3_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list {
    margin-bottom: 0px;
  }
}
.top_way3_list > div .way3_list div.each_way {
  position: relative;
  display: block;
  background-color: #fff;
  width: calc(100vw - 40px);
  padding-bottom: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way {
    width: 370px;
    max-width: none;
    margin-right: 45px;
    margin-bottom: 45px;
  }
}
.top_way3_list > div .way3_list div.each_way figure {
  grid-row: 1;
  width: 100%;
  margin: 0 0px 10px 0;
  padding: 0px 0 0px 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way figure {
    width: 370px;
    margin: 0 0 29px 0;
  }
}
.top_way3_list > div .way3_list div.each_way figure img {
  width: 100%;
  height: auto;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way figure img {
    width: 370px;
    height: auto;
  }
}
.top_way3_list > div .way3_list div.each_way div {
  padding-top: 10px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way div {
    padding-top: 0;
  }
}
.top_way3_list > div .way3_list div.each_way h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 0 2px 5px 16px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way h4 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0px;
    padding: 0 0px 5px 16px;
  }
}
.top_way3_list > div .way3_list div.each_way p {
  font-size: 14px;
  line-height: 22px;
  padding: 12px 2px 0px 16px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way p {
    font-size: 16px;
    line-height: 28px;
    padding: 12px 5px 10px 16px;
  }
}
.top_way3_list > div .way3_list div.each_way p.way_area {
  font-weight: bold;
  color: #896810;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way p.way_area {
    margin-bottom: 20px;
  }
}
.top_way3_list > div .way3_list div.each_way p.way_area::before {
  content: "※ ";
}
.top_way3_list > div .way3_list div.each_way ol {
  list-style: none;
  margin-bottom: 2px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way ol {
    margin-bottom: 10px;
  }
}
.top_way3_list > div .way3_list div.each_way ol li {
  font-size: 14px;
  line-height: 22px;
  padding: 4px 2px 2px 16px;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way ol li {
    font-size: 16px;
    line-height: 20px;
    padding: 6px 5px 4px 16px;
  }
}
.top_way3_list > div .way3_list div.each_way ol li:nth-of-type(1):before {
  content: "① ";
}
.top_way3_list > div .way3_list div.each_way ol li:nth-of-type(2):before {
  content: "② ";
}
.top_way3_list > div .way3_list div.each_way ol li:nth-of-type(3):before {
  content: "③ ";
}
.top_way3_list > div .way3_list div.each_way .link_btn {
  width: auto;
  margin-bottom: 20px;
}
.top_way3_list > div .way3_list div.each_way:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way:nth-of-type(2n) {
    margin-right: 45px;
  }
}
@media screen and (min-width: 1260px) {
  .top_way3_list > div .way3_list div.each_way:nth-of-type(3n) {
    margin-right: 0;
  }
}
.top_way3_list > div .way3_list div.each_way:hover figure, .top_way3_list > div .way3_list div.each_way:hover h4, .top_way3_list > div .way3_list div.each_way:hover small, .top_way3_list > div .way3_list div.each_way:hover p {
  opacity: 0.7;
}

/*------------*/
@media screen and (min-width: 1260px) {
  .top_faq_list {
    padding-bottom: 50px;
  }
}
.top_faq_list > h3 {
  color: #611c30;
}
.top_faq_list > h3::before {
  background-color: #611c30;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
}
.top_faq_list > div .faq_list dl {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  margin-right: 0px;
  margin-bottom: 15px;
  padding: 10px 10px 0px 10px;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl {
    width: 575px;
    margin-right: 50px;
    margin-bottom: 20px;
    padding: 20px 15px 0px 15px;
  }
}
.top_faq_list > div .faq_list dl dt {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 2px 0px 10px 45px;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl dt {
    font-size: 18px;
    line-height: 24px;
    padding: 5px 10px 20px 50px;
  }
}
.top_faq_list > div .faq_list dl dt::before {
  content: "Q";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 29px;
  text-align: center;
  background: #611c30 0% 0% no-repeat padding-box;
  border-radius: 3px;
  padding: 0 0 2px 0;
  width: 31px;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl dt::before {
    font-size: 25px;
    line-height: 33px;
    padding: 0 0 2px 0;
    width: 35px;
  }
}
.top_faq_list > div .faq_list dl dd {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 0px 10px 45px;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl dd {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 10px 20px 50px;
  }
}
.top_faq_list > div .faq_list dl dd::before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 22px;
  font-weight: 500;
  color: #611c30;
  line-height: 29px;
  text-align: center;
  border: 2px solid #611c30;
  border-radius: 3px;
  width: 29px;
  padding: 0 0 2px 0;
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl dd::before {
    font-size: 25px;
    line-height: 25px;
    width: 31px;
    padding: 0 0 5px 0;
  }
}
@media screen and (min-width: 1260px) {
  .top_faq_list > div .faq_list dl:nth-of-type(2n) {
    margin-right: 0;
  }
}

/*------------*/
@media screen and (min-width: 1260px) {
  .top_voice_list {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1260px) {
  .top_voice_list > div {
    padding-bottom: 20px;
  }
}
/*------------*/
@media screen and (min-width: 1260px) {
  .top_area_list {
    padding-bottom: 50px;
  }
}
.top_area_list > div {
  display: flex;
  flex-wrap: wrap;
  background: rgba(236, 205, 121, 0.16) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div {
    /*padding-bottom: 20px;*/
  }
}
.top_area_list > div figure {
  margin: 15px auto 0 auto;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div figure {
    margin: auto;
  }
}
.top_area_list > div figure img {
  width: 238px;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div figure img {
    width: auto;
    margin: 24px 58px 24px 38px;
  }
}
.top_area_list > div .area_list {
  padding: 20px 16px 16px 16px;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div .area_list {
    width: 835px;
    padding: 20px 0 20px 0;
  }
}
.top_area_list > div .area_list h4 {
  font-size: 16px;
  line-height: 24px;
  padding-top: 10px;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div .area_list h4 {
    font-size: 18px;
    line-height: 24px;
    padding-top: 10px;
  }
}
.top_area_list > div .area_list p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div .area_list p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1260px) {
  .top_area_list > div .area_list p:last-of-type {
    margin-bottom: 0px;
  }
}
.top_area_list > div iframe {
  margin: 16px auto 10px auto;
}
@media screen and (min-width: 1260px) {
  .top_area_list > div iframe {
    margin: 30px 50px 30px 30px;
  }
}
@media screen and (min-width: 1260px) {
  .top_area_list > div .area_list_3 {
    width: 545px;
  }
}

/*------------*/
/*------------*/
@media screen and (min-width: 1260px) {
  .top_contact_list {
    padding-bottom: 20px;
  }
}
.top_contact_list > h3 {
  color: #000;
}
.top_contact_list > h3::before {
  background-color: #000;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
}
.top_contact_list div.contact_list div.right_zone,
.top_contact_list div.contact_list div.left_zone {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 0px 0 0px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone,
  .top_contact_list div.contact_list div.left_zone {
    width: 575px;
    padding: 16px 0px 0 0px;
    margin-right: 50px;
    margin-bottom: 50px;
  }
}
.top_contact_list div.contact_list div.right_zone p,
.top_contact_list div.contact_list div.left_zone p {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone p,
  .top_contact_list div.contact_list div.left_zone p {
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    letter-spacing: 0px;
    padding: 0 0px 20px 0px;
  }
}
.top_contact_list div.contact_list div.right_zone p span,
.top_contact_list div.contact_list div.left_zone p span {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone p span,
  .top_contact_list div.contact_list div.left_zone p span {
    font-size: 18px;
  }
}
.top_contact_list div.contact_list div.right_zone p span.red_txt,
.top_contact_list div.contact_list div.left_zone p span.red_txt {
  color: #c30b00;
}
.top_contact_list div.contact_list div.right_zone p span.blue_txt,
.top_contact_list div.contact_list div.left_zone p span.blue_txt {
  color: #0054b5;
}
.top_contact_list div.contact_list div.right_zone p.tel_txt,
.top_contact_list div.contact_list div.left_zone p.tel_txt {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.6px;
  padding: 0 0px 0px 0px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone p.tel_txt,
  .top_contact_list div.contact_list div.left_zone p.tel_txt {
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.7px;
    padding: 5px 0px 0px 0px;
  }
}
.top_contact_list div.contact_list div.right_zone a.tel,
.top_contact_list div.contact_list div.left_zone a.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 25px 0;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone a.tel,
  .top_contact_list div.contact_list div.left_zone a.tel {
    justify-content: left;
  }
}
.top_contact_list div.contact_list div.right_zone a.tel span.tel_ico,
.top_contact_list div.contact_list div.left_zone a.tel span.tel_ico {
  display: block;
  width: 49px;
  height: 32px;
  background: url("../img/common/free_ico.svg") 0px 0px no-repeat;
  background-size: 49px 32px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone a.tel span.tel_ico,
  .top_contact_list div.contact_list div.left_zone a.tel span.tel_ico {
    width: 74px;
    height: 49px;
    background-size: 74px 49px;
  }
}
.top_contact_list div.contact_list div.right_zone a.tel span.tel_num,
.top_contact_list div.contact_list div.left_zone a.tel span.tel_num {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 1.9px;
  color: #c30b00;
  padding-left: 5px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone a.tel span.tel_num,
  .top_contact_list div.contact_list div.left_zone a.tel span.tel_num {
    font-size: 66px;
    line-height: 71px;
    letter-spacing: 3.4px;
    /* padding-left: 90px; */
    padding-left: 10px;
  }
}
.top_contact_list div.contact_list div.right_zone a.tel:hover,
.top_contact_list div.contact_list div.left_zone a.tel:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone a.tel:hover,
  .top_contact_list div.contact_list div.left_zone a.tel:hover {
    opacity: 1;
  }
}
.top_contact_list div.contact_list div.right_zone ul,
.top_contact_list div.contact_list div.left_zone ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone ul,
  .top_contact_list div.contact_list div.left_zone ul {
    margin-bottom: 20px;
  }
}
.top_contact_list div.contact_list div.right_zone ul li.mail_line_btn a,
.top_contact_list div.contact_list div.left_zone ul li.mail_line_btn a {
  display: block;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  color: #fff;
  width: calc((100vw - 55px) / 2);
  height: auto;
  padding-top: 60px;
  padding-bottom: 10px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.16));
  border-radius: 3px;
}
@media screen and (min-width: 600px) {
  .top_contact_list div.contact_list div.right_zone ul li.mail_line_btn a,
  .top_contact_list div.contact_list div.left_zone ul li.mail_line_btn a {
    width: 302px;
  }
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone ul li.mail_line_btn a,
  .top_contact_list div.contact_list div.left_zone ul li.mail_line_btn a {
    font-size: 24px;
    width: 258px;
    height: 110px;
    padding-top: 70px;
    padding-bottom: 0;
    border-radius: 5px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.16));
  }
}
.top_contact_list div.contact_list div.right_zone ul li.mail_line_btn a:hover,
.top_contact_list div.contact_list div.left_zone ul li.mail_line_btn a:hover {
  opacity: 0.7;
}
.top_contact_list div.contact_list div.right_zone ul li.mail_btn a,
.top_contact_list div.contact_list div.left_zone ul li.mail_btn a {
  background: url("../img/common/contact-mail_ico.svg") 50% 18px no-repeat padding-box;
  background-color: #1563b1;
  margin-right: 15px;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone ul li.mail_btn a,
  .top_contact_list div.contact_list div.left_zone ul li.mail_btn a {
    margin-right: 19px;
  }
}
.top_contact_list div.contact_list div.right_zone ul li.line_btn a,
.top_contact_list div.contact_list div.left_zone ul li.line_btn a {
  background: url("../img/common/contact-line_ico.svg") 50% 9px no-repeat padding-box;
  background-color: #20bc51;
}
@media screen and (min-width: 1260px) {
  .top_contact_list div.contact_list div.right_zone:nth-of-type(2n),
  .top_contact_list div.contact_list div.left_zone:nth-of-type(2n) {
    margin-right: 0;
  }
}

/***--------------------------------------------*/
@media screen and (min-width: 1260px) {
  .lower_way3_list {
    padding-bottom: 0px;
  }
}
.lower_way3_list > h3,
.lower_way3_list > h3::before,
.lower_way3_list > p {
  color: #fff;
}
.lower_way3_list > h3::before {
  background: #fff;
}
.lower_way3_list div.first_explain {
  padding: 30px;
  margin-bottom: 80px;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
.lower_way3_list div.first_explain p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.first_explain p {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
}
.lower_way3_list div.way3_order {
  padding-bottom: 15px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order {
    padding-bottom: 20px;
  }
}
.lower_way3_list div.way3_order div.each_order {
  background-color: #fff;
  width: calc(100vw - 40px);
  max-width: 620px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order {
    display: flex;
    align-items: center;
    gap: 35px;
    width: 1200px;
    max-width: none;
    padding: 30px;
    margin-bottom: 45px;
  }
}
.lower_way3_list div.way3_order div.each_order figure {
  width: 100%;
  margin: 0 0px 10px 0;
  padding: 0px 0 0px 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order figure {
    width: 370px;
    margin: 0;
  }
}
.lower_way3_list div.way3_order div.each_order figure img {
  width: 100%;
  height: auto;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order figure img {
    width: 370px;
    height: auto;
  }
}
.lower_way3_list div.way3_order div.each_order div {
  padding-top: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order div {
    padding-top: 0;
  }
}
.lower_way3_list div.way3_order div.each_order h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 0 0px 5px 0px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order h4 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0px;
    padding: 0 0px 5px 16px;
  }
}
.lower_way3_list div.way3_order div.each_order p {
  font-size: 14px;
  line-height: 22px;
  padding: 12px 0px 0px 0px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order p {
    font-size: 16px;
    line-height: 28px;
    padding: 12px 5px 10px 16px;
  }
}
.lower_way3_list div.way3_order div.each_order p.way_area {
  font-weight: bold;
  color: #896810;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order p.way_area {
    margin-bottom: 20px;
  }
}
.lower_way3_list div.way3_order div.each_order p.way_area::before {
  content: "※ ";
}
.lower_way3_list div.way3_order div.each_order ol {
  list-style: none;
  margin-bottom: 2px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order ol {
    margin-bottom: 10px;
  }
}
.lower_way3_list div.way3_order div.each_order ol li {
  font-size: 14px;
  line-height: 22px;
  padding: 4px 2px 2px 16px;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order ol li {
    font-size: 16px;
    line-height: 20px;
    padding: 6px 5px 4px 16px;
  }
}
.lower_way3_list div.way3_order div.each_order ol li:nth-of-type(1):before {
  content: "① ";
}
.lower_way3_list div.way3_order div.each_order ol li:nth-of-type(2):before {
  content: "② ";
}
.lower_way3_list div.way3_order div.each_order ol li:nth-of-type(3):before {
  content: "③ ";
}
.lower_way3_list div.way3_order div.each_order .link_btn {
  width: auto;
  margin-bottom: 20px;
}
.lower_way3_list div.way3_order div.each_order:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order:nth-of-type(2n) {
    margin-right: 45px;
  }
}
@media screen and (min-width: 1260px) {
  .lower_way3_list div.way3_order div.each_order:nth-of-type(3n) {
    margin-right: 0;
  }
}
.lower_way3_list div.way3_order div.each_order:hover figure, .lower_way3_list div.way3_order div.each_order:hover h4, .lower_way3_list div.way3_order div.each_order:hover small, .lower_way3_list div.way3_order div.each_order:hover p {
  opacity: 0.7;
}

/*---------------------------------------------*/
.lower_case_list {
  padding: 30px 0px 30px 0px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list {
    padding: 60px 0 50px 0px;
  }
}
.lower_case_list > p,
.lower_case_list > h3 {
  padding: 0 20px;
}
.lower_case_list > h3,
.lower_case_list > h3::before,
.lower_case_list > p {
  color: #133656;
}
.lower_case_list > h3::before {
  background: #133656;
}
.lower_case_list .case_list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 60px;
  }
}
.lower_case_list .case_list a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ecce79;
  border-radius: 10px;
  margin-bottom: 15px;
  width: calc(100vw - 40px);
  max-width: 620px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a {
    width: 370px;
    max-width: none;
  }
}
.lower_case_list .case_list a figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 23px 10px 18px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a figure {
    margin: 0;
  }
}
.lower_case_list .case_list a figure img {
  width: 162px;
  height: auto;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a figure img {
    width: 210px;
    height: auto;
  }
}
.lower_case_list .case_list a div {
  padding: 0 16px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
  }
}
.lower_case_list .case_list a h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0px;
  }
}
.lower_case_list .case_list a p.quantity {
  font-size: 14px;
  line-height: 18px;
  color: #ff0000;
  padding-top: 5px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a p.quantity {
    font-size: 16px;
    line-height: 20px;
  }
}
.lower_case_list .case_list a p.price {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-align: right;
  color: #ff0000;
  padding: 0px 0 10px 0;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a p.price {
    font-size: 43px;
    line-height: 53px;
  }
}
.lower_case_list .case_list a p.area {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  border-top: dotted 1px #ccc;
  padding: 10px 0 5px 0;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a p.area {
    font-size: 16px;
    line-height: 28px;
  }
}
.lower_case_list .case_list a ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.lower_case_list .case_list a ul li a,
.lower_case_list .case_list a ul li {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_case_list .case_list a ul li a,
  .lower_case_list .case_list a ul li {
    font-size: 16px;
    line-height: 28px;
  }
}
.lower_case_list .case_list a ul li:after {
  content: "、";
}
.lower_case_list .case_list a ul li:last-of-type:after {
  content: "";
}
.lower_case_list .case_list a:hover figure, .lower_case_list .case_list a:hover h4, .lower_case_list .case_list a:hover li, .lower_case_list .case_list a:hover p {
  opacity: 0.7;
}

.lower_column_list {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.lower_column_list > div {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div {
    padding-bottom: 20px;
  }
}
.lower_column_list > div .column_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 44px;
    margin-bottom: 50px;
  }
}
.lower_column_list > div .column_list a {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 0px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  width: calc(100vw - 40px);
  max-width: 620px;
  padding: 16px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a {
    width: 370px;
    max-width: none;
    padding: 20px;
  }
}
.lower_column_list > div .column_list a figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 10px 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a figure {
    width: 330px;
    margin: 0 0px 18px 0;
  }
}
.lower_column_list > div .column_list a figure img {
  width: 220px;
  height: auto;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a figure img {
    width: 330px;
    height: auto;
  }
}
.lower_column_list > div .column_list a div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a div {
    width: 330px;
  }
}
.lower_column_list > div .column_list a h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.lower_column_list > div .column_list a p {
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 1260px) {
  .lower_column_list > div .column_list a p {
    font-size: 16px;
    line-height: 28px;
  }
}
.lower_column_list > div .column_list a:hover figure, .lower_column_list > div .column_list a:hover h4, .lower_column_list > div .column_list a:hover p {
  opacity: 0.7;
}

/*=============================
		lowerに指定
=============================*/
.lower_body_wrapper_firstview {
  box-sizing: border-box;
  background: transparent url("../img/lower/lower_firstview_bg_s@2x.jpg") 50% 0 no-repeat;
  background-size: contain;
  margin-top: 80px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .lower_body_wrapper_firstview {
    background: transparent url("../img/lower/lower_firstview_bg.jpg") 50% 0 no-repeat;
    background-size: auto;
    margin-top: 0;
    max-width: none;
  }
}
.lower_body_wrapper_firstview p.header::before,
.lower_body_wrapper_firstview h1:before {
  display: block;
  content: " ";
  background-color: #ffffff;
  height: 3px;
  width: 100px;
  margin: 0 auto 10px auto;
}
.lower_body_wrapper_firstview p.header,
.lower_body_wrapper_firstview h1 {
  position: relative;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 20px;
  margin-bottom: 65px;
}
@media screen and (min-width: 1260px) {
  .lower_body_wrapper_firstview p.header,
  .lower_body_wrapper_firstview h1 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 2.4px;
    padding-top: 250px;
    padding-bottom: 24px;
    margin-bottom: 46px;
    background: none;
  }
}
.lower_body_wrapper_firstview div.breadcrumb {
  background-color: #fff;
  padding: 5px 10px;
  /*--*/
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 660px;
}
@media screen and (min-width: 1260px) {
  .lower_body_wrapper_firstview div.breadcrumb {
    padding: 0px auto;
    /*--*/
    /* width: 1200px; */
    max-width: none;
  }
}
.lower_body_wrapper_firstview div.breadcrumb p {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (min-width: 1260px) {
  .lower_body_wrapper_firstview div.breadcrumb p {
    font-size: 14px;
    line-height: 37px;
    letter-spacing: 0.7px;
    margin: 0px auto;
    width: 1200px;
    overflow-x: unset;
    word-break: normal;
    white-space: normal;
  }
}
.lower_body_wrapper_firstview div.breadcrumb p a {
  font-size: 12px;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 1260px) {
  .lower_body_wrapper_firstview div.breadcrumb p a {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.lower_way3-1_body_wrapper_firstview {
  background: transparent url("../img/lower/taku_firstview_bg_s@2x.jpg") 50% 0 no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1260px) {
  .lower_way3-1_body_wrapper_firstview {
    background: transparent url("../img/lower/taku_firstview_bg.jpg") 50% 0 no-repeat;
  }
}

.lower_way3-2_body_wrapper_firstview {
  background: transparent url("../img/lower/syu_firstview_bg_s@2x.jpg") 50% 0 no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1260px) {
  .lower_way3-2_body_wrapper_firstview {
    background: transparent url("../img/lower/syu_firstview_bg.jpg") 50% 0 no-repeat;
  }
}

.lower_way3-3_body_wrapper_firstview {
  background: transparent url("../img/lower/ten_firstview_bg_s@2x.jpg") 50% 0 no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1260px) {
  .lower_way3-3_body_wrapper_firstview {
    background: transparent url("../img/lower/ten_firstview_bg.jpg") 50% 0 no-repeat;
  }
}

.lower_service_body_wrapper_firstview div.service_lower_h1_campaign {
  padding-top: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin: 0 auto;
    padding-top: 185px;
    padding-bottom: 15px;
    width: 1240px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 {
  padding-left: 16px;
  background: transparent linear-gradient(89deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 {
    width: 620px;
    padding-left: 30px;
    border-radius: 5px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 h1:before {
  display: block;
  content: attr(title) " ";
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  color: #00a7e7;
  letter-spacing: 0;
  text-align: left;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 0.75;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 h1:before {
    font-size: 14px;
    line-height: 20px;
    padding-top: 0;
    padding-bottom: 6px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 h1 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #00a7e7;
  text-align: left;
  padding-top: 0px;
  padding-bottom: 12px;
  margin-bottom: 0px;
  background: transparent linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 h1 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding-top: 20px;
    padding-bottom: 24px;
    margin-bottom: 30px;
    background: none;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 p {
  font-size: 16px;
  line-height: 22px;
  white-space: nowrap;
  padding-top: 0px;
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .service_lower_h1 p {
    font-size: 18px;
    line-height: 26px;
    padding-top: 0px;
    padding-bottom: 24px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign {
  /*position: relative;*/
  background: #e2f7ff 0% 0% no-repeat padding-box;
  padding: 4px 0px 0px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign {
    background: transparent;
    padding: 0;
    /* display: flex;
    flex-wrap: wrap;
    background: transparent
      linear-gradient(
        89deg,
        rgba(255, 255, 255, 0.59) 0%,
        rgba(255, 255, 255, 0.553) 100%
      )
      0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 10px 0 10px 10px;
    width: 581px; */
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.lower_campaign_flex {
  position: relative;
  width: 360px;
  margin: 0 auto;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.lower_campaign_flex {
    display: flex;
    flex-wrap: wrap;
    background: transparent linear-gradient(89deg, rgba(255, 255, 255, 0.59) 0%, rgba(255, 255, 255, 0.553) 100%) 0% 0% no-repeat padding-box;
    border-radius: 5px;
    padding: 10px 0 10px 10px;
    width: 581px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_name {
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_name {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1.44px;
    width: 280px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free {
  position: relative;
  height: 55px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free {
    position: relative;
    width: 290px;
    height: auto;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free p.campaign_area {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  color: #005ab8;
  letter-spacing: 0.7px;
  width: 120px;
  padding-top: 0px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free p.campaign_area {
    font-size: 12px;
    line-height: 37px;
    color: #005ab8;
    letter-spacing: 0px;
    width: auto;
    padding-top: 0;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free {
  position: absolute;
  top: 0;
  left: 110px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free {
    left: 0;
    width: 290px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free span {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  padding: 2px 3px 4px 2px;
  margin-right: 2px;
  margin-top: 0px;
  background: transparent linear-gradient(180deg, #00a7e7 0%, #00d7ea 100%) 0% 0% no-repeat padding-box;
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free span {
    vertical-align: bottom;
    font-size: 26px;
    line-height: 26px;
    padding: 1px 3px 4px 3px;
    margin-right: 3px;
    margin-top: 13px;
    border-radius: 3px;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free span.txt_l {
  font-size: 38px;
  line-height: 38px;
  padding: 2px 2px 4px 2px;
  margin-left: 0px;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign div.campaign_area_free h3.campaign_free span.txt_l {
    font-size: 42px;
    line-height: 42px;
    padding: 0px 4px 6px 5px;
    margin-left: 0;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_notice {
  position: absolute;
  top: 65px;
  left: 15px;
  font-size: 10px;
  line-height: 10px;
  padding-top: 0px;
  margin-bottom: 0;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_notice {
    position: relative;
    top: 0;
    left: 0;
    font-size: 12px;
    line-height: 12px;
    padding-top: 10px;
    width: 100%;
  }
}
.lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_notice span {
  display: none;
}
@media screen and (min-width: 1260px) {
  .lower_service_body_wrapper_firstview div.service_lower_h1_campaign .lower_campaign p.campaign_notice span {
    display: inline;
    font-size: 12px;
  }
}

/*-------*/
div.list_cat_set {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 5px;
  padding: 20px 10px 0 20px;
  margin: 0 0 17px 0;
}
@media screen and (min-width: 1260px) {
  div.list_cat_set {
    padding: 20px 10px 0 20px;
    margin: 0 0 52px 0;
  }
}

div.select_cat span {
  display: block;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 20px;
  background: url(../img/case/case_plus.svg) right 10px top 8px no-repeat;
  cursor: pointer;
}
@media screen and (min-width: 1260px) {
  div.select_cat span {
    display: none;
  }
}

div.select_cat p.pc_p {
  display: none;
}
@media screen and (min-width: 1260px) {
  div.select_cat p.pc_p {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    padding-bottom: 20px;
    margin-left: 30px;
  }
}

div.select_cat span.active {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  background: url(../img/case/case_minus.svg) right 10px top 16px no-repeat;
}

div.list_cat_set nav {
  display: none;
}
@media screen and (min-width: 1260px) {
  div.list_cat_set nav {
    display: block;
  }
}

ul.cat_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  ul.cat_nav {
    padding-bottom: 0;
    margin-left: 30px;
  }
}
ul.cat_nav li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  background: #f7ebc8 0% 0% no-repeat padding-box;
  border: 1px solid #e0c67b;
  border-radius: 3px;
  padding: 10px 14px 10px 14px;
  margin: 0 10px 10px 0;
}
@media screen and (min-width: 1260px) {
  ul.cat_nav li a {
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    margin: 0 20px 20px 0;
    width: 260px;
  }
}

/*wp-pagenavi---*/
div.wp-pagenavi {
  text-align: center;
  padding: 10px 0 15px 0;
  margin-bottom: 40px;
}

div.wp-pagenavi a.first,
div.wp-pagenavi a.last,
div.wp-pagenavi a.previouspostslink,
div.wp-pagenavi a.nextpostslink,
div.wp-pagenavi a.page {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  background: #fff 0% 0% no-repeat padding-box;
  border: 1px solid #c9a231;
  border-radius: 5px;
  padding: 7px 12px 7px 12px;
  margin: 0 4px;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 1260px) {
  div.wp-pagenavi a.first,
  div.wp-pagenavi a.last,
  div.wp-pagenavi a.previouspostslink,
  div.wp-pagenavi a.nextpostslink,
  div.wp-pagenavi a.page {
    font-size: 16px;
    line-height: 26px;
    border-radius: 10px;
    padding: 13px 20px 13px 20px;
    margin: 0 8px;
  }
}

.lower-bread_pub div.wp-pagenavi a.first,
.lower-bread_pub div.wp-pagenavi a.last,
.lower-bread_pub div.wp-pagenavi a.previouspostslink,
.lower-bread_pub div.wp-pagenavi a.nextpostslink,
.lower-bread_pub div.wp-pagenavi a.page {
  background: #868686 0% 0% no-repeat padding-box;
  color: #fff;
}

div.wp-pagenavi span.current {
  font-size: 14px;
  font-weight: 500;
  background: #ecce79;
  border: 1px solid #c9a231;
  border-radius: 5px;
  padding: 7px 12px 7px 12px;
  margin: 0 4px;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1260px) {
  div.wp-pagenavi span.current {
    font-size: 16px;
    border-radius: 10px;
    padding: 13px 20px 13px 20px;
    margin: 0 8px;
  }
}

div.wp-pagenavi a:hover {
  font-size: 14px;
  font-weight: 400;
  background: #868686 0% 0% no-repeat padding-box;
  color: #fff;
}
@media screen and (min-width: 1260px) {
  div.wp-pagenavi a:hover {
    font-size: 16px;
  }
}

div.wp-pagenavi span.extend,
div.wp-pagenavi span.pages {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  padding: 7px 4px 7px 4px;
  margin: 0 2px;
  border: none;
  background-color: transparent;
}
@media screen and (min-width: 1260px) {
  div.wp-pagenavi span.extend,
  div.wp-pagenavi span.pages {
    font-size: 16px;
    padding: 11px 10px 11px 10px;
    margin: 0 4px;
  }
}

div.wp-pagenavi span.pages {
  display: block;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  div.wp-pagenavi span.pages {
    display: inline;
    margin-right: 30px;
  }
}

/*
.body_lower-gcf_titlenav_wrapper,
.body_lower-news_titlenav_wrapper {
  margin-top: 100px;
  width: 100%;
  background: #f1f1ed;
  @include media(pc) {
    margin-top: 120px;
  }
}

.body_lower-gcf_titlenav_wrapper {
  background: #f1f1ed url("../img/gcf/main_img.jpg") 50% 0 no-repeat;
}
*/
/*-----------------------------------------------------*/
/*------------*/
.lower-items_body,
.lower-service-top_body,
.lower-service_body {
  padding: 30px 10px 30px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body,
  .lower-service-top_body,
  .lower-service_body {
    padding: 30px 0 60px 0px;
  }
}
.lower-items_body h2:before,
.lower-service-top_body h2:before,
.lower-service_body h2:before {
  display: block;
  content: attr(title) " ";
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  color: #00a7e7;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 3px;
  opacity: 0.75;
}
@media screen and (min-width: 1260px) {
  .lower-items_body h2:before,
  .lower-service-top_body h2:before,
  .lower-service_body h2:before {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 6px;
  }
}
.lower-items_body h2,
.lower-service-top_body h2,
.lower-service_body h2 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #00a7e7;
  text-align: center;
  padding-bottom: 9px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body h2,
  .lower-service-top_body h2,
  .lower-service_body h2 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin-bottom: 46px;
    background-size: 274px 11px;
  }
}

/*-------------*/
.lower-service-top_body {
  /*-------*/
  /*-------*/
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body h2 {
    padding-bottom: 25px;
    margin-bottom: 0;
  }
}
.lower-service-top_body div.service-top_list_cat_set {
  margin: 0 0 25px 0;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body div.service-top_list_cat_set {
    margin: 0 0 50px 0;
  }
}
.lower-service-top_body ul.service-cat_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.service-cat_nav {
    padding-bottom: 0;
  }
}
.lower-service-top_body ul.service-cat_nav li {
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.service-cat_nav li {
    width: auto;
  }
}
.lower-service-top_body ul.service-cat_nav li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 0 0;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  width: 100%;
  padding: 10px 14px 10px 10px;
  margin: 0 10px 10px 0;
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-image: url(../img/common/arrow_below_s.svg);
  background-size: 12px 8px;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.service-cat_nav li a {
    font-size: 18px;
    line-height: 24px;
    width: 387px;
    padding: 20px 10px 20px 20px;
    margin: 0 19px 20px 0;
    background-position: 95% 50%;
    background-image: url(../img/common/arrow-below.svg);
    background-size: 19px 11px;
  }
}
.lower-service-top_body ul.service-cat_nav li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.service-cat_nav li:nth-of-type(3n) a {
    margin-right: 0;
  }
}
.lower-service-top_body div.list_service-s-cat_set {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 5px;
  padding: 10px 10px 0 10px;
  margin: 0 0 72px 0;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body div.list_service-s-cat_set {
    background: transparent;
    padding: 0px 0px 0 0px;
    margin: 0 0 52px 0;
  }
}
.lower-service-top_body div.select_s-cat span {
  display: block;
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 10px;
  background: url(../img/case/case_plus.svg) right 10px top 8px no-repeat;
  cursor: pointer;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body div.select_s-cat span {
    display: none;
  }
}
.lower-service-top_body div.select_s-cat span.active {
  font-size: 16px;
  line-height: 28px;
  background: url(../img/case/case_minus.svg) right 10px top 16px no-repeat;
}
.lower-service-top_body div.list_service-s-cat_set nav {
  display: none;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body div.list_service-s-cat_set nav {
    display: block;
  }
}
.lower-service-top_body ul.s-cat_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.s-cat_nav {
    padding-bottom: 0;
  }
}
.lower-service-top_body ul.s-cat_nav li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  padding: 10px 10px 10px 10px;
  margin: 0 10px 10px 0;
}
@media screen and (min-width: 1260px) {
  .lower-service-top_body ul.s-cat_nav li a {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 15px 20px 15px;
    margin: 0 19px 20px 0;
  }
}
.lower-service-top_body ul.s-cat_nav li a:hover {
  opacity: 0.7;
}
.lower-service-top_body section {
  scroll-margin-top: 100px;
}

/*---*/
.service-top-each-set {
  position: relative;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin-bottom: 25px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set {
    padding: 40px 35px 40px 35px;
    margin-bottom: 40px;
  }
}
.service-top-each-set::before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(135deg, #b0f4f4 0%, #b0f4f4 60%, #01c7dd 100%) 0px 0px no-repeat padding-box;
  z-index: -1;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set::before {
    top: 10px;
    left: 10px;
  }
}
.service-top-each-set .service-top-each-title {
  padding: 30px 10px 0px 10px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set .service-top-each-title {
    padding: 0px 0 0px 0px;
    flex-direction: row;
    align-items: start;
  }
}
.service-top-each-set .service-top-each-title img {
  width: calc(100% - 20px);
  height: auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin: 0 auto 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set .service-top-each-title img {
    width: 315px;
    margin: 0 35px 0 0;
  }
}
@media screen and (min-width: 1260px) {
  .service-top-each-set .service-top-each-title > div {
    width: 836px;
  }
}
.service-top-each-set .service-top-each-title h3 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 24px;
  margin: 0;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set .service-top-each-title h3 {
    font-size: 32px;
    line-height: 46px;
    text-align: left;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin: 0;
  }
}
.service-top-each-set .service-top-each-title .main_explin {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-set .service-top-each-title .main_explin {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

/*-----*/
div.other-service {
  display: flex;
  flex-wrap: wrap;
}

.service-top-each-s-set {
  position: relative;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  margin-right: 10px;
  width: calc(50% - 5px);
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set {
    padding: 40px 0px 40px 35px;
    margin-bottom: 40px;
    margin-right: 50px;
    width: 575px;
  }
}
.service-top-each-s-set:nth-of-type(2n) {
  margin-right: 0px;
}
.service-top-each-s-set::before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(135deg, #b0f4f4 0%, #b0f4f4 60%, #01c7dd 100%) 0px 0px no-repeat padding-box;
  z-index: -1;
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set::before {
    top: 10px;
    left: 10px;
  }
}
.service-top-each-s-set .service-top-each-s-title {
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set .service-top-each-s-title {
    padding: 0px 0 12px 0px;
    flex-direction: row;
    align-items: center;
  }
}
.service-top-each-s-set .service-top-each-s-title img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin: 0 auto 0 auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set .service-top-each-s-title img {
    width: 258px;
    margin: 0 23px 0 0;
  }
}
.service-top-each-s-set .service-top-each-s-title h3 {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 10px;
  margin: 0 2px 0 8px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set .service-top-each-s-title h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin: 0;
  }
}
.service-top-each-s-set .main_explin {
  font-size: 14px;
  line-height: 22px;
  margin: 0 2px 10px 8px;
}
@media screen and (min-width: 1260px) {
  .service-top-each-s-set .main_explin {
    font-size: 18px;
    line-height: 30px;
    margin: 0 10px 30px 0;
  }
}
.service-top-each-s-set .link_btn2-2 a {
  height: 65px;
}
@media screen and (min-width: 600px) {
  .service-top-each-s-set .link_btn2-2 a {
    height: auto; /*平行四辺形の高さ*/
  }
}
@media screen and (min-width: 600px) {
  .service-top-each-s-set .link_btn2-2 a .sp_br {
    display: none;
  }
}

/*-------------------*/
.lower-items_body h2:before {
  color: #fff;
}
.lower-items_body h2 {
  color: #fff;
}

.lower-items_body_pb30,
.lower-service_body_pb30 {
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body_pb30,
  .lower-service_body_pb30 {
    padding-bottom: 30px;
  }
}

.lower-service_body div.lower-service_set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}
.lower-service_body div.lower-service_set div.right_zone,
.lower-service_body div.lower-service_set div.left_zone {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone,
  .lower-service_body div.lower-service_set div.left_zone {
    width: 575px;
    margin-right: 50px;
    margin-bottom: 50px;
  }
}
.lower-service_body div.lower-service_set div.right_zone figure,
.lower-service_body div.lower-service_set div.left_zone figure {
  margin: 0px 0 0px 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone figure,
  .lower-service_body div.lower-service_set div.left_zone figure {
    margin: 0px 0 0px 0;
  }
}
.lower-service_body div.lower-service_set div.right_zone figure img,
.lower-service_body div.lower-service_set div.left_zone figure img {
  width: 100%;
  height: auto;
  padding: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone figure img,
  .lower-service_body div.lower-service_set div.left_zone figure img {
    width: 575px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower-service_body div.lower-service_set div.right_zone figure::before,
.lower-service_body div.lower-service_set div.left_zone figure::before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(135deg, #b0f4f4 0%, #b0f4f4 60%, #01c7dd 100%) 0px 0px no-repeat padding-box;
  z-index: -1;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone figure::before,
  .lower-service_body div.lower-service_set div.left_zone figure::before {
    top: 10px;
    left: 10px;
  }
}
.lower-service_body div.lower-service_set div.right_zone h3,
.lower-service_body div.lower-service_set div.left_zone h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone h3,
  .lower-service_body div.lower-service_set div.left_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 25px 0px 25px 0px;
  }
}
.lower-service_body div.lower-service_set div.right_zone p,
.lower-service_body div.lower-service_set div.left_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 10px 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone p,
  .lower-service_body div.lower-service_set div.left_zone p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 0px 25px 0px;
  }
}
.lower-service_body div.lower-service_set div.right_zone p:last-of-type,
.lower-service_body div.lower-service_set div.left_zone p:last-of-type {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set div.right_zone:nth-of-type(2n),
  .lower-service_body div.lower-service_set div.left_zone:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set2 {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set2 div.left_zone:first-of-type,
  .lower-service_body div.lower-service_set2 div.right_zone:first-of-type {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_set2 div.left_zone:nth-of-type(2n),
  .lower-service_body div.lower-service_set2 div.right_zone:nth-of-type(2n) {
    margin-right: 50px;
  }
}

.lower-service_body div.lower-service_3set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}
.lower-service_body div.lower-service_3set div.each_zone {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone {
    flex-direction: column;
    width: 370px;
    margin-right: 45px;
    margin-bottom: 50px;
  }
}
.lower-service_body div.lower-service_3set div.each_zone figure {
  margin: 8px 0 0px 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone figure {
    margin: 0px 0 0px 0;
  }
}
.lower-service_body div.lower-service_3set div.each_zone figure img {
  width: 156px;
  height: auto;
  padding: 0;
  border-radius: 3px 3px 0px 0px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone figure img {
    width: 370px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower-service_body div.lower-service_3set div.each_zone h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px 5px 0px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 0px 0px 25px 0px;
  }
}
.lower-service_body div.lower-service_3set div.each_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 0px 15px 10px;
  width: calc(100% - 156px);
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 0px 25px 0px;
    width: auto;
  }
}
.lower-service_body div.lower-service_3set div.each_zone p:last-of-type {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.lower-service_3set div.each_zone:nth-of-type(3n) {
    margin-right: 0;
  }
}
.lower-service_body div.conclusion p {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0px 25px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-service_body div.conclusion p {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0px;
    margin: 0;
    padding: 25px 0px 45px 0px;
  }
}

/*-----------------------*/
/*-----------------------*/
.lower-items_body div.lower-items_set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
  }
}
.lower-items_body div.lower-items_set div.right_zone,
.lower-items_body div.lower-items_set div.left_zone {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone,
  .lower-items_body div.lower-items_set div.left_zone {
    width: 575px;
    margin-bottom: 25px;
  }
}
.lower-items_body div.lower-items_set div.right_zone figure,
.lower-items_body div.lower-items_set div.left_zone figure {
  margin: 0px 0 0px 0;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone figure,
  .lower-items_body div.lower-items_set div.left_zone figure {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0px 0 0px 0;
  }
}
.lower-items_body div.lower-items_set div.right_zone figure img,
.lower-items_body div.lower-items_set div.left_zone figure img {
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone figure img,
  .lower-items_body div.lower-items_set div.left_zone figure img {
    width: 575px;
    max-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone figure img.h575,
  .lower-items_body div.lower-items_set div.left_zone figure img.h575 {
    max-height: 575px;
  }
}
.lower-items_body div.lower-items_set div.right_zone h3,
.lower-items_body div.lower-items_set div.left_zone h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone h3,
  .lower-items_body div.lower-items_set div.left_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 25px 0px 25px 0px;
  }
}
.lower-items_body div.lower-items_set div.right_zone p,
.lower-items_body div.lower-items_set div.left_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 10px 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone p,
  .lower-items_body div.lower-items_set div.left_zone p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 0px 25px 0px;
  }
}
.lower-items_body div.lower-items_set div.right_zone p:last-of-type,
.lower-items_body div.lower-items_set div.left_zone p:last-of-type {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone:nth-of-type(2n),
  .lower-items_body div.lower-items_set div.left_zone:nth-of-type(2n) {
    margin-right: 0;
  }
}
.lower-items_body div.lower-items_set div.right_zone {
  top: -20px;
  left: 10px;
  padding: 0px 0px;
  width: calc(100vw - 30px);
  max-width: 630px;
  background: rgba(255, 255, 255, 0.9) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set div.right_zone {
    top: 0;
    left: 525px;
    padding: 20px 40px;
    width: 665px;
    min-height: 350px;
    max-width: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}

@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set2 {
    flex-direction: row-reverse;
  }
}
.lower-items_body div.lower-items_set2 div.right_zone figure,
.lower-items_body div.lower-items_set2 div.left_zone figure {
  text-align: right;
}
.lower-items_body div.lower-items_set2 div.right_zone {
  left: 0;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_set2 div.right_zone {
    left: -550px;
  }
}

.lower-items_body div.lower-items_3set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}
.lower-items_body div.lower-items_3set div.each_zone {
  background: rgba(255, 255, 255, 0.9) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone {
    flex-direction: column;
    width: 370px;
    margin-right: 45px;
    margin-bottom: 50px;
  }
}
.lower-items_body div.lower-items_3set div.each_zone figure {
  margin: 8px 0 10px 10px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone figure {
    margin: 0px 0 0px 0;
  }
}
.lower-items_body div.lower-items_3set div.each_zone figure img {
  width: 156px;
  height: auto;
  padding: 0;
  border-radius: 3px 3px 0px 0px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone figure img {
    width: 370px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower-items_body div.lower-items_3set div.each_zone h3 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.7px;
  padding: 15px 10px 5px 10px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 16px 16px 16px 16px;
  }
}
.lower-items_body div.lower-items_3set div.each_zone p {
  font-size: 14px;
  line-height: 22px;
  /* font-size: 16px;
  line-height: 28px; */
  padding: 5px 0px 0px 10px;
  width: calc(100% - 170px);
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 16px 16px 16px;
    width: auto;
  }
}
.lower-items_body div.lower-items_3set div.each_zone p:last-of-type {
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone p:last-of-type {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.lower-items_3set div.each_zone:nth-of-type(3n) {
    margin-right: 0;
  }
}
.lower-items_body div.conclusion p {
  font-size: 16px;
  line-height: 28px;
  padding: 15px 0px 25px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-items_body div.conclusion p {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0px;
    margin: 0;
    padding: 25px 0px 45px 0px;
  }
}

/*------------------------------------------*/
@media screen and (min-width: 1260px) {
  .lower_items_list {
    padding-bottom: 60px;
  }
}
.lower_items_list > h3,
.lower_items_list > h3::before,
.lower_items_list > p {
  color: #fff;
}

.items-top-each-set {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1260px) {
  .items-top-each-set {
    padding: 40px 35px 30px 35px;
    margin-bottom: 40px;
  }
}

.items-top-each-title {
  padding: 30px 10px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1260px) {
  .items-top-each-title {
    padding: 0px 0 35px 0px;
    flex-direction: row;
  }
}
.items-top-each-title img {
  width: 260px;
  height: auto;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .items-top-each-title img {
    margin-right: 35px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1260px) {
  .items-top-each-title > div {
    width: 836px;
  }
}
.items-top-each-title h2:before {
  display: block;
  content: attr(title) " ";
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 3px;
  opacity: 0.75;
}
@media screen and (min-width: 1260px) {
  .items-top-each-title h2:before {
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    padding-bottom: 6px;
  }
}
.items-top-each-title h2 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 24px;
}
@media screen and (min-width: 1260px) {
  .items-top-each-title h2 {
    font-size: 32px;
    line-height: 46px;
    text-align: left;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    background-size: 274px 11px;
  }
}
.items-top-each-title .main_explin {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}
@media screen and (min-width: 1260px) {
  .items-top-each-title .main_explin {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

div.items_list_set {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  padding-top: 10px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1260px) {
  div.items_list_set {
    padding: 40px 35px 30px 35px;
    margin-bottom: 40px;
  }
}

.items_list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* padding: 10px 10px; */
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .items_list ul {
    padding: 0;
  }
}
.items_list ul li {
  margin-right: 15px;
  margin-bottom: 15px;
  width: calc((100vw - 55px) / 2);
}
@media screen and (min-width: 1260px) {
  .items_list ul li {
    margin-right: 45px;
    margin-bottom: 45px;
    width: auto;
  }
}
.items_list ul li a {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 53% 40%;
  padding-top: 120px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a {
    width: 204px;
    height: 218px;
    padding-top: 130px;
  }
}
.items_list ul li a h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.items_list ul li a.items_record {
  background-image: url(../img/items/items_record.svg);
  background-size: 50% 50%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_record {
    background-size: auto auto;
  }
}
.items_list ul li a.items_cd {
  background-image: url(../img/items/items_cd.svg);
  background-size: 40% 40%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_cd {
    background-size: auto auto;
  }
}
.items_list ul li a.items_bluray {
  background-image: url(../img/items/items_bluray.svg);
  background-size: 38% 38%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_bluray {
    background-size: auto auto;
  }
}
.items_list ul li a.items_instrument {
  background-image: url(../img/items/items_instrument.svg);
  background-size: 55% 55%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_instrument {
    background-size: auto auto;
  }
}
.items_list ul li a.items_audio {
  background-image: url(../img/items/items_audio.svg);
  background-size: 45% 45%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_audio {
    background-size: auto auto;
  }
}
.items_list ul li a.items_player {
  background-image: url(../img/items/items_player.svg);
  background-size: 45% 45%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_player {
    background-size: auto auto;
  }
}
.items_list ul li a.items_amplifier {
  background-image: url(../img/items/items_amplifier.svg);
  background-size: 40% 40%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_amplifier {
    background-size: auto auto;
  }
}
.items_list ul li a.items_speaker {
  background-image: url(../img/items/items_speaker.svg);
  background-size: 40% 40%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_speaker {
    background-size: auto auto;
  }
}
.items_list ul li a.items_book {
  background-image: url(../img/items/items_book.svg);
  background-size: 40% 40%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_book {
    background-size: auto auto;
  }
}
.items_list ul li a.items_artist {
  background-image: url(../img/items/items_artist.svg);
  background-size: 45% 45%;
}
@media screen and (min-width: 1260px) {
  .items_list ul li a.items_artist {
    background-size: auto auto;
  }
}
.items_list ul li a:hover {
  opacity: 0.8;
}
.items_list ul li a:hover h4 {
  opacity: 0.7;
}
.items_list ul li:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .items_list ul li:nth-of-type(2n) {
    margin-right: 45px;
  }
}
@media screen and (min-width: 1260px) {
  .items_list ul li:nth-of-type(4n) {
    margin-right: 0;
  }
}

.items_txt_list {
  border-top: #b7b7b7 1px solid;
  padding: 10px 0 0px 0;
  margin: 0 10px;
}
@media screen and (min-width: 1260px) {
  .items_txt_list {
    margin: 0;
  }
}
.items_txt_list dl {
  padding: 10px 0px;
}
@media screen and (min-width: 1260px) {
  .items_txt_list dl {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px;
  }
}
.items_txt_list dl dt {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (min-width: 1260px) {
  .items_txt_list dl dt {
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    padding-right: 35px;
    width: 295px;
  }
}
.items_txt_list dl dd {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 1260px) {
  .items_txt_list dl dd {
    font-size: 16px;
    line-height: 24px;
    width: 835px;
  }
}
.items_txt_list dl dd a {
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (min-width: 1260px) {
  .items_txt_list dl dd a {
    font-size: 16px;
  }
}

/*------------------------*/
/*
/*------------*/
.lower_faq_list ul.faq_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list ul.faq_nav {
    padding-bottom: 0;
  }
}
.lower_faq_list ul.faq_nav li a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  background: #ffffff url(../img/faq/faq_below_arrow.svg) 95% 50% no-repeat padding-box;
  background-size: 9px 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
  padding: 14px 14px 14px 14px;
  margin: 0 10px 10px 0;
  width: calc((100vw - 50px) / 2);
  max-width: 305px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list ul.faq_nav li a {
    font-size: 18px;
    line-height: 24px;
    background-size: 18px 11px;
    padding: 20px;
    margin: 0 20px 20px 0;
    width: 285px;
    max-width: none;
  }
}
.lower_faq_list ul.faq_nav li a:hover {
  opacity: 0.7;
}
.lower_faq_list ul.faq_nav li:nth-of-type(2n) a {
  margin-right: 0;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list ul.faq_nav li:nth-of-type(2n) a {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1260px) {
  .lower_faq_list ul.faq_nav li:nth-of-type(4n) a {
    margin-right: 0;
  }
}
.lower_faq_list > h3 {
  color: #611c30;
}
.lower_faq_list > h3::before {
  background-color: #611c30;
  margin-top: 90px;
}
.lower_faq_list .fap-lower-top_list .faq_list dl {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0px 10px 0px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 0px 15px 0px 15px;
  }
}
.lower_faq_list .fap-lower-top_list .faq_list dl dt {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 12px 20px 10px 45px;
  margin: 0;
  background-image: url(../img/faq/plus.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  cursor: pointer;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl dt {
    font-size: 18px;
    line-height: 26px;
    padding: 25px 30px 20px 50px;
    margin: 0;
    background-position: 100% 50%;
    background-size: 30px 30px;
  }
}
.lower_faq_list .fap-lower-top_list .faq_list dl dt.active {
  background: url(../img/faq/minus.svg) 100% 50% no-repeat;
  background-size: 15px 1px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl dt.active {
    background-size: 30px 1px;
  }
}
.lower_faq_list .fap-lower-top_list .faq_list dl dt::before {
  content: "Q";
  position: absolute;
  top: 10px;
  left: 0px;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 29px;
  text-align: center;
  background: #611c30 0% 0% no-repeat padding-box;
  border-radius: 3px;
  padding: 0 0 2px 0;
  width: 31px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl dt::before {
    top: 20px;
    font-size: 25px;
    line-height: 33px;
    padding: 0 0 2px 0;
    width: 35px;
  }
}
.lower_faq_list .fap-lower-top_list .faq_list dl dd {
  display: none;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding: 5px 0px 10px 45px;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl dd {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 10px 20px 50px;
  }
}
.lower_faq_list .fap-lower-top_list .faq_list dl dd::before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 22px;
  font-weight: 500;
  color: #611c30;
  line-height: 29px;
  text-align: center;
  border: 2px solid #611c30;
  border-radius: 3px;
  width: 29px;
  padding: 0 0 2px 0;
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl dd::before {
    font-size: 25px;
    line-height: 25px;
    width: 31px;
    padding: 0 0 5px 0;
  }
}
@media screen and (min-width: 1260px) {
  .lower_faq_list .fap-lower-top_list .faq_list dl:nth-of-type(2n) {
    margin-right: 0;
  }
}

/*-----*/
.lower_company-top-outline_list,
.lower_company-top-staff_list,
.lower_company-top-interview_list,
.lower_company-top-greeting_list,
.lower_company-top-navi_list {
  padding: 30px 10px 30px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-outline_list,
  .lower_company-top-staff_list,
  .lower_company-top-interview_list,
  .lower_company-top-greeting_list,
  .lower_company-top-navi_list {
    padding: 30px 0 60px 0px;
  }
}
.lower_company-top-outline_list h2:before,
.lower_company-top-staff_list h2:before,
.lower_company-top-interview_list h2:before,
.lower_company-top-greeting_list h2:before,
.lower_company-top-navi_list h2:before {
  display: block;
  content: attr(title) " ";
  font-size: 10px;
  line-height: 15px;
  font-weight: 700;
  color: #00a7e7;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 3px;
  opacity: 0.75;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-outline_list h2:before,
  .lower_company-top-staff_list h2:before,
  .lower_company-top-interview_list h2:before,
  .lower_company-top-greeting_list h2:before,
  .lower_company-top-navi_list h2:before {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 6px;
  }
}
.lower_company-top-outline_list h2,
.lower_company-top-staff_list h2,
.lower_company-top-interview_list h2,
.lower_company-top-greeting_list h2,
.lower_company-top-navi_list h2 {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: #00a7e7;
  text-align: center;
  padding-bottom: 9px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-outline_list h2,
  .lower_company-top-staff_list h2,
  .lower_company-top-interview_list h2,
  .lower_company-top-greeting_list h2,
  .lower_company-top-navi_list h2 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin-bottom: 46px;
    background-size: 274px 11px;
  }
}
.lower_company-top-outline_list .main_explin,
.lower_company-top-staff_list .main_explin,
.lower_company-top-interview_list .main_explin,
.lower_company-top-greeting_list .main_explin,
.lower_company-top-navi_list .main_explin {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-outline_list .main_explin,
  .lower_company-top-staff_list .main_explin,
  .lower_company-top-interview_list .main_explin,
  .lower_company-top-greeting_list .main_explin,
  .lower_company-top-navi_list .main_explin {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 30px;
  }
}

/*-------*/
.lower_company-top-navi_list {
  padding: 30px 10px 10px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-navi_list {
    padding: 30px 0 30px 0px;
  }
}
.lower_company-top-navi_list .main_explin {
  color: #000;
}

div.company-top_cat-list_set {
  margin: 0 0 0px 0;
}
@media screen and (min-width: 1260px) {
  div.company-top_cat-list_set {
    margin: 0 0 0px 0;
  }
}

ul.company-cat_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  ul.company-cat_nav {
    padding-bottom: 0;
  }
}
ul.company-cat_nav li {
  width: 100%;
}
@media screen and (min-width: 1260px) {
  ul.company-cat_nav li {
    width: auto;
  }
}
ul.company-cat_nav li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 0 0;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  width: 100%;
  padding: 10px 14px 10px 10px;
  margin: 0 10px 10px 0;
  background-repeat: no-repeat;
  background-position: 97% 50%;
  background-image: url(../img/common/arrow_below_s.svg);
  background-size: 12px 8px;
}
@media screen and (min-width: 1260px) {
  ul.company-cat_nav li a {
    font-size: 18px;
    line-height: 24px;
    width: 387px;
    padding: 20px 10px 20px 20px;
    margin: 0 19px 20px 0;
    background-position: 95% 50%;
    background-image: url(../img/common/arrow-below.svg);
    background-size: 19px 11px;
  }
}
ul.company-cat_nav li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  ul.company-cat_nav li:nth-of-type(3n) a {
    margin-right: 0;
  }
}

.lower_company-top-staff_list,
.lower_company-top-greeting_list {
  padding: 30px 10px 10px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list,
  .lower_company-top-greeting_list {
    padding: 30px 0 30px 0px;
  }
}
.lower_company-top-staff_list > h2,
.lower_company-top-staff_list > h2::before,
.lower_company-top-staff_list > p,
.lower_company-top-greeting_list > h2,
.lower_company-top-greeting_list > h2::before,
.lower_company-top-greeting_list > p {
  color: #fff;
}

.lower_company-top-greeting_list div.lower-company-top-greeting_set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone,
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone {
    width: 487px;
    margin-bottom: 25px;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone figure,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone figure {
  margin: 0px 0 0px 0;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone figure,
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone figure {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0px 0 0px 0;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone figure img,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone figure img {
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone figure img,
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone figure img {
    width: 487px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone h3,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone h3,
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 25px 0px 25px 0px;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone p,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 10px 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone p,
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 0px 25px 0px;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone p:last-of-type,
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone p:last-of-type {
  font-weight: 700;
  text-align: right;
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone:nth-of-type(2n),
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.left_zone:nth-of-type(2n) {
    margin-right: 0;
  }
}
.lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone {
  top: -20px;
  left: 10px;
  padding: 0px 0px;
  width: calc(100vw - 30px);
  max-width: 630px;
  background: rgba(255, 255, 255, 0.9) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-greeting_list div.lower-company-top-greeting_set div.right_zone {
    top: 0;
    left: 45px;
    /* left: 525px; */
    padding: 20px 40px;
    width: 665px;
    max-width: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}

/*-------*/
.lower_company-top-interview_list {
  padding: 30px 10px 30px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list {
    padding: 30px 0 20px 0px;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone,
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone {
    width: 575px;
    margin-bottom: 0px;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone figure,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone figure {
  margin: 0px 0 0px 0;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone figure,
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone figure {
    position: absolute;
    top: 25px;
    left: 0;
    margin: 0px 0 0px 0;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone figure img,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone figure img {
  width: calc(100% - 10px);
  height: auto;
  padding: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone figure img,
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone figure img {
    width: 575px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone h3,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone h3,
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone h3 {
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 25px 0px 25px 0px;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone p,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 10px 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone p,
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 0px 25px 0px;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone p:last-of-type,
.lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone p:last-of-type {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone:nth-of-type(2n),
  .lower_company-top-interview_list div.lower-company-top-interview_set div.left_zone:nth-of-type(2n) {
    margin-right: 0;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone {
  top: -20px;
  left: 10px;
  padding: 0px 0px;
  width: calc(100vw - 30px);
  max-width: 630px;
  background: rgba(255, 255, 255, 0.9) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set div.right_zone {
    top: 0px;
    left: 525px;
    padding: 0px 40px;
    width: 665px;
    max-width: none;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set:first-of-type {
    margin-bottom: 125px;
  }
}

@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set2 {
    flex-direction: row-reverse;
  }
}
.lower_company-top-interview_list div.lower-company-top-interview_set2 div.right_zone figure,
.lower_company-top-interview_list div.lower-company-top-interview_set2 div.left_zone figure {
  text-align: right;
}
.lower_company-top-interview_list div.lower-company-top-interview_set2 div.right_zone {
  left: 0;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set2 div.right_zone {
    left: -550px;
  }
}

.lower_company-top-interview_list div.lower-company-top-interview_set3 div.right_zone {
  left: 0;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set3 div.right_zone {
    left: 0px;
  }
}
@media screen and (min-width: 1260px) {
  .lower_company-top-interview_list div.lower-company-top-interview_set3 div.all_zone {
    width: 100%;
  }
}

/*-----------*/
/*-----------------*/
.lower_company-top-staff_list > img {
  background: transparent url("img/company-staff1.png") 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list > img {
    margin-bottom: 50px;
  }
}
.lower_company-top-staff_list div.lower-items_3set {
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 0px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone {
  background: rgba(255, 255, 255, 0.9) 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone {
    flex-direction: column;
    width: 370px;
    margin-right: 45px;
    margin-bottom: 50px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone figure {
  margin: 8px 8px 5px 0px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  width: calc(50% - 8px);
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone figure {
    margin: 0px 0 0px 0;
    width: auto;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone figure img {
  width: 100%;
  height: auto;
  padding: 0;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone figure img {
    width: 370px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone h3 {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 1.1px;
  padding: 15px 10px 5px 10px;
  width: 50%;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone h3 {
    flex-direction: row;
    font-size: 26px;
    line-height: 37px;
    letter-spacing: 1.3px;
    margin: 0;
    padding: 16px 16px 16px 16px;
    width: 100%;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone h3 span.part {
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone h3 span.part {
    font-size: 16px;
    line-height: 28px;
    margin-right: 10px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone h3 span.from {
  font-size: 14px;
  line-height: 26px;
  margin-left: auto;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone h3 span.from {
    font-size: 16px;
    line-height: 28px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone h4 {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 26px;
  font-weight: 700;
  color: #00a7e7;
  padding: 0px 10px 5px 10px;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone h4 {
    justify-content: baseline;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    padding: 0px 16px 6px 16px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone h4 span {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone h4 span {
    font-size: 16px;
    line-height: 28px;
    margin-left: auto;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone p {
  font-size: 16px;
  line-height: 28px;
  padding: 0 5px 15px 10px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0 16px 16px 16px;
  }
}
.lower_company-top-staff_list div.lower-items_3set div.each_zone p:last-of-type {
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower_company-top-staff_list div.lower-items_3set div.each_zone:nth-of-type(3n) {
    margin-right: 0;
  }
}

/*-----------------*/
/*------------------------------------------------------*/
.container_info-list {
  box-sizing: border-box;
  margin: 0 auto 30px auto;
  padding: 20px 10px 40px 10px;
  width: 100%;
  max-width: 660px;
}
@media screen and (min-width: 1260px) {
  .container_info-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 auto;
    padding: 30px 0 60px 0;
    width: 1200px;
    max-width: none;
  }
}
.container_info-list .lower-info-list_body {
  box-sizing: border-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body {
    padding: 20px 30px 30px 30px;
    margin: 0 40px 20px 0;
    width: 860px;
  }
}
.container_info-list .lower-info-list_body .info-article_set {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 15px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set {
    align-items: center;
    margin-right: 0px;
    margin-bottom: 40px;
  }
}
.container_info-list .lower-info-list_body .info-article_set > a:hover {
  opacity: 0.7;
}
.container_info-list .lower-info-list_body .info-article_set figure {
  width: 110px;
  margin: 0 10px 0px 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set figure {
    width: 250px;
    margin: 0 20px 0px 0;
  }
}
.container_info-list .lower-info-list_body .info-article_set figure img {
  width: 110px;
  height: auto;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set figure img {
    width: 250px;
    height: auto;
  }
}
.container_info-list .lower-info-list_body .info-article_set div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(100vw - 160px);
  max-width: 480px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div {
    height: 100%;
    width: calc(100% - 280px);
    max-width: none;
  }
}
.container_info-list .lower-info-list_body .info-article_set div p.date {
  font-size: 14px;
  line-height: 18px;
  color: #898989;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div p.date {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
.container_info-list .lower-info-list_body .info-article_set div ul.cat {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div ul.cat {
    margin-bottom: 22px;
  }
}
.container_info-list .lower-info-list_body .info-article_set div ul.cat li a {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #00a7e7;
  padding-top: 0px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div ul.cat li a {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 0;
  }
}
.container_info-list .lower-info-list_body .info-article_set div ul.cat li::after {
  content: "/";
  color: #00a7e7;
  font-size: 14px;
  padding: 0 5px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div ul.cat li::after {
    font-size: 16px;
  }
}
.container_info-list .lower-info-list_body .info-article_set div ul.cat li:last-child:after {
  content: "";
  padding: 0;
}
.container_info-list .lower-info-list_body .info-article_set div h2 a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 5px 0px 5px 0px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div h2 a {
    font-size: 20px;
    line-height: 28px;
    padding: 10px 0 6px 0;
  }
}
.container_info-list .lower-info-list_body .info-article_set div h2 a:hover {
  opacity: 0.7;
}
.container_info-list .lower-info-list_body .info-article_set div p.outline {
  font-size: 14px;
  line-height: 22px;
}
@media screen and (min-width: 1260px) {
  .container_info-list .lower-info-list_body .info-article_set div p.outline {
    font-size: 16px;
    line-height: 24px;
  }
}

.container_info-case_detail {
  box-sizing: border-box;
  margin: 0 auto 0px auto;
  padding: 20px 20px 40px 20px;
  width: 100%;
  max-width: 660px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 auto;
    padding: 30px 0 60px 0;
    width: 1200px;
    max-width: none;
  }
}
.container_info-case_detail .lower-info-detail_body {
  box-sizing: border-box;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body {
    padding: 20px 30px 50px 30px;
    margin: 20px 40px 40px 0;
    width: 860px;
  }
}
.container_info-case_detail .lower-info-detail_body p.date {
  font-size: 16px;
  line-height: 24px;
  color: #898989;
  padding-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body p.date {
    font-size: 18px;
    line-height: 26px;
    padding-top: 10px;
    margin-bottom: 30px;
  }
}
.container_info-case_detail .lower-info-detail_body ul.cat4blog {
  padding-bottom: 40px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body ul.cat4blog {
    padding-bottom: 40px;
  }
}
.container_info-case_detail .lower-info-detail_body ul.cat4blog li a {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #00a7e7;
  padding-top: 10px;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body ul.cat4blog li a {
    font-size: 18px;
    line-height: 28px;
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.container_info-case_detail .lower-info-detail_body h1 {
  position: relative;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 6px 5px 9px 5px;
  margin-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body h1 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding: 16px 0 24px 0;
    margin-bottom: 8px;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail figure {
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail figure {
    text-align: center;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail figure img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail figure img {
    width: 380px;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc {
  margin-bottom: 30px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc {
    margin-bottom: 38px;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.quantity {
  font-size: 14px;
  line-height: 18px;
  color: #ff0000;
  padding-top: 5px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.quantity {
    font-size: 20px;
    line-height: 20px;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.price {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-align: right;
  color: #ff0000;
  padding: 10px 0 10px 0;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.price {
    font-size: 61px;
    line-height: 71px;
    padding: 10px 0 20px 0;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.area::before {
  content: "エリア";
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #7f7f7e;
  padding: 10px 0 0px 0;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.area::before {
    font-size: 16px;
    line-height: 28px;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.area {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 10px 0 10px 0;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc p.area {
    font-size: 16px;
    line-height: 28px;
    padding: 10px 0 20px 0;
  }
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc ul.cat {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc ul.cat li {
  display: block;
  font-size: 14px;
  line-height: 18px;
  background: #f7ebc8 0% 0% no-repeat padding-box;
  border: 1px solid #e0c67b;
  border-radius: 3px;
  padding: 10px 14px 10px 14px;
  margin: 0 10px 10px 0;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .case-detail div.case-price-area_etc ul.cat li {
    font-size: 16px;
    line-height: 20px;
    padding: 10px;
    margin: 0 20px 20px 0;
  }
}
.container_info-case_detail .lower-info-detail_body .blog-contents figure {
  margin-bottom: 20px;
}
.container_info-case_detail .lower-info-detail_body .blog-contents figure img {
  max-width: 100%;
}
.container_info-case_detail .lower-info-detail_body .blog-contents h1,
.container_info-case_detail .lower-info-detail_body .blog-contents h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  border-bottom: #707070 solid 1px;
  padding: 26px 0 8px 0;
  margin-bottom: 18px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .blog-contents h1,
  .container_info-case_detail .lower-info-detail_body .blog-contents h2 {
    font-size: 26px;
    line-height: 37px;
    padding: 30px 0 10px 0;
    margin-bottom: 20px;
  }
}
.container_info-case_detail .lower-info-detail_body .blog-contents p {
  font-size: 16px;
  line-height: 26px;
  padding: 0 0 18px 0;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .blog-contents p {
    font-size: 18px;
    line-height: 30px;
    padding: 0 0 20px 0;
  }
}
.container_info-case_detail .lower-info-detail_body .blog-contents p span {
  font-size: inherit;
}
.container_info-case_detail .lower-info-detail_body .blog-contents ol,
.container_info-case_detail .lower-info-detail_body .blog-contents ul {
  list-style-position: inside;
  padding-bottom: 20px;
}
.container_info-case_detail .lower-info-detail_body .blog-contents ol li,
.container_info-case_detail .lower-info-detail_body .blog-contents ul li {
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 2px 0;
  border-radius: 5px;
}
@media screen and (min-width: 1260px) {
  .container_info-case_detail .lower-info-detail_body .blog-contents ol li,
  .container_info-case_detail .lower-info-detail_body .blog-contents ul li {
    font-size: 18px;
    line-height: 28px;
    padding: 0 0 2px 0;
  }
}
.container_info-case_detail .lower-info-detail_body .blog-contents ol li pre,
.container_info-case_detail .lower-info-detail_body .blog-contents ul li pre {
  display: inline;
}
.container_info-case_detail .lower-info-detail_body .blog-contents ol li strong,
.container_info-case_detail .lower-info-detail_body .blog-contents ul li strong {
  font-size: inherit;
  line-height: inherit;
}
@media (max-width: 1259px) {
  .container_info-case_detail .lower-info-detail_body .blog-contents .gallery .gallery-item img {
    width: 100% !important;
    height: auto !important;
  }
}

.lower-info-detail_side {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 5px;
  margin-top: 50px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side {
    margin-top: 20px;
    width: 300px;
  }
}
.lower-info-detail_side h4 {
  font-size: 18px;
  line-height: 26px;
  margin: 0px 10px 7px 12px;
  padding: 20px 0 6px 0;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side h4 {
    font-size: 20px;
    line-height: 28px;
    margin: 20px 20px 12px 20px;
    padding: 0 0 8px 0;
  }
}
.lower-info-detail_side ul.cat_side_nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 10px 2px 12px;
  margin: 0 0 0px 0;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side ul.cat_side_nav {
    display: block;
    padding: 0px 10px 0 20px;
    margin: 0 0 30px 0;
  }
}
.lower-info-detail_side ul.cat_side_nav li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding: 10px;
  margin: 0 10px 10px 0;
  background: #f7ebc8 0% 0% no-repeat padding-box;
  border: 1px solid #e0c67b;
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side ul.cat_side_nav li a {
    font-size: 16px;
    line-height: 20px;
    padding: 10px 0px 10px 10px;
    margin: 0 10px 10px 0;
  }
}
.lower-info-detail_side ul.cat_side_nav2 {
  margin-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side ul.cat_side_nav2 {
    margin-bottom: 60px;
  }
}
.lower-info-detail_side .recent-list {
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side .recent-list {
    margin-bottom: 60px;
  }
}
.lower-info-detail_side .recent-list a {
  display: block;
  width: calc(100% - 24px);
  margin: 10px auto 0 auto;
  padding: 0 0 10px 0;
  border-bottom: #c3c3c3 solid 1px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side .recent-list a {
    width: calc(100% - 40px);
  }
}
.lower-info-detail_side .recent-list a dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.lower-info-detail_side .recent-list a dl dt img {
  width: 70px;
  height: auto;
}
.lower-info-detail_side .recent-list a dl dd {
  font-size: 14px;
  line-height: 24px;
  width: calc(100% - 80px);
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side .recent-list a dl dd {
    font-size: 14px;
    line-height: 20px;
    width: 180px;
  }
}
.lower-info-detail_side .recent-list a:hover {
  opacity: 0.7;
}
.lower-info-detail_side .archive {
  margin: 10px 12px 0 12px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1260px) {
  .lower-info-detail_side .archive {
    margin: 14px 20px 40px 20px;
    padding-bottom: 0;
  }
}
.lower-info-detail_side .archive select {
  width: 100%;
  padding: 10px;
  background: #f5f5f5 0% 0% no-repeat padding-box;
  border: 1px solid #c1c1c1;
  border-radius: 3px;
}
.lower-info-detail_side .archive select option {
  width: 100%;
}

/*------------------------*/
.body_info-detail_titlenav_wrapper {
  margin-top: 0px;
  width: 100%;
  background: #f1f1ed;
}
.detail-news_nav {
  padding: 30px 20px 10px 20px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav {
    padding: 30px 0 60px 0px;
  }
}
.detail-news_nav h3:before {
  display: block;
  content: attr(title) " ";
  font-size: 10px;
  line-height: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  padding-bottom: 3px;
  opacity: 0.41;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav h3:before {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 6px;
  }
}
.detail-news_nav h3 {
  position: relative;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 9px;
  margin-bottom: 20px;
  background: url(../img/common/deco2.svg) 50% 100% no-repeat;
  background-size: 141px 6px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav h3 {
    font-size: 32px;
    line-height: 46px;
    letter-spacing: 1.6px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin-bottom: 46px;
    background-size: 274px 11px;
  }
}
.detail-news_nav > div .latest_list {
  margin-bottom: 25px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.detail-news_nav > div .latest_list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a {
    /*display: block;*/
    width: 575px;
    margin-right: 50px;
    margin-bottom: 30px;
  }
}
.detail-news_nav > div .latest_list a figure {
  width: 120px;
  margin: 0 0px 0px 0;
  padding: 0px 0 0px 0;
  text-align: center;
  vertical-align: middle;
  /*@include media(pc) {
    width: 360px;
    margin: 0 0 29px 0;
  }*/
}
.detail-news_nav > div .latest_list a figure img {
  width: 120px;
  height: auto;
  padding-bottom: 0px;
  /*@include media(pc) {
    width: 360px;
    height: auto;
  }*/
}
.detail-news_nav > div .latest_list a div {
  padding-top: 20px;
  width: calc(100vw - 180px);
  max-width: 480px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a div {
    width: 430px;
    max-width: none;
  }
}
.detail-news_nav > div .latest_list a p.cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  width: auto;
  background: #60ac50;
  border-radius: 3px;
  padding: 0 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a p.cat {
    font-size: 14px;
    line-height: 26px;
    /*padding-top: 12px;*/
  }
}
.detail-news_nav > div .latest_list a h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding-bottom: 8px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a h4 {
    font-size: 18px;
    line-height: 28px;
    padding: 0 0 5px 0;
  }
}
.detail-news_nav > div .latest_list a small {
  display: block;
  font-size: 12px;
  line-height: 28px;
  text-align: right;
  color: #898989;
  width: 100%;
  margin-top: 4px;
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a small {
    font-size: 14px;
    line-height: 28px;
    margin: 0;
  }
}
@media screen and (min-width: 1260px) {
  .detail-news_nav > div .latest_list a:nth-of-type(2n) {
    margin-right: 0;
  }
}
.detail-news_nav > div .latest_list a:hover figure, .detail-news_nav > div .latest_list a:hover h4, .detail-news_nav > div .latest_list a:hover small, .detail-news_nav > div .latest_list a:hover p {
  opacity: 0.7;
}

/*---------------------------------------------*/
.lower-contact_body,
.lower-privacy_body {
  padding: 20px 10px 20px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body,
  .lower-privacy_body {
    padding: 34px 0 60px 0px;
  }
}
.lower-contact_body > div,
.lower-privacy_body > div {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 3px;
  padding: 10px 10px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div,
  .lower-privacy_body > div {
    padding: 40px;
  }
}
.lower-contact_body > div p,
.lower-privacy_body > div p {
  font-size: 14px;
  line-height: 24px;
  padding: 0 0 18px 0;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div p,
  .lower-privacy_body > div p {
    font-size: 16px;
    line-height: 28px;
    padding: 0 0 20px 0;
  }
}
.lower-contact_body > div dl,
.lower-privacy_body > div dl {
  overflow: hidden;
  border-bottom: 1px solid #c3c3c3;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl,
  .lower-privacy_body > div dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.lower-contact_body > div dl:first-of-type,
.lower-privacy_body > div dl:first-of-type {
  border-top: 1px solid #c3c3c3;
}
.lower-contact_body > div dl dt,
.lower-privacy_body > div dl dt {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 10px;
  letter-spacing: 1.28px;
  text-align: left;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dt,
  .lower-privacy_body > div dl dt {
    font-size: 18px;
    line-height: 24px;
    padding-top: 29px;
    padding-bottom: 29px;
    width: 270px;
    text-align: right;
  }
}
.lower-contact_body > div dl dt::after,
.lower-privacy_body > div dl dt::after {
  content: "任意";
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.28px;
  color: #fff;
  background-color: #acacac;
  border-radius: 3px;
  padding: 1px 4px 2px 4px;
  margin-left: 3px;
  vertical-align: top;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dt::after,
  .lower-privacy_body > div dl dt::after {
    font-size: 14px;
    line-height: 24px;
    padding: 1px 5px 2px 5px;
    margin-left: 9px;
  }
}
.lower-contact_body > div dl dt.require::after,
.lower-privacy_body > div dl dt.require::after {
  content: "必須";
  background: #8e6f1b;
}
.lower-contact_body > div dl dd,
.lower-privacy_body > div dl dd {
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd,
  .lower-privacy_body > div dl dd {
    width: 840px;
    font-size: 18px;
    line-height: 26px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 28px;
  }
}
.lower-contact_body > div dl dd input[type=tel],
.lower-contact_body > div dl dd input[type=email],
.lower-contact_body > div dl dd input[type=text],
.lower-privacy_body > div dl dd input[type=tel],
.lower-privacy_body > div dl dd input[type=email],
.lower-privacy_body > div dl dd input[type=text] {
  box-sizing: border-box;
  line-height: 22px;
  font-size: 14px;
  padding: 10px;
  height: 43px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 3px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd input[type=tel],
  .lower-contact_body > div dl dd input[type=email],
  .lower-contact_body > div dl dd input[type=text],
  .lower-privacy_body > div dl dd input[type=tel],
  .lower-privacy_body > div dl dd input[type=email],
  .lower-privacy_body > div dl dd input[type=text] {
    line-height: 26px;
    font-size: 18px;
    width: 510px;
  }
}
.lower-contact_body > div dl dd input[name=your-zip],
.lower-privacy_body > div dl dd input[name=your-zip] {
  width: 200px;
}
.lower-contact_body > div dl dd input[name=your-address],
.lower-privacy_body > div dl dd input[name=your-address] {
  margin-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd input[name=your-address],
  .lower-privacy_body > div dl dd input[name=your-address] {
    width: 760px;
  }
}
.lower-contact_body > div dl dd input[name=your-floor],
.lower-privacy_body > div dl dd input[name=your-floor] {
  width: 50px;
  margin-right: 5px;
}
.lower-contact_body > div dl dd .wpcf7-checkbox label,
.lower-contact_body > div dl dd .wpcf7-radio label,
.lower-privacy_body > div dl dd .wpcf7-checkbox label,
.lower-privacy_body > div dl dd .wpcf7-radio label {
  display: inline-block;
  box-sizing: border-box;
  line-height: 22px;
  font-size: 14px;
  padding: 10px;
  height: 43px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd .wpcf7-checkbox label,
  .lower-contact_body > div dl dd .wpcf7-radio label,
  .lower-privacy_body > div dl dd .wpcf7-checkbox label,
  .lower-privacy_body > div dl dd .wpcf7-radio label {
    line-height: 26px;
    font-size: 18px;
    padding: 8px 10px 10px 10px;
  }
}
.lower-contact_body > div dl dd .wpcf7-checkbox label input[type=checkbox],
.lower-contact_body > div dl dd .wpcf7-checkbox label input[type=radio],
.lower-contact_body > div dl dd .wpcf7-radio label input[type=checkbox],
.lower-contact_body > div dl dd .wpcf7-radio label input[type=radio],
.lower-privacy_body > div dl dd .wpcf7-checkbox label input[type=checkbox],
.lower-privacy_body > div dl dd .wpcf7-checkbox label input[type=radio],
.lower-privacy_body > div dl dd .wpcf7-radio label input[type=checkbox],
.lower-privacy_body > div dl dd .wpcf7-radio label input[type=radio] {
  margin-right: 3px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd .wpcf7-checkbox label input[type=checkbox],
  .lower-contact_body > div dl dd .wpcf7-checkbox label input[type=radio],
  .lower-contact_body > div dl dd .wpcf7-radio label input[type=checkbox],
  .lower-contact_body > div dl dd .wpcf7-radio label input[type=radio],
  .lower-privacy_body > div dl dd .wpcf7-checkbox label input[type=checkbox],
  .lower-privacy_body > div dl dd .wpcf7-checkbox label input[type=radio],
  .lower-privacy_body > div dl dd .wpcf7-radio label input[type=checkbox],
  .lower-privacy_body > div dl dd .wpcf7-radio label input[type=radio] {
    margin-right: 5px;
  }
}
.lower-contact_body > div dl dd .wpcf7-checkbox label span,
.lower-contact_body > div dl dd .wpcf7-radio label span,
.lower-privacy_body > div dl dd .wpcf7-checkbox label span,
.lower-privacy_body > div dl dd .wpcf7-radio label span {
  font-size: inherit;
}
.lower-contact_body > div dl dd select,
.lower-privacy_body > div dl dd select {
  box-sizing: border-box;
  line-height: 14px;
  font-size: 14px;
  padding: 10px 5px;
  border: 1px solid #707070;
  border-radius: 3px;
  margin: 0 3px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd select,
  .lower-privacy_body > div dl dd select {
    line-height: 18px;
    font-size: 18px;
    padding: 10px;
    margin: 0 5px;
  }
}
.lower-contact_body > div dl dd select[name=kibou-year],
.lower-privacy_body > div dl dd select[name=kibou-year] {
  margin-left: 0;
}
.lower-contact_body > div dl dd textarea,
.lower-privacy_body > div dl dd textarea {
  box-sizing: border-box;
  width: 100%;
  height: 250px;
  line-height: 22px;
  font-size: 14px;
  padding: 5px 10px;
  margin-bottom: 4px;
  border: 1px solid #707070;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd textarea,
  .lower-privacy_body > div dl dd textarea {
    width: 760px;
    height: 300px;
    line-height: 26px;
    font-size: 18px;
  }
}
.lower-contact_body > div dl dd.known textarea,
.lower-privacy_body > div dl dd.known textarea {
  height: 75px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd.known textarea,
  .lower-privacy_body > div dl dd.known textarea {
    height: 100px;
  }
}
.lower-contact_body > div dl dd input[type=file],
.lower-privacy_body > div dl dd input[type=file] {
  box-sizing: border-box;
  line-height: 22px;
  font-size: 14px;
  padding: 0 0 15px 0;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div dl dd input[type=file],
  .lower-privacy_body > div dl dd input[type=file] {
    line-height: 26px;
    font-size: 18px;
    /*  width: 510px; */
  }
}
.lower-contact_body > div p.confirm_privacy,
.lower-privacy_body > div p.confirm_privacy {
  font-size: 14px;
  line-height: 24px;
  font-size: 400;
  text-align: center;
  letter-spacing: 0.56px;
  margin: 20px 0 5px 0;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div p.confirm_privacy,
  .lower-privacy_body > div p.confirm_privacy {
    font-size: 18px;
    letter-spacing: 0.64px;
    margin: 40px 0 30px 0;
  }
}
.lower-contact_body > div p.confirm_privacy a,
.lower-privacy_body > div p.confirm_privacy a {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div p.confirm_privacy a,
  .lower-privacy_body > div p.confirm_privacy a {
    font-size: 18px;
  }
}
.lower-contact_body > div p.confirm_privacy a:hover,
.lower-privacy_body > div p.confirm_privacy a:hover {
  text-decoration: none;
}
.lower-contact_body > div p.submit,
.lower-privacy_body > div p.submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.lower-contact_body > div input[type=submit],
.lower-privacy_body > div input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}
.lower-contact_body > div input.wpcf7-submit,
.lower-privacy_body > div input.wpcf7-submit {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 0.56px;
  text-align: center;
  width: 290px;
  padding: 20px 0;
  margin: 0 auto 20px auto;
  background: #ecce79 0% 0% no-repeat padding-box;
  border: 1px solid #c9a231;
  border-radius: 5px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body > div input.wpcf7-submit,
  .lower-privacy_body > div input.wpcf7-submit {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.64px;
    width: 360px;
    padding: 32px 0;
    margin: 0 auto 20px auto;
  }
}
.lower-contact_body > div p input.wpcf7-submit:hover,
.lower-privacy_body > div p input.wpcf7-submit:hover {
  opacity: 0.7;
  cursor: pointer;
}
.lower-contact_body .screen-reader-response,
.lower-privacy_body .screen-reader-response {
  display: none;
}
.lower-contact_body span.wpcf7-not-valid-tip,
.lower-privacy_body span.wpcf7-not-valid-tip {
  position: relative;
  display: block;
  font-size: 14px;
  padding: 7px 10px;
  min-width: 250px;
  max-width: 100%;
  color: #fff;
  background: #d0072f;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body span.wpcf7-not-valid-tip,
  .lower-privacy_body span.wpcf7-not-valid-tip {
    font-size: 16px;
    min-width: 370px;
    max-width: 858px;
    margin: 0.5em 0;
  }
}
.lower-contact_body span.your-message span.wpcf7-not-valid-tip,
.lower-privacy_body span.your-message span.wpcf7-not-valid-tip {
  margin-top: 0px;
}
.lower-contact_body div.wpcf7-response-output,
.lower-privacy_body div.wpcf7-response-output {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: #d0072f;
}
.lower-contact_body div.wpcf7-display-none,
.lower-privacy_body div.wpcf7-display-none {
  display: none;
}
.lower-contact_body .wpcf7 form .wpcf7-response-output,
.lower-privacy_body .wpcf7 form .wpcf7-response-output {
  border: 2px solid #00a0d2; /* Blue */
}
.lower-contact_body .wpcf7 form.init .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.init .wpcf7-response-output {
  display: none;
}
.lower-contact_body .wpcf7 form.sent .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.sent .wpcf7-response-output {
  border-color: #fff;
  background-color: #fff;
  color: #000;
  margin-top: 0;
  padding: 80px 0 80px 0;
  font-size: 16px;
}
@media screen and (min-width: 1260px) {
  .lower-contact_body .wpcf7 form.sent .wpcf7-response-output,
  .lower-privacy_body .wpcf7 form.sent .wpcf7-response-output {
    font-size: 20px;
  }
}
.lower-contact_body .wpcf7 form.failed .wpcf7-response-output,
.lower-contact_body .wpcf7 form.aborted .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.failed .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
  background-color: #dc3232;
}
.lower-contact_body .wpcf7 form.spam .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
  background-color: #f56e28;
}
.lower-contact_body .wpcf7 form.invalid .wpcf7-response-output,
.lower-contact_body .wpcf7 form.unaccepted .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.invalid .wpcf7-response-output,
.lower-privacy_body .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #db9417;
  background-color: #d0072f;
  text-align: left;
  margin: 0;
  padding: 5px;
}

@media screen and (min-width: 1260px) {
  .lower-contact_body > div p {
    text-align: center;
  }
}

form.sent dl,
form.sent dl dd,
form.sent dl dt,
form.sent p {
  display: none;
  border: 0 !important;
}

/*---------------------------------------------------*/
#footer_wrapper {
  width: 100%;
  background: #082d4e;
  padding-bottom: 0px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper {
    padding-bottom: 2px;
  }
}
#footer_wrapper #footer_set {
  max-width: 660px;
  margin: 0 20px;
}
@media screen and (min-width: 700px) {
  #footer_wrapper #footer_set {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    width: 1200px;
    max-width: none;
    margin: 0 auto;
  }
}
#footer_wrapper #footer_set .ft-nav {
  padding-top: 20px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav {
    padding-top: 100px;
    width: 360px;
  }
}
#footer_wrapper #footer_set .ft-nav nav {
  width: 100%;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav nav {
    width: auto;
    margin-right: 5px;
  }
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav .ft-nav_b nav {
    margin: 0;
    padding: 0;
  }
}
#footer_wrapper #footer_set .ft-nav .ft-nav_b nav h4 {
  margin: 0;
  padding: 0;
}
#footer_wrapper #footer_set .ft-nav .ft-nav_b nav h4.flex-h4 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav nav:last-of-type {
    margin-right: 0px;
  }
}
#footer_wrapper #footer_set .ft-nav h4 a {
  display: block;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 10px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav h4 a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.9px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
#footer_wrapper #footer_set .ft-nav ul {
  display: block;
  list-style: none;
  margin-bottom: 13px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav ul {
    display: block;
    padding-left: 5px;
    margin-bottom: 0;
  }
}
#footer_wrapper #footer_set .ft-nav ul li a {
  display: block;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.8px;
  color: #fff;
  padding: 7px 0 7px 0;
  margin: 0;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav ul li a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    word-break: keep-all;
    letter-spacing: 0.9px;
    text-align: left;
    padding: 5px 0 5px 0;
  }
}
#footer_wrapper #footer_set .ft-nav ul li a::before {
  content: "- ";
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-nav ul li a:hover {
    opacity: 0.7;
  }
}
#footer_wrapper #footer_set .ft-com {
  padding: 50px 0 20px 0px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-com {
    width: 766px;
    padding: 80px 0 50px 0;
  }
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1) 0% 0% no-repeat padding-box;
  border-radius: 5px;
  padding: 16px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-com div.ft-shikaku {
    padding: 30px;
  }
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.shop-name {
  font-size: 35px;
  line-height: 51px;
  font-weight: 900;
  letter-spacing: 7px;
  color: #ffffff;
  padding-top: 50px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-com div.ft-shikaku p.shop-name {
    padding-top: 55px;
  }
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.com-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #fff;
  padding-bottom: 50px;
}
@media screen and (min-width: 1260px) {
  #footer_wrapper #footer_set .ft-com div.ft-shikaku p.com-name {
    padding-bottom: 55px;
  }
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.ft-tel,
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.ft-address {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.32px;
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.ft-tel a,
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.ft-address a {
  text-decoration: none;
}
#footer_wrapper #footer_set .ft-com div.ft-shikaku p.qualification {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  width: 291px;
}

div#copyright_wrapper {
  height: 327px;
  background: #000 0% 0% no-repeat padding-box;
}

div.company-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 1260px) {
  div.company-info {
    width: 1200px;
    margin: 0px auto;
  }
}
div.company-info .footer_logo {
  box-sizing: border-box;
  padding-top: 10px;
  padding-left: 90px;
  margin-top: 20px;
  margin-bottom: 45px;
  margin-left: 20px;
  height: 80px;
  background: url("../img/common/footer-logomark.png") 0 0 no-repeat;
  background-size: 58px 80px;
}
@media screen and (min-width: 1260px) {
  div.company-info .footer_logo a:hover {
    opacity: 0.7;
  }
}
div.company-info .footer_logo img {
  width: 211px;
  height: auto;
  padding-top: 10px;
}
div.company-info ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
}
@media screen and (min-width: 1260px) {
  div.company-info ul {
    margin: 50px 0 0 0;
  }
}
div.company-info ul li {
  display: block;
  padding: 8px 15px 8px 15px;
  margin: 0;
}
@media screen and (min-width: 1260px) {
  div.company-info ul li {
    padding: 13px 25px 13px 0;
    margin: 0 0 0 53px;
  }
}
div.company-info ul li a {
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.84);
}
@media screen and (min-width: 1260px) {
  div.company-info ul li a {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1260px) {
  .copyright {
    width: 1200px;
    margin: 0 auto;
  }
}
.copyright p {
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  padding: 8px 0 8px 0;
}
@media screen and (min-width: 1260px) {
  .copyright p {
    font-size: 14px;
    line-height: 28px;
    margin: 0;
    padding: 13px 0 13px 0;
  }
}

.grecaptcha-badge {
  margin-bottom: 70px;
}

/*---------------------------------------*/
.bottom_wrapper {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 9999;
}
.bottom_on_off {
  background-color: rgba(255, 255, 255, 0.91);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

#bottom_nav {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1260px) {
  #bottom_nav {
    width: 960px;
    margin: 0 auto;
    padding: 10px 0px 20px 0px;
  }
}

ul.footer_tel_mail_line {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 0 5px;
  padding: 0;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line {
    margin: 0;
    padding: 0;
  }
}
ul.footer_tel_mail_line li.tel_zone {
  background: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #c30b00;
  border-radius: 3px;
  margin: 5px;
  height: 56px;
  width: calc((100vw - 40px) * 5 / 11);
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone {
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0%;
    margin: 10px 20px 0 0;
    height: auto;
    width: auto;
  }
}
ul.footer_tel_mail_line li.tel_zone a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #000;
  padding: 8px 0 5px 2px;
  text-align: center;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a {
    display: inline;
    font-size: 14px;
    color: #000;
    padding: 0;
  }
}
ul.footer_tel_mail_line li.tel_zone a span {
  font-size: 12px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a span {
    font-size: 14px;
  }
}
ul.footer_tel_mail_line li.tel_zone a span.sp_no {
  display: none;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a span.sp_no {
    display: inline;
  }
}
ul.footer_tel_mail_line li.tel_zone a span.blue_txt {
  color: #fff;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a span.blue_txt {
    color: #c30b00;
  }
}
ul.footer_tel_mail_line li.tel_zone a span.tel_ico {
  display: inline-block;
  background: url("../img/common/free_ico.svg") 0 50% no-repeat;
  background-size: 24px 15px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a span.tel_ico {
    display: block;
    background: url("../img/common/free_ico.svg") 0 40% no-repeat;
    background-size: 56px 37px;
  }
}
ul.footer_tel_mail_line li.tel_zone a span.tel_num {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0px;
  color: #c30b00;
  padding-left: 26px;
  margin-bottom: 2px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a span.tel_num {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 4.6px;
    color: #c30b00;
    padding-left: 70px;
    margin-bottom: 15px;
  }
}
ul.footer_tel_mail_line li.tel_zone a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.tel_zone a:hover {
    opacity: 1;
  }
}
ul.footer_tel_mail_line li.mail_line_btn a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  width: 92px;
  width: calc((100vw - 40px) * 3 / 11);
  height: 56px;
  padding-top: 32px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.16));
  border-radius: 5px;
  margin: 5px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.mail_line_btn a {
    font-size: 18px;
    width: 230px;
    height: 92px;
    padding-top: 55px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.16));
    margin: 10px 0 0 10px;
  }
}
ul.footer_tel_mail_line li.mail_line_btn a span.sp_no {
  display: none;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.mail_line_btn a span.sp_no {
    display: inline;
  }
}
ul.footer_tel_mail_line li.mail_line_btn a:hover {
  opacity: 0.7;
}
ul.footer_tel_mail_line li.mail_btn a {
  background: #0b63b1 url("../img/common/mail_ico.svg") 50% 7px no-repeat padding-box;
  border-radius: 3px;
  background-size: 26px 19px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.mail_btn a {
    background: #0b63b1 url("../img/common/mail_ico.svg") 50% 17px no-repeat padding-box;
    border-radius: 5px;
    background-size: 33px 21px;
  }
}
ul.footer_tel_mail_line li.line_btn a {
  background: #20bc51 url("../img/common/line_ico.svg") 50% 5px no-repeat padding-box;
  border-radius: 3px;
  background-size: 27px 25px;
}
@media screen and (min-width: 1260px) {
  ul.footer_tel_mail_line li.line_btn a {
    background: #20bc51 url("../img/common/line_ico.svg") 50% 10px no-repeat padding-box;
    border-radius: 5px;
    background-size: 35px 33px;
  }
}

.bottom_on .bottom_on_off {
  display: block;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 1260px) {
  .bottom_on .bottom_on_off {
    display: block;
    transition: all 0.5s ease-out;
  }
}

.bottom_off .bottom_on_off {
  display: block;
  transition: all 0.5s ease-out;
}
@media screen and (min-width: 1260px) {
  .bottom_off .bottom_on_off {
    display: none;
    transition: all 0.5s ease-out;
  }
}

.bottom_on_off {
  display: block;
}
@media screen and (min-width: 1260px) {
  .bottom_on_off {
    display: none;
  }
}

/*--------*/
.turnstile-under-submit {
  display: flex;
  justify-content: center;
  margin: 10px 0 30px 0;
}

.wpcf7 form .wpcf7-spinner {
  display: block;
  margin-top: 10px;
}/*# sourceMappingURL=style.css.map */