@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Akshar", "Noto Sans JP", sans-serif;
  font-weight: 300;
}

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

img {
  vertical-align: bottom;
  width: 100%;
}

p {
  color: #4d4d4d;
  line-height: 1.5;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #4d4d4d;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
@media (max-width: 599px) {
  .bread {
    padding-top: 30px;
  }
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

@media (max-width: 1024px) {
  .tabp_dn {
    display: none;
  }
}

.tabp_db {
  display: none;
}
@media (max-width: 1024px) {
  .tabp_db {
    display: block;
  }
}

section {
  padding: 100px 0;
}
@media (max-width: 599px) {
  section {
    padding: 50px 0;
  }
}

.section_h2 {
  text-align: center;
  padding: 0 10px;
}
.section_h2 h2 {
  color: #c00000;
  font-size: 50px;
  line-height: 1;
}
.section_h2 h2 span {
  color: #333;
  font-size: 17px;
  font-weight: 300;
  display: block;
}
.section_h2 p {
  margin-top: 30px;
}

.ttl {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  line-height: 1;
  color: #151e6d;
  text-align: center;
}
@media (max-width: 599px) {
  .ttl {
    font-size: 32px;
  }
}
.ttl .ttl_border {
  position: absolute;
  bottom: -10px;
  left: -480px;
  width: 70%;
  min-width: 950px;
  height: 3px;
  background-color: #3475d3;
}
@media (max-width: 599px) {
  .ttl .ttl_border {
    left: -700px;
    min-width: 250px;
  }
}
.ttl .ttl_border::after {
  content: "";
  position: absolute;
  top: -25px;
  right: -1px;
  height: 50px;
  width: 3px;
  background-color: #3475d3;
  transform: rotate(20deg);
}
.ttl span {
  display: block;
  font-size: 18px;
  color: #333;
  font-weight: normal;
}
@media (max-width: 599px) {
  .ttl span {
    font-size: 14px;
    padding-left: 0;
    margin-top: 10px;
  }
}

.common_btn {
  width: 350px;
  display: block;
  position: relative;
}
@media (max-width: 599px) {
  .common_btn {
    width: 310px;
  }
}
.common_btn::before {
  background: #000;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.common_btn::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 9px;
  /*画像の幅*/
  height: 15px;
  /*画像の高さ*/
  background-image: url(../images/arrow_r_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -30px;
  top: 45%;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .common_btn::after {
    right: -10px;
  }
}
.common_btn:hover {
  opacity: 1;
}
.common_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.common_btn_black {
  background-color: #000;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.about_btn {
  background: rgb(153, 0, 0);
  background: linear-gradient(90deg, rgb(153, 0, 0) 0%, rgb(246, 1, 0) 48%, rgb(153, 0, 0) 100%);
  color: #fff;
  padding: 14px 0 10px 10px;
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .about_btn {
    width: 100%;
  }
}
.about_btn .common_btn {
  color: #fff;
}
.about_btn .common_btn::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.about_btn .common_btn::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 23px;
  /*画像の幅*/
  height: 23px;
  /*画像の高さ*/
  background-image: url(../images/btn_arrow.png);
  background-size: contain;
  vertical-align: middle;
}
.about_btn .common_btn:hover {
  opacity: 1;
}
.about_btn .common_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.about_btn .common_btn span {
  font-weight: 600;
  font-size: 26px;
  vertical-align: middle;
  margin-right: 20px;
}
@media (max-width: 599px) {
  .about_btn .common_btn span {
    font-size: 20px;
    margin-right: 10px;
  }
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}
@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}
.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 20px;
}
.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 24px;
  padding-top: 7px;
}
.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}
.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
.cta_list {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .cta_list .inner {
    width: 75%;
  }
}
.cta_list .cta_item {
  width: 32%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 599px) {
  .cta_list .cta_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cta_list .cta_item:hover {
  opacity: 1;
}
.cta_list .cta_item:hover img {
  transform: scale(1.1);
}
.cta_list .cta_item .cta_item_textarea {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 200;
}
.cta_list .cta_item .cta_item_textarea h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
}
.cta_list .cta_item .cta_item_textarea h3::before {
  content: url(../images/cta_item_red.png);
  position: absolute;
  left: -99px;
  bottom: -10px;
  transform: scale(0.2);
  z-index: -10;
}
@media (max-width: 768px) {
  .cta_list .cta_item .cta_item_textarea h3::before {
    content: none;
  }
}
@media (max-width: 599px) {
  .cta_list .cta_item .cta_item_textarea h3::before {
    content: url(../images/cta_item_red.png);
  }
}
.cta_list .cta_item .cta_item_textarea h3 span {
  display: inline-block;
  padding: 2px 20px;
  font-size: 14px;
  border: 1px solid #fff;
}
.cta_list .cta_item .cta_item_textarea p {
  color: #fff;
  font-size: 14px;
}
.cta_list .cta_item img {
  transition: 0.3s;
  overflow: hidden;
  margin: 0;
}

.common_mv {
  position: relative;
  padding: 130px 0 50px;
}
@media (max-width: 599px) {
  .common_mv {
    padding: 100px 0 30px;
  }
}
.common_mv::after {
  content: "";
  display: inline-block;
  width: 200px;
  /*画像の幅*/
  height: 80px;
  /*画像の高さ*/
  background-image: url(../images/header_reccomend.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 10%;
  top: 90%;
}
@media (max-width: 599px) {
  .common_mv::after {
    width: 100px;
    /*画像の幅*/
    height: 40px;
    /*画像の高さ*/
    right: 5%;
  }
}
.common_mv.common_mv_news {
  background: url(../images/common_mv_news.jpg) center/cover no-repeat;
}
.common_mv.common_mv_guarantee {
  background: url(../images/common_mv_guarantee.jpg) center/cover no-repeat;
}
.common_mv.common_mv_flow {
  background: url(../images/common_mv_flow.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_flow {
    background: url(../images/common_mv_flow.jpg) left/cover no-repeat;
  }
}
.common_mv.common_mv_guide {
  background: url(../images/common_mv_guide.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv.common_mv_guide {
    background: url(../images/common_mv_guide.jpg) left/cover no-repeat;
  }
}
.common_mv.common_mv_about {
  background: url(../images/common_mv_about.jpg) center/cover no-repeat;
}
.common_mv.common_mv_faq {
  background: url(../images/common_mv_faq.jpg) center/cover no-repeat;
}
.common_mv.common_mv_company {
  background: url(../images/common_mv_company.jpg) center/cover no-repeat;
}
.common_mv.common_mv_results {
  background: url(../images/common_mv_results.jpg) center/cover no-repeat;
}
.common_mv.common_mv_contact {
  background: url(../images/common_mv_contact.jpg) left/cover no-repeat;
}
.common_mv.common_mv_privacy {
  background: #fff;
}
.common_mv.common_mv_privacy h2 {
  color: #000;
}
.common_mv.common_mv_privacy h2 .sub_ttl {
  color: #000;
  display: inline-block;
}
.common_mv h2 {
  font-size: 90px;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 599px) {
  .common_mv h2 {
    font-size: 36px;
  }
}
.common_mv h2 .first_str_red {
  color: #3475d3;
}
.common_mv h2 .sub_ttl {
  display: block;
  font-size: 28px;
  text-align: center;
  font-weight: 300;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 599px) {
  .common_mv h2 .sub_ttl {
    font-size: 20px;
  }
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .page {
  margin-right: 20px;
}
.wp-pagenavi .previouspostslink {
  margin-right: 20px;
}
.wp-pagenavi a,
.wp-pagenavi .current {
  font-size: 16px;
  border: none !important;
  margin-right: 20px;
}
.wp-pagenavi a {
  border: none;
}
.wp-pagenavi .current {
  color: #c00000;
  border: none;
}
.wp-pagenavi .nextpostslink {
  margin-right: 0;
}

.page-numbers {
  display: flex;
  justify-content: center;
}
.page-numbers li a,
.page-numbers li span {
  margin-right: 30px;
}
.page-numbers li span {
  color: #3475d3;
}
.page-numbers li .next {
  margin-right: 0;
}

.guarantee_about {
  padding: 50px 0;
}
.guarantee_about .guarantee_about_ttl {
  font-size: 48px;
  color: #514b4b;
  margin-bottom: 50px;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .guarantee_about .guarantee_about_ttl {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.guarantee_about .guarantee_about_ttl span {
  font-size: 16px;
  font-weight: normal;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .guarantee_about .guarantee_about_ttl span {
    font-size: 14px;
  }
}

.access .ttl,
.page_company .ttl {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .access .ttl,
  .page_company .ttl {
    margin-bottom: 60px;
  }
}

@media (max-width: 1200px) {
  .line_btn {
    display: none;
  }
}
.line_btn a {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #fff;
  background-color: #06c755;
  padding: 15px 0;
  width: 300px;
  text-align: center;
  font-weight: bold;
  border-radius: 40px;
  z-index: 10000;
}
@media (max-width: 599px) {
  .line_btn a {
    display: block;
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}
.line_btn a::after {
  content: url(../images/arrow_line_right.png);
  position: absolute;
  top: -2px;
  right: -20px;
  transform: translate(-50%) scale(0.4);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .line_btn a::after {
    right: 20px;
  }
}
.line_btn a:hover {
  opacity: 1;
}
.line_btn a:hover::after {
  right: -25px;
}

.wp-pagenavi .extend {
  border: none;
}

#maker_list_anker {
  margin-top: -75px;
  padding-top: 75px;
}

.access_map {
  padding: 50px 0;
}
.access_map .iframe {
  height: 450px;
}
@media (max-width: 599px) {
  .access_map .iframe {
    height: 300px;
  }
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10000;
}

.open .site-header.active {
  top: 0;
}

header {
  position: relative;
}
@media (max-width: 1200px) {
  header {
    background-color: #000;
  }
}
header .header_left {
  padding: 10px 0;
  padding-left: 20px;
  width: 150px;
}
@media (max-width: 1323px) {
  header .header_left {
    width: 150px;
  }
}
@media (max-width: 1200px) {
  header .header_left {
    width: auto;
  }
}
@media (max-width: 599px) {
  header .header_left {
    padding-top: 0;
    padding-bottom: 5px;
    padding-left: 10px;
  }
}
header .header_left img {
  width: 120px;
  height: auto;
  aspect-ratio: 353/134;
}
@media (max-width: 1200px) {
  header .header_left img {
    width: 100px;
  }
}
@media (max-width: 599px) {
  header .header_left img {
    width: 90px;
  }
}
header .header_right .header_right_row {
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width: 1200px) {
  header .header_right .header_nav_pc {
    display: none;
  }
}
header .header_right .header_nav_pc li {
  position: relative;
  margin-right: 10px;
  text-align: center;
  padding-right: 10px;
}
header .header_right .header_nav_pc li a {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  color: #151e6d;
}
header .header_right .header_nav_pc li a span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #333;
}
header .header_right .header_tel {
  position: relative;
  background-color: #000;
  width: 186px;
  height: 75px;
}
@media (max-width: 1200px) {
  header .header_right .header_tel {
    display: none;
  }
}
header .header_right .header_tel p {
  position: absolute;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 158px;
}
header .header_right .header_tel p span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
header .header_right .header_right_line {
  margin-right: 10px;
}
header .header_right .header_right_line,
header .header_right .header_right_tel {
  display: none;
}
@media (max-width: 1200px) {
  header .header_right .header_right_line,
  header .header_right .header_right_tel {
    display: block;
    width: 45px;
    margin-right: 10px;
  }
}
@media (max-width: 599px) {
  header .header_right .header_right_line,
  header .header_right .header_right_tel {
    width: 30px;
    margin-right: 10px;
  }
}
header .header_right .header_right_tel_text {
  display: none;
}
@media (max-width: 768px) {
  header .header_right .header_right_tel_text {
    display: block;
    background-color: #000;
    height: 70px;
    width: 120px;
    position: relative;
  }
}
@media (max-width: 599px) {
  header .header_right .header_right_tel_text {
    height: 60px;
  }
}
header .header_right .header_right_tel_text p {
  font-size: 13px;
  line-height: 1.2;
  display: inline-block;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_right .header_contact {
  background-color: #151e6d;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  header .header_right .header_contact {
    width: 70px;
    height: 70px;
    display: none;
  }
}
header .header_right .header_contact a {
  justify-content: center;
  display: flex;
  width: 75px;
  align-items: center;
  text-align: center;
  height: 75px;
}
header .header_right .header_contact img {
  width: 42px;
  height: auto;
  aspect-ratio: 47/41;
}
header .header_howto {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 20px 0;
  position: absolute;
  width: 100%;
  transition: all, 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: perspective(1000px) rotateX(-90deg);
  transform-origin: 50% 0 0;
  opacity: 0;
  z-index: 2000;
}
header .header_howto.active {
  transform: perspective(1000px) rotateX(0deg);
  opacity: 1;
}
header .header_howto li {
  margin-right: 40px;
  width: 18%;
  border-bottom: 1px solid #fff;
  position: relative;
  cursor: pointer;
}
header .header_howto li:last-child {
  margin-right: 0;
}
header .header_howto li::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0.5);
}
header .header_howto li a {
  color: #fff;
  display: block;
  width: 100%;
}

.menu_btn {
  display: none;
}
@media (max-width: 1200px) {
  .menu_btn {
    display: block;
    width: 70px;
    height: 70px;
    background-color: #151e6d;
    position: relative;
    z-index: 4000;
  }
}
@media (max-width: 1200px) and (max-width: 599px) {
  .menu_btn {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1200px) {
  .menu_btn span {
    display: inline-block;
    height: 4px;
    width: 35px;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: 25px;
  }
}
@media (max-width: 1200px) and (max-width: 599px) {
  .menu_btn span:nth-child(1) {
    top: 20px;
  }
}
@media (max-width: 1200px) {
  .menu_btn span:nth-child(2) {
    top: 35px;
  }
}
@media (max-width: 1200px) and (max-width: 599px) {
  .menu_btn span:nth-child(2) {
    top: 30px;
  }
}
@media (max-width: 1200px) {
  .menu_btn span:nth-child(3) {
    top: 45px;
  }
}
@media (max-width: 1200px) and (max-width: 599px) {
  .menu_btn span:nth-child(3) {
    top: 40px;
  }
}

.header_nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #151e6d;
  z-index: 500;
  transition: 500ms ease-out;
  margin-top: 60px;
  padding: 20px 20px 0;
}
.header_nav_sp li {
  padding: 20px 0;
  font-weight: bold;
}
.header_nav_sp li span {
  font-size: 12px;
  margin-left: 20px;
  font-weight: normal;
}
.header_nav_sp li a {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .header_nav_sp li a {
    font-size: 16px;
  }
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .header_nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
footer {
  background-color: #151e6d;
  padding: 30px 0 0;
  margin-top: 100px;
}
@media (max-width: 599px) {
  footer {
    margin-top: 0;
  }
}
footer p,
footer a {
  color: #fff;
}
@media (max-width: 599px) {
  footer {
    padding-top: 50px;
  }
}
footer .footer_company_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 50px;
}
@media (max-width: 599px) {
  footer .footer_company_row {
    padding: 0;
  }
}
footer .footer_company_row .footer_company {
  width: 43%;
}
@media (max-width: 1024px) {
  footer .footer_company_row .footer_company {
    width: 100%;
  }
}
footer .footer_company_name {
  font-weight: 900;
}
footer .footer_logo {
  width: 250px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  footer .footer_nav_list .footer_nav_list_row {
    display: block;
  }
}
footer .footer_nav_list ul {
  margin-top: 60px;
  margin-right: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 599px) {
  footer .footer_nav_list ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
  }
}
footer .footer_nav_list ul li {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_nav_list ul li {
    width: 48%;
  }
}
footer .footer_nav_list ul li a {
  display: block;
}
footer .footer_nav_list ul li a span {
  font-size: 12px;
  display: block;
  font-size: 12px;
  font-weight: normal;
}
footer .footer_nav_list ul .footer_nav_1 {
  flex-basis: 30%;
}
footer .footer_nav_list ul .footer_nav_2 {
  flex-basis: 60%;
}
footer .footer_nav_list ul .footer_nav_3 {
  flex-basis: 10%;
}
footer .footer_nav_list .footer_nav_list_first ul {
  margin-right: 60px;
}
@media (max-width: 599px) {
  footer .footer_nav_list .footer_nav_list_first ul {
    margin-right: 0;
  }
}
footer .footer_nav_list .footer_nav_list_first li a {
  position: relative;
}
footer .footer_nav_list .footer_nav_list_first li a img {
  max-width: 30px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
footer .footer_left,
footer .footer_center,
footer .footer_right {
  width: 30%;
}
@media (max-width: 768px) {
  footer .footer_left,
  footer .footer_center,
  footer .footer_right {
    width: 32%;
  }
}
@media (max-width: 599px) {
  footer .footer_left,
  footer .footer_center,
  footer .footer_right {
    width: 100%;
  }
}
footer .footer_left .footer_company_name {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_left .footer_company_name {
    font-size: 12px;
  }
}
@media (max-width: 599px) {
  footer .footer_left .footer_list1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_left .footer_list1 li {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_left .footer_list1 li {
    width: 48%;
  }
}
footer .footer_left .footer_list1 li a {
  display: block;
  position: relative;
  font-weight: bold;
}
footer .footer_left .footer_list1 li a::after {
  content: ">";
  color: #4d4d4d;
  position: absolute;
  top: 0;
  right: 150px;
}
@media (max-width: 599px) {
  footer .footer_left .footer_list1 li a::after {
    content: none;
  }
}
footer .footer_left .footer_list1 li a span {
  font-size: 12px;
  display: block;
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 599px) {
  footer .footer_center .footer_list2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
footer .footer_center .footer_list2 li {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_center .footer_list2 li {
    width: 48%;
  }
}
footer .footer_center .footer_list2 li a {
  display: block;
  position: relative;
  font-weight: bold;
}
footer .footer_center .footer_list2 li a span {
  font-size: 12px;
  display: block;
  font-size: 12px;
  font-weight: normal;
}
footer .footer_right .footer_list3 {
  margin-bottom: 30px;
}
footer .footer_right .footer_list3 li {
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  footer .footer_right .footer_list3 li {
    width: 50%;
    margin-bottom: 5px;
  }
}
footer .footer_right .footer_list3 li a {
  display: block;
  position: relative;
  font-weight: bold;
  color: #888888;
}
footer .footer_right .footer_list3 li a span {
  font-size: 12px;
  display: block;
  font-size: 12px;
  font-weight: normal;
}
footer .footer_cta_row {
  margin-top: 20px;
  align-items: center;
}
footer .footer_cta {
  width: 65%;
  margin-right: 10px;
}
footer .footer_cta .footer_cta_tel {
  width: 100%;
  margin-bottom: 20px;
}
footer .footer_cta .footer_cta_tel img {
  max-width: 228px;
  width: 100%;
  height: auto;
  aspect-ratio: 457/120;
}
footer .footer_cta .footer_cta_tel .footer_company_info {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}
@media (max-width: 599px) {
  footer .footer_cta .footer_cta_tel .footer_company_info {
    font-size: 12px;
  }
}
footer .footer_cta_contact {
  border: 1px solid #fff;
  width: 100px;
  height: 100px;
  position: relative;
}
@media (max-width: 768px) {
  footer .footer_cta_contact {
    padding: 12px;
  }
}
footer .footer_cta_contact img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 70px;
  width: 100%;
  height: auto;
  aspect-ratio: 47/41;
}
footer .footer_sns_row {
  flex-wrap: nowrap;
}
@media (max-width: 599px) {
  footer .footer_sns_row {
    margin-bottom: 20px;
  }
}
footer .footer_sns_row .footer_sns {
  margin-right: 10px;
}
footer .footer_sns_row .footer_sns .row {
  flex-wrap: nowrap;
}
footer .footer_sns_row .footer_sns li {
  margin-right: 10px;
}
footer .footer_sns_row .footer_sns li:last-child {
  margin-right: 0;
}
footer .footer_sns_row .footer_sns li img {
  height: 45px;
  width: auto;
}
footer .footer_qr {
  width: 30%;
}
footer .footer_nav_bottom {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_nav_bottom {
    margin-top: 20px;
  }
}
footer .footer_nav_bottom a {
  display: inline-block;
  font-size: 14px;
  color: #adadad;
  position: relative;
  padding-left: 25px;
  margin-right: 10px;
}
@media (max-width: 599px) {
  footer .footer_nav_bottom a {
    padding-left: 20px;
  }
}
footer .footer_nav_bottom a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.footer_right_photo_r {
  position: relative;
  width: 100%;
}
.footer_right_photo_r .footer_right_photo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer_right_photo_r .footer_right_photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 57/64;
}
@media (max-width: 1200px) {
  .footer_right_photo_r .footer_right_photo img {
    width: 460px;
  }
}
@media (max-width: 1024px) {
  .footer_right_photo_r .footer_right_photo img {
    width: 400px;
  }
}
.footer_right_photo_r .footer_right_photo .copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.footer_right_photo_r .footer_right_photo .copyright p,
.footer_right_photo_r .footer_right_photo .copyright a {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.copyright {
  text-align: center;
  margin: 20px auto 10px;
}
.copyright p,
.copyright a {
  color: #fff;
  font-size: 14px;
}

/* top */
.mv {
  position: relative;
  margin-top: 75px;
}
@media (max-width: 1200px) {
  .mv {
    margin-top: 70px;
  }
}
@media (max-width: 599px) {
  .mv {
    margin-top: 60px;
  }
}
.mv img {
  width: 100%;
  height: auto;
}
.mv::after {
  content: "";
  display: inline-block;
  width: 200px;
  /*画像の幅*/
  height: 80px;
  /*画像の高さ*/
  background-image: url(../images/header_reccomend.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 10%;
  top: 92%;
}
@media (max-width: 599px) {
  .mv::after {
    width: 100px;
    /*画像の幅*/
    height: 40px;
    /*画像の高さ*/
    right: 5%;
    top: 82%;
  }
}
.mv .slide-dots {
  position: relative;
  z-index: 3;
  margin: 10px auto;
  text-align: center;
}
.mv .slide-dots li {
  display: inline-block;
  margin: 0 5px;
}
.mv .slide-dots button {
  padding: 0;
  color: transparent;
  outline: none;
  width: 80px;
  border: unset;
  height: 4px;
  display: block;
  background: #ccc;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mv .slide-dots button {
    width: 40px;
  }
}
@media (max-width: 599px) {
  .mv .slide-dots button {
    width: 20px;
  }
}
.mv .slide-dots .slick-active button {
  background: #151e6d;
}

/* news */
.news {
  padding: 0 0 50px;
}
@media (max-width: 599px) {
  .news {
    padding: 20px 0;
  }
}
.news .news_left {
  width: 70%;
  padding: 100px 0;
}
@media (max-width: 599px) {
  .news .news_left {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
.news .news_left ul {
  margin-bottom: 30px;
}
.news .news_left ul li {
  position: relative;
  border-top: 1px solid #ababab;
  padding: 30px 0;
}
.news .news_left ul li:last-child {
  border-bottom: 1px solid #ababab;
}
.news .news_left ul li::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 9px;
  /*画像の幅*/
  height: 15px;
  /*画像の高さ*/
  background-image: url(../images/arrow_r_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.news .news_left ul li .news_date,
.news .news_left ul li .news_cate {
  display: inline-block;
  padding: 3px 0;
}
.news .news_left ul li .news_date {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}
.news .news_left ul li .news_cate {
  width: 100px;
  font-weight: 600;
}
.news .news_left ul li .news_cate.news_2 {
  color: #333;
}
.news .news_left ul li .news_cate.campaign {
  color: #151e6d;
}
.news .news_left ul li .news_text {
  margin-top: 5px;
}
.news .news_right {
  width: 25%;
  padding: 100px 50px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .news .news_right {
    padding: 100px 0;
  }
}
@media (max-width: 599px) {
  .news .news_right {
    width: 100%;
    padding: 0;
  }
}
.news .news_right .news_cate_list li {
  height: 40px;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.news .news_right .news_cate_list li:first-of-type {
  box-shadow: none;
}
.news .news_right .news_cate_list li a {
  font-weight: bold;
  display: block;
  font-size: 21px;
  color: #b2b2b2;
  text-align: center;
  width: 100%;
  height: 40px;
  line-height: 40px;
}
.news .news_right .news_cate_list li a:hover {
  background-color: #151e6d;
  color: #fff;
  opacity: 1;
}
.news .news_right .news_cate_list li a.active {
  background-color: #151e6d;
  color: #fff;
}
@media (max-width: 1200px) {
  .news .news_right .news_cate_list li a {
    font-size: 20px;
  }
}

/* pickup */
.pickup {
  position: relative;
  padding-top: 100px;
  background: url(../images/bg_reccomend.webp) center/cover no-repeat;
}
.pickup::before {
  content: "";
  display: inline-block;
  width: 400px;
  height: 160px;
  background-image: url(../images/header_reccomend.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (max-width: 599px) {
  .pickup::before {
    width: 200px;
    /*画像の幅*/
    height: 80px;
    /*画像の高さ*/
    top: -2%;
  }
}
.pickup::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#111 10%, transparent 31%), radial-gradient(#111 10%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}
@media (max-width: 599px) {
  .pickup {
    padding-bottom: 70px;
  }
}
.pickup .pickup_btn {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
}
@media (max-width: 599px) {
  .pickup .pickup_btn {
    width: 90%;
    bottom: 4%;
  }
}
.pickup .pickup_ttl {
  background-color: #000;
}
.pickup .pickup_ttl h2 {
  width: 1200px;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 1200px) {
  .pickup .pickup_ttl h2 {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .pickup .pickup_ttl h2 {
    display: block;
  }
}
.pickup .pickup_ttl img {
  width: 70%;
  margin-right: 30px;
}
@media (max-width: 599px) {
  .pickup .pickup_ttl img {
    width: 90%;
  }
}
.pickup .pickup_ttl span {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
  position: relative;
  font-weight: normal;
}
.pickup .pickup_ttl span::before {
  content: "";
  height: 20px;
  width: 2px;
  background-color: #3475d3;
  position: absolute;
  left: -10px;
  bottom: 3px;
}
.pickup .pickup_ttl span::after {
  content: "";
  height: 20px;
  width: 2px;
  background-color: #3475d3;
  position: absolute;
  right: -10px;
  bottom: 3px;
}
@media (max-width: 599px) {
  .pickup .pickup_ttl span {
    display: inline-block;
    margin-left: 10px;
  }
}
.pickup .pickup_list {
  margin-top: 30px;
  align-items: stretch;
  position: relative;
  z-index: 11;
}
.pickup .pickup_list::after {
  content: "";
  width: 23%;
}
@media (max-width: 599px) {
  .pickup .pickup_list::after {
    width: 48%;
  }
}
@media (max-width: 599px) {
  .pickup .pickup_list {
    margin-bottom: 20px;
  }
}
.pickup .pickup_list li {
  width: 23%;
  overflow: hidden;
  padding: 0 10px;
}
@media (max-width: 599px) {
  .pickup .pickup_list li {
    width: 49%;
    margin-bottom: 30px;
    padding: 0;
  }
}
.pickup .pickup_list li .pickup_item_textarea {
  background-color: #fff;
  padding: 10px;
}
@media (max-width: 599px) {
  .pickup .pickup_list li .pickup_item_textarea p {
    font-size: 14px;
  }
}
.pickup .pickup_list li .pickup_item_text {
  font-size: 14px;
}
.pickup .pickup_list li .pickup_item_price {
  text-align: right;
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .pickup .pickup_list li .pickup_item_price {
    font-size: 12px;
  }
}
.pickup .pickup_list li .pickup_item_btn {
  position: relative;
  display: block;
  width: 130px;
  margin-left: auto;
}
.pickup .pickup_list li .pickup_item_btn::after {
  content: url(../images/arrow_black_right.png);
  position: absolute;
  right: 0;
  bottom: -2px;
  transform: scale(0.6);
}
.pickup .pickup_list li a:hover {
  opacity: 1;
}
.pickup .pickup_list li a:hover img {
  transform: scale(1.1);
}
.pickup .pickup_list li .pickup_item_img {
  overflow: hidden;
}
.pickup .pickup_list li img {
  transition: 0.3s;
  overflow: hidden;
  margin: 0;
}
.pickup .slick-prev::before,
.pickup .slick-next::before {
  background-color: #c00000;
  color: #fff;
  width: 50px;
  height: 50px;
  display: block;
  line-height: 47px;
  text-align: center;
  padding: 0;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 599px) {
  .pickup .slick-prev::before,
  .pickup .slick-next::before {
    width: 30px;
    height: 30px;
    line-height: 24px;
    font-size: 22px;
  }
}
.pickup .slick-next::before {
  content: ">";
}
.pickup .slick-prev::before {
  content: "<";
}
.pickup .slick-next {
  right: 20%;
  top: 120%;
}
@media (max-width: 599px) {
  .pickup .slick-next {
    right: 0%;
    top: 50%;
  }
}
.pickup .slick-prev {
  right: 80%;
  top: 120%;
  z-index: 30;
}
@media (max-width: 599px) {
  .pickup .slick-prev {
    right: 91%;
    top: 50%;
  }
}
.pickup .slick-track {
  display: flex;
}
.pickup .slick-slide {
  height: auto !important;
}
@media (max-width: 599px) {
  .pickup .slick-prev,
  .pickup .slick-next {
    width: 30px;
    height: 30px;
  }
}

/* about */
.about {
  overflow: hidden;
}
.about .row {
  flex-wrap: nowrap;
}
@media (max-width: 599px) {
  .about .row {
    flex-wrap: wrap;
  }
}
.about .about_left {
  flex-basis: 50%;
}
@media (max-width: 599px) {
  .about .about_left {
    margin-bottom: 30px;
  }
}
.about .about_left img {
  max-width: 500px;
  width: 100%;
  height: auto;
  aspect-ratio: 10/17;
}
.about .about_right {
  width: 440px;
  position: relative;
  flex-basis: 50%;
  text-align: center;
  margin-left: 20px;
}
@media (max-width: 599px) {
  .about .about_right {
    width: 100%;
    margin: 0 auto;
    flex-basis: 100%;
  }
}
.about .about_right .about_ttl {
  color: #151e6d;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 50px;
  display: inline-flex;
  align-items: center;
}
.about .about_right .about_ttl span {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .about .about_right .about_ttl {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .about .about_right .about_ttl img {
    width: 50%;
  }
}
.about .about_right .about_read {
  margin-bottom: 30px;
}
.about .about_right .about_read .about_read_ttl {
  font-size: 48px;
  margin-bottom: 30px;
  color: #151e6d;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 1024px) {
  .about .about_right .about_read .about_read_ttl {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about .about_right .about_read .about_read_ttl {
    font-size: 24px;
  }
}
.about .about_right .about_read .about_read_ttl span {
  font-size: 16px;
  color: #666;
  display: block;
}
.about .about_right .about_read .about_read_text {
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about .about_right .about_read .about_read_text {
    margin-bottom: 20px;
  }
}
.about .about_right .about_read img {
  max-width: 504px;
  width: 100%;
  height: auto;
  aspect-ratio: 1011/161;
  margin-bottom: 20px;
}
.about .about_right .about_btn {
  background: linear-gradient(90deg, rgb(21, 30, 109), rgb(0, 77, 212) 25%, rgb(0, 134, 255) 50%, rgb(0, 77, 212) 75%, rgb(21, 30, 109));
}
.about .about_item_right {
  position: absolute;
  top: 0;
  right: -390px;
  width: 350px;
}
@media (max-width: 768px) {
  .about .about_item_right {
    display: none;
  }
}
.about .about_item_right img {
  display: block;
}
.about .about_item_right .about_item_right1 {
  width: 200px;
  margin-bottom: 20px;
}
.about .about_item_right .about_item_right2 {
  width: 180px;
  margin-left: auto;
}

/* chooseus */
.chooseus {
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgb(244, 244, 244) 3px, rgb(244, 244, 244) 6px);
  padding-bottom: 0;
  padding-top: 0;
}
.chooseus .chooseus_ttl {
  padding: 60px 0 0;
  text-align: center;
}
.chooseus .chooseus_ttl h2 {
  color: #151e6d;
  font-size: 50px;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .chooseus .chooseus_ttl h2 {
    font-size: 32px;
  }
}
.chooseus .chooseus_ttl h2 span {
  font-size: 24px;
  color: #333;
  display: block;
  font-weight: normal;
}
.chooseus .chooseus_list {
  text-align: center;
}
.chooseus .chooseus_list .text_img img {
  max-width: 930px;
  width: 100%;
  height: auto;
  aspect-ratio: 1861/325;
  margin: 60px 0;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_list .text_img img {
    width: 90%;
    margin: 30px 0;
  }
}
@media (max-width: 1024px) {
  .chooseus .chooseus_list p {
    width: 90%;
    margin: 0 auto;
  }
}
.chooseus .chooseus_item {
  margin: 30px 0;
  text-align: left;
}
.chooseus .chooseus_item .chooseus_item_left,
.chooseus .chooseus_item .chooseus_item_right {
  flex-basis: 50%;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item .chooseus_item_left,
  .chooseus .chooseus_item .chooseus_item_right {
    flex-basis: 100%;
  }
}
.chooseus .chooseus_item .chooseus_item_left .about_btn,
.chooseus .chooseus_item .chooseus_item_right .about_btn {
  background: linear-gradient(90deg, rgb(21, 30, 109), rgb(0, 77, 212) 25%, rgb(0, 134, 255) 50%, rgb(0, 77, 212) 75%, rgb(21, 30, 109));
}
.chooseus .chooseus_item .chooseus_item_text {
  margin-bottom: 30px;
}
.chooseus .chooseus_item .chooseus_item_label {
  line-height: 1;
}
.chooseus .chooseus_item .chooseus_item_ttl {
  font-size: 32px;
  font-weight: normal;
  color: #151e6d;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item .chooseus_item_ttl {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .chooseus .chooseus_item .chooseus_item_ttl {
    margin-bottom: 10px;
    font-size: 23px;
  }
}
.chooseus .chooseus_item1 .chooseus_item_left {
  padding: 20px;
  max-width: 510px;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item1 .chooseus_item_left {
    max-width: 900px;
    margin: 0 auto;
  }
}
.chooseus .chooseus_item1 .chooseus_item_right {
  position: relative;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item1 .chooseus_item_right {
    margin-bottom: 20px;
  }
}
.chooseus .chooseus_item1 .chooseus_item_right .chooseus_item_label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 24px;
  color: #Fff;
  text-align: center;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item1 .chooseus_item_right .chooseus_item_label {
    top: 10px;
  }
}
@media (max-width: 599px) {
  .chooseus .chooseus_item1 .chooseus_item_right .chooseus_item_label {
    font-size: 16px;
  }
}
.chooseus .chooseus_item1 .chooseus_item_right .chooseus_item_label span {
  font-size: 12px;
  display: block;
}
.chooseus .chooseus_item1 .chooseus_item_right img {
  width: 100%;
  height: auto;
  aspect-ratio: 47/24;
}
.chooseus .chooseus_item2 .chooseus_item_right {
  padding: 20px;
  max-width: 520px;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item2 .chooseus_item_right {
    max-width: 900px;
    margin: 0 auto;
  }
}
.chooseus .chooseus_item2 .chooseus_item_left {
  position: relative;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item2 .chooseus_item_left {
    margin-bottom: 20px;
  }
}
.chooseus .chooseus_item2 .chooseus_item_left .chooseus_item_label {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #Fff;
  text-align: center;
}
@media (max-width: 599px) {
  .chooseus .chooseus_item2 .chooseus_item_left .chooseus_item_label {
    font-size: 16px;
  }
}
.chooseus .chooseus_item2 .chooseus_item_left .chooseus_item_label span {
  font-size: 12px;
  display: block;
}
.chooseus .chooseus_item2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 47/24;
}
.chooseus .chooseus_item3 {
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .chooseus .chooseus_item3 {
    width: 90%;
  }
}
.chooseus .chooseus_item3 .chooseus_item_left {
  padding: 20px;
  max-width: 510px;
}
@media (max-width: 1024px) {
  .chooseus .chooseus_item3 .chooseus_item_left {
    max-width: 900px;
  }
}
@media (max-width: 599px) {
  .chooseus .chooseus_item3 .chooseus_item_left .chooseus_item_ttl {
    text-indent: -2.3rem;
    padding-left: 2.3rem;
    line-height: 1.2;
  }
}
.chooseus .chooseus_item3 .chooseus_item_left .chooseus_item_mainte {
  margin-bottom: 20px;
}
.chooseus .chooseus_item3 img {
  width: 100%;
  height: auto;
  aspect-ratio: 47/24;
}

.sales {
  text-align: center;
}
@media (max-width: 599px) {
  .sales {
    padding-bottom: 120px;
  }
}
.sales .inner {
  background-color: #fff;
}
.sales h2 {
  color: #c00000;
}
.sales .sales_list row {
  flex-wrap: nowrap;
}
.sales .sales_list {
  margin-bottom: 30px;
  margin-top: 30px;
  max-width: 1000px;
}
.sales .sales_list .large-square {
  flex-basis: 50%;
  text-align: left;
  max-width: 450px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .sales .sales_list .large-square {
    flex-basis: 100%;
    width: 100%;
    margin: 0 auto 30px;
  }
}
.sales .sales_list .large-square .sales_item_img img {
  max-width: 480px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.sales .sales_list .large-square .sales_item_textarea {
  padding: 10px 20px 10px 10px;
  position: relative;
}
.sales .sales_list .large-square .sales_item_textarea .sales_ttl {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .sales .sales_list .large-square .sales_item_textarea .sales_ttl {
    margin-bottom: 20px;
  }
}
.sales .sales_list .large-square .sales_item_textarea .sales_ttl::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 9px;
  /*画像の幅*/
  height: 15px;
  /*画像の高さ*/
  background-image: url(../images/arrow_r_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: 0;
  top: 16px;
}
.sales .sales_list .large-square .sales_item_textarea .sales_ttl h3 {
  font-size: 16px;
  font-weight: 300;
}
.sales .sales_list .large-square .sales_item_textarea .sales_ttl .sales_date {
  display: inline-block;
  color: #333;
  margin-right: 10px;
}
.sales .sales_list .large-square .sales_item_textarea .sales_ttl .sales_name {
  color: #333;
  display: inline-block;
  text-align: left;
  border-left: 1px solid #ababab;
  padding-left: 10px;
}
.sales .sales_list .small_area {
  flex-basis: 50%;
  text-align: left;
  max-width: 450px;
}
@media (max-width: 1024px) {
  .sales .sales_list .small_area {
    flex-basis: 100%;
    max-width: 485px;
    margin: 0 auto;
  }
}
.sales .sales_list .small_area .small-square {
  width: calc(50% - 20px);
}
.sales .sales_list .small_area .small-square .sales_item_img img {
  max-width: 230px;
  width: 100%;
  height: auto;
  aspect-ratio: 73/47;
  -o-object-fit: contain;
     object-fit: contain;
}
.sales .sales_list .small_area .sales_item_textarea {
  padding: 10px;
}
.sales .sales_list .small_area .sales_item_textarea .sales_ttl {
  margin-bottom: 30px;
  position: relative;
}
.sales .sales_list .small_area .sales_item_textarea .sales_ttl h3 {
  font-size: 16px;
  font-weight: 300;
}
.sales .sales_list .small_area .sales_item_textarea .sales_ttl .sales_date {
  display: inline-block;
  color: #333;
  margin-right: 10px;
}
.sales .sales_list .small_area .sales_item_textarea .sales_ttl .sales_name {
  color: #333;
  display: inline-block;
  border-left: 1px solid #ababab;
  padding-left: 10px;
}
.sales .about_btn {
  width: 400px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .sales .about_btn {
    width: 100%;
  }
}

.brand {
  background-color: #e5e5e5;
  padding-top: 0;
}
.brand .maker_list .maker_list_ttl {
  text-align: center;
}
.brand .maker_list .maker_list_ttl span {
  display: block;
}
.brand .maker_list ul li {
  margin: 0 1px 2px;
  width: 32%;
}
.brand .maker_list ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 25/22;
}

.credit .credit_list {
  border: 2px solid #151e6d;
  padding: 30px 0;
}
.credit .credit_list li {
  width: 18%;
  margin-right: 30px;
}
.credit .credit_list li:first-child {
  width: 8%;
}
.credit .credit_list li:nth-child(4) {
  width: 8%;
}
.credit .credit_list li:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .credit .credit_list li {
    width: 30%;
    margin-right: 15px;
    margin-bottom: 10px;
  }
  .credit .credit_list li:last-child {
    margin-right: 0;
  }
  .credit .credit_list li:nth-child(4) {
    width: 16%;
  }
  .credit .credit_list li:first-child {
    width: 16%;
  }
}

.page_news {
  background: #fff;
}
.page_news .news_left {
  background-color: #fff;
}

.single_news {
  padding: 50px 0;
}
.single_news .news_date,
.single_news .news_cate {
  display: inline-block;
  padding: 3px 0;
  font-size: 12px;
}
.single_news .news_date {
  margin-right: 10px;
}
.single_news .news_cate {
  width: 80px;
  text-align: center;
  color: #fff;
}
.single_news .news_cate.news_2 {
  background-color: #000;
}
.single_news .news_cate.campaign {
  background-color: #3475d3;
}
.single_news .news_text {
  margin-top: 5px;
  font-size: 28px;
  border-bottom: 1px solid #ababab;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .single_news .news_text {
    font-size: 24px;
  }
}
.single_news .single_news_content {
  margin-bottom: 30px;
}
.single_news .nav-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.archive_delivery .inner {
  background-color: #fff;
  padding: 50px;
}
@media (max-width: 599px) {
  .archive_delivery .inner {
    padding: 30px 10px;
  }
}
.archive_delivery .sales_list {
  margin-bottom: 30px;
}
.archive_delivery .sales_list::after {
  content: "";
  width: 31%;
}
.archive_delivery .sales_list li {
  width: 50%;
  max-width: 480px;
  margin-bottom: 40px;
  padding: 0 10px;
}
.archive_delivery .sales_list li:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .archive_delivery .sales_list li {
    width: 100%;
    padding: 0;
  }
}
.archive_delivery .sales_list li a:hover {
  opacity: 1;
}
.archive_delivery .sales_list li a:hover img {
  transform: scale(1.1);
}
.archive_delivery .sales_list li .sales_item_img {
  overflow: hidden;
}
.archive_delivery .sales_list li img {
  height: auto;
  transition: 0.3s;
  overflow: hidden;
  margin: 0;
}
.archive_delivery .sales_list li .sales_item_textarea {
  padding: 10px 30px 10px 10px;
}
.archive_delivery .sales_list li .sales_item_textarea .sales_ttl {
  margin-bottom: 30px;
  position: relative;
}
.archive_delivery .sales_list li .sales_item_textarea .sales_ttl::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 9px;
  /*画像の幅*/
  height: 12px;
  /*画像の高さ*/
  background-image: url(../images/arrow_r_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  right: -5%;
  top: 6px;
}
.archive_delivery .sales_list li .sales_item_textarea .sales_ttl h3 {
  font-size: 16px;
  font-weight: 300;
}
.archive_delivery .sales_list li .sales_item_textarea .sales_ttl .sales_date {
  display: inline-block;
  color: #333;
  margin-right: 10px;
}
.archive_delivery .sales_list li .sales_item_textarea .sales_ttl .sales_name {
  color: #333;
  display: inline-block;
  text-align: center;
  border-left: 1px solid #ababab;
  padding-left: 10px;
}

.single_delivery {
  padding: 50px;
}
@media (max-width: 599px) {
  .single_delivery {
    padding: 30px 0;
  }
}
.single_delivery img {
  width: auto;
}
.single_delivery .inner {
  background-color: #fff;
  padding: 50px;
}
@media (max-width: 599px) {
  .single_delivery .inner {
    padding: 30px;
  }
}
.single_delivery .news_date,
.single_delivery .news_cate {
  display: inline-block;
  padding: 3px 0;
  font-size: 12px;
}
.single_delivery .news_date.delivery_cate,
.single_delivery .news_cate.delivery_cate {
  background-color: #e6b725;
}
.single_delivery .news_date {
  margin-right: 10px;
}
.single_delivery .news_name {
  border-left: 1px solid #ababab;
  display: inline-block;
  padding-left: 10px;
}
.single_delivery .news_cate {
  width: 80px;
  text-align: center;
  color: #fff;
}
.single_delivery .news_cate.news_2 {
  background-color: #000;
}
.single_delivery .news_cate.campaign {
  background-color: #3475d3;
}
.single_delivery .news_text {
  margin-top: 5px;
  font-size: 28px;
  border-bottom: 1px solid #ababab;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .single_delivery .news_text {
    font-size: 24px;
  }
}
.single_delivery .single_news_content {
  margin-bottom: 30px;
}
.single_delivery .single_news_content img {
  margin: 20px 0;
}
@media (max-width: 599px) {
  .single_delivery .single_news_content img {
    width: 90%;
    height: auto;
  }
}
.single_delivery .single_news_eyecatch {
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .single_delivery .single_news_eyecatch {
    width: 100%;
  }
}
.single_delivery .single_news_eyecatch img {
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.guarantee_about .section_h2 h2 {
  color: #151e6d;
}
.guarantee_about .section_h2 img {
  max-width: 930px;
  width: 100%;
  height: auto;
  aspect-ratio: 1861/325;
  margin: 60px 0;
}
@media (max-width: 599px) {
  .guarantee_about .section_h2 img {
    margin: 30px 0;
  }
}

.about_btn {
  background: linear-gradient(90deg, rgb(21, 30, 109), rgb(0, 77, 212) 25%, rgb(0, 134, 255) 50%, rgb(0, 77, 212) 75%, rgb(21, 30, 109));
}

.guarantee_bg {
  margin-top: 60px;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 3px, rgb(244, 244, 244) 3px, rgb(244, 244, 244) 6px);
}

.guarantee_contents {
  padding: 50px 0;
}
.guarantee_contents .guarantee_contents_img {
  flex-basis: 60%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .guarantee_contents .guarantee_contents_img {
    flex-basis: 100%;
  }
}
.guarantee_contents .guarantee_contents_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 100/127;
}
@media (max-width: 768px) {
  .guarantee_contents .guarantee_contents_img img {
    height: 370px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0 20%;
       object-position: 0 20%;
  }
}
.guarantee_contents .guarantee_h3_ttl {
  position: relative;
  text-align: center;
  color: #151e6d;
  font-weight: 600;
  font-size: 40px;
  vertical-align: middle;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .guarantee_contents .guarantee_h3_ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.guarantee_contents .guarantee_h3_ttl span {
  padding-left: 30px;
  font-size: 300;
  font-size: 30px;
}
@media (max-width: 599px) {
  .guarantee_contents .guarantee_h3_ttl span {
    font-size: 16px;
  }
}
.guarantee_contents .guarantee_h3_ttl::after {
  content: "";
  display: block;
  width: 222px;
  height: 2px;
  background-color: #909090;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.guarantee_contents2 {
  flex-basis: 40%;
}
@media (max-width: 768px) {
  .guarantee_contents2 {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .guarantee_contents2 .guarantee_contents_text {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .guarantee_contents2 .guarantee_contents_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl {
  padding: 15px;
}
@media (max-width: 768px) {
  .guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl {
    text-align: center;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl img {
  width: 100%;
  max-width: 506px;
  height: auto;
  aspect-ratio: 1011/161;
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl p {
  color: #fff;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 599px) {
  .guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl p {
    font-size: 20px;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl p span {
  color: #3475d3;
  font-size: 36px;
  font-style: italic;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_ttl p span {
    font-size: 28px;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_text {
  text-align: center;
}
@media (max-width: 599px) {
  .guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_text {
    padding: 0px;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_text h4 {
  font-size: 51px;
  font-weight: normal;
  color: #151e6d;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 599px) {
  .guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_text h4 {
    font-size: 28px;
  }
}
.guarantee_contents2 .guarantee_contents_item .guarantee_contents_item_text p {
  font-size: 14px;
}
.guarantee_contents2 .guarantee_contents_text {
  margin-top: 30px;
}

.guarantee_maker {
  padding: 50px 0;
}
.guarantee_maker .guarantee_h3_ttl {
  position: relative;
  text-align: center;
  color: #151e6d;
  font-weight: 600;
  font-size: 40px;
  vertical-align: middle;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .guarantee_maker .guarantee_h3_ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.guarantee_maker .guarantee_h3_ttl span {
  padding-left: 30px;
  font-size: 300;
  font-size: 30px;
}
@media (max-width: 599px) {
  .guarantee_maker .guarantee_h3_ttl span {
    font-size: 16px;
  }
}
.guarantee_maker .guarantee_h3_ttl::after {
  content: "";
  display: block;
  width: 222px;
  height: 2px;
  background-color: #909090;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.guarantee_maker .guarantee_maker_img,
.guarantee_maker .guarantee_maker_text,
.guarantee_maker .guarantee_maker_list {
  max-width: 1100px;
  margin: 0 auto;
}
.guarantee_maker .guarantee_maker_img img,
.guarantee_maker .guarantee_maker_text img,
.guarantee_maker .guarantee_maker_list img {
  width: 100%;
  height: auto;
  aspect-ratio: 55/16;
}
.guarantee_maker .guarantee_maker_img {
  margin-bottom: 30px;
}
.guarantee_maker .guarantee_maker_text {
  margin: 30px auto 30px;
  text-align: center;
}
.guarantee_maker .guarantee_maker_item {
  margin-bottom: 20px;
  padding: 30px 0;
  text-align: center;
  width: 32%;
  box-shadow: 0px 0px 10px 0px #dbdbdb;
  background: linear-gradient(90deg, rgb(21, 30, 109), rgb(0, 77, 212) 25%, rgb(0, 134, 255) 50%, rgb(0, 77, 212) 75%, rgb(21, 30, 109));
}
@media (max-width: 599px) {
  .guarantee_maker .guarantee_maker_item {
    width: 48%;
  }
}
.guarantee_maker .guarantee_maker_item p {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}
.guarantee_maker .guarantee_maker_item span {
  display: block;
  font-size: 16px;
}

.guarantee_leave {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .guarantee_leave {
    width: 90%;
  }
}
.guarantee_leave .guarantee_leave_ttl {
  padding: 15px 0;
  flex-basis: 55%;
}
@media (max-width: 768px) {
  .guarantee_leave .guarantee_leave_ttl {
    flex-basis: 100%;
  }
}
.guarantee_leave .guarantee_leave_ttl h3 {
  font-size: 40px;
  color: #3475d3;
  line-height: 1.2;
  padding-left: 20px;
  display: inline-flex;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 599px) {
  .guarantee_leave .guarantee_leave_ttl h3 {
    font-size: 32px;
  }
}
.guarantee_leave .guarantee_leave_ttl h3 span {
  color: #151e6d;
  font-size: 36px;
}
@media (max-width: 599px) {
  .guarantee_leave .guarantee_leave_ttl h3 span {
    font-size: 28px;
  }
}
.guarantee_leave .guarantee_leave_ttl img {
  width: 100%;
  max-width: 445px;
  height: auto;
  aspect-ratio: 891/328;
}
.guarantee_leave .guarantee_leave_img {
  flex-basis: 45%;
}
.guarantee_leave .guarantee_leave_text {
  margin-bottom: 50px;
  padding-top: 30px;
  padding-right: 20px;
}
@media (max-width: 599px) {
  .guarantee_leave .guarantee_leave_text {
    margin-bottom: 30px;
    padding-right: 0px;
  }
}
.guarantee_leave .about_btn {
  margin-left: 20px;
}
@media (max-width: 599px) {
  .guarantee_leave .about_btn {
    width: 90%;
  }
}
.guarantee_leave .about_btn_text {
  margin-top: 30px;
  font-size: 14px;
}

.guarantee_cta_list {
  background-color: #fff;
}

.flow_about {
  padding: 50px 0;
}

.flow_about_img {
  width: 600px;
  margin: 0 auto 50px;
}
@media (max-width: 599px) {
  .flow_about_img {
    width: 90%;
    margin-bottom: 30px;
  }
}

.page_flow_read {
  padding: 100px 0;
}
@media (max-width: 599px) {
  .page_flow_read {
    padding: 50px 0;
  }
}
.page_flow_read .inner {
  margin-right: 0;
  width: 1300px;
}
@media (max-width: 1200px) {
  .page_flow_read .inner {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .page_flow_read .inner {
    margin: 0 auto;
  }
}
.page_flow_read .left {
  width: 60%;
}
@media (max-width: 768px) {
  .page_flow_read .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page_flow_read .left .page_flow_read_ttl {
  font-size: 40px;
  color: #514b4b;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .page_flow_read .left .page_flow_read_ttl {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.page_flow_read .right {
  width: 35%;
}
@media (max-width: 768px) {
  .page_flow_read .right {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .page_flow_read .right {
    width: 100%;
  }
}

.page_flow .ttl {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .page_flow .ttl {
    margin-bottom: 40px;
  }
}
.page_flow .subttl {
  margin-bottom: 50px;
  text-align: center;
}
.page_flow .page_flow_arrow {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .page_flow .page_flow_arrow {
    display: none;
  }
}
.page_flow .page_flow_item {
  padding: 50px 0;
}
.page_flow .page_flow_item .left,
.page_flow .page_flow_item .right {
  width: 48%;
}
.page_flow .page_flow_item .left {
  position: relative;
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .left {
    width: 100%;
  }
}
.page_flow .page_flow_item .left.row {
  flex-wrap: nowrap;
}
.page_flow .page_flow_item .left::before {
  content: "";
  position: absolute;
  width: 1px;
  top: -100px;
  bottom: 0;
  left: 40px;
  background-color: #151e6d;
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .left::before {
    left: 30px;
  }
}
.page_flow .page_flow_item .left::after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 40px;
  background-color: #151e6d;
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .left::after {
    left: 30px;
  }
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .right {
    display: none;
  }
}
.page_flow .page_flow_item .page_flow_item_number p {
  background-color: #3475d3;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 1000;
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .page_flow_item_number p {
    width: 60px;
    height: 60px;
  }
}
.page_flow .page_flow_item .page_flow_item_text {
  margin-top: 20px;
}
.page_flow .page_flow_item .page_flow_item_text h4 {
  font-size: 22px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .page_flow .page_flow_item .page_flow_item_text h4 {
    margin-bottom: 10px;
  }
}
.page_flow .page_flow_item .page_flow_item_text img {
  margin-bottom: 20px;
}
.page_flow .page_flow_item2, .page_flow .page_flow_item4 {
  background-color: #f6f3f0;
}
.page_flow .page_flow_item1 {
  padding-top: 0;
}
.page_flow .page_flow_item1 .left::before {
  content: none;
}
.page_flow .page_flow_item5 .left::before {
  height: 120px;
  top: -100px;
}
.page_flow .page_flow_item5 .left::after {
  content: none;
}

.page_guide_flow {
  margin-bottom: 100px;
}
.page_guide_flow .inner {
  width: 768px;
}
@media (max-width: 768px) {
  .page_guide_flow .inner {
    width: 90%;
  }
}
.page_guide_flow .page_guide_flow_item {
  position: relative;
}
.page_guide_flow .page_guide_flow_item.page_guide_flow_item_1 {
  z-index: 10;
}
.page_guide_flow .page_guide_flow_item.page_guide_flow_item_2 {
  z-index: 10;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner {
  background: url(../images/guide_flow_bg.png) center/cover no-repeat;
  padding: 50px;
  padding-left: 120px;
  box-shadow: 0px 0px 10px 0px #333;
  margin-top: 20px;
  height: 480px;
  position: relative;
}
@media (max-width: 599px) {
  .page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner {
    height: auto;
    width: 85%;
    margin-left: auto;
    padding: 20px 10px;
    padding-left: 10px;
  }
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner.page_guide_flow_item_inner_1 {
  z-index: 10;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner.page_guide_flow_item_inner_2 {
  z-index: -10;
}
@media (max-width: 599px) {
  .page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner.page_guide_flow_item_inner_2 {
    z-index: 10;
  }
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner .page_guide_flow_item_ttl {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner .page_guide_flow_item_ttl {
    display: block;
  }
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner .page_guide_flow_item_ttl .number p {
  height: 80px;
  width: 80px;
  margin-right: 20px;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_inner .page_guide_flow_item_ttl h3 {
  font-size: 20px;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_item {
  position: absolute;
  top: -20px;
  bottom: 0;
  left: -90px;
  width: 180px;
  height: 122%;
}
@media (max-width: 599px) {
  .page_guide_flow .page_guide_flow_item .page_guide_flow_item_item {
    left: -50px;
  }
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_item.page_guide_flow_item_item_1 {
  z-index: -1;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_item.page_guide_flow_item_item_2 {
  z-index: 1;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_item.page_guide_flow_item_item_3 {
  z-index: -1;
}
.page_guide_flow .page_guide_flow_item .page_guide_flow_item_item.page_guide_flow_item_item_4 {
  z-index: -1;
}

.contact_bread {
  background-color: #f6f3f0;
}

.page_contact {
  padding: 70px 0 50px;
  background-color: #f6f3f0;
}
.page_contact form {
  width: 768px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #bbb;
}
@media (max-width: 768px) {
  .page_contact form {
    width: 100%;
    padding: 20px 15px;
  }
}
.page_contact form .form_top_text {
  margin-bottom: 20px;
}
.page_contact form .form_top_text p span {
  color: red;
}
.page_contact form .row {
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.page_contact form .row label .requre {
  color: red;
  display: block;
  font-size: 14px;
  font-weight: normal;
}
.page_contact form label {
  font-weight: bold;
  width: 30%;
}
@media (max-width: 599px) {
  .page_contact form label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.page_contact form .contact_right {
  width: 65%;
}
@media (max-width: 599px) {
  .page_contact form .contact_right {
    width: 100%;
  }
}
.page_contact form .contact_right input {
  padding: 10px 5px;
  border: 1px solid #c1c1c1;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
}
.page_contact form .contact_right input[type=radio] {
  width: auto;
}
.page_contact form .contact_right select {
  padding: 10px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  text-align: center;
  border-radius: 3px;
  background-color: #e5e5e5;
  border: none;
}
@media (max-width: 599px) {
  .page_contact form .contact_right select {
    padding: 10px 12px;
  }
}
.page_contact form .contact_right textarea {
  font-size: 16px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #c1c1c1;
}
.page_contact form .your-birth_row .contact_right {
  display: flex;
}
.page_contact form .your-birth_row .contact_right .your-birth_row_text {
  margin-right: 20px;
  margin-left: 5px;
  font-weight: bold;
  padding-top: 3px;
}
.page_contact form .your-pref_row p {
  width: 30%;
  font-weight: bold;
}
.page_contact form input[type=button],
.page_contact form input[type=submit] {
  border-radius: 40px;
  width: 240px;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
  transition: 0.3s;
  background-color: #000;
  border: none;
  cursor: pointer;
}
.page_contact form input[type=button]::after,
.page_contact form input[type=submit]::after {
  content: url(../images/btn_arrow.png);
  position: absolute;
  right: 15px;
  top: 53%;
  transform: translateY(-50%) scale(0.3);
  transition: 0.3s;
}
.page_contact form input[type=button]:hover::after,
.page_contact form input[type=submit]:hover::after {
  right: 6px;
}
.page_contact form input[type=button] {
  background-color: #aaa;
}
@media (max-width: 599px) {
  .page_contact form input[type=button] {
    margin-bottom: 20px;
  }
}
.page_contact form .submit_btns {
  padding-left: 60px;
}
@media (max-width: 599px) {
  .page_contact form .submit_btns {
    padding-left: 0;
  }
}
.page_contact .privacy_text {
  text-align: center;
  margin-bottom: 20px;
}
.page_contact .privacy_text a {
  text-decoration: underline;
}
.page_contact .about_btn_green {
  background: linear-gradient(90deg, rgb(2, 80, 34) 0%, rgb(6, 199, 85) 50%, rgb(2, 80, 34) 100%);
  margin-bottom: 50px;
}
.page_contact .contact_privacy {
  padding: 30px 0;
  text-align: center;
}
.page_contact .contact_privacy .contact_privacy_ttl {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c1c1c1;
}
.page_contact .contact_privacy .common_btn {
  margin: 0 auto;
}
.page_contact .contact_privacy label span {
  margin-right: 3px;
}
.page_contact .confirm_ttl {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.page_contact .confirm_text {
  text-align: center;
  margin-bottom: 30px;
}

.page_privacy {
  padding-top: 50px;
}
.page_privacy .page_privacy_item {
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.page_privacy .page_privacy_item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page_thanks {
  text-align: center;
  padding: 150px 0;
}
.page_thanks h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.wpcf7 p {
  display: inline;
  width: 30%;
}
@media (max-width: 599px) {
  .wpcf7 p {
    width: 100%;
  }
}

.contact_privacy p {
  display: block;
  width: 100%;
}

.page_about {
  padding: 50px 0;
  text-align: center;
}
.page_about h2 {
  color: #151e6d;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 50px;
  display: inline-flex;
  align-items: center;
}
.page_about h2 span {
  margin-right: 30px;
}
@media (max-width: 599px) {
  .page_about h2 img {
    width: 50%;
  }
}

.page_about_row .left {
  flex-basis: 40%;
  padding: 0 10px;
}
.page_about_row .right {
  flex-basis: 55%;
}
@media (max-width: 768px) {
  .page_about_row .right {
    flex-basis: 100%;
    padding: 0;
  }
}
.page_about_row .right img {
  max-width: 504px;
  width: 100%;
  height: auto;
  aspect-ratio: 1011/161;
  margin-bottom: 20px;
}
.page_about_row .right .guarantee_about_ttl {
  font-size: 48px;
  color: #151e6d;
  margin-bottom: 50px;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif;
  text-align: left;
}
@media (max-width: 768px) {
  .page_about_row .right .guarantee_about_ttl {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .page_about_row .right .guarantee_about_ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.page_about_row .right .guarantee_about_text {
  margin-bottom: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .page_about_row .right .guarantee_about_text {
    text-align: center;
  }
}

.page_company {
  padding: 50px 0;
  background-color: #f6f3f0;
}
.page_company .page_company_table .left {
  width: 30%;
}
.page_company .page_company_table .right {
  width: 65%;
}
.page_company .page_company_table .row {
  padding: 20px 0;
  border-bottom: 1px solid #bababa;
}

.access {
  padding: 50px 0;
}
.access .iframe {
  height: 650px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .access .iframe {
    height: 400px;
  }
}
.access .access_txtarea .access_txtarea_ttl {
  font-size: 18px;
  border: 1px solid #000;
  padding: 5px 15px;
  display: inline-block;
  margin-right: 10px;
}
.access .access_txtarea p {
  font-size: 14px;
}

.faq .guarantee_about_ttl span {
  margin-bottom: 0;
}
.faq .faq_list .faq_item {
  flex-wrap: nowrap;
  background-color: #f6f3f0;
  padding: 20px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .faq .faq_list .faq_item {
    flex-wrap: wrap;
  }
}
.faq .faq_list .faq_item .left {
  margin-right: 30px;
}
.faq .faq_list .faq_item .left p {
  font-size: 40px;
  color: #3475d3;
}
@media (max-width: 599px) {
  .faq .faq_list .faq_item .left p {
    font-size: 28px;
  }
}
.faq .faq_list .faq_item .right .question {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .faq .faq_list .faq_item .right .question {
    font-size: 20px;
  }
}
.sitemap {
  padding: 50px 0;
  padding-top: 150px;
}
@media (max-width: 768px) {
  .sitemap {
    padding-top: 100px;
  }
}
.sitemap .sitemap_table {
  border-top: 1px solid #bababa;
  padding-top: 30px;
}
@media (max-width: 599px) {
  .sitemap .sitemap_table ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.sitemap .sitemap_table li {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .sitemap .sitemap_table li {
    width: 50%;
    text-indent: -0.8rem;
    padding-left: 1.1rem;
  }
}
.sitemap .sitemap_table li a {
  position: relative;
  padding-left: 30px;
}
.sitemap .sitemap_table li a::before {
  content: url(../images/icon_sitemap.png);
  position: absolute;
  left: 0;
  top: 1px;
  transform: scale(0.5) translate(-50%, -50%);
}
@media (max-width: 599px) {
  .sitemap .sitemap_table li a {
    padding-left: 20px;
  }
}

.page_privacy {
  padding-top: 75px;
}
.page_privacy .page_privacy_top {
  margin-bottom: 50px;
}
.page_privacy .page_privacy_item {
  border-bottom: 1px solid #b2b2b2;
}
.page_privacy .page_privacy_item h4 {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 30px;
}

/* fadein */
/* fadeUp */
.fadeBg {
  width: 0;
  animation-name: fadeBg;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  height: 205px;
}
@media (max-width: 768px) {
  .fadeBg {
    height: 140px;
  }
}
@media (max-width: 599px) {
  .fadeBg {
    height: 90px;
  }
}

.fadeText {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.8s;
}

.fade {
  animation-name: fadeAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.fadeUpY {
  opacity: 0;
  transform: translateY(30px);
}

.fadeUpY.active {
  animation-name: fadeUpAnimeY;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.fadeUp1 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.fadeUp2 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.6s;
}

.fadeUp3 {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 0.7s;
}

.fadeUp-delay {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.fadeUp-delay2 {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

@keyframes fadeBg {
  0% {
    width: 0;
  }
  100% {
    width: 1000px;
  }
}
@media (max-width: 1200px) {
  @keyframes fadeBg {
    0% {
      width: 0;
    }
    100% {
      width: 90%;
    }
  }
}
@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUpAnimeY {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadein,
.fadein-delay,
.fadein-delay2,
.fadein-fade,
.fadein-up,
.fadein-up1,
.fadein-up2,
.fadein-up3 {
  opacity: 0;
}

.scaleup {
  opacity: 0;
  transform: scale(0.8);
}

.scaleup.active {
  animation-name: scaleup;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes scaleup {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.slideleft {
  transform: translateX(-1200px);
}

.slideleft.active {
  animation-name: slideleft;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slideleft {
  0% {
    transform: translateX(-1200px);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */