@charset "UTF-8";
@import "base.css";
@import "fonts.css";
/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 160%;
  -webkit-text-size-adjust: none;
  font-weight: 500;
}
*, ::before, ::after {
  box-sizing: border-box;
  outline: none;
}
img {
  vertical-align: middle;
  max-width: 100%;
  flex-shrink: 0;
  height: auto;
}
select {
  visibility: visible !important;
}
a {
  transition: all ease 0.3s;
  text-decoration: none;
  color: var(--txt);
}
a[href^="tel:"] {
  word-break: keep-all;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
  background: #fff
}
body {
  -webkit-text-size-adjust: none;
  min-width: 320px;
  color: var(--txt);
  font-family: var(--f-main)
}
table {
  width: 100%
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}
p, dd, dt, li, th, td, address {
  line-height: 1.81em;
  letter-spacing: 0.02rem;
}
p {
  margin: 0 0 1.5em;
}
p:last-child {
  margin-bottom: 0
}
.bold {
  font-weight: bold;
}
.left {
  text-align: left
}
.right {
  text-align: right;
}
.auto {
  margin-left: auto;
  margin-right: auto;
}
.txt_line {
  text-decoration: underline;
}
.f_big {
  font-size: 150%;
}
.f_sm {
  font-size: 80%;
}
.m0a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.red {
  color: var(--red);
}
.yel {
  color: var(--yel);
}
.blue {
  color: var(--mcolor);
}
.lblue {
  color: var(--lblue);
}
:root {
  --txt: #1A1A1A;
  --mcolor: #004EA2;
  --scolor: #4CA0DC;
  --container: 1140px;
  --gray: #F5F5F5;
  --lblue: #F2F6FA;
  --yel: #FFFF6E;
  --red: #CB003E;
  --f-main: "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --f-rbt: "Roboto", serif;
}
#wrapper {
  min-width: 1260px;
  overflow: hidden;
  margin: 0 auto
}
.inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 20px;
}
/*==========================================================
                       H E A D E R
==========================================================*/
/* HAMBUGER BUTTON */
.hamburger {
  font: inherit;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 10px 8px 5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: .15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 24px
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  position: absolute;
  width: 35px;
  height: 2px;
  transition: all ease 0.15s;
  background-color: #FFF
}
.hamburger-inner::after,
.hamburger-inner::before {
  display: block;
  content: ""
}
.hamburger-inner::before {
  top: -10px
}
.hamburger-inner::after {
  bottom: -10px
}
.hamburger--3dxy .hamburger-box {
  perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
  transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after,
.hamburger--3dxy .hamburger-inner::before {
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg)
}
header {
  position: relative;
  z-index: 9;
}
.h_box {
  width: 100%;
  position: fixed;
  transition: all 0.3s;
}
body.is_scroll .h_box {
  background-color: rgba(0, 0, 0, 0.8)
}
.h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 1.7% 0 2%;
  max-width: 1920px;
}
.h_right {
  display: flex;
  align-items: center;
}
.h_contact {
  display: flex;
}
.h_contact .btn:not(:last-child) {
  margin: 0 10px 0 0;
}
.h_contact .btn a {
  font-size: 16px;
  width: 236px;
  height: 56px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}
/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
  position: relative;
  z-index: 2;
}
.mv {
  background: url("../images/paint_mv_bg.jpg") no-repeat center /cover;
  position: relative;
}
.mv::before, .mv::after {
  content: '';
  position: absolute;
  z-index: 3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.painting .mv::before,
.painting .mv::after {
  z-index: 1;
  height: auto;
}
.painting .mv::before {
  width: 193px;
  aspect-ratio: 193 / 261;
  left: -8px;
  bottom: -21px;
  background-image: url('../images/paint_mv_slick_before.svg');
}
.painting .mv::after {
  width: 377px;
  aspect-ratio: 377 / 321;
  right: -33px;
  bottom: -21px;
  background-image: url('../images/paint_mv_slick_after.svg');
}
.mv .mv_btn {
  display: flex;
  align-items: center;
}
.mv_tt {
  color: #FFF;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0.1rem;
}
.mv_tt .big {
  background-color: rgba(76, 160, 220, 0.39);
  display: inline-block;
  border: 4px solid #7c8fa4;
  line-height: 1;
  letter-spacing: 0;
}
.mv_des {
  font-weight: bold;
  color: #FFF;
}
.mv_r ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
.mv_r ul li {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background-color: rgba(4, 27, 52, 0.4);
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #FFF;
}
.mv_slick {
  position: relative;
}
.mv_slick::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 28px;
  bottom: -1px;
  background-color: #F7F7F7;
  left: 0;
  z-index: 2;
}
.mv_slick_ite {
  margin: 0 16px;
}
@media screen and (min-width: 751px) {
  .h_left {
    max-width: 21%;
  }
  body.is_scroll .h_box {
    padding: 15px 0;
  }
  .mv {
    height: 940px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .mv .inner {
    width: 1610px;
  }
  .mv_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mv_btn p:not(:last-child) {
    margin: 0 16px 0 0;
  }
  .mv_l {
    max-width: 950px;
    width: 60%;
  }
  .mv_r {
    max-width: 536px;
    width: 37%;
    padding-top: 4px;
    margin-right: 5px;
  }
  .mv_tt {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .mv_tt .big {
    font-size: 65px;
    padding: 12px 10px 8px 14px;
    margin-right: 10px;
    margin-left: -6px;
    transform: translateY(4px);
    letter-spacing: 0.1rem;
  }
  .mv_des {
    font-size: 24px;
    margin-bottom: 40px;
    letter-spacing: 0.035rem;
  }
  .mv_r ul li {
    font-size: 18px;
    height: 149px;
    padding-top: 5px;
    line-height: 1.58;
  }
  .mv_r ul li span span {
    font-size: 22px;
  }
  .mv_r ul li:nth-of-type(1) {
    padding-top: 3px;
  }
  .mv_r ul li:nth-of-type(2) {
    padding-top: 3px;
  }
  .mv_r ul li:nth-of-type(3) {
    padding-top: 0;
    line-height: 1.65;
  }
  .mv_r ul li:nth-of-type(4) {}
  .mv_slick {
    margin-top: 64px;
    margin-bottom: -28px;
  }
}
/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
  text-align: center;
  font-weight: bold;
}
.ttl_h3 > span {
  display: block;
}
.ttl_h3 .ja {
  font-size: 32px;
  color: var(--mcolor);
  margin-bottom: 20px;
}
.ttl_h3 .en {
  font-size: 18px;
  font-weight: bold;
  color: #ADC6E1;
  margin-bottom: 22px;
  font-family: var(--f-rbt);
}
.ttl_h3 .en span {
  display: inline-block;
  padding: 0 25px;
  position: relative;
  letter-spacing: 0.05rem;
}
.ttl_h3 .en span::before, .ttl_h3 .en span::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 1px;
  background-color: #ADC6E1;
  top: calc(50% - 1px);
}
.ttl_h3 .en span::before {
  right: 100%;
}
.ttl_h3 .en span::after {
  left: 100%;
}
.ttl_h3 .slg span {
  display: inline-block;
  padding: 10px 19px 8px;
  background-color: var(--scolor);
  color: #FFF;
  border-radius: 999px;
}
.box_heading {
  text-align: center;
}
.box_heading:last-child {
  margin-bottom: 0;
}
.list01 {
  margin-bottom: 30px;
}
.list01:last-child {
  margin-bottom: 0;
}
.list01 li {
  display: block;
  padding-left: 19px;
  margin-bottom: 1px;
  position: relative;
  font-weight: bold;
  color: var(--mcolor);
  letter-spacing: 0;
}
.list01 li::before {
  background: var(--mcolor);
  width: 13px;
  height: 13px;
  position: absolute;
  top: 6px;
  left: 0;
  content: '';
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .ttl_h3:not(:last-child) {
    margin-bottom: 46px;
  }
  .box_heading {
    margin-bottom: 50px;
  }
}
/* DEFAUTL NAME BUTTON */
.btn a {
  width: 304px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: var(--scolor);
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  padding-top: 2px;
  overflow: hidden;
  letter-spacing: 0;
}
.btn.bg01 a {
  background-color: var(--red);
}
.btn.bg02 a {
  background-color: #FFF;
  color: var(--mcolor);
}
.btn.center a {
  margin-left: auto;
  margin-right: auto;
}
.btn_anchor a {
  width: 354px;
  box-shadow: none;
}
.btn_anchor a::after {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1 / 1;
  height: auto;
  background: url("../images/ic_btn.png") no-repeat center / cover;
  top: calc(50% - 15px);
  right: 12px;
}
.btn_box:not(:last-child) {
  margin-bottom: 30px;
}
.btn_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .btn_box .btn {
    margin: 12px;
  }
}
/*============= SEC01 ==============*/
.sec01 {
  background: url('../images/sec01_bg.jpg') no-repeat bottom center /contain #F7F7F7;
}
.sec01_tt1 {
  font-size: 24px;
  margin-bottom: 17px;
  letter-spacing: 0;
}
.sec01_tt2 {
  margin-bottom: 14px;
}
.sec01_tt2 span {
  display: inline-block;
  background-color: #19466F;
  color: #FFF;
  font-size: 34px;
  padding: 11px 33px 8px;
}
.sec01_list {
  position: relative;
  z-index: 2;
}
.sec01_list::before, .sec01_list::after {
  content: '';
  position: absolute;
  z-index: -1;
}
.sec01_list::before {
  background: url('../images/sec01_ic01.png') no-repeat center /contain;
}
.sec01_list::after {
  background: url('../images/sec01_ic02.png') no-repeat center /contain;
}
.sec01_list dl dt {
  margin-bottom: 16px;
}
.sec01_list dl dt a {
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  position: relative;
  border-radius: 11px;
  padding-bottom: 10px;
  letter-spacing: 0;
}
.sec01_list dl dt a::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 21px;
  background-color: #FFF;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: calc(50% - 13px);
  top: calc(100% - 1px);
  pointer-events: none;
}
.sec01_list dl dt a .txt {
  min-height: 90px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}
.sec01_list dl dt a .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--mcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0px 2px 0;
  transition: all 0.3s;
}
.sec01_list dl dt a .arrow::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  content: "";
  display: block;
  transform: rotate(-45deg);
  will-change: transform;
}
.painting .sec01_list dl dd {
  position: relative;
}
@media screen and (min-width: 751px) {
  .sec01 {
    padding: 122px 0 0;
  }
  .sec01_list dl:first-child, .sec01_list dl:last-child {
    margin-top: 42px;
  }
  .sec01_list {
    transform: translateY(30px);
    display: flex;
    justify-content: space-between;
  }
  .sec01_tt3 {
    font-size: 28px;
    letter-spacing: 0.01rem;
  }
  .sec01_list dl dt a {
    width: 255px;
    height: 214px;
  }
  .sec01_list dl:nth-of-type(3) dt a .txt {
    padding-top: 8px;
  }
  .sec01_head {
    margin-bottom: 10px;
  }
  .sec01_list::before, .sec01_list::after {
    width: 280px;
    height: 310px;
    bottom: 64px;
  }
  .sec01_list::before {
    left: -199px;
  }
  .sec01_list::after {
    right: -168px;
    bottom: 62px;
  }
  .painting .sec01_list dl dd {
    margin-top: -39px;
  }
  .painting .sec01_list dl:nth-of-type(1) dd {
    top: 29px;
    left: 48px;
  }
  .painting .sec01_list dl:nth-of-type(2) dd {
    top: 40px;
    left: -27px;
  }
  .painting .sec01_list dl:nth-of-type(3) dd {
    top: 45px;
    left: -22px;
  }
  .painting .sec01_list dl:nth-of-type(4) dd {
    top: 29px;
    left: -53px;
  }
}
/*============= SEC02 ==============*/
.sec02 {
  background-color: var(--lblue);
}
.sec02_head {
  position: relative;
  z-index: 1;
}
.sec02_head::after {
  content: "";
  position: absolute;
  width: 100vw;
  min-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
  background-color: #FFF;
  pointer-events: none;
  height: 100%;
}
.sec02_head .ttl_h3::before, .sec02_head .ttl_h3::after {
  content: "";
  position: absolute;
  background-color: var(--mcolor);
}
.sec02_head .ttl_h3::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  bottom: -48px;
  left: calc(50% - 5px);
}
.sec02_head .ttl_h3::before {
  width: 1px;
  height: 82px;
  bottom: -46px;
  left: calc(50% - 1px);
}
.sec02_str {
  font-size: 15px;
  font-family: var(--f-rbt);
  color: var(--mcolor);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  letter-spacing: 0.04rem;
}
.sec02_str::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 92px;
  border-left: 1px solid var(--mcolor);
  border-bottom: 1px solid var(--mcolor);
  left: 66px;
  top: calc(100% + 36px);
}
.sec02_str .num {
  font-size: 91px;
  font-weight: bold;
  display: block;
  margin-top: 25px;
  letter-spacing: 0;
}
.sec02_tt {
  font-size: 29px;
  color: var(--mcolor);
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 2.05;
  letter-spacing: 0.04rem;
}
.sec02_tt > span {
  display: inline-block;
  background-color: var(--yel);
  padding: 10px 12px 7px;
  line-height: 1.2;
}
.sec02_list dl {
  position: relative;
  z-index: 2;
}
.sec02_list dl::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #FFF;
  top: 0;
}
.sec02_list dl dd img {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.12);
}
.sec02_key {
  position: absolute;
  top: -60px;
}
@media screen and (min-width: 751px) {
  .sec02 {
    padding-bottom: 180px;
  }
  .sec02 .ttl_h3 .ja {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .sec02 .ttl_h3 .ja img {
    display: inline-block;
    margin-right: 10px;
    transform: translateY(-3px);
  }
  .sec02_head .ttl_h3 .en {
    margin-bottom: 7px;
  }
  .sec02_head {
    padding: 108px 0 60px;
    margin-bottom: 178px;
  }
  .sec02_str {
    width: 140px;
    margin: -76px 0 102px 0;
  }
  .sec02_str .num {
    letter-spacing: .2rem;
    margin-right: -7px;
  }
  .sec02_list dl {
    display: flex;
    justify-content: space-between;
  }
  .sec02_list dl:not(:last-child) {
    margin-bottom: 193px;
  }
  .sec02_list dl dt {
    width: 575px;
  }
  .sec02_list dl dd {
    width: 446px;
    margin-top: -30px;
  }
  .sec02_list dl dd img {
    max-width: 856px;
  }
  .sec02_list dl:nth-of-type(even) dt {
    order: 2;
    width: 550px;
  }
  .sec02_list dl:nth-of-type(even) dd {
    order: 1;
    display: flex;
    justify-content: flex-end;
  }
  .sec02_list dl:nth-of-type(odd) dd img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .sec02_list dl:nth-of-type(even) dd img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .sec02_list dl:nth-of-type(1) .sec02_tt {
    white-space: nowrap;
  }
  .sec02_list dl:nth-of-type(even) .sec02_tt {
    text-align: right;
  }
  .sec02_list dl:nth-of-type(even) .sec02_str {
    margin-left: 100%
  }
  .sec02_list dl:nth-of-type(even) .sec02_str::after {
    border-left: 0;
    border-right: 1px solid var(--mcolor);
    left: inherit;
    right: 67px;
  }
  .sec02_list dl:nth-of-type(odd) .sec02_str {
    margin-left: -140px;
  }
  .sec02_list dl::after {
    width: 1510px;
    height: calc(100% + 62px);
  }
  .sec02_list dl:nth-of-type(odd)::after {
    right: 0;
  }
  .sec02_list dl:nth-of-type(even)::after {
    left: 0;
  }
}
/*============= SEC BNN ==============*/
.sec_bnn {
  background: url('../images/paint_sec_bnn_bg.jpg') no-repeat center /cover;
}
.sec_bnn *, .sec_bnn .ttl_h3 .ja {
  color: #FFF;
}
.sec_bnn .ttl_h3 .ja {
  text-shadow: rgba(0, 0, 0, .16) 0 3px 0;
}
.sec_bnn .ttl_h3 .en {
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 751px) {
  .sec_bnn {
    padding: 128px 0 112px;
  }
  .sec_bnn .ttl_h3 .en {
    margin-bottom: 16px;
    font-size: 15px;
  }
  .sec_bnn .ttl_h3 .ja {
    letter-spacing: 0.1rem;
  }
  .sec_bnn .ttl_h3, .sec_bnn .box_heading {
    margin-bottom: 33px;
  }
  .sec_bnn .des {
    line-height: 1.9;
  }
}
/*============= SEC03 ==============*/
.sec03_ite {
  border-radius: 10px;
  background-color: var(--lblue);
  position: relative;
  padding: 40px 40px 34px 39px;
  border: 1px solid #CCDCEC;
}
.sec03_ite_tt {
  font-size: 27px;
  font-weight: bold;
  color: var(--mcolor);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  letter-spacing: 0.03rem;
}
.sec03_ite_tt .icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  background-color: #FFF;
}
.sec03_ite_list > dl dt {
  position: relative;
  z-index: 2;
}
.sec03_ite_list > dl dt > span {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  padding: 3px 10px 1px;
  border-radius: 999px;
  background-color: var(--mcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
.sec03_ite_list > dl dd {
  background-color: #FFF;
}
.sec03_box .sec03_ite {
  background-color: #FFF;
  border-color: #CCCCCC;
}
.sec03_box .sec03_ite_list > dl dd {
  border: 1px solid #E5E5E5;
  padding: 38px 30px 23px;
}
.sec03_box .sec03_ite_list > dl:last-child {
  margin-bottom: 0;
}
.sec03_box .sec03_ite_tt .icon {
  background-color: #F7F7F7;
}
.tag_box {
  border-top: 1px solid #E8E8E8;
  padding-top: 16px;
}
.tag_tt {
  font-size: 14px;
  font-weight: bold;
  color: var(--mcolor);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.tag_list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 12px);
  margin-left: -2px;
}
.tag_list li {
  font-size: 12px;
  display: inline-block;
  padding: 3px 7px;
  background-color: #F7F7F7;
  margin: 2.5px;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .sec03 {
    padding: 95px 0 89px;
  }
  .sec03_head {
    margin-bottom: 97px;
  }
  .sec03_head .ttl_h3 .ja {
    letter-spacing: 0.05rem;
  }
  .sec03_ite_img {
    position: absolute;
    right: 40px;
    top: -42px;
  }
  .sec03_ite_des {
    max-width: 575px;
    margin-bottom: 54px;
  }
  .sec03_ite_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sec03_ite_list > dl {
    width: 500px;
    margin-bottom: 30px;
  }
  .sec03_ite_list > dl:first-child:last-child {
    width: 100%;
  }
  .sec03_ite_list > dl dt > span {
    width: 430px;
    min-height: 48px;
    margin: 0 auto -24px;
  }
  .sec03_ite_list > dl dd {
    padding: 53px 35px 30px;
  }
  .sec03_ite_list > dl dd .des {
    line-height: 1.65;
  }
  .sec03_ite_list > dl:not(:last-child:first-child) dd .des {
    min-height: 85px;
  }
  .sec03_ite_list > dl:last-child:first-child dd {
    padding-top: 71px;
  }
  .sec03_item_full .sec03_ite_list > dl:not(:first-child:last-child) dd {
    min-height: 297px;
  }
  .sec03_item_full:nth-of-type(2) {
    margin-bottom: 100px;
  }
  .sec03_item_full:nth-of-type(3) {
    margin-bottom: 60px;
  }
  .sec03_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sec03_box .sec03_ite {
    width: 533px;
    padding: 35px 35px 35px 33px;
  }
  .sec03_box .sec03_ite:not(:nth-of-type(-n + 2)) {
    margin-top: 35px;
  }
  .sec03_box .sec03_ite_list > dl dt > span {
    width: 260px;
    font-size: 16px;
    min-height: 43px;
    margin-bottom: -18px;
  }
  .sec03_box .sec03_ite_tt {
    font-size: 22px;
  }
  .sec03_box .sec03_ite_tt .icon {
    width: 81px;
    height: 81px;
    margin-right: 16px;
  }
  .sec03_box .sec03_ite_list > dl {
    margin-bottom: 25px;
  }
  .sec03_box .tag_tt {
    margin-bottom: 9px;
  }
  .sec03_box .tag_list {
    width: 100%;
  }
  .sec03_box .tag_list li {
    padding: 3px 9px;
  }
}
/*============= SEC04 ==============*/
.sec04 {
  background-color: var(--gray);
  position: relative;
}
.sec04 .ttl_h3 .en {
  color: #A7A7A7;
}
.sec04 .ttl_h3 .en span::before, .sec04 .ttl_h3 .en span::after {
  background-color: #A7A7A7;
}
.sec04_head {
  position: relative;
  z-index: 2;
}
.sec04_head::before, .sec04_head::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.sec04_head::before {
  background: url('../images/paint_sec04_men1.png') no-repeat center /contain;
}
.sec04_head::after {
  background: url('../images/paint_sec04_men2.png') no-repeat center /contain;
}
.sec04_list {
  position: relative;
  z-index: 2;
}
.sec04_list dl {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.12);
  height: 100%;
}
.sec04_list dl dd {
  background-color: #FFF;
}
.sec04_list dl dd .box {
  padding: 39px 7.5% 0;
  overflow: hidden;
  position: relative;
}
.sec04_list dl dd .tt {
  font-size: 18px;
  font-weight: bold;
  color: var(--mcolor);
  margin-bottom: 19px;
  line-height: 1.6;
  min-height: 60px;
}
.sec04_list dl dd .des {
  line-height: 1.5;
  font-size: 14px;
}
.sec04_list dl dd .more {
  text-align: center;
  padding: 16px 20px 11px;
  margin-top: 38px;
  border-top: 1px solid #E3E3E3;
  cursor: pointer;
  transition: all 0.3s;
}
.sec04_list dl dd .more span {
  position: relative;
  display: inline-block;
  padding-right: 39px;
}
.sec04_list dl dd .more span::before,
.sec04_list dl dd .more span::after {
  width: 14px;
  height: 1px;
  background-color: #626262;
  transition: all 0.3s;
  content: "";
  position: absolute;
  right: 0;
  top: 12px
}
.sec04_list dl dd .more span::after {
  transform: rotate(90deg);
}
.sec04_list dl.current dd .more span::after {
  transform: none;
}
@media screen and (min-width: 751px) {
  .sec04 {
    padding: 95px 0 100px;
  }
  .sec04 .inner {
    width: 1715px;
  }
  .sec04_head {
    max-width: 1130px;
    margin: 0 auto 42px;
  }
  .painting .sec04_head::before, .painting .sec04_head::after {
    width: 142px;
    height: 274px;
    top: -20px;
  }
  .painting .sec04_head::before {
    left: 42px;
  }
  .painting .sec04_head::after {
    right: 52px;
    top: -22px;
  }
  .sec04_head .ttl_h3 .ja {
    letter-spacing: 0.05rem;
  }
  .sec04_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sec04_list dl {
    width: calc((100% - 100px) / 3);
  }
  .sec04_list dl:not(:nth-of-type(3n)) {
    margin-right: 50px;
  }
  .sec04_list dl:not(:nth-of-type(-n + 3)) {
    margin-top: 50px;
  }
  .sec04_list dl dd .box {
    min-height: 187px;
  }
}
.sec04_list dl:not(.current) dd .des {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sec04_list dl:not(.current) dd .des.show3 {
  -webkit-line-clamp: 3;
}
/*============= SEC05 ==============*/
.sec05 {
  background-color: var(--lblue);
  position: relative;
}
.sec05::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #FFF;
  z-index: 0;
  height: 518px;
}
.sec05 .inner {
  z-index: 2;
}
.sec05_step li {
  background-color: #FFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 17px 20px;
}
.sec05_step li .num {
  margin-top: -31px;
  margin-bottom: 19px;
}
.sec05_step li .num span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--mcolor);
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  font-family: var(--f-rbt);
}
.sec05_step li .img {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background-color: #F7F7F7;
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec05_step li .tt {
  text-align: center;
  font-size: 18px;
  color: var(--mcolor);
  font-weight: bold;
  min-height: 50px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.sec05_month {
  font-weight: bold;
  position: relative;
  text-align: center;
  color: var(--mcolor);
  padding-bottom: 2px;
}
.sec05_month::after {
  content: "";
  position: absolute;
}
.sec05_slogan1 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 79px;
  line-height: 1.7;
  letter-spacing: 0.05rem;
}
.sec05_slogan1 .dot {
  color: var(--red);
  display: inline-block;
  position: relative;
}
.sec05_slogan1 .dot::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--red);
  left: calc(50% - 3px);
  top: -5px;
  border-radius: 50%;
}
.sec05_slogan1 .lg {
  font-size: 31px;
}
.sec05_slogan2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 76px;
  text-align: center;
  color: var(--mcolor);
  letter-spacing: 0.05rem;
}
.sec05_slogan2 span {
  color: var(--scolor);
  display: inline-block;
  padding: 5px 10px 0px;
  background-color: #FFF;
  margin-bottom: 6px;
}
.sec05_frame0 .sec05_slogan2 {
  border-bottom: 1px solid var(--mcolor);
  padding-bottom: 13px;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.sec05_frame0 .des {
  line-height: 1.6;
  letter-spacing: 0;
}
.sec05_chart {
  margin-bottom: 64px;
}
.sec05_box {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
.sec05_box::after {
  content: "";
  position: absolute;
  width: 1300px;
  left: calc(50% - 650px);
  z-index: -1;
  top: 0;
  pointer-events: none;
  height: 100%;
  background-color: #FFF;
  border-radius: 20px;
}
.sec05_box .ttl_h3 .ja {
  color: #272727;
}
.sec05_box_frame {
  position: relative;
}
.sec05_box_frame:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1300px;
  left: calc(50% - 650px);
  height: 1px;
  background-color: #CCDCEC;
  bottom: 0;
}
.sec05_list dl dt img {
  border-radius: 8px;
}
.sec05_list dl dd {
  width: calc(100% - 66px);
  margin: -15px auto 0 auto;
  background-color: #FFF;
  position: relative;
  z-index: 2;
  padding: 27px 35px 0;
  border-radius: 8px;
}
.sec05_list dl dd .auth {
  font-weight: bold;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.sec05_list dl dd .auth .key {
  font-size: 21px;
  color: var(--mcolor);
  margin-right: 15px;
}
.sec05_list dl dd .auth .name {
  font-size: 14px;
  color: #CCCCCC;
  font-family: var(--f-rbt);
}
.sec05_list dl dd .des {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}
.sec05_pickup {
  padding: 125px 0;
  background: url('../images/paint_sec05_pikup_bg.jpg') no-repeat center /cover;
  margin-bottom: 95px;
  position: relative;
  overflow: hidden;
}
.sec05_pickup::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 27px;
  background-color: var(--lblue);
  left: calc(50% - 16px);
  top: -1px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
.sec05_pickup .tt {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
  color: #FFF;
  letter-spacing: 0.04rem;
}
.sec05_pickup .des {
  color: #FFF;
  line-height: 1.65;
}
.sec05_pickup img {
  border-radius: 8px;
}
.sec05_frame0 {
  margin-bottom: 63px;
}
.sec05_frame1 {
  border: 1px solid #ADC6E1;
  border-radius: 9px;
  padding: 0 40px 36px;
}
.sec05_frame1 .tt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: -16px;
  letter-spacing: 0;
  margin-bottom: 27px;
}
.sec05_frame1 .tt span {
  display: inline-block;
  padding: 0 20px;
  background-color: var(--lblue);
}
.sec05_frame2 {
  border-radius: 20px;
  padding: 0 48px 31px;
  background-color: #FFF
}
.sec05_frame2 .tt {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}
.sec05_frame2 .tt span {
  display: inline-block;
  padding: 11px 33px;
  background-color: var(--mcolor);
  border-radius: 999px;
  color: #FFF;
  letter-spacing: 0;
}
.sec05_frame2_info {
  font-size: 14px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid #C9C9C9;
  line-height: 1.7;
  letter-spacing: 0;
  color: #7C7C7C;
}
.sec05_frame2_info a {
  color: #7C7C7C;
  text-decoration: underline;
}
.sec05_frame2 .des {
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .sec05 {
    padding: 96px 0 100px;
  }
  .sec05_h3 .ja {
    letter-spacing: 0;
  }
  .sec05_step {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
  }
  .sec05_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
  }
  .sec05_list:not(:last-child) {
    margin-bottom: 50px;
  }
  .sec05_head {
    margin-bottom: 15px;
  }
  .sec05_box .sec05_head {
    margin-bottom: 50px;
  }
  .sec05_box .ttl_h3 {
    margin-bottom: 20px;
  }
  .sec05_box .ttl_h3 .en {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .sec05_box .ttl_h3 .en span::before, .sec05_box .ttl_h3 .en span::after {
    display: none;
  }
  .sec05_box .ttl_h3 .ja {
    font-size: 28px;
    margin-bottom: 27px;
  }
  .sec05_box .ttl_h3 .slg {
    font-size: 19px;
  }
  .sec05_box .ttl_h3 .slg span {
    padding: 9px 28px;
    letter-spacing: 0.02rem;
  }
  .sec05_month {
    width: 446px;
    margin: 0 104px 66px auto;
  }
  .sec05_month::after {
    width: 100%;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-bottom: 0;
    top: 100%;
    right: 0;
  }
  .sec05_pickup .inner {
    width: 1340px;
  }
  .sec05_pickup dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sec05_pickup dl dt {
    width: 51%;
    max-width: 666px;
    padding-bottom: 6px;
  }
  .sec05_pickup dl dd {
    width: 42%;
    max-width: 540px;
  }
  .sec05_box_frame:nth-of-type(1) {
    padding: 90px 0 52px;
  }
  .sec05_box_frame:nth-of-type(2) {
    padding: 60px 0 85px;
  }
  .sec05_frame1 {
    margin-bottom: 88px;
  }
  .sec05_frame1 .list01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 830px;
    margin: 0 auto;
    padding-right: 10px;
  }
  .sec05_frame1 .list01 li {
    width: 47%;
  }
  .sec05_frame2 .tt {
    transform: translateY(-29px);
    margin-bottom: 8px;
  }
}
/*============= SEC06 ==============*/
.sec06 .ttl_h3 .ja {
  letter-spacing: 0.05rem;
}
.sec06_price dl dt, .sec06_option dt {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sec06_price dl dd, .sec06_option dd {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.sec06_price dl {
  text-align: center;
  position: relative;
}
.sec06_price dl dt {
  font-size: 18px;
  font-weight: bold;
  min-height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
  background-color: var(--mcolor);
  letter-spacing: 0;
}
.sec06_price dl dd {
  border: 1px solid #E0E0E0;
}
.sec06_price dl dd .box01 {
  padding: 37px 30px;
  border-bottom: 1px solid #E0E0E0;
}
.sec06_price dl dd .box02 {
  padding: 20px 37px;
}
.sec06_price dl dd .tt1 {
  margin-bottom: 10px;
}
.sec06_price dl dd .tt1 span {
  display: inline-block;
  padding: 4px 19px;
  border: 1px solid #D3D3D3;
  border-radius: 999px;
  font-weight: bold;
}
.sec06_price dl dd .tt2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 23px;
}
.sec06_price dl dd .tt3 {
  font-size: 31px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--mcolor);
  letter-spacing: 0.05rem;
}
.sec06_price dl.current dt {
  background-color: var(--red);
}
.sec06_price dl.current dd .tt3 {
  color: var(--red);
}
.sec06_price dt .stick {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 999px;
  background-color: var(--txt);
  color: #FFF;
  font-weight: bold;
  position: absolute;
  letter-spacing: 0;
  top: -85px;
  font-size: 16px;
}
.sec06_price dt .stick::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 13px;
  background-color: var(--txt);
  left: calc(50% - 6px);
  bottom: -12px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
}
.sec06_price dl .tag_tt {
  margin-bottom: 10px;
}
.sec06_option {
  border-radius: 10px;
  position: relative;
  margin-top: 90px;
}
.sec06_option::before, .sec06_option::after {
  content: "";
  position: absolute;
  background-color: #ADC6E1;
}
.sec06_option::before {
  width: 38px;
  height: 3px;
  left: calc(50% - 19px);
  top: -48px;
}
.sec06_option::after {
  width: 3px;
  height: 38px;
  left: calc(50% - 2px);
  top: -66px;
}
.sec06_option dt {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  background-color: #383838;
  padding: 15px 20px 14px;
  text-align: center;
}
.sec06_option dd {
  background-color: #F7F7F7;
  padding: 34px 15px;
}
.sec06_option dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.sec06_option dd ul li {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}
.sec06_option dd ul li:not(:last-child) {
  width: 231px;
  height: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  background-color: #FFF;
}
.sec06_option dd .slg {
  font-weight: bold;
  text-align: center;
  color: var(--mcolor);
  margin-bottom: 13px;
}
.sec06_option dd .slg span {
  display: inline-block;
  position: relative;
  padding: 0 18px;
}
.sec06_option dd .slg span::before, .sec06_option dd .slg span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 22px;
  background-color: var(--mcolor);
  top: 0;
  will-change: transform;
}
.sec06_option dd .slg span::before {
  left: 0;
  transform: rotate(-27deg);
}
.sec06_option dd .slg span::after {
  right: 0;
  transform: rotate(27deg);
}
@media screen and (min-width: 751px) {
  .sec06 {
    padding: 95px 0 99px;
  }
  .sec06 .ttl_h3 {
    margin-bottom: 40px;
  }
  .sec06_price {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 136px;
  }
  .sec06_price dl {
    width: 354px;
  }
  .sec06_price dl:not(.current) {
    margin-top: 19px;
  }
  .sec06_price dl.current dt {
    font-size: 20px;
    min-height: 82px;
  }
  .sec06_option dd ul li:not(:last-child) {
    margin-right: 12px;
  }
}
/*============= SEC07 ==============*/
.sec07 {
  background-color: #F5F5F5;
}
.sec07_faq:not(:last-child) {
  margin-bottom: 45px;
}
.sec07_faq dl {
  background: #FFF;
  border-radius: 10px;
}
.sec07_faq dl:not(:last-child) {
  margin-bottom: 10px;
}
.sec07_faq dt {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.sec07_faq dt::before,
.sec07_faq dt::after {
  width: 16px;
  height: 2px;
  background-color: var(--mcolor);
  right: 30px;
  transition: all 0.3s;
  content: "";
  position: absolute;
  border-radius: 2px;
  top: calc(50% - 1px);
}
.sec07_faq dt::after {
  transform: rotate(90deg);
}
.sec07_faq dl.active dt::after {
  transform: none;
}
.sec07_faq dt span {
  font-weight: 500;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--mcolor);
  font-family: var(--f-rbt);
  display: inline-block;
}
.sec07_faq dl dd {
  padding: 0 30px 25px 30px;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -2px;
}
.sec07_faq dl:not(.active) dd {
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
@media screen and (min-width: 751px) {
  .sec07 {
    padding: 84px 0 91px;
  }
  .sec07_faq dt {
    padding: 32px 30px 26px;
  }
  .sec07_faq dt span {
    height: 29px;
    margin-right: 21px;
    padding-right: 19px;
    margin-top: -2px;
    border-right: 1px solid #DBDBDB;
  }
}
/*============= SEC08 ==============*/
.sec08_head {
  padding: 122px 0 161px;
  position: relative;
  z-index: 1;
}
.sec08_head .ttl_h3 .ja {
  color: #FFF;
}
.sec08_head::after {
  width: 1920px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: url("../images/paint_sec08_head_bg.jpg") no-repeat center /cover;
  top: 0;
  left: calc(50% - 960px);
}
.sec08_form {
  position: relative;
  z-index: 2;
  margin-top: -76px;
}
.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin-bottom: 32px;
}
.tabs li {
  font-size: 18px;
  font-weight: bold;
  background-color: #8BB3DB;
  color: #FFF;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 3px;
  cursor: pointer;
}
.tabs li.current {
  background-color: #FFF;
  color: var(--mcolor);
}
.tab-content:not(.current) {
  display: none;
}
.tab-content form {
  width: 100% !important;
}
.sec08_form .mktoForm .mktoLabel {
  margin-right: 0 !important;
  color: var(--txt) !important;
  padding-top: 17px;
  font-weight: bold;
}
.sec08_form .mktoForm input[type=text], .sec08_form .mktoForm input[type=url], .sec08_form .mktoForm input[type=email], .sec08_form .mktoForm input[type=tel], .sec08_form .mktoForm input[type=number], .sec08_form .mktoForm input[type=date], .sec08_form .mktoForm textarea.mktoField, .sec08_form .mktoForm select.mktoField {
  background-color: #F7F7F7 !important;
  height: 56px !important;
  border-radius: 5px !important;
  border: 0 !important;
  padding: 10px 19px;
}
.mktoForm .mktoRadioList > input, .mktoForm .mktoCheckboxList > input {
  margin-right: 15px;
  background-color: #F5F5F5 !important;
  border: 0 !important;
}
.sec08_form .mktoForm input[type=text]:focus, .sec08_form .mktoForm input[type=url]:focus, .sec08_form .mktoForm input[type=email]:focus, .sec08_form .mktoForm input[type=tel]:focus, .sec08_form .mktoForm input[type=number]:focus, .sec08_form .mktoForm input[type=date]:focus, .sec08_form .mktoForm textarea.mktoField:focus, .sec08_form .mktoForm select.mktoField:focus {
  border: 1px solid #C9C9C9 !important;
}
.sec08_form .mktoForm .mktoAsterix {
  font-size: 16px;
  display: inline-block;
  float: initial;
}
.mktoForm .mktoRequiredField .mktoAsterix, .sec08_form .mktoForm .mktoAsterix {
  display: inline !important;
  order: 2;
}
.sec08_form .mktoForm .mktoLabel, .mktoForm .mktoRequiredField label.mktoLabel {
  display: flex;
}
.sec08_form .mktoForm input::placeholder, .sec08_form .mktoForm textarea::placeholder {
  color: #B1B1B1 !important;
}
.sec08_form .mktoForm .mktoFormRow:not(:first-child) {
  border-top: 1px solid #D9D9D9;
  padding-top: 20px;
}
.sec08_form .mktoForm .mktoFormRow:nth-child(2),
/* #form_1 .mktoForm .mktoFormRow:nth-child(10),
#form_2 .mktoForm .mktoFormRow:nth-child(9),
#form_1 .mktoForm .mktoFormRow:nth-child(11),
#form_2 .mktoForm .mktoFormRow:nth-child(10),  */
.sec08_form .mktoForm .mktoFormRow:has(#Lblmarketoform_PrivacyPolicyOptInflag) {
  border-top: 0 !important;
}
/* #form_1 .mktoForm .mktoFormRow:nth-child(11),
#form_2 .mktoForm .mktoFormRow:nth-child(10) {
  display: none !important;
} */
.sec08_form .mktoForm .mktoFormRow:has(#Lblmarketoform_PrivacyPolicyOptInflag) + .mktoFormRow {
  display: none !important;
}
.sec08_form .mktoForm textarea.mktoField {
  height: 196px !important;
}
.sec08_form .mktoForm div {
  margin-bottom: 0 !important;
  order: 2;
}
.sec08_form #Lblmarketoform_PrivacyPolicyOptInflag,
.sec08_form .mktoFieldWrap > div {
  padding: 0 !important;
}
/* #form_1 .mktoForm .mktoFormRow:nth-child(10) div,
#form_2 .mktoForm .mktoFormRow:nth-child(9) div, */
.sec08_form .mktoForm .mktoFormRow:has(#Lblmarketoform_PrivacyPolicyOptInflag) div,
.sec08_form #Lblmarketoform_PrivacyPolicyOptInflag {
  width: auto !important;
}
.sec08_form #Lblmarketoform_PrivacyPolicyOptInflag .mktoAsterix {
  display: none !important;
}
.sec08_form .mktoFormRow {
  display: flex !important;
}
.sec08_form .mktoFieldDescriptor.mktoFormCol {
  order: 1 !important;
}
.sec08_form .mktoFormRow .mktoFormCol {
  order: 2;
}
.sec08_form .mktoForm button.mktoButton {
  width: 337px;
  height: 62px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
}
.sec08_form .mktoFormRow a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--mcolor);
}
.sec08_form select {
  color: var(--txt) !important;
  font-size: 16px;
}
.mktoForm .mktoOffset,
.mktoGutter.mktoHasWidth {
  position: absolute;
}
.mktoFormRow:nth-of-type(2) .mktoGutter.mktoHasWidth {
  position: relative;
}
.sec08_form .mktoForm .mktoFormRow #LblpMCF01 .mktoAsterix
/* #form_1 .mktoFormRow:nth-of-type(8) .mktoAsterix,
#form_2 .mktoFormRow:nth-of-type(7) .mktoAsterix */
  {
  display: none !important
}
@media screen and (min-width: 751px) {
  .sec08 {
    padding-bottom: 70px;
  }
  .sec08 .ttl_h3 .en {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .sec08 .ttl_h3 .en span {
    letter-spacing: 0.1rem;
  }
  .sec08 .ttl_h3 .en span::before, .sec08 .ttl_h3 .en span::after {
    display: none;
  }
  .sec08 .ttl_h3 .ja {
    font-size: 33px;
    letter-spacing: 0.05rem;
  }
  #MA_Last_Nm__c, #MA_First_Nm__c {
    width: 393px !important;
  }
  /* .sec08_form .mktoForm .mktoFormRow:nth-child(10), #form_2 .mktoForm .mktoFormRow:nth-child(9)  */
  .sec08_form .mktoForm .mktoFormRow:has(#Lblmarketoform_PrivacyPolicyOptInflag) {
    padding-top: 25px !important;
    margin-bottom: 18px !important;
    justify-content: center;
  }
  .sec08_form .mktoForm .mktoLabel {
    width: 300px !important;
  }
  .sec08_form .mktoForm input[type=text], .sec08_form .mktoForm input[type=url], .sec08_form .mktoForm input[type=email], .sec08_form .mktoForm input[type=tel], .sec08_form .mktoForm input[type=number], .sec08_form .mktoForm input[type=date], .sec08_form .mktoForm textarea.mktoField, .sec08_form .mktoForm select.mktoField {
    width: 796px !important;
  }
  .sec08_form .mktoForm .mktoFormRow {
    margin-bottom: 20px !important;
    display: flex;
  }
  .sec08_form #LblMA_First_Nm__c {
    width: 0px !important;
    display: none !important;
  }
}
/* 404 */
#content .mv {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 100px 15px 150px !important;
}
#content .mv * {
  color: #FFF;
}
/*==========================================================
                        F O O T E R
==========================================================*/
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #C6C6C6;
}
address {
  background-color: var(--txt);
  padding: 20px 15px;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  letter-spacing: 0;
}
.ft_box dd {
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  padding-top: 8px;
  letter-spacing: 0;
}
@media screen and (min-width: 751px) {
  .ft_box {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    align-items: center;
  }
  .ft_box dt {
    flex-shrink: 0;
  }
}
/* BACK TO TOP */
.to_top {
  position: fixed;
  z-index: 7;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 20px;
  cursor: pointer;
  transition: all .2s;
  opacity: 0;
  visibility: hidden;
}
.to_top img {
  border-radius: 50%;
  overflow: hidden;
}
.to_top.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible
}
/* FIREFOX ONLY */
@-moz-document url-prefix() {}
/* Safari 10.1+ (which is the latest version of Safari at this time) */
@media not all and (min-resolution: 0.001dpcm) {}