@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
===========================================*/
/*==========================================
画面幅3分割レイアウト
===========================================*/
/*==========================================
PC時のフォントに対するclamp()関数
===========================================*/
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  line-height: 2.2;
  font-size: 1.6rem;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 70px;
}
.ttl01 span {
  display: block;
  font-weight: 600;
}
.ttl01 .en {
  letter-spacing: 0.16em;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--main-color);
}
.ttl01 .ja {
  line-height: 1.8;
}

.ttl02 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.8;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
}
.ttl02 span {
  display: block;
  padding-left: 12px;
  border-left: 5px solid var(--main-color);
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont {
  text-align: left;
}
.com-cont p {
  margin-bottom: 25px;
  line-height: 1.8;
  letter-spacing: var(--base-letter-spacing);
}
.com-cont p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-tel {
  line-height: 1.6;
  text-align: right;
}
.com-tel .tel-txt {
  display: block;
}
.com-tel .tel-num {
  font-size: 3rem;
  letter-spacing: 0.08em;
}
.com-tel .tel-num small {
  font-size: 1.8rem;
}

.com-btn {
  font-weight: 600;
  font-size: 2rem;
}
.com-btn span {
  color: var(--color-gray);
  position: relative;
  padding-right: 55px;
  display: inline-block;
}
.com-btn span::after {
  position: absolute;
  content: "\f280";
  font-weight: 500;
  font-family: var(--bootstrap-icon);
  inset: 0 0 0 auto;
  color: inherit;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.com-btn:hover span {
  color: var(--color-black);
}
.com-btn:hover span::after {
  transform: translateX(10px);
}

.com-adr {
  text-align: left;
  letter-spacing: 0.08em;
}
.com-adr .locate {
  margin-bottom: 40px;
}
.com-adr .dl-item {
  margin-bottom: 20px;
}
.com-adr .dl-item dt::before {
  content: "<";
}
.com-adr .dl-item dt::after {
  content: ">";
}
.com-adr .dl-item:last-child {
  margin-bottom: 0;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-tbl tr {
  display: flex;
  padding: 20px 0;
}
.com-tbl tr th,
.com-tbl tr td {
  text-align: left;
}
.com-tbl tr th {
  padding: 0 10px;
  width: 250px;
  vertical-align: top;
}
.com-tbl tr td {
  width: calc(100% - 250px);
  padding: 0 20px;
}
.com-tbl tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 1.4rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--main-color);
  position: relative;
}
div .bread li:after {
  content: " > ";
  color: var(--color-gray);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: var(--color-gray);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  background: var(--color-white);
  padding: 20px 2.6041% 20px 1.5625%;
}

.hd-right {
  width: fit-content;
}
.hd-right #nav .nav-list {
  gap: 25px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
.hd-right #nav .nav-list a {
  padding-bottom: 3px;
  display: block;
  position: relative;
}
.hd-right #nav .nav-list a:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  display: block;
}
.hd-right #nav .nav-list a:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  display: block;
}
.hd-right #nav .nav-list a:hover {
  color: var(--main-color);
}
.hd-right #nav .nav-list a:hover:before {
  width: 50%;
  border-bottom: 1px solid var(--main-color);
}
.hd-right #nav .nav-list a:hover:after {
  width: 50%;
  border-bottom: 1px solid var(--main-color);
}
.hd-right #nav .nav-list .nav-list-item.current a {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.hd-right #nav .nav-list .nav-list-item.current a::before, .hd-right #nav .nav-list .nav-list-item.current a::after {
  border-bottom: none;
}
.hd-right #nav .nav-list .nav-list-item.current a:hover::before, .hd-right #nav .nav-list .nav-list-item.current a:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  position: relative;
  z-index: 1;
  background: var(--accent-color);
}
/*==========================================
index.php
===========================================*/
/* top-info
------------------*/
#top-info {
  padding: 85px 0 95px;
}
#top-info .inbox {
  position: relative;
}
#top-info .info-ttl {
  text-align: left;
  font-size: 3.2rem;
  margin-bottom: 0;
}
#top-info .info-ttl .en {
  margin-bottom: 15px;
}
#top-info .info-post-list {
  width: 680px;
  min-height: 250px;
}
#top-info .info-post {
  text-align: left;
  border-bottom: 1px solid var(--color-gray);
}
#top-info .info-post:last-child {
  border-bottom: none;
}
#top-info .info-post a {
  padding: 20px 0 20px 15px;
  position: relative;
}
#top-info .info-post a::before {
  width: 2px;
  height: 75%;
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--main-color);
}
#top-info .info-post a:hover {
  transform: translateX(15px);
  background: var(--accent-color);
}
#top-info .info-post a:hover time,
#top-info .info-post a:hover .category-label {
  color: var(--color-black);
}
#top-info .info-post time {
  width: 130px;
  color: var(--color-gray);
}
#top-info .info-post .category-label {
  width: calc(100% - 130px);
  color: var(--color-gray);
  gap: 7px;
}
#top-info .info-post .post-ttl {
  width: 100%;
  font-size: 1.6rem;
}
#top-info .info-btn {
  position: absolute;
  inset: auto auto 0 0;
}

/* top-greeting
------------------*/
#top-greeting {
  padding: 135px 0 290px;
  background: var(--accent-color);
  position: relative;
}
#top-greeting::after {
  position: absolute;
  content: "";
  width: 147px;
  height: 147px;
  border-radius: 50%;
  background: var(--fifth-color);
  inset: 420px 12.5% auto auto;
}
#top-greeting .greetign-ttl {
  margin-bottom: 165px;
}
#top-greeting .greeting-img {
  width: clamp(432px, 61.1623%, 663px);
  height: clamp(290px, 22.552vw, 433px);
  position: absolute;
  inset: -70px auto auto -48%;
  text-align: right;
}
#top-greeting .greeting-content {
  width: 56.5104%;
  background: var(--color-white);
  margin-left: auto;
  position: relative;
  padding: 85px 0 85px 10.15625%;
  z-index: 1;
}
#top-greeting .greeting-content .cont-inner {
  width: 470px;
  position: relative;
}
#top-greeting .greeting-content .cont-inner::before {
  position: absolute;
  content: "";
  width: 111px;
  height: 104px;
  background: url(../img/top/greeting_ill.png) center/100% no-repeat;
  inset: -160px -111px auto auto;
}
#top-greeting .greting-gall {
  width: 93.4895%;
  margin: 0 auto;
  max-width: 1920px;
  position: absolute;
  inset: auto 0 calc(clamp(136.5px, 10.677vw, 210px) * -1);
  gap: 2.8784%;
}
#top-greeting .greting-gall .gall-item {
  width: 22.8412%;
  height: clamp(273px, 21.354vw, 410px);
}

/* top-menu
------------------*/
#top-menu {
  padding: 385px 0 150px;
}
#top-menu .inbox {
  position: relative;
}
#top-menu .inbox::after {
  position: absolute;
  content: "";
  width: 290px;
  height: 243px;
  background: url(../img/top/menu_ill.png) center/100% no-repeat;
  inset: -20px -85px auto auto;
}
#top-menu .menu-ttl {
  text-align: left;
  margin-bottom: 90px;
}
#top-menu .menu-post {
  width: 525px;
  position: relative;
}
#top-menu .menu-post .post-thumb {
  width: 270px;
  height: 270px;
  position: absolute;
  inset: 0 auto auto 0;
}
#top-menu .menu-post .post-inner {
  width: 230px;
  min-height: 270px;
  margin-left: auto;
  text-align: left;
}
#top-menu .menu-post .post-inner .post-ttl {
  font-size: 2.2rem;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
#top-menu .menu-post .post-inner .post-price {
  color: var(--color-gray);
  margin-bottom: 20px;
}

.setmenu-style {
  background: var(--color-white);
  border: 2px solid var(--main-color);
  padding: 45px 50px;
  margin-top: 95px;
}
.setmenu-style .set-ttl {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-gray);
  margin-bottom: 20px;
}
.setmenu-style .set-post {
  padding: 15px 0;
  border-bottom: 1px solid var(--main-color);
}
.setmenu-style .set-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.setmenu-style .set-post .menu-post-ttl {
  width: 440px;
  padding: 0 10px;
  text-align: left;
}
.setmenu-style .set-post .menu-post-price {
  width: calc(100% - 440px);
  padding: 0 10px;
  text-align: right;
}

/* top-p-list
------------------*/
#top-p-list {
  padding: 130px 0;
  background: url(../img/top/p_bg.jpg) center/cover no-repeat;
}
#top-p-list .inbox {
  width: clamp(1200px, 89.5833%, 1720px);
}
#top-p-list .p-list {
  gap: 2.90705%;
}
#top-p-list .p-list .p-item {
  width: 31.3953%;
}
#top-p-list .p-list .p-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(376px, 28.125vw, 540px);
  border: 3px solid var(--color-gray);
  position: relative;
  z-index: 1;
}
#top-p-list .p-list .p-item a::before {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  z-index: -1;
}
#top-p-list .p-list .p-item a:hover {
  opacity: 1;
  border-color: var(--color-white);
}
#top-p-list .p-list .p-item a:hover::before {
  width: 100%;
  height: 100%;
}
#top-p-list .p-list .p-item a:hover .p-ttl {
  background: var(--sixth-color);
}
#top-p-list .p-list .p-item.p-about a::before {
  background: url(../img/top/p-about_img.jpg) center/cover no-repeat;
}
#top-p-list .p-list .p-item.p-menu a::before {
  background: url(../img/top/p-menu_img.jpg) center/cover no-repeat;
}
#top-p-list .p-list .p-item.p-gallery a::before {
  background: url(../img/top/p-gallery_img.jpg) center/cover no-repeat;
}
#top-p-list .p-list .p-item .p-ttl {
  background: rgba(123, 104, 96, 0.9);
  width: 53.703%;
  margin: 0 auto;
  min-width: 250px;
  min-height: 250px;
  color: var(--color-white);
  position: relative;
  transition: all 0.3s;
}
#top-p-list .p-list .p-item .p-ttl::before, #top-p-list .p-list .p-item .p-ttl::after {
  position: absolute;
  content: "";
}
#top-p-list .p-list .p-item .p-ttl::before {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  inset: 0;
  margin: auto;
  border: 1px solid var(--color-white);
}
#top-p-list .p-list .p-item .p-ttl::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0px 14px 14px;
  border-color: transparent transparent var(--color-white) transparent;
  inset: auto 6px 6px auto;
}
#top-p-list .p-list .p-item .p-ttl .en {
  font-size: 1.6rem;
  margin-bottom: 0;
  color: var(--color-white);
}
#top-p-list .p-list .p-item .p-ttl .ja {
  font-size: 2.8rem;
}

/* top-msg
------------------*/
#top-msg {
  padding: 125px 0 150px;
  position: relative;
  z-index: 1;
}
#top-msg .msg-content {
  width: 78.125%;
  min-width: 1200px;
  margin-left: auto;
}
#top-msg .msg-content .msg-ttl {
  margin: 0 0 65px auto;
  text-align: left;
  background: url(../img/top/msg_ill.png) left 820px center/8% no-repeat;
}
#top-msg .msg-content .sb_style {
  width: 34.3333%;
}
#top-msg .msg-gall {
  width: 61.3333%;
  position: relative;
}
#top-msg .msg-gall .bk-img {
  width: 86.9565%;
  margin-left: auto;
}
#top-msg .msg-gall .front-img {
  width: 54.5652%;
  height: 41.7948%;
  position: absolute;
  inset: auto auto -45px 0;
}

/* top-reserve
------------------*/
#top-reserve {
  padding: 265px 0 150px;
  background: url(../img/top/reserve_ill.png) left 13.802% top 125px/20.46875% no-repeat, var(--accent-color);
}
#top-reserve .reserve-ttl {
  padding-top: 170px;
  background: url(../img/top/reserve_logo.png) top center no-repeat;
  margin-bottom: 35px;
}
#top-reserve .reserve-ttl .en {
  margin-bottom: 15px;
}
#top-reserve .reserve-lead {
  margin-bottom: 65px;
}
#top-reserve .reserve-box {
  background: var(--color-white);
  padding: 60px 50px 75px;
}
#top-reserve .reserve-box .reserve-tel {
  border-bottom: 2px solid var(--main-color);
  padding: 10px 290px 30px;
  text-align: center;
  margin-bottom: 20px;
}
#top-reserve .reserve-box .reserve-tel .tel-txt {
  text-align: right;
}
#top-reserve .reserve-box .reserve-tel .tel-num {
  font-size: 4rem;
  padding-left: 35px;
  background: url(../img/top/reserve-tel_ic.png) left center no-repeat;
}
#top-reserve .reserve-box .reserve-tel .tel-num small {
  font-size: 1.8rem;
}
#top-reserve .reserve-box .ex-link li {
  width: 50%;
}
#top-reserve .reserve-box .ex-link li:nth-of-type(even) {
  border-left: 2px solid var(--main-color);
}
#top-reserve .reserve-box .ex-link li .com-btn {
  padding: 85px 0 30px;
  display: block;
}
#top-reserve .reserve-box .ex-link li.ex-insta .com-btn {
  background: url(../img/common/sns/Instagram_Glyph_Gradient.svg) top 35px center/35px no-repeat;
}
#top-reserve .reserve-box .ex-link li.ex-hotpepper .com-btn {
  background: url(../img/top/reserve-hotpepper_ic.png) top 35px center no-repeat;
}

/*==========================================
footer
===========================================*/
#footer {
  padding: 90px 0 95px;
  background: url(../img/common/ft_bg.jpg) center/cover no-repeat;
}
#footer .ft-left {
  width: 365px;
}
#footer .ft-left .ft-logo {
  display: inline-block;
  margin-bottom: 35px;
}
#footer .ft-left .ft-adr {
  color: var(--color-white);
}
#footer .ft-right {
  width: 525px;
}
#footer .ft-right .ft-ex-list {
  gap: 35px;
  margin-bottom: 55px;
}
#footer .ft-right .ft-ex-list li .com-btn span {
  color: var(--color-white);
}
#footer .ft-right .ft-nav {
  font-size: 1.4rem;
  gap: 25px 52px;
}
#footer .ft-right .ft-nav .nav-list-item {
  margin-bottom: 20px;
  text-align: left;
}
#footer .ft-right .ft-nav .nav-list-item:last-child {
  margin-bottom: 0;
}
#footer .ft-right .ft-nav .nav-list-item a {
  color: var(--color-white);
}
#footer .ft-right .ft-nav .nav-list-item a:hover {
  text-decoration: underline;
}
.sns-btn {
  width: 100%;
}
.sns-btn img {
  height: 35px;
}

#copyright {
  word-break: normal;
  text-align: right;
  margin-top: 145px;
  color: var(--color-white);
}
#copyright small {
  font-size: 1.1rem;
}
#copyright a {
  color: var(--color-white);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: clamp(350px, 26.8222vw, 515px);
  position: relative;
  background: var(--accent-color);
}
.lower-sv .sv-frame {
  width: 61.0416%;
  height: 100%;
  margin: 0 auto;
}

/*==========================================
下層共通スタイル
===========================================*/
.page-ttl {
  font-size: 3.4rem;
  padding: 140px 0 0;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.check-list-wrp {
  background: var(--color-white);
  border: 2px solid var(--main-color);
  padding: 45px 60px;
}
.check-list-wrp li {
  border-bottom: 1px solid var(--main-color);
  padding: 20px 15px 20px 120px;
  text-align: left;
  font-size: 1.8rem;
}
.check-list-wrp li:last-child {
  border-bottom: none;
}
.check-list-wrp li span {
  padding: 5px 0 5px 45px;
  display: block;
  background: url(../img/about/concept-check_ic.png) left top 7px no-repeat;
}

/*==========================================
concept
===========================================*/
/* about-concept
------------------*/
#about-concept .concept-gall .gall-item {
  width: 50%;
  height: 27.604vw;
  min-height: 353px;
}

/* about-kodawari
------------------*/
#about-kodawari .kodawari-post {
  position: relative;
  margin-bottom: 90px;
}
#about-kodawari .kodawari-post:last-child {
  margin-bottom: 0;
}
#about-kodawari .kodawari-post .kodawari-content {
  width: 582px;
  min-height: 430px;
  text-align: left;
}
#about-kodawari .kodawari-post .post-thumb {
  width: 430px;
  height: 430px;
  position: absolute;
  top: 0;
}
#about-kodawari .kodawari-post:nth-of-type(odd) .kodawari-content {
  margin-left: auto;
}
#about-kodawari .kodawari-post:nth-of-type(odd) .post-thumb {
  left: 0;
}
#about-kodawari .kodawari-post:nth-of-type(even) .post-thumb {
  right: 0;
}

/*==========================================
menu
===========================================*/
#menu-sec .menu-post-list {
  gap: 15px 0;
}
#menu-sec .menu-post-list li {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
#menu-sec .menu-post-list li::before, #menu-sec .menu-post-list li::after {
  width: 1px;
  height: 16px;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  background: var(--color-gray);
  margin: auto 0;
}
#menu-sec .menu-post-list li::before {
  left: 0;
}
#menu-sec .menu-post-list li::after {
  right: 0;
}
#menu-sec .menu-post-list li:not(:last-child)::after {
  background: none;
}
#menu-sec .menu-post-list li a {
  color: var(--color-gray);
  padding: 0 50px;
  display: block;
}
#menu-sec .menu-post-list li a:hover {
  opacity: 1;
  color: var(--color-black);
}
#menu-sec article {
  margin-bottom: 100px;
}
#menu-sec article:last-child {
  margin-bottom: 0;
}
#menu-sec .menu-post .menu-list li {
  margin-bottom: 40px;
}
#menu-sec .menu-post .menu-list li:last-child {
  margin-bottom: 0;
}
#menu-sec .menu-post .menu-list li .menu-hdline {
  border-bottom: 1px solid;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
#menu-sec .menu-post .menu-list li .menu-name {
  width: 825px;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 15px;
}
#menu-sec .menu-post .menu-list li .menu-price {
  text-align: right;
  padding: 0 15px;
  width: calc(100% - 825px);
}
#menu-sec .menu-post .menu-list li .menu-detail {
  text-align: left;
}
#menu-sec .menu-post .menu-gall {
  margin-top: 65px;
  gap: 35px 22.5px;
}
#menu-sec .menu-post .menu-gall li {
  width: 345px;
  height: 230px;
}

/*==========================================
gallery
===========================================*/
#gallery-archive .gall-list {
  gap: 50px 22.5px;
}
#gallery-archive .gall-post {
  width: 345px;
}
#gallery-archive .gall-post .post-thumb {
  width: 100%;
  height: 345px;
}
#gallery-archive .gall-post figcaption {
  border-bottom: 1px solid;
  padding: 10px 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.8rem;
}

/*==========================================
access
===========================================*/
/* access-guide
------------------*/
#access-guide .check-list-wrp li {
  padding: 20px 45px;
}

/* access-info
------------------*/
#access-info {
  background: var(--accent-color);
}
#access-info .info-tbl {
  margin-bottom: 120px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.category-select select {
  font-size: 1.6rem;
  padding: 15px 37px 15px 15px;
}

/*==========================================
news
===========================================*/
.column-wrap .column-post-list .column-post a {
  padding: 45px 0;
}
.column-wrap .column-post-list .post-meta-area time {
  width: 95px;
}
.column-wrap .column-post-list .post-meta-area time,
.column-wrap .column-post-list .post-meta-area .category-label {
  font-size: 1.4rem;
}
.column-wrap .column-post-list .post-meta-area .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column-wrap .column-post-list .post-meta-area .category-label li {
  padding: 2px 10px;
}
.column-wrap .column-post-list .post-meta-area .post-ttl {
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.column-wrap .column-post-list .more-btn {
  width: 125px;
  font-size: 1.4rem;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.column-wrap .column-post-list .has-thumb a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column-wrap .column-post-list .has-thumb .thumb {
  width: 210px;
  height: 200px;
}
.column-wrap .column-post-list .has-thumb .thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column-wrap .column-post-list .has-thumb .post-meta-area {
  width: 820px;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 1.4rem;
  text-align: left;
  width: 95px;
  padding: 3px 0;
  box-sizing: border-box;
}
.single-meta .category-label {
  width: 920px;
  font-size: 1.4rem;
  gap: 5px;
  margin-left: 10px;
}
.single-meta .category-label li a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 3px 10px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: var(--color-white);
  background: var(--main-color);
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ":";
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: "#";
}
.single-category ul li a:hover {
  background: var(--color-gray);
}

/*==========================================
contact
===========================================*/
#contact .contact-form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact-form tr th {
  margin-bottom: 20px;
}
#contact .contact-form tr th .required {
  padding: 3px;
  margin-left: 10px;
  vertical-align: baseline;
  font-size: 1.2rem;
}
#contact .contact-form tr td .label-list {
  gap: 15px;
}
#contact .contact-form tr.privacy-check th {
  text-align: center;
}
#contact .contact-form .form-field {
  font-size: 1.6rem;
  padding: 20px 15px;
}
#contact .contact-form .contact-select {
  width: 200px;
}
#contact .contact-form .contact-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact-form .contact-select select {
  padding: 15px 30px 15px 10px;
  font-size: 1.6rem;
}
#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 150px;
}
#contact .contact-form #address {
  margin-top: 15px;
}
#contact .contact-form #date1,
#contact .contact-form #date2,
#contact .contact-form #date3 {
  width: 300px;
}
#contact .contact-form textarea {
  height: 260px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: 1.3rem;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  font-size: 1.6rem;
  height: 75px;
}
#contact .contact-submits-wrap {
  gap: 35px;
}
#contact .contact-submits-wrap .check-btn {
  width: 304px;
}
#contact .contact-submits-wrap .back-btn {
  width: 270px;
}
#contact .contact-submits-wrap .send-btn {
  width: 240px;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy-box {
  margin-bottom: 70px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 30px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 30px;
}

/*==========================================
site
===========================================*/
#site-map .nav-list-item a {
  padding: 2% 0 2% 3%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/