:root {
  --txt_base: #231815;
  --primary: #9d1d22;
  --base: #fef3e3;
  --wh: #ffffff;
  --wh2: #fff9f0;
  --bk: #000;
  --bk2: #231815;
  /*
    --l-gray: #9c9c9d;
    --gray: #473e3b;
    --gold: #c09012;
    --red: #d92900;
  */
}

/* import */
/* -------------------------------------------------------- */
/* reset */
/* -------------------------------------------------------- */
a, 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;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

figure {
  line-height: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

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

strong {
  font-weight: bold;
}

img[src$=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

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

/* base settings */
/* -------------------------------------------------------- */
html {
  box-sizing: border-box;
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  margin: 0;
  background: var(--base);
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--txt_base);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1;
}

a {
  color: var(--txt_base);
  transition: all 0.3s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  text-underline-offset: 5px;
}

a img {
  transition: all 0.3s;
}
a img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* common setting */
/* -------------------------------------------------- */
body img {
  width: 100%;
  height: auto;
  font-size: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

::-ms-expand {
  display: none;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .gmap {
    position: relative;
    height: 0;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

#pagetop {
  font-size: 1px;
  line-height: 0;
  overflow: hidden;
  float: right;
}
#pagetop a {
  text-decoration: none;
}
#pagetop img {
  width: 60px;
  height: 60px;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  #pagetop img {
    width: 30px;
    height: 30px;
  }
}

#pagetop.f_fixed {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  #pagetop.f_fixed {
    bottom: 15px;
    right: 10px;
  }
}

/* Scroll Animation */
/* -------------------------------------------------- */
.animate.ver_down_top {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}

.animate.ver_down_top.scrollin {
  opacity: 1;
  transform: translateY(0px);
}

.animate.ver_left_right {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s;
}

.animate.ver_left_right.scrollin {
  opacity: 1;
  transform: translateX(0px);
}

.animate.ver_right_left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s;
}

.animate.ver_right_left.scrollin {
  opacity: 1;
  transform: translateX(0px);
}

/* layout setting */
/* -------------------------------------------------- */
.main_width {
  margin: 0 auto;
  width: calc(100% - 8.2vw);
  max-width: 1030px;
}
@media only screen and (max-width: 768px) {
  .main_width {
    width: calc(100% - 30px);
  }
}

/* header */
/* -------------------------------------------------------- */
#header {
  position: relative;
  background: var(--wh);
  border-radius: 0 0 0 150px;
  overflow: hidden;
}
@media only screen and (min-width: 1330px) {
  #header {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #header {
    height: calc(88% - 20px);
    max-height: 700px;
    border-radius: 0 0 0 75px;
  }
}
@media only screen and (max-width: 540px) {
  #header {
    height: calc(100% - 20px);
    max-height: 640px;
  }
}
#header::before {
  position: absolute;
  content: "";
  width: 50%;
  max-width: 734px;
  height: 215px;
  background: url(../img/h_bg.png) no-repeat center 0/100% auto;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #header::before {
    top: 20px;
  }
}
#header::after {
  position: absolute;
  content: "";
  background: url(../img/hero_bg.png) no-repeat center 0/100% auto;
  width: 100%;
  height: calc(100% - 176px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 1300px) {
  #header::after {
    bottom: -8%;
  }
}
@media only screen and (max-width: 767px) {
  #header::after {
    background: url(../img/hero_bg_sp.png) no-repeat center 0/100% auto;
    height: calc(100% - 120px);
    bottom: 0;
  }
}
#header .h_inner {
  position: relative;
  margin: 0 auto;
  padding-top: 40px;
  max-width: 1030px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #header .h_inner {
    padding-top: 20px;
  }
}
#header .h_inner .h_logo {
  margin: 0 auto 40px;
  max-width: 132px;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_logo {
    margin: 0 auto 20px;
    max-width: 87px;
  }
}
#header .h_inner .h_logo a:hover {
  opacity: 1;
}
#header .h_inner .h_nav {
  margin-bottom: 110px;
  display: flex;
  justify-content: center;
  gap: 0 60px;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_nav {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_nav {
    margin-bottom: 34px;
    gap: 0 30px;
  }
}
#header .h_inner .h_nav li a {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#header .h_inner .h_nav li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_nav li a {
    font-size: 1.4rem;
  }
}
#header .h_inner .h_in {
  position: relative;
  margin: 0 15px;
  width: calc(100% - 30px);
  height: 474px;
}
#header .h_inner .h_in .h_lead {
  position: absolute;
  width: 100%;
  top: 40px;
  opacity: 0;
  transition: all 1.5s 1s;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_in .h_lead {
    top: 0;
  }
}
#header .h_inner .h_in .h_lead.in {
  opacity: 1;
}
#header .h_inner .h_in .h_lead p {
  font-size: clamp(1.7rem, 1.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_in .h_lead p .pc {
    display: none !important;
  }
  #header .h_inner .h_in .h_lead p .sp {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_lead p {
    line-height: 1.6;
  }
}
#header .h_inner .h_in .h_lead p span {
  color: var(--primary);
}
#header .h_inner .h_in .h_box_wrap {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: all 1.5s 2s;
}
#header .h_inner .h_in .h_box_wrap.in {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap {
    position: absolute;
    width: 100%;
    top: 130px;
    left: 0;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box {
  width: 370px;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_in .h_box_wrap .h_box {
    width: calc(50% - 10px);
    max-width: 325px;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box figure {
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure {
    margin: 0 auto 15px;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box figure.fig01_01 {
  max-width: 133px;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig01_01 {
    text-align: center;
  }
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig01_01 img {
    width: auto;
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig01_01 img {
    height: 68px;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box figure.fig01_02 {
  position: relative;
  max-width: 265px;
  top: -22px;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig01_02 {
    margin: 0;
    max-width: 132px;
    top: -12px;
    left: 0;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box figure.fig02_01 {
  max-width: 133px;
}
@media only screen and (max-width: 999px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig02_01 {
    text-align: center;
  }
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig02_01 img {
    width: auto;
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig02_01 img {
    height: 68px;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box figure.fig02_02 {
  position: relative;
  max-width: 265px;
  top: -22px;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig02_02 {
    margin: 0;
    top: -12px;
  }
  #header .h_inner .h_in .h_box_wrap .h_box figure.fig02_02 img {
    position: absolute;
    max-width: 132px;
    right: 0;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox {
  position: relative;
  width: 100%;
  height: 116px;
  background: var(--wh);
  border: 1px solid var(--primary);
  border-radius: 0 20px 0 20px;
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox .sttl {
  position: absolute;
  padding: 0 18px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 43%, rgb(255, 255, 255) 44%, rgb(255, 255, 255) 100%);
  display: inline-block;
  z-index: 2;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box .txtbox .sttl {
    font-size: 1.6rem;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox .sttl span {
  color: var(--primary);
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox ul {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px 0;
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox ul li {
  position: relative;
  padding-left: 40px;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box .txtbox ul li {
    padding-left: 35px;
    padding-right: 10px;
    line-height: 1.2;
  }
}
#header .h_inner .h_in .h_box_wrap .h_box .txtbox ul li::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  background: url(../img/icn_check.png) no-repeat 0 0/contain;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_box_wrap .h_box .txtbox ul li::before {
    width: 12px;
    height: 9px;
    top: 5px;
    left: 15px;
  }
}
#header .h_inner .h_in .h_circle {
  position: absolute;
  width: 130px;
  height: 130px;
  color: var(--primary);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--bk2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
  bottom: 100px;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all 1.5s 3s;
}
#header .h_inner .h_in .h_circle.in {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_circle {
    width: 85px;
    height: 85px;
    font-size: 1.6rem;
    background: var(--wh);
    gap: 5px 0;
    bottom: 100px;
  }
}
#header .h_inner .h_in .h_circle span {
  color: var(--txt_base);
  font-size: 1.6rem;
  letter-spacing: 0;
  display: block;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_circle span {
    font-size: 1.1rem;
  }
}
#header .h_inner .h_in .h_arrow {
  position: absolute;
  margin: 0 auto;
  max-width: 401px;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  opacity: 0;
  transition: all 1s 4s;
}
#header .h_inner .h_in .h_arrow.in {
  transform: translate(-50%, -10px);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #header .h_inner .h_in .h_arrow {
    width: 140px;
    bottom: 50px;
    left: 52%;
  }
}

/* footer */
/* -------------------------------------------------------- */
footer {
  background: var(--wh2);
}
footer .footer {
  padding: 70px 0;
  background: var(--primary);
  border-radius: 150px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 999px) {
  footer .footer {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .footer {
    padding: 32px 0;
    border-radius: 75px 0 0 0;
  }
}
footer .copyright {
  color: var(--wh);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  footer .copyright {
    font-size: 1.1rem;
  }
}

/* main */
/* -------------------------------------------------------- */
main .h2box {
  position: relative;
  padding-top: 60px;
  padding-left: 100px;
  width: 100%;
  height: 148px;
}
@media only screen and (max-width: 767px) {
  main .h2box {
    padding-top: 30px;
    padding-left: 50px;
    height: 74px;
  }
}
main .h2box::before {
  position: absolute;
  content: "";
  width: 111px;
  height: 148px;
  background: url(../img/ttl_deco01.png) no-repeat 0 0/contain;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  main .h2box::before {
    width: 56px;
    height: 74px;
  }
}
main .h2box h2 {
  line-height: 0.2;
  display: flex;
  align-items: flex-end;
  gap: 0 14px;
}
@media only screen and (max-width: 767px) {
  main .h2box h2 {
    gap: 0 10px;
  }
}
main .h2box h2 span {
  color: var(--txt_base);
  font-family: "kinuta-maruminkatura-stdn", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  display: block;
}
main .h2box h2 span.en {
  color: var(--primary);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}
main .h2box02 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 28px;
  padding-left: 100px;
  width: 100%;
  height: 87px;
}
@media only screen and (max-width: 767px) {
  main .h2box02 {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 14px;
    padding-left: 40px;
    height: 44px;
  }
}
main .h2box02::before {
  position: absolute;
  content: "";
  width: 108px;
  height: 87px;
  background: url(../img/ttl_deco02.png) no-repeat 0 0/contain;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  main .h2box02::before {
    width: 54px;
    height: 43px;
  }
}
main .h2box02 h2 span {
  color: var(--txt_base);
  font-family: "kinuta-maruminkatura-stdn", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.7rem, 3.6vw, 3.6rem);
  display: block;
}
main .redbox {
  width: 100%;
  background: var(--wh);
  border: 1px solid var(--primary);
  border-radius: 0 20px 0 20px;
}
main .quote {
  position: relative;
  padding-left: 44px;
  width: 100%;
  line-height: 1.75;
}
@media only screen and (max-width: 1200px) {
  main .quote {
    width: 86%;
  }
}
@media only screen and (max-width: 767px) {
  main .quote {
    padding-left: 22px;
    padding-right: 15px;
    width: 100%;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}
main .quote::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 21px;
  background: url(../img/icn_quote.png) no-repeat 0 0/contain;
  top: 5px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  main .quote::before {
    width: 11px;
    height: 10px;
    top: 5px;
  }
}
main .quote a {
  color: var(--primary);
}

/* sec_snav */
/* -------------------------------------------------------- */
.sec_snav {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .sec_snav {
    padding: 50px 0 70px;
  }
}
.sec_snav .main_width {
  position: relative;
  height: 190px;
}
.sec_snav .main_width .fig {
  position: absolute;
  max-width: 157px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .sec_snav .main_width .fig {
    max-width: 75px;
    top: 0;
    bottom: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec_snav .main_width .snav_wrap {
  position: absolute;
  width: 90%;
  max-width: 900px;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .sec_snav .main_width .snav_wrap {
    width: 100%;
    top: 50px;
  }
}
.sec_snav .main_width .snav {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.sec_snav .main_width .snav a {
  position: relative;
  width: 330px;
  height: 95px;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.44;
  background: var(--wh);
  border: 1px solid var(--primary);
  border-radius: 0 20px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 999px) {
  .sec_snav .main_width .snav a {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_snav .main_width .snav a {
    width: 125px;
    height: 92px;
    text-align: center;
  }
}
.sec_snav .main_width .snav a::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/arrow_circle.png) no-repeat 0 0/contain;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .sec_snav .main_width .snav a::after {
    width: 27px;
    height: 27px;
    bottom: -15px;
  }
}
.sec_snav .main_width .snav a:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.sec_snav .main_width .snav a:nth-of-type(2) {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .sec_snav .main_width .snav a:nth-of-type(2) {
    width: 165px;
    height: 87px;
  }
}
.sec_snav .main_width .snav a:last-of-type {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

/* sec_service */
/* -------------------------------------------------------- */
.sec_service {
  position: relative;
  padding: 100px 0 120px;
  background: var(--wh2);
  border-radius: 0 150px 0 150px;
}
@media only screen and (max-width: 767px) {
  .sec_service {
    padding: 50px 0 70px;
    border-radius: 0 75px 0 75px;
  }
}
.sec_service::before {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  background: url(../img/service_deco01.png) no-repeat 0 0/contain;
  top: -30px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .sec_service::before {
    width: 130px;
    height: 130px;
    top: -15px;
  }
}
.sec_service::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 220px;
  background: url(../img/service_deco02.png) no-repeat 0 0/contain;
  bottom: -110px;
  left: 50px;
}
@media only screen and (max-width: 767px) {
  .sec_service::after {
    width: 90px;
    height: 110px;
    bottom: -55px;
    left: 25px;
  }
}
.sec_service .main_width {
  position: relative;
  z-index: 2;
}
.sec_service h3 {
  position: relative;
  margin: 40px auto 25px;
  padding: 15px 26px;
  width: 460px;
  color: var(--wh);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--primary);
  border-radius: 25px;
}
@media only screen and (max-width: 767px) {
  .sec_service h3 {
    margin: 20px auto 15px;
    padding: 10px;
    width: calc(100% - 30px);
  }
}
.sec_service h3::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 46px;
  background: url(../img/arrow_down.png) no-repeat 0 0/contain;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .sec_service h3::after {
    width: 12px;
    height: 30px;
    bottom: -30px;
  }
}
.sec_service .redbox {
  position: relative;
  padding: 40px;
  height: 130px;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .sec_service .redbox {
    padding: 20px;
    height: auto;
    flex-wrap: wrap;
  }
}
.sec_service .redbox .sttlbox {
  width: 42.5%;
  color: var(--txt_base);
  font-family: "kinuta-maruminkatura-stdn", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media only screen and (max-width: 999px) {
  .sec_service .redbox .sttlbox {
    gap: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_service .redbox .sttlbox {
    padding-bottom: 15px;
    width: 100%;
    gap: 0 10px;
  }
}
.sec_service .redbox .sttlbox .num {
  font-size: clamp(2.5rem, 4.2vw, 5rem);
}
.sec_service .redbox .sttlbox .sttl {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
}
.sec_service .redbox .txt {
  padding-left: 50px;
  width: 60%;
  border-left: 1px solid var(--primary);
}
@media only screen and (max-width: 767px) {
  .sec_service .redbox .txt {
    padding-left: 0;
    padding-top: 15px;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--primary);
  }
}
.sec_service .redbox .txt p {
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .sec_service .redbox .txt p {
    font-size: 1.4rem;
  }
}
.sec_service figure.anzen {
  margin: 100px auto;
}
@media only screen and (max-width: 767px) {
  .sec_service figure.anzen {
    margin: 50px auto;
  }
}
.sec_service .about {
  position: relative;
  margin-bottom: 40px;
  height: 304px;
}
@media only screen and (max-width: 999px) {
  .sec_service .about {
    height: 420px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_service .about {
    height: 360px;
  }
}
.sec_service .about .redbox {
  position: absolute;
  padding: 0;
}
.sec_service .about .redbox.box01 {
  width: 400px;
  height: 190px;
  color: var(--wh);
  background: var(--primary);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box01 {
    padding-left: 20px;
    padding-top: 5px;
    width: 70%;
    max-width: 310px;
    height: 100px;
    align-items: flex-start;
    gap: 5px 0;
  }
}
.sec_service .about .redbox.box01 .sttl {
  color: var(--txt_base);
  font-family: "kinuta-maruminkatura-stdn", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--wh);
  font-size: clamp(2.7rem, 6vw, 6rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
}
.sec_service .about .redbox.box01 .sttl span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sec_service .about .redbox.box01 .sttl span:nth-of-type(2n) {
    transform: translateY(10px);
  }
}
.sec_service .about .redbox.box01 p {
  color: var(--wh);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.56;
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box01 p {
    font-size: 1.4rem;
  }
}
.sec_service .about .redbox.box02 {
  padding: 30px 50px;
  width: 630px;
  height: 225px;
  top: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 999px) {
  .sec_service .about .redbox.box02 {
    padding: 70px 30px 30px 50px;
    height: auto;
    top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box02 {
    padding: 80px 25px 20px;
    width: calc(100% - 30px);
    top: 40px;
  }
}
.sec_service .about .redbox.box02 .sttl {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box02 .sttl {
    font-size: 1.5rem;
  }
}
.sec_service .about .redbox.box02 p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.63;
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box02 p {
    font-size: 1.4rem;
  }
}
.sec_service .about .redbox.box02 p.note {
  padding-top: 10px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .sec_service .about .redbox.box02 p.note {
    font-size: 1.2rem;
    padding-left: 2.8em;
    text-indent: -2.8em;
  }
}
.sec_service .lead01 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec_service .lead01 {
    font-size: 1.5rem;
  }
}

/* sec_outline */
/* -------------------------------------------------------- */
.sec_outline {
  position: relative;
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .sec_outline {
    padding: 60px 0;
  }
}
.sec_outline::before {
  position: absolute;
  content: "";
  width: 180px;
  height: 220px;
  background: url(../img/outline_deco02.png) no-repeat 0 0/contain;
  top: 110px;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .sec_outline::before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .sec_outline .h2box02::after {
    position: absolute;
    content: "";
    width: 63px;
    height: 77px;
    top: -5px;
    right: 0px;
    background: url(../img/outline_deco02.png) no-repeat 0 0/contain;
  }
}
.sec_outline h3 {
  position: relative;
  margin-bottom: 20px;
  padding: 15px;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sec_outline h3 {
    padding: 10px;
  }
}
.sec_outline h3.h3_01 {
  color: var(--primary);
  font-size: clamp(1.5rem, 1.6vw, 2.1rem);
  font-weight: 700;
  background: var(--wh);
}
.sec_outline h3.h3_01 + p {
  margin-bottom: 40px;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.sec_outline h3.h3_02 {
  color: var(--wh);
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  background: #a6b2c0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec_outline h3.h3_02 {
    line-height: 1.5;
  }
}
.sec_outline .subbox_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .sec_outline .subbox_wrap {
    flex-direction: column;
    gap: 10px 0;
  }
}
.sec_outline .subbox_wrap .subbox {
  margin-bottom: 40px;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .sec_outline .subbox_wrap .subbox {
    margin-bottom: 20px;
    width: 100%;
  }
}
.sec_outline .subbox_wrap .subbox h4 {
  margin-bottom: 20px;
  padding: 15px 5px;
  color: var(--wh);
  font-size: clamp(1.5rem, 1.6vw, 1.8rem);
  letter-spacing: 0.05em;
  background: #ceab82;
}
@media only screen and (max-width: 767px) {
  .sec_outline .subbox_wrap .subbox h4 {
    padding: 10px 5px;
  }
}
.sec_outline .subbox_wrap .subbox:first-of-type h4 {
  background: #ce948a;
}
.sec_outline .subbox_wrap .subbox p {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: justify;
}
.sec_outline .figbox {
  position: relative;
}
.sec_outline .figbox::before {
  position: absolute;
  content: "";
  width: 134px;
  height: 134px;
  background: url(../img/outline_deco03.png) no-repeat 0 0/contain;
  bottom: -10px;
  left: -170px;
}
@media only screen and (max-width: 767px) {
  .sec_outline .figbox::before {
    width: 67px;
    height: 67px;
    bottom: -30px;
    left: -35px;
    z-index: -1;
  }
}

/* sec_taisaku */
/* -------------------------------------------------------- */
.sec_taisaku {
  position: relative;
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .sec_taisaku {
    padding-bottom: 75px;
  }
}
.sec_taisaku::before {
  position: absolute;
  content: "";
  width: 88px;
  height: 88px;
  background: url(../img/taisaku_deco01.png) no-repeat 0 0/contain;
  top: 0;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .sec_taisaku::before {
    width: 44px;
    height: 44px;
    top: -30px;
    right: -20px;
  }
}
.sec_taisaku .lead {
  margin-bottom: 50px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .sec_taisaku .lead {
    margin-bottom: 25px;
    font-size: 1.4rem;
  }
}

/* sec_company */
/* -------------------------------------------------------- */
.sec_company {
  position: relative;
  padding: 100px 0 120px;
  background: var(--wh2);
  border-radius: 0 150px 0 0;
}
@media only screen and (max-width: 767px) {
  .sec_company {
    padding: 50px 0 60px;
    border-radius: 0 75px 0 0;
  }
}
.sec_company::before {
  position: absolute;
  content: "";
  width: 352px;
  height: 447px;
  background: url(../img/company_deco01.png) no-repeat 0 0/contain;
  top: -30px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .sec_company::before {
    width: 129px;
    height: 140px;
    background: url(../img/company_deco01_sp.png) no-repeat 0 0/contain;
    top: -18px;
  }
}
.sec_company .main_width {
  position: relative;
  z-index: 2;
}
.sec_company .h2box::before {
  z-index: 1;
}
.sec_company .h2box h2 {
  position: absolute;
  z-index: 2;
}
.sec_company .infobox {
  margin: 60px 0;
  display: flex;
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .sec_company .infobox {
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
.sec_company .infobox .gmap {
  width: 530px;
  height: 280px;
}
@media only screen and (max-width: 767px) {
  .sec_company .infobox .gmap {
    height: 180px;
  }
}
.sec_company .infobox .gmap iframe {
  width: 100%;
  height: 280px;
}
.sec_company .infobox .redbox {
  padding: 40px 0 0 30px;
  width: 430px;
}
@media only screen and (max-width: 767px) {
  .sec_company .infobox .redbox {
    padding: 20px;
    width: 100%;
  }
}
.sec_company .infobox .redbox .sttl {
  margin-bottom: 15px;
  width: 299px;
}
@media only screen and (max-width: 767px) {
  .sec_company .infobox .redbox .sttl {
    width: 204px;
  }
}
.sec_company .infobox .redbox p {
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  .sec_company .infobox .redbox p {
    font-size: 1.4rem;
  }
}
.sec_company .infobox .redbox p.sign {
  padding-top: 10px;
}
.sec_company .partner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner {
    display: block;
  }
}
.sec_company .partner .ttl {
  padding-top: 10px;
  padding-right: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media only screen and (max-width: 999px) {
  .sec_company .partner .ttl {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .ttl {
    padding-right: 0;
    padding-bottom: 15px;
    font-size: 1.4rem;
  }
}
.sec_company .partner .partner_wrap {
  padding-top: 10px;
  padding-left: 40px;
  width: 100%;
  border-left: 1px solid var(--primary);
}
@media only screen and (max-width: 999px) {
  .sec_company .partner .partner_wrap {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap {
    padding-top: 20px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--primary);
  }
}
.sec_company .partner .partner_wrap p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap p {
    font-size: 1.2rem;
  }
}
.sec_company .partner .partner_wrap p.sttl {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
}
.sec_company .partner .partner_wrap .partnerbox {
  margin-bottom: 20px;
  margin-left: 20px;
  width: calc(100% - 20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox {
    margin-left: 1em;
    width: calc(100% - 1em);
    flex-wrap: wrap;
    gap: 40px 0;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo01 {
    width: 24%;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure.p_logo01 img {
  width: 121px;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo01 img {
    width: 84px;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure.p_logo02 img {
  width: 48px;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo02 img {
    width: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo03 {
    width: 24%;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure.p_logo03 img {
  width: 60px;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo03 img {
    width: 41px;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure.p_logo04 img {
  width: 123px;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure.p_logo04 img {
    width: 85px;
  }
}
.sec_company .partner .partner_wrap .partnerbox figure figcaption {
  padding-top: 20px;
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .sec_company .partner .partner_wrap .partnerbox figure figcaption {
    padding-top: 10px;
  }
}
/*# sourceMappingURL=style.css.map */