@charset "UTF-8";
@import "base.css";
@import "fonts.css";

/*==========================================================================*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
:root {
  --txt: #333333;
  --mcolor: #ea791d;
  --scolor: #7a4a26;
  --container: 1430px;
  --gray: #e9e9e9;
  --blue: #003b7d;
  --red: red;
  --brown: #7a5c48;
  --orange: #ea791d;
  --yellow: #f7b840;
  --bg-line: #00b14c;
  --f-main: "Noto Sans JP", sans-serif;
  --f-nts: "Noto Sans JP", sans-serif;
  --f-nsr: "Noto Serif JP", serif;
  --f-lato: "Lato", sans-serif;
}

/* 基本タグのフォントサイズを指定（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: 400;
}

*,
::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: 2em;
  letter-spacing: 0;
}

p {
  font-size: 180%;
  margin: 0 0 30px;
  line-height: 1.889em;
  font-weight: 500;
}

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;
}

.red {
  color: var(--red);
}

.txt_line {
  text-decoration: underline;
}

.f_big {
  font-size: 150%;
}

.f_sm {
  font-size: 80%;
}

.m0a {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#wrapper {
  min-width: 1260px;
  overflow: hidden;
  margin: 0 auto;
}

.inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 15px;
}

.lk-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* HAMBUGER BUTTON */
.hamburger {
  font: inherit;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 10px 8px 5px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 44px;
}

.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: -20px;
}

.hamburger-inner::after {
  bottom: 10px;
}

.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy .hamburger-inner::after,
.hamburger--3dxy .hamburger-inner::before {
  transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy.is_active .hamburger-inner {
  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);
  bottom: 0;
}

.hamburger_frame {
  display: none;
}

/*==========================================================
                       H E A D E R
==========================================================*/
header {
  position: relative;
  z-index: 9;
}

h1 {
  font-size: 14px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
  width: 100%;
  max-width: 50vw;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: absolute;
  top: 3px;
}

.h_box {
  width: 100%;
  position: fixed;
  background-color: #fff;
}

.h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.is_scroll .h_box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.h_box {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  max-width: 1920px;
  margin: 0 auto;
  left: 0 !important;
  right: 0;
  transition: all ease 0.3s;
}

.h_left {
  flex-shrink: 0;
}

.h_right {
  display: flex;
  height: 100%;
  gap: 45px;
}

.h_contact {
  display: flex;
  align-items: center;
}

.h_contact p {
  margin-bottom: 0;
}

.h_contact_btn {
  width: 130px;
  height: 100%;
  flex-shrink: 0;
}

.h_contact_btn a {
  color: #fff;
  line-height: 1.333em;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.h_contact_btn a>span {
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}

.h_contact_btn a>span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.h_contact_btn a>span span {
  color: #fbe4d2;
  font-size: 0.7778em;
}

.h_contact_tel {
  margin-top: 1px;
  margin-right: 21px;
  font-size: max(1.8em, 14px);
}

.h_contact_tel a {
  font-size: 1.5556em;
  font-weight: bold;
  font-family: var(--f-lato);
  color: #1f1f1f;
  letter-spacing: -0.005em;
  padding-left: 5px;
}

.h_contact_tel a span {
  position: relative;
  z-index: 1;
  padding-left: 1.6072em;
}

.h_contact_tel a span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_tel.svg") center no-repeat;
  background-size: cover;
  width: 1.3928em;
  height: 0.7857em;
  z-index: -1;
  top: 0.25em;
  left: 0;
}

.h_contact_tel .time {
  display: block;
  font-size: 0.6667em;
  line-height: 1em;
  color: #7a5c48;
  margin-right: -1px;
  font-weight: bold;
}

.h_contact_tel .time span {
  color: #000000;
  margin-left: 5px;
  font-weight: 500;
}

.h_contact_tel .time .num {
  font-size: 110%;
  position: relative;
  top: 1px;
  letter-spacing: -0.04em;
}

.h_contact_bnr {
  font-size: 0.7778em;
  font-weight: 500;
  color: #7a5c48;
  background-color: #fad48c;
  width: 16.7143em;
  height: 1.5714em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1px;
  border-radius: 3px;
}

.h_contact_line {
  background-color: #00b900;
}

.h_contact_line a>span {
  padding-top: 40px;
}

.h_contact_line a>span::before {
  background: url("../images/ic_line.svg") center no-repeat;
  background-size: cover;
  width: 36px;
  height: 34px;
}

.h_contact_line a>span span {
  font-size: 100%;
  color: #fff;
  letter-spacing: -0.2em;
}

.h_contact_mail {
  background-color: var(--mcolor);
  margin-left: 1px;
}

.h_contact_mail a {
  line-height: 1.2em;
}

.h_contact_mail a>span {
  padding-top: 45px;
  letter-spacing: -0.05em;
}

.h_contact_mail a>span::before {
  background: url("../images/ic_mail.svg") center no-repeat;
  background-size: cover;
  width: 32px;
  height: 26px;
  top: 10px;
}

.h_contact_mail a>span span {
  letter-spacing: -0.08em;
  display: block;
  line-height: 1em;
  margin-bottom: 5px;
}

.nav_list li {
  font-size: 1.5em;
}

.screen_blur {
  display: none;
}

/*==========================================================
                  M A I N    V I S U A L
==========================================================*/
main {
  position: relative;
  z-index: 2;
  padding-top: 120px !important;
}

@keyframes zoomImg {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.mv {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
}

.mv .inner {
  height: 100%;
}

.mv_bg {
  height: 800px;
}

.mv_bg .bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.mv_bg .bg::before {
  content: "";
  position: absolute;
  background: url("../images/mainvs.jpg") center top no-repeat;
  background-size: cover;
  width: 1920px;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.mv_txt {
  font-size: 10px;
  position: absolute;
  top: 11.5em;
  left: 24.2em;
  max-width: 74em;
  height: max-content;
  z-index: 1;
}

.mv_txt_sub {
  font-size: 3em !important;
  font-family: var(--f-nsr);
  font-weight: 500;
  margin-bottom: 0.6em;
  text-align: center;
  position: relative;
  left: -5px;
  z-index: 1;
}

.mv_txt_sub span {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.mv_txt_sub span::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  background-color: rgba(121, 121, 121, 0.6);
}

.mv_txt_sub span::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  top: 2px;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  background-color: rgba(121, 121, 121, 0.6);
}

.mv_txt>.inner {
  max-width: 71em;
  margin-left: 0;
}

.mv_txt .grid {
  font-size: 2em;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
  max-width: 34em;
  margin-left: -4px;
  margin-bottom: 2.05em;
}

.mv_txt .grid .item {
  font-size: 1em !important;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.1);
  width: 6em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fcebdd;
  color: #7a5c48;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: 500;
}

.mv_txt .grid .item span {
  padding-top: 2.5em;
  position: relative;
  z-index: 1;
}

.mv_txt .grid .item span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.mv_txt .grid .item.item1 span::before {
  background: url("../images/main_ic1.svg") center no-repeat;
  background-size: cover;
  width: 2.6em;
  height: 2.1em;
  left: -6px;
  top: 2px;
}

.mv_txt .grid .item.item2 span::before {
  background: url("../images/main_ic2.svg") center no-repeat;
  background-size: cover;
  width: 2.1em;
  height: 2.1em;
  top: 2px;
}

.mv_txt .grid .item.item3 span::before {
  background: url("../images/main_ic3.svg") center no-repeat;
  background-size: cover;
  width: 2.1em;
  height: 2.1em;
}

.mv_txt .grid .item.item4 span::before {
  background: url("../images/main_ic4.svg") center no-repeat;
  background-size: cover;
  width: 2.3em;
  height: 2.1em;
  left: 3px;
  top: -1px;
}

.mv_txt .grid .item.item5 span::before {
  background: url("../images/main_ic5.svg") center no-repeat;
  background-size: cover;
  width: 2.6em;
  height: 2.1em;
  top: 1px;
}

.mv_txt h2 {
  font-size: 7em;
  color: #4c4c4c;
  font-family: var(--f-nsr);
  font-weight: 500;
  line-height: 1.43em;
  letter-spacing: -0.1em;
}

.mv_txt h2>span {
  background-color: #fff;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
  line-height: 1em;
  display: inline-block;
  padding: 2px 15px 9px 10px;
}

.mv_txt h2>span span {
  font-family: var(--f-nts);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.clr_orange {
  color: #ea791d;
}

.clr_yellow {
  color: #f7b840;
}

.bg_brown {
  background-color: var(--brown) !important;
  color: #fff !important;
}

.bg_brown>* {
  color: #fff !important;
}

/*==========================================================
                M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl_h3 {
  text-align: center;
  font-weight: bold;
}

.ttl_h3:not(:last-child) {
  margin-bottom: 30px;
}

.ttl_h3>span {
  display: block;
}

.ttl_h3 .ja {
  font-size: 50px;
  font-family: var(--f-nsr);
  font-weight: 500;
  margin-bottom: 6px;
  color: #7a4a26;
}

.ttl_h3 .en {
  font-size: 20px;
  font-family: var(--f-lato);
  font-weight: 500;
  color: #ea791d;
  letter-spacing: 0.2em;
}

.ttl_h3 .en span {
  position: relative;
  z-index: 1;
  padding: 0 38px 0 41px;
}

.ttl_h3 .en span::before {
  content: "";
  position: absolute;
  background: url("../images/ic_h3_en.svg");
  background-size: cover;
  width: 28px;
  height: 18px;
  top: 4px;
  left: 0;
  z-index: -1;
}

.ttl_h3 .en span::after {
  content: "";
  position: absolute;
  background: url("../images/ic_h3_en.svg");
  background-size: cover;
  width: 28px;
  height: 18px;
  top: 4px;
  right: 0;
  z-index: -1;
}

/* DEFAUTL NAME BUTTON */
.btn a,
.btn .more {
  width: 380px;
  max-width: 100%;
  min-height: 60px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/ic_right.svg") no-repeat right 20px center/10px 14px var(--mcolor);
  font-size: 20px;
  color: #fff;
  border-radius: 60px;
}

.btn.center a {
  margin-left: auto;
  margin-right: auto;
}

.btn_box:not(:last-child) {
  margin-bottom: 30px;
}

.btn_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.btn_box .btn {
  margin: 10px;
}

.title {
  text-align: center;
}

.title .ttl_sub {
  color: #7a5c48;
  font-family: var(--f-nsr);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5em;
  letter-spacing: 0;
  margin-bottom: -5px;
}

.title .ttl_h3 {
  color: #7a5c48;
  margin-bottom: 26px;
}

.h3_desc {
  text-align: center;
}

.ttl_h4 {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  margin-bottom: 34px;
}

.ttl_h4::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background-color: #f7b840;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ttl_h4 .en {
  font-size: 18px;
  font-family: var(--f-lato);
  color: var(--yellow);
  display: block;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}

.ttl_h4 .en::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  left: -32px;
  top: 10px;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  z-index: -1;
  background-color: #fdf1d9;
}

.ttl_h4 .en .num {
  font-size: 165%;
  font-weight: bold;
  color: var(--mcolor);
}

.ttl_h4 .ja {
  font-size: 42px;
  font-family: var(--f-nsr);
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  z-index: 2;
  line-height: 1.428em;
}

.ttl_h4 .ja span {
  color: var(--mcolor);
}

/*============= SEC01 ==============*/
.sec01 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.sec01_cnt {
  display: flex;
}

.sec01 .sec01_item_custom {
  padding-bottom: 0 !important;
  margin-right: 0;
}

.sec01 .sec01_item_custom .ttl {
  margin-bottom: 0;
}

.sec01 .sec01_item_custom .ttl span {
  padding-bottom: 0;
  border: 0;
}

.sec01_item {
  font-size: 10px;
  width: auto;
  height: 26em;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 70px !important;
}

.sec01_item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.sec01_item a::before {
  content: '';
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  z-index: -1;
  border: 1px solid #fff;
}

.sec01_item::before {
  content: "";
  position: absolute;
  width: 64em;
  height: 26em;
  z-index: -1;
  top: 0;
  left: 0;
}

.sec01_item .desc {
  display: flex;
  flex-direction: column;
  gap: 1.7em;
}

.sec01_item * {
  color: #fff;
}

.sec01_item .ttl {
  text-align: center;
  font-size: 2.8em !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.8571em;
  position: relative;
  z-index: 1;
}

.sec01_item .ttl::before {
  content: '';
  position: absolute;
  background: url('../images/sec1_arrow_bnr.png') center no-repeat;
  background-size: cover;
  width: 110px;
  height: 18px;
  z-index: -1;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  filter: brightness(0) invert(1);
}

.sec01_item .ttl>span {
  border-bottom: 1px solid #fff;
  font-weight: 500;
  padding-bottom: 0.25em;
}

.sec01_item.item1 {
  padding-right: 4.9em;
  padding-bottom: 0.4em;
}

.sec01_item.item1::before {
  background: url("../images/sec1_img1.jpg") center no-repeat;
  background-size: cover;
}

.sec01_item.item1 .ttl {
  margin-bottom: 1em;
}

.sec01_item.item1 .desc p {
  font-size: 3em !important;
}

.sec01_item.item1 .desc p span {
  font-size: 292%;
  letter-spacing: -0.06em;
  margin-right: 0.05em;
}

.sec01_item.item2 {
  padding-left: 0.3em;
  padding-bottom: 2.2em;
}

.sec01_item.item2::before {
  background: url("../images/sec1_img2.jpg") center no-repeat;
  background-size: cover;
}

.sec01_item.item2 .ttl>span span {
  font-size: 65%;
  margin-left: 0.7778em;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  top: -0.2222em;
}

.sec01_item.item2 .desc {
  margin-left: -0.6em;
}

.sec01_item.item2 .desc .cnt {
  display: flex;
  align-items: center;
  gap: 1em;
}

.sec01_item.item2 .desc .box {
  font-size: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 5em;
  height: 2.5em;
  background-color: #333333;
  color: #fff;
  margin-bottom: 0;
  position: relative;
  top: 0.125em;
  padding-bottom: 0.125em;
  font-weight: 500;
  border-radius: 5px;
}

.sec01_item.item2 .desc .txt {
  font-size: 3.4em !important;
  font-weight: 500;
  line-height: 1em;
}

.sec01_item.item2 .desc .txt span {
  font-size: 156%;
  margin: 0 5px;
  letter-spacing: -0.03em;
}

.sec01_item.item3 {
  padding-left: 0.8em;
  padding-bottom: 0.3em;
}

.sec01_item.item3::before {
  background: url("../images/sec1_img3.jpg") center no-repeat;
  background-size: cover;
}

.sec01_item.item3 .ttl {
  letter-spacing: -0.02em;
  margin-bottom: 0.25em;
}

.sec01_item.item3 .ttl span {
  padding: 0 0.5357em 0.25em 0.25em;
}

.sec01_item.item3 .desc {
  font-size: 3em;
  text-align: center;
  gap: 0;
  padding-right: 5px;
}

.sec01_item.item3 .desc p {
  margin-right: 0.06667em;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  font-size: 1em !important;
}

.sec01_item.item3 .desc p span {
  font-size: 292%;
  margin-right: 6px;
  line-height: 1em;
}

.sec01_item.item3 .desc .note {
  font-size: 0.46667em !important;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-top: -0.1428em;
}

/*============= SEC02 ==============*/
.sec02 {
  background-color: #efe9e0;
  height: 500px;
  display: flex;
  align-items: center;
}

.sec02_frame {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 116px;
  position: relative;
  left: -1px;
  height: 100%;
}

.sec02_frame .ttl_h3 {
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.sec02_frame .ttl_h3::before {
  content: "";
  position: absolute;
  background: #e5dbcc;
  width: 100vw;
  height: 100%;
  top: 0;
  right: -236px;
  z-index: -1;
}

.sec02_frame .ttl_h3 .ja {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 600;
}

.sec02_cnt {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  height: 340px;
  overflow: auto;
  padding-right: 10px;
}

.sec02_cnt .item {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  max-width: 900px;
  height: 60px;
  padding: 10px 30px 12px 20px;
  border-radius: 10px;
  background: url("../images/ic_arrow.svg") right 20px center/10px 13px no-repeat #fff;
  gap: 20px;
}

.sec02_cnt .item:not(:last-child) {
  margin-bottom: 10px;
}

.sec02_cnt .info {
  display: flex;
  align-items: center;
  gap: 19px;
  height: 40px;
}

.sec02_cnt .info p {
  margin-bottom: 0;
}

.sec02_cnt .info .date {
  color: #7a4a26;
  font-size: 16px;
  letter-spacing: -0.03em;
  padding-bottom: 1px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5dbcc;
  padding-right: 20px;
}

.sec02_cnt .info .cate {
  font-size: 14px;
  min-width: 80px;
  color: #fff;
  line-height: 1.85em;
  border-radius: 3px;
  text-align: center;
  font-weight: 400;
}

.sec02_cnt .info .cate.cate1 {
  background-color: #f7b840;
}

.sec02_cnt .info .cate.cate2 {
  background-color: #ea791d;
}

.sec02_cnt .ttl {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  letter-spacing: -0.05em;
}

/*============= SEC03 ==============*/
.sec03 {
  --space-bottom: 190px;
  padding: 139px 0 0;
  position: relative;
  z-index: 2;
}

.sec03::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 10px);
  background-color: #e4deda;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.sec03 .ttl_h3 .en {
  letter-spacing: 0.1em;
}

.sec03 .h3_desc {
  margin-bottom: 43px;
}

.sec03_cnt {
  font-size: 10px;
  display: flex;
  gap: 4em;
  padding-bottom: 30px;
}

.sec03_item {
  font-size: 1em;
  width: calc(25% - 20px);
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5em 2em 2.2em;
  position: relative;
  z-index: 1;
}

.sec03_item::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("../images/sec3_item_dc1.png") center no-repeat;
  background-size: cover;
  width: 5em;
  height: 5em;
  left: -1em;
  top: -1em;
  z-index: -1;
}

.sec03_item .num {
  position: absolute;
  font-size: 4em;
  font-family: var(--f-lato);
  font-weight: bold;
  top: 0.025em;
  left: 0.5em;
}

.sec03_item:nth-child(odd) .num {
  color: var(--mcolor);
}

.sec03_item:nth-child(even)::before {
  background: url("../images/sec3_item_dc2.png") center no-repeat;
  background-size: cover;
}

.sec03_item:nth-child(even) .num {
  color: var(--yellow);
}

.sec03_item_icon {
  font-size: 1em;
  text-align: center;
  padding-right: 10px;
  margin-bottom: 2.5em;
}

.sec03_item_icon img {
  width: 12em;
  height: 12em;
}

.sec03_item li {
  font-size: 1.6em;
  letter-spacing: -0.05em;
  padding-left: 1.25em;
  line-height: 1.5em;
  font-weight: 600;
  background: url("../images/ic_check.png") left top 0.375em/1em 0.875em no-repeat;
}

.sec03_item li:not(:last-child) {
  margin-bottom: 6px;
}

.sec03_item li span {
  font-weight: 700;
  color: #ea791d;
  letter-spacing: 0;
}

/*============= SEC04 ==============*/
.sec04 {
  position: relative;
  z-index: 1;
  padding: 50px 0 100px;
  background: url("../images/sec4_bg.jpg") top 0 center no-repeat;
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto;
}

/* .sec04::after {
  content: "";
  position: absolute;
  background: url("../images/sec5_bg.png") center no-repeat;
  background-size: cover;
  width: 1920px;
  height: 190px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
} */
.sec04 .btn a {
  margin: 0 auto;
}

.sec04::before {
  content: "";
  position: absolute;
  background: url("../images/sec3_dc.png") center no-repeat;
  background-size: cover;
  width: 1920px;
  height: 190px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.sec04_shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  background-color: rgba(122, 92, 72, 0.4);
  mix-blend-mode: multiply;
  z-index: -1;
  border-radius: 10px;
}

.sec04_bnr {
  text-align: center;
  font-size: 42px;
  color: #fff;
  letter-spacing: -0.045em;
  margin-bottom: 107px;
}

.sec04_bnr span {
  background-color: var(--mcolor);
  width: 100%;
  max-width: 1000px;
  height: 80px;
  display: block;
  border-radius: 60px;
  padding: 12px 10px 7px;
  margin: 0 auto;
  line-height: 1.2em;
}

.sec04 .ttl_h3 .ja {
  margin-bottom: 9px;
  color: #fff;
}

.sec04 .ttl_h3 .en {
  letter-spacing: 0.2em;
}

.sec04 .ttl_h3 .en::before {
  content: "Solution";
  position: relative;
  display: block;
  font-size: 20px;
  font-family: var(--f-lato);
  font-weight: 400;
  color: #fce3b3;
  top: 0;
  left: 0;
  margin-bottom: -28px;
}

.sec04 .ttl_h3 .en span {
  color: transparent;
  mix-blend-mode: screen;
  padding: 0 30px 0 45px;
}

.sec04 .ttl_h3 .en span::before,
.sec04 .ttl_h3 .en span::after {
  top: 3px;
}

.sec04 .h3_desc {
  margin-bottom: 62px;
}

.sec04 .h3_desc p {
  color: #fff;
  font-weight: 400;
}

.sec04_cnt {
  margin-bottom: 60px !important;
}

.sec04_item {
  display: flex;
  align-items: flex-start;
  font-size: 10px;
  padding-bottom: 70px;
  transition: all ease 0.3s;
}

.sec04_item:not(:last-child) {
  margin-bottom: 50px;
}

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

.sec04_item_box {
  width: 82em;
  max-width: 60%;
  min-height: 440px;
  flex-shrink: 0;
  margin-top: 6em;
  margin-bottom: -6em;
  position: relative;
  padding: 5.9em 10em 6.3em 6em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
}

.sec04_item_box .sec04_shadow {
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
}

.sec04_item_box::before {
  content: "";
  position: absolute;
  background: url("../images/sec4_dc1.png") center no-repeat;
  background-size: cover;
  width: 120px;
  height: 120px;
  top: -30px;
  left: -21px;
  z-index: 3;
}

.sec04_item_box::after {
  content: "";
  position: absolute;
  background: url("../images/sec4_dc2.png") center no-repeat;
  background-size: cover;
  width: 120px;
  height: 120px;
  bottom: -10px;
  right: -20px;
  z-index: 3;
}

.sec04_item:nth-child(odd) {
  margin-left: -60px;
}

.sec04_item:nth-child(even) {
  margin-right: -60px;
}

.sec04_item:nth-child(even) .sec04_item_img {
  margin-left: 0;
  margin-right: -2.2223em;
}

.sec04_item:nth-child(even) .sec04_item_img .sec04_shadow {
  width: calc(100% + 10px);
  left: 0;
}

.sec04_item:nth-child(even) .sec04_item_box {
  padding: 5.9em 6em 6.3em 10em;
}

.sec04_item .ttl_h4 .ja {
  font-size: 2.625em;
}

.sec04_item .desc p {
  letter-spacing: -0.05em;
  font-size: 16px;
}

.sec04_item_img {
  margin-left: -2.2223em;
  width: 64.384%;
  max-width: 94em;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.sec04_item_img img {
  border-radius: 10px;
}

/*============= SEC05 ==============*/
.sec05 {
  --space-top: 100px;
  min-height: 500px;
  position: relative;
  z-index: 2;
  margin-top: calc(var(--space-top) * -1);
  padding-top: calc(var(--space-top) + 47px);
  padding-bottom: 120px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.sec05::after {
  content: "";
  position: absolute;
  background: url("../images/sec5_bg_full.jpg") top center repeat-y;
  background-size: cover;
  width: 1920px;
  height: calc(100% - 190px);
  top: var(--space-top);
  z-index: -1;
}

.sec05 .ttl_h3 {
  margin-bottom: 27px;
}

.sec05 .ttl_h3 .ja {
  margin-bottom: 9px;
  color: #7a4a26;
}

.sec05 .h3_desc {
  margin-bottom: 64px;
}

.sec05 .tabs_content {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: none;
}

.sec05 .tabs_content.active {
  display: grid;
}

.sec05 .tabs_content_item {
  background-color: #fff;
  border: 2px solid #e5dbcc;
  border-radius: 10px;
  padding: 27px 28px 19px;
  text-align: center;
  color: #7a5c48;
}

.sec05 .tabs_content_item .img {
  margin-bottom: 12px;
  border-radius: 10px;
  max-width: 380px;
  background-color: #f1f1f1;
  overflow: hidden;
  height: 220px;
}

.sec05 .tabs_content_item .img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  max-height: 100%;
}

.sec05 .tabs_content_item .ttl {
  font-size: 20px;
  letter-spacing: -0.03em;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sec05 .tabs_content_item .ttl a {
  color: #7a5c48;
}

/*============= SEC06 ==============*/
.sec06 {
  font-size: 10px;
  padding: 80px 0 120px;
}

.sec06 .ttl_h3 {
  margin-bottom: 27px;
}

.sec06 .ttl_h3 .ja {
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.sec06 .ttl_h3 .en span {
  padding: 0 65px;
}

.sec06 .h3_desc {
  margin-bottom: 81px;
}

.sec06_cnt {
  margin-left: -1px;
  margin-bottom: 80px;
}

.sec06_item {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sec06_item:not(:last-child) {
  margin-bottom: 80px;
}

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

.sec06_item_wrap .sec06_item_cnt {
  padding: 6em 6em 5.8em 0;
}

.sec06_item_wrap .sec06_item_cnt h5 {
  margin-bottom: 7px;
}

.sec06_item_wrap .sec06_item_cnt ul {
  align-items: flex-start;
  gap: 3em;
}

.sec06_item_wrap .sec06_item_cnt ul li {
  width: 48%;
  max-width: 21.5625em;
}

.sec06_item_wrap .sec06_item_cnt ul li img {
  border-radius: 10px;
}

.sec06_item_wrap .sec06_item_img {
  left: 100%;
  right: unset;
}

.sec06_item_wrap .sec06_item_img .btn {
  top: 30px;
}

.sec06_item_wrap .sec06_item_img .btn a {
  margin: -60px auto 0;
  padding: 0 40px 0 20px;
  background: url(../images/ic_right.svg) no-repeat right 30px center/10px 14px var(--mcolor);
}

.sec06_item_wrap .sec06_item_cnt::before {
  left: unset;
  right: -40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #efe9e0;
}

.sec06_item_wrap .sec06_item_cnt .desc {
  border-color: #e5dbcc;
}

.sec06_item h4 {
  font-size: 4em;
  color: #333333;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec06_item h4 span {
  color: var(--mcolor);
}

.sec06_item_img {
  z-index: 2;
  flex-shrink: 0;
  width: 80%;
  max-width: 62em;
  height: max-content;
  text-align: center;
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sec06_item_img img {
  border-radius: 10px;
}

.sec06_item_img .btn {
  position: relative;
  left: 1em;
  top: 1em;
}

.sec06_item_img .btn a {
  margin: -2em auto 0;
  letter-spacing: -0.07em;
}

.sec06_item_cnt {
  padding: 7em 0 10em 6em;
  position: relative;
  z-index: 1;
  width: 56%;
  flex-grow: 1;
  max-width: 78em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec06_item_cnt::before {
  content: "";
  position: absolute;
  background-color: #e5dbcc;
  width: 110em;
  height: 100%;
  left: -6em;
  top: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: -1;
}

.sec06_item_cnt .desc {
  margin-bottom: 2.3em;
  padding-bottom: 2.1em;
  border-bottom: 1px solid #fff;
}

.sec06_item_cnt h5 {
  color: #7a5c48;
  font-size: 2.8em;
  font-weight: 600;
  margin-bottom: 37px;
}

.sec06_item_cnt .cnt {
  padding: 0.5em 0.6875em 0.9375em;
  font-size: 1em;
}

.sec06_item_cnt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3em 1.5em;
  font-size: 1em;
}

.sec06_item_cnt ul li {
  font-size: 1.6em;
  width: calc(33.3333333333% - 0.625em);
  background: url("../images/sec6_item_bg1.png") center top repeat;
  background-size: 230px 100px;
  border-radius: 10px;
}

.sec06_item_cnt ul li:nth-child(odd) .num {
  background-color: #f7b840;
}

.sec06_item_cnt ul li:nth-child(even) .num {
  background-color: #ea791d;
}

.sec06_item_cnt ul li .cnt p {
  font-size: 1.125em;
  color: #333333;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.5em;
}

.sec06_item_cnt ul li .cnt p span {
  font-size: 133.3333%;
  font-weight: 900;
}

.sec06_item_cnt .num {
  font-size: 1.125em;
  width: 2.2223em;
  height: 2.2223em;
  font-family: var(--f-lato);
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  margin: -1.1112em auto 0;
}

.sec06_bnr {
  display: flex;
  gap: 40px;
}

.sec06_bnr .item {
  margin-bottom: 0;
  transition: all ease 0.3s;
}

/*============= SEC07 ==============*/
.sec07 {
  background: url("../images/sec7_bg.jpg") top left repeat;
  background-size: 20px 20px;
  padding: 107px 0 100px;
}

.sec07 .ttl_h3 {
  margin-bottom: 27px;
}

.sec07 .ttl_h3 .ja {
  margin-bottom: 19px;
}

.sec07 .ttl_h3 .en span {
  padding: 0 60px;
}

.sec07 .h3_desc {
  margin-bottom: 41px;
}

.sec07 .btn {
  margin-bottom: 80px;
}

.sec07 .btn a {
  padding: 0 50px 0 30px;
  letter-spacing: -0.03em;
  background: url(../images/ic_right.svg) no-repeat right 31px center/10px 14px var(--mcolor);
}

.sec07 h4 {
  font-size: 30px;
  position: relative;
  z-index: 1;
  padding-bottom: 31px;
  margin-bottom: 38px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.sec07 h4::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background-color: var(--yellow);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: -1;
}

.sec07_cnt {
  border-radius: 10px;
  background-color: #fff;
  padding: 50px 38px 58px;
  border: 2px solid #e5dbcc;
  margin-bottom: 80px;
}

.sec07_cnt .sec_tabs {
  justify-content: center;
  margin-bottom: 29px;
}

.sec07_cnt .sec_tabs .tabs_item {
  border-width: 2px;
  padding-bottom: 8px;
  letter-spacing: -0.1em;
}

.sec07_cnt .sec_tabs .tabs_item::before {
  border-width: 10px 7px 0 7px;
}

.sec07_cnt .sec_tabs::before {
  display: none;
}

.sec07_cnt .sec_tabs_content {
  margin-bottom: 39px;
}

.sec07_cnt .tabs_content {
  overflow-y: auto;
  overflow-x: auto;
  max-height: 211px;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: #f7b840 #f2efed;
}

.sec07_cnt .tabs_content table {
  min-width: 1290px;
}

.sec07_cnt .tabs_content table th,
.sec07_cnt .tabs_content table td {
  border-color: #af9d91;
}

.sec07_cnt .tabs_content table tbody tr:nth-child(even) {
  background-color: #fef8ec;
}

.sec07_cnt .tabs_content ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.sec07_cnt .tabs_content ::-webkit-scrollbar-track {
  background: #f2efed;
}

.sec07_cnt .tabs_content ::-webkit-scrollbar-thumb {
  background: #f7b840;
}

.sec07_cnt .tabs_content tr *:first-child {
  border-left: 0;
}

.sec07_cnt .tabs_content tr *:last-child {
  border-right: 0;
}

.sec07_cnt .tabs_content tr th {
  padding: 13px 15px 14px;
  background-color: #7a5c48;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.sec07_cnt .tabs_content tr th:nth-child(1) {
  width: 175px;
}

.sec07_cnt .tabs_content tr th:nth-child(2) {
  width: 210px;
}

.sec07_cnt .tabs_content tr th:nth-child(3) {
  width: 230px;
}

.sec07_cnt .tabs_content tr th:nth-child(4) {
  width: 410px;
}

.sec07_cnt .tabs_content tr th:nth-child(5) {
  width: 120px;
}

.sec07_cnt .tabs_content tr td {
  text-align: center;
  padding: 8px 10px 9px;
  font-weight: 600;
  white-space: nowrap;
}

.sec07_cnt .tabs_content tr td:nth-child(2) {
  letter-spacing: 0.08em;
}

.sec07_cnt .tabs_content tr td:nth-child(4) {
  letter-spacing: -0.08em;
}

.sec07_cnt .btn {
  margin-bottom: 0 !important;
}

.sec07_cnt .btn a {
  padding: 0 48px;
  letter-spacing: -0.05em;
}

.sec07_cnt2 {
  border-radius: 10px;
  background-color: #fff;
  padding: 40px;
  border: 2px solid #e5dbcc;
}

.sec07_cnt2 h4 {
  margin-bottom: 30px;
}

.sec07_cnt2_box {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
}

.sec07_cnt2_box .img {
  text-align: center;
  margin-bottom: 22px;
  width: 150px;
  margin: 0 auto 15px auto;
}

.sec07_cnt2_box .ttl {
  text-align: center;
  font-size: 20px;
  color: #7a5c48;
  font-weight: 600;
  margin-bottom: 2px;
}

.sec07_cnt2_box .desc p {
  font-size: 16px;
  letter-spacing: -0.04em;
  text-align: center;
}

.sec07_cnt2 .btn {
  margin-bottom: 0;
}

.sec07_cnt2 .btn a {
  padding: 0 48px 0 30px;
  letter-spacing: -0.05em;
}

/*============= SEC08 ==============*/
.sec08 {
  position: relative;
  z-index: 1;
  padding: 122px 0 130px;
}

.sec08>.inner {
  position: static;
}

.sec08_frame {
  font-size: 10px;
  max-width: 1320px;
  margin: 0 auto;
}

.sec08_cnt {
  width: 50%;
  margin: 0 0 5.3em auto;
}

.sec08_cnt .ttl_h3 {
  text-align: left;
  margin-bottom: 2.3125em;
}

.sec08_cnt .ttl_h3 .ja {
  letter-spacing: 0.03em;
}

.sec08_cnt .ttl_h3 .ja .line {
  --cl: #fce3b3;
  --t: 67%;
  --b: 89%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) var(--t), var(--cl) var(--t), var(--cl) var(--b), rgba(255, 255, 255, 0) var(--b));
}

.sec08_cnt .ttl_h3 .ja .resize {
  font-size: 0.6em;
  margin-left: 14px;
  display: block;
  margin-bottom: -4px;
  letter-spacing: 0;
}

.sec08_cnt .ttl_h3 .en span {
  padding: 0 52px 0 61px;
}

.sec08_cnt .desc p {
  letter-spacing: -0.065em;
  font-size: 18px;
}

.sec08_img {
  position: absolute;
  top: 8em;
  left: calc(50% - 961px);
  width: 69%;
  max-width: 900px;
  z-index: -1;
}

.sec08_img img {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sec08_btn_bnr {
  display: flex;
  max-width: 1320px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 10px 0 white;
}

.sec08_btn_bnr .item {
  width: 50%;
  transition: all ease 0.3s;
}

.sec08_btn_bnr .item.item1 {
  background-color: var(--mcolor);
}

.sec08_btn_bnr .item.item1 .box {
  background-color: #ee944a;
}

.sec08_btn_bnr .item.item1 a>span::before {
  background: url("../images/sec8_bnr_ic1.png") center no-repeat;
  background-size: cover;
  width: 95px;
  height: 100px;
  left: 0;
  top: 13px;
  bottom: 0;
}

.sec08_btn_bnr .item.item2 {
  background-color: var(--yellow);
}

.sec08_btn_bnr .item.item2 .box {
  background-color: #f4a42d;
}

.sec08_btn_bnr .item.item2 a {
  letter-spacing: -0.1em;
}

.sec08_btn_bnr .item.item2 a>span {
  padding-left: 148px;
  padding-right: 113px;
}

.sec08_btn_bnr .item.item2 a>span::before {
  background: url("../images/sec8_bnr_ic2.png") center no-repeat;
  background-size: cover;
  width: 69px;
  height: 100px;
  left: 0;
  top: 13px;
  bottom: 0;
}

.sec08_btn_bnr .item a {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  font-family: var(--f-nsr);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 12px;
}

.sec08_btn_bnr .item a>span {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: center;
  padding-left: 160px;
  padding-right: 103px;
}

.sec08_btn_bnr .item a>span::before {
  content: "";
  position: absolute;
  margin: auto;
  z-index: -1;
}

.sec08_btn_bnr .item a>span::after {
  content: "";
  position: absolute;
  background: url("../images/ic_arrow_white.png") center no-repeat;
  background-size: cover;
  width: 18px;
  height: 26px;
  right: 1px;
  top: 16px;
  bottom: 0;
  margin: auto;
  z-index: -1;
}

.sec08_btn_bnr .item a .box {
  font-size: 0.55em;
  font-family: var(--f-nts);
  min-width: 280px;
  height: 40px;
  padding: 5px;
  text-align: center;
  font-weight: 400;
  display: inline-block;
  border-radius: 60px;
  letter-spacing: -0.05em;
}

/*============= SEC09 ==============*/
.sec09 {
  padding-bottom: 100px;
}

.sec09_frame {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  background-color: #7a5c48;
  border-radius: 10px;
  padding: 10px;
}

.sec09_cnt {
  padding: 3.1em 0 2.9em 5em;
}

.sec09_cnt .ttl {
  font-size: 3.6em;
  color: #fff;
  line-height: 1.3em;
  padding-left: 3.3335em;
  position: relative;
  z-index: 1;
  margin-bottom: 0.47222em;
}

.sec09_cnt .ttl::before {
  content: "";
  position: absolute;
  background: url("../images/sec9_ic.png") center no-repeat;
  background-size: cover;
  width: 2.7777777778em;
  height: 2.7777777778em;
  top: -1px;
  left: 0;
  z-index: -1;
}

.sec09_cnt .ttl span {
  color: var(--yellow);
}

.sec09_cnt .desc {
  font-size: 1em;
  margin-bottom: 1.5em;
}

.sec09_cnt .desc p {
  font-size: 1.8em;
  color: #fff;
  letter-spacing: -0.075em;
  font-weight: 400;
}

.sec09_cnt .btn a {
  color: #333333;
  background: url(../images/ic_right_clr.png) no-repeat right 20px center/10px 14px #e5dbcc;
  padding: 0 50px 0 10px;
  letter-spacing: -0.05em;
}

.sec09_img {
  font-size: 1em;
  position: relative;
  z-index: 1;
  width: 68em;
  height: 28em;
}

.sec09_img::before {
  content: "";
  position: absolute;
  background: url("../images/sec9_dc.png") center no-repeat;
  background-size: cover;
  width: 23.8em;
  height: 32.1em;
  bottom: -1em;
  right: 6.2em;
  z-index: 0;
}

.sec09_img img {
  border-radius: 6px;
}

/*============= SEC10 ==============*/
.sec10 {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
  background-color: #faf8f5;
}

.sec10::before {
  content: "";
  position: absolute;
  background: url("../images/sec10_bg.png") center top no-repeat;
  background-size: cover;
  width: 1920px;
  height: 1150px;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.sec10_title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sec10_title .ttl_h3 {
  text-align: left;
  margin-bottom: 58px;
}

.sec10_title .ttl_h3 .ja {
  margin-bottom: 9px;
}

.sec10_title .ttl_h3 .en {
  color: #af9d91;
}

.sec10_title .ttl_h3 .en span {
  padding: 0 37px 0 31px;
}

.sec10_btn {
  margin-right: 59px;
  margin-top: -8px;
}

.sec10_btn p {
  width: 162px;
  height: 48px;
  border-radius: 60px;
  font-weight: 500;
  background-color: #fff;
  color: #7a5c48;
  font-size: 17px;
  border: 2px solid #ebe7e4;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.08em;
  position: relative;
  z-index: 1;
}

.sec10_btn p::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #333;
  left: 20px;
  bottom: -10px;
  z-index: -1;
  transform: rotate(60deg);
}

.sec10_frame {
  position: relative;
  z-index: 1;
  min-height: 990px;
  margin-bottom: 40px;
}

.sec10_cnt {
  padding-top: 27px;
  width: 700px;
  position: relative;
  z-index: 1;
}

.sec10_cnt h4 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-bottom: 21px;
  margin-bottom: 28px;
}

.sec10_cnt h4::before {
  content: "";
  position: absolute;
  background-color: var(--yellow);
  width: 100px;
  height: 5px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.sec10_cnt .img {
  position: absolute;
  top: 0;
  left: calc(100% + 59px);
  width: 900px;
  border-radius: 10px;
  overflow: hidden;
}

.sec10_cnt .desc {
  margin-bottom: 34px;
}

.sec10_cnt .desc p {
  letter-spacing: -0.03em;
}

.sec10_cnt .desc p:not(:last-child) {
  margin-bottom: 34px;
}

.sec10_cnt .sign {
  margin-top: -18px;
  margin-bottom: 33px;
  text-align: right;
}

.sec10 .btn a {
  margin: 0 auto;
  letter-spacing: -0.05em;
  background: url(../images/ic_right.svg) no-repeat right 30px center/10px 14px var(--brown);
}

/*============= SEC TAB ==============*/
.sec_tabs {
  max-width: 1000px;
  margin: 0 auto 50px;
  display: flex;
  position: relative;
  z-index: 1;
}

.sec_tabs::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #e5dbcc;
  left: calc((100vw - 100%) / -2);
  bottom: 0;
  z-index: -1;
}

.sec_tabs .tabs_item {
  font-size: 20px;
  color: #7a5c48;
  width: 25%;
  border-bottom: 3px solid #e5dbcc;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 7px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all ease 0.3s;
}

.sec_tabs .tabs_item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 8px 0 8px;
  border-color: #ea791d transparent transparent transparent;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
  top: calc(100% + 2px);
  opacity: 0;
  transition: all ease 0.3s;
}

.sec_tabs .tabs_item.active {
  border-color: #ea791d;
  color: #ea791d;
}

.sec_tabs .tabs_item.active::before {
  opacity: 1;
}

.sp375 {
  display: none;
}

.under main .d_flex {
  display: flex;
  gap: 2%;
  max-width: 710px;
  justify-content: center;
  margin: auto;
}

.under main .d_flex li {
  width: 49%;
}

.wp-pagenavi,
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.wp-pagenavi span,
.wp-pagenavi a,
.pagination span,
.pagination a {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  line-height: 1em;
  padding: 3px 5px 5px;
  font-weight: 600;
  background: #b5b5b5;
  text-decoration: none;
  margin: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
}

.wp-pagenavi span.current,
.wp-pagenavi a.current,
.pagination span.current,
.pagination a.current {
  background: var(--mcolor);
  padding-top: 6px;
}

.wp-pagenavi span.prev,
.wp-pagenavi span.next,
.wp-pagenavi a.prev,
.wp-pagenavi a.next,
.pagination span.prev,
.pagination span.next,
.pagination a.prev,
.pagination a.next {
  padding-left: 10px;
  padding-right: 10px;
}

.wpcf7-checkbox {
  margin-left: -1em !important;
}

.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

.under main blockquote {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: rgba(249, 249, 249, 1);
  border-left: 5px solid #eee;
  padding: 10px 20px;
}

.under main .blogList {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.under main .blogList_item {
  width: calc(33.3333333333% - 10px);
  border: 1px solid #333;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.under main .blogList_item_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -15px -15px 15px;
  text-align: center;
  background-color: #f1f1f1;
  height: 241px;
}

.under main .blogList_item_img img {
  max-height: 100%;
  border-radius: 0;
}

.under main .blogList_item_content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.under main .blogList_item_content .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.under main .blogList_item_content .info p {
  margin-bottom: 0;
  font-size: 14px;
}

.under main .blogList_item_content .info .date {
  letter-spacing: 0.05em;
}

.under main .blogList_item_content .info .cate {
  letter-spacing: 0;
}

.under main .blogList_item_content .info .cate span {
  color: #fff;
  padding: 2px 10px 3px;
  border-radius: 5px;
  letter-spacing: 0;
}

.under main .blogList_item_content .info .cate1 span {
  background-color: #f7b840;
}

.under main .blogList_item_content .info .cate2 span {
  background-color: #ea791d;
}

.under main .blogList_item_content .info .cate3 span {
  background-color: #7a4a26;
}

.under main .blogList_item_content .info .cate4 span {
  background-color: #b15000;
}

.under main .blogList_item_content .ttl {
  line-height: 1.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}

.under main .blogList_item .btn {
  margin-top: auto;
}

.under main .blogList_item .btn a {
  width: 100%;
  max-width: 200px;
  min-width: unset;
  font-size: 16px;
  min-height: 45px;
  margin: 0 auto;
}

.under main .uCate_item.btn a.active {
  background-color: #ea791d !important;
}

.under main .uCate {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.under main .uCate_item {
  width: calc(25% - 15px);
}

.under main .uCate_item.btn a {
  min-width: unset;
  width: 100%;
  font-size: 16px;
  padding: 10px 30px;
  background: url(../images/btn_ic_u.png) no-repeat right 15px center/9px 13px var(--scolor) !important;
}

.under main .single_btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.under main .single_btn .btn a {
  width: 300px;
  max-width: 100%;
  min-width: unset;
  font-size: 16px;
  min-height: 60px;
  margin: 0 auto;
}

.under main .blog_detail_cnt .cnt>*:not(:last-child) {
  margin-bottom: 30px;
}

.under main .blog_detail_cnt:not(:last-child) {
  margin-bottom: 80px;
}

.under main .blog_detail_cnt .img {
  max-width: 500px;
  max-height: 450px;
  text-align: center;
  flex-shrink: 0;
}

.under main .blog_detail_cnt .img img {
  max-height: 450px;
}

.under main .blog_detail_cnt .image_c {
  margin: 0 auto 30px;
}

.under main .blog_detail_cnt .image_c img {
  border-radius: 10px;
}

.under main .blog_detail_cnt .image_r {
  margin-bottom: 30px;
}

.under main .blog_detail_cnt .image_l {
  margin-bottom: 30px;
}

.under main .btn.prev a {
  background: url("../images/btn_ic_u_back.png") no-repeat left 25px center/9px 13px #ea791d !important;
}

.under main .btn.btn_view a {
  background: #ea791d !important;
}

.under main .mv_txt {
  position: static;
  width: 100%;
  max-width: 55em;
  margin: 0 auto 50px;
}

.under main .mv_txt .grid {
  grid-template-columns: repeat(4, 1fr);
  margin-left: 0;
}

.under main .mv_txt .grid .item.item4 {
  background: url(../images/main_ic5.svg) center no-repeat;
  background-size: cover;
  width: 2.6em;
  height: 2.1em;
  top: 1px;
}

.under main .mv_txt .inSubcate .item {
  opacity: 0.6;
}

.under main .mv_txt .inSubcate .item.active {
  opacity: 1;
}

.under main .thanks-page {
  margin-bottom: 40px;
}

.under main .ubtn-item input,
.under main .ubtn-item a {
  width: 250px;
  max-width: 100%;
  min-height: 60px;
  color: #fff;
  font-size: 20px;
  border-radius: 60px;
  background: url("../images/ic_right.svg") no-repeat right 20px center/10px 14px var(--mcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  outline: none;
  margin: 0 auto;
  font-family: var(--f-nts);
  cursor: pointer;
  transition: all ease 0.3s;
}

.under main .ubtn-item.ubtn-back input {
  background: url("../images/btn_ic_u_back.png") no-repeat left 20px center/10px 14px var(--mcolor);
}

.under main .wpcf7-spinner {
  /* display: none; */
  display: block;
  margin: 0 auto;
}

.under main .tb_block input[type=text],
.under main .tb_block input[type=email],
.under main .tb_block input[type=tel],
.under main .tb_block input[type=number],
.under main .tb_block textarea {
  width: 100%;
  border: solid 1px #999;
  padding: 6px 10px;
  font-family: var(--f-nts);
}

.under main .tb_block.left td {
  text-align: left;
}

.under main .wpcf7-form .info {
  color: #090;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5em;
  margin-bottom: 5px;
}

.under main #form-ct th>p .require {
  background-color: #e61313;
  width: 36px;
  height: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding-bottom: 1px;
  padding-right: 1px;
}

.under main #form-ct th>p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.under main .postcode {
  display: flex;
  align-items: center;
  gap: 10px;
}

.under main .postcode p {
  margin-bottom: 0;
}

.under main .postcode input {
  width: 250px !important;
}

.under main .postcode .btn-postcode {
  background-color: var(--mcolor);
  padding: 2px 10px 3px;
  cursor: pointer;
  width: 100%;
  max-width: 100px;
  text-align: center;
  transition: 0.2s linear;
  color: #fff;
}

.under main .style_radio .wpcf7-list-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #999;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: relative;
  margin-right: 3px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  top: -1px;
}

.under main .style_radio .wpcf7-list-item input[type=checkbox]:checked {
  border: 1px solid #0078D7;
}

.under main .style_radio .wpcf7-list-item input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: #0078D7;
  border-radius: 50%;
}

.under main .wpcf7-textarea {
  resize: none;
  max-height: 200px;
}

.under main .wpcf7-response-output {
  font-size: 14px;
}

.under main .custom_link {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.under main .custom_link p {
  margin-bottom: 0;
}

.under main .u_editor ol li,
.under main .u_editor ul li {
  list-style: none;
  display: block;
  padding-left: 25px;
  margin-bottom: 5px;
  position: relative;
  font-size: 18px;
  letter-spacing: -0.5px;
  font-weight: 500;
}

.under main .u_editor ol li::before {
  top: 9px;
}

.under main #topic_path li br {
  display: none;
}

.sp475 {
  display: none;
}

.orange_clr {
  color: var(--mcolor);
}

/*==========================================================
                        F O O T E R
==========================================================*/
footer {
  position: relative;
  z-index: 3;
}

address {
  padding: 14px 14px 23px;
  color: #af9d91;
  text-align: center;
  font-family: var(--f-lato);
  font-size: 20px;
  letter-spacing: 0;
}

.ft_contact {
  background-color: #e4deda;
  padding: 75px 0 100px;
}

.ft_contact_ttl {
  font-size: 50px;
  text-align: center;
  font-family: var(--f-nsr);
  font-weight: 500;
  color: var(--scolor);
  margin-bottom: 40px;
}

.ft_contact_ttl .ja {
  font-size: 1em;
  display: block;
  margin-bottom: 1px;
}

.ft_contact_ttl .en {
  font-size: 0.4em;
  font-family: var(--f-lato);
  color: #af9d91;
  display: block;
  line-height: 1em;
  letter-spacing: 0.2em;
}

.ft_contact_box {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 790px;
  margin: 0 auto 40px;
  gap: 20px;
  border-radius: 5px;
}

.ft_contact_box .item {
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #957d6d;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 5px;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.ft_contact_btn {
  display: flex;
  gap: 40px;
}

.ft_contact_btn p {
  margin-bottom: 0;
  width: 440px;
  max-width: 100%;
  height: 120px;
  border-radius: 10px;
}

.ft_contact_btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft_contact_btn a>span {
  position: relative;
  z-index: 1;
}

.ft_contact_btn a>span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
}

.ft_contact_btn .mail {
  background-color: var(--mcolor);
}

.ft_contact_btn .mail a {
  letter-spacing: -0.06em;
}

.ft_contact_btn .mail a>span {
  padding-left: 60px;
}

.ft_contact_btn .mail a>span::before {
  background: url("../images/ic_mail.svg") center no-repeat;
  background-size: cover;
  width: 39px;
  height: 32px;
}

.ft_contact_btn .line {
  background-color: #11A73B;
}

.ft_contact_btn .line a {
  letter-spacing: -0.07em;
}

.ft_contact_btn .line a>span {
  padding-left: 60px;
}

.ft_contact_btn .line a>span::before {
  background: url("../images/ic_line.svg") center no-repeat;
  background-size: cover;
  width: 42px;
  height: 40px;
  top: -2px;
}

.ft_contact_btn .call {
  background-color: var(--yellow);
  border-radius: 10px;
}

.ft_contact_btn .call a {
  font-size: 20px;
  line-height: 1.85em;
  letter-spacing: -0.05em;
}

.ft_contact_btn .call a>span {
  padding-left: 64px;
  color: var(--txt);
  font-weight: bold;
}

.ft_contact_btn .call a>span::before {
  background: url(../images/ic_tel.svg) center no-repeat;
  background-size: cover;
  width: 60px;
  height: 34px;
  top: 6px;
  bottom: 0;
  margin: auto;
}

.ft_contact_btn .call a .num {
  display: block;
  font-size: 190%;
  letter-spacing: -0.005em;
}

.ft_contact_btn .call a .time {
  font-size: 14px;
  line-height: 1.5em;
  display: block;
  letter-spacing: 0;
  margin-top: 5px;
}

.ft_contact_btn .call a .time span {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 0 5px 1px 9px;
  display: inline-block;
}

.ft_address {
  width: 100%;
  max-width: 570px;
  position: relative;
  z-index: 1;
}

.ft_address::before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: calc(100% - 16px);
  top: 16px;
  right: 0;
  z-index: -1;
}

.ft_info {
  background-color: var(--brown);
  padding: 85px 0 100px;
}

.ft_info_frame {
  display: flex;
  gap: 130px;
}

.ft_info * {
  color: #fff;
}

.ft_info .ft_address {
  flex-shrink: 0;
}

.ft_info .ft_address .ttl {
  font-size: 24px;
  margin-bottom: -1px;
}

.ft_info .ft_address p {
  letter-spacing: 0;
  font-size: 16px;
}

.ft_info .address {
  margin-bottom: 33px;
}

.ft_info .address .big {
  font-size: 24px;
}

.ft_info .call {
  margin-bottom: 5px;
  display: flex;
  gap: 5px;
}

.ft_info .call a {
  font-size: 34px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.ft_info .call>span {
  border: 1px solid #fff;
  padding: 0px 10px 1px;
  border-radius: 5px;
  display: inline-block;
  line-height: 1.5em;
  font-size: 14px;
  font-weight: 400;
  align-self: flex-end;
  position: relative;
  bottom: -2px;
}

.ft_info .call a::before {
  content: "";
  position: absolute;
  background: url("../images/ic_phone.svg") center no-repeat;
  background-size: cover;
  width: 26px;
  height: 26px;
  top: 7px;
  bottom: 0;
  left: -2px;
  margin: auto;
  z-index: -1;
}

.ft_info .time {
  line-height: 1.65em;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
  padding-left: 30px;
}

.ft_info .time strong {
  margin-right: 10px;
}

.ft_info .time span {}

.ft_info .instagram {
  margin-bottom: 40px;
}

.ft_info .img_cpn {
  margin-bottom: 0 !important;
}

.ft_menu {
  display: flex;
  gap: 112px;
  padding-top: 7px;
}

.ft_menu>ul>li:not(:last-child) {
  margin-bottom: 49px;
}

.ft_menu .ttl {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 9px;
}

.ft_menu .ft_sub li:not(:last-child) {
  margin-bottom: 8px;
}

.ft_map iframe {
  width: 100%;
  height: 400px;
}

/* BACK TO TOP */
.to_top {
  position: fixed;
  z-index: 9;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}

.grecaptcha-badge {
  z-index: 100;
  display: none;
}

#contact .grecaptcha-badge {
  display: block;
}

#contact .to_top {
  right: 80px;
}

.to_top.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.nothing {
  text-align: center;
}

.none414 {
  display: block;
}

.sec_tabs_content tbody tr {
  display: none;
}

.sec_tabs_content tbody tr.show {
  display: table-row;
}

.btn .more {
  max-width: 200px;
  min-height: 50px;
  margin: 30px auto 0;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 2px;
}

.btn .more {
  background: url(../images/ic_bottom.svg) no-repeat right 20px center / 14px 10px var(--mcolor) !important;
}

.btn .more.active {
  background: url(../images/ic_top.svg) no-repeat right 20px center / 14px 10px var(--mcolor) !important;
}
.pt-supervisionInfo {
	border: 1px solid #DCDDDD;
	padding: 20px 30px 30px;
	box-sizing: border-box;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.pt-supervisionInfo .ttlGrid {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pt-supervisionInfo .infoGrid {
	margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pt-supervisionInfo .infoGrid .infoTxtCol {
	padding-left: 25px;
	box-sizing: border-box;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .flex{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .flex h3{
    margin-right: 20px;

}
.pt-supervisionInfo .infoGrid .infoTxtCol .anchor_btns{
    display: block;
	margin: 0;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .anchor_btns li{
    margin-left: 0;
    width: 290px;
    margin-bottom: 0;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .anchor_btns li a{
    background-color: #f6ad49;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .anchor_btns li a:hover {
	opacity: .8;
}
.infoImg {
	width: 100%;
	max-width: 180px;
}
.pt-supervisionInfo .infoGrid .infoTxtCol .colTtl {
    font-weight: bold;
	text-align: left;
	font-size: 20px;
	margin-bottom: 0;
}

.pt-supervisionInfo .infoGrid .infoTxtCol .colTtl a {
	color: #333;
	text-decoration: unset;
}

.pt-supervisionInfo .infoGrid .infoTxtCol .colTxt {
	margin-top: 10px;
}
.pt-supervisionInfo .ttlGrid p {
	margin-bottom: 0;
}
.pt-supervisionInfo .ttlGrid .infoTtl {

}
.pt-supervisionInfo .ttlGrid .dateWrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pt-supervisionInfo .ttlGrid .dateWrap .release, .pt-supervisionInfo .ttlGrid .dateWrap .update {
	padding-left: 10px;
	font-size: 14px;
}

/*==========================================================================*/
/*                 F O R   S P E C I F I E D   B R O W S E R                */
/*==========================================================================*/
/* EDGE  */
/* FIREFOX */
@-moz-document url-prefix() {}

/* Safari 10.1+ (which is the latest version of Safari at this time) */
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
}