@charset "UTF-8";
/*===============================================
 *	ブラウザリセット
===============================================*/
@font-face {
  font-family: "ShipporiMincho";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ShipporiMincho-SemiBold.woff2") format("woff2"), url("../fonts/ShipporiMincho-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ShipporiMincho";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ShipporiMincho-Medium.woff2") format("woff2"), url("../fonts/ShipporiMincho-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ShipporiMincho";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ShipporiMincho-Regular.woff2") format("woff2"), url("../fonts/ShipporiMincho-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Cormorant-SemiBold.woff2") format("woff2"), url("../fonts/Cormorant-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "CormorantInfant";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/CormorantInfant-SemiBold.woff2") format("woff2"), url("../fonts/CormorantInfant-SemiBold.woff") format("woff");
  font-display: swap;
}
body {
  font-size: 100%;
  font-family: "ShipporiMincho", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.05em;
  height: 100%;
  position: relative;
}

table {
  font-size: inherit;
}

select, input, textarea {
  font: 99% arial, helvetica, clean, sans-serif;
}

pre, code {
  font: 115% monospace;
  font-size: 100%;
}

br {
  letter-spacing: normal;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

address, em {
  font-style: normal;
}

strong, th {
  font-weight: bold;
}

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

th, td {
  text-align: left;
  border: none;
  font-weight: normal;
}

hr {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

img, fieldset {
  border: 0;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

ul, ol, dl {
  margin: 0;
  list-style-position: outside;
  list-style-type: none;
}

li, dt, dd {
  font-size: 100%;
}

dt {
  font-weight: normal;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover {
  text-decoration: none;
}

form, input {
  padding: 0;
  margin: 0;
}

iframe {
  border: none;
}

figure {
  margin: 0;
}

img {
  height: auto;
  width: 100%;
}

p {
  line-height: 1.75;
}

i {
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

/*====================== clearFix ======================*/
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*=============================================== *
    パターン
===============================================*/
.column {
  display: flex;
  flex-direction: column;
}

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

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

.wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

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

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

.js-center {
  justify-content: center;
}

.al-center {
  align-items: center;
}

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

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

.al-base {
  align-items: baseline;
}

/*===============================================
 *	br
===============================================*/
@media screen and (min-width: 1025px) {
  .br-pc {
    display: block;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*===============================================
 *	common
===============================================*/
:root {
  --site-primary: #d99b4e;
  --site-secondary: #c0a86f;
}

html body {
  color: #333;
  background: #fafefd;
  position: relative;
  font-weight: 400;
}

a {
  color: var(--site-primary);
  outline: none;
  text-decoration: none;
  word-break: break-all;
}

em {
  font-weight: bold;
}

.sp {
  display: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.content_wrapper .container {
  max-width: 1160px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.txt_primarycolor {
  color: var(--site-primary);
}

.txt_white {
  color: #fff;
}

.bg_primarycolor {
  background: var(--site-primary);
}

.bg_white {
  background: #fff;
}

.bg_gray {
  background: #f4f6f6;
}

.hover_white {
  display: inline-block;
  position: relative;
}

.hover_white::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.hover_white:hover::after {
  opacity: 0.15;
}

.lg_inner_space {
  padding: 110px 0 120px;
}

.md_inner_space {
  padding: 50px 50px 50px;
}

.annotation_txt {
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  color: #444;
}

.sec_ttl {
  font-size: 20px;
  margin-bottom: min(3vw, 40px);
}
.sec_ttl .txt_en {
  font-size: min(5vw, 72px);
  font-family: "Cormorant";
  color: var(--site-primary);
  display: block;
  margin-bottom: 0.1em;
}

.btn_wrapper {
  margin-top: 60px;
}

.btn_normal {
  background: var(--site-primary);
  max-width: 354px;
  margin: 0 auto;
}
.btn_normal a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  display: block;
  text-align: center;
  padding: 1em 0 1.15em;
  position: relative;
  transition: 0.3s;
}
.btn_normal a::after {
  content: "";
  background: url(../img/common/icon_circle-arrow-white.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
}
.btn_normal a:hover {
  background: #dfaa68;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 92%;
  }
  .lg_inner_space {
    padding: 8vw 0;
  }
}
@media only screen and (max-width: 960px) {
  html body {
    font-size: 14px;
    margin-top: 60px;
  }
  .sec_ttl {
    margin-bottom: 5vw;
  }
}
@media only screen and (max-width: 568px) {
  html body {
    margin-top: 60px;
  }
  html body.top_body {
    margin-top: 0;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .container {
    width: 89.4vw;
  }
  .lg_inner_space {
    padding: 40px 0 45px;
  }
  .sec_ttl {
    font-size: 4.2vw;
    margin-bottom: 8vw;
  }
  .sec_ttl .txt_en {
    font-size: 10.6vw;
  }
  .btn_wrapper {
    margin-top: 40px;
  }
  .btn_normal {
    width: 85%;
  }
  .btn_normal a {
    font-size: 4vw;
  }
  .btn_normal a::after {
    width: 20px;
    height: 20px;
  }
}
/*===============================================
 *	ヘッダー・フッター
===============================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 min(3.5vw, 48px);
  transition: 0.3s;
}
.header .hd_logo {
  width: 35vw;
  max-width: 580px;
}
.header .hd_logo picture {
  gap: 0 20px;
}
.header .hd_logo img {
  filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%);
  width: 60%;
}
.header .hd_logo figcaption {
  font-size: min(1.1vw, 12px);
}
.header nav ul {
  gap: 0 2em;
}
.header nav li {
  font-size: min(1.1vw, 16px);
}
.header nav li a {
  transition: 0.3s;
}
.header nav li a:hover {
  color: #a27f2a;
}
.header nav .mail a {
  color: #fff;
  background: #eba54e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: min(2vw, 30px) 15px min(2vw, 30px);
  transition: 0.3s;
}
.header nav .mail a::before {
  content: "";
  background: url(../img/common/icon_mail.svg) no-repeat;
  width: 30px;
  height: 20px;
  display: block;
  margin-bottom: 5px;
}
.header nav .mail a:hover {
  color: #fff;
  background: #dfaa68;
}
.header nav a {
  color: #333;
}
.header.top_header .hd_logo img {
  filter: invert(100%) sepia(1%) saturate(7450%) hue-rotate(58deg) brightness(104%) contrast(115%);
}
.header.top_header .hd_logo figcaption {
  color: #fff;
}
.header.top_header nav a {
  color: #fff;
}
.header.top_header nav a:hover {
  color: #e7e7e7;
}
.header.color {
  background: rgba(255, 255, 255, 0.9);
}
.header.color .hd_logo img {
  filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%);
}
.header.color .hd_logo figcaption {
  color: #a27f2a;
}
.header.color nav a {
  color: #333;
}
.header.color nav a:hover {
  color: #a27f2a;
}
.header.color nav .mail a {
  color: #fff;
}
.header.color .menu_box .menu_btn span {
  background: #333;
}
.header.active {
  background: #fff;
}
.header.active .hd_logo img {
  filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%) !important;
}
.header.active .hd_logo figcaption {
  color: #a27f2a !important;
}
.header.active .menu_box .menu_btn span {
  background: #333 !important;
}

.menu_box {
  width: 60px;
  height: 60px;
  display: none;
}

.menu_box .menu_btn {
  position: relative;
  height: 23px;
  top: 17px;
}

.menu_box .menu_btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333;
  transition: all 0.4s;
}

.menu_box .menu_btn span:nth-child(1) {
  top: 0;
}

.menu_box .menu_btn span:nth-child(2) {
  top: 10px;
}

.menu_box .menu_btn span:nth-child(3) {
  bottom: 0;
}

.menu_box .menu_btn span:not(.txt) {
  width: 25px;
}

.menu_box.active span:nth-child(1) {
  transform: translate(-12px, 11px) rotate(-45deg);
}

.menu_box.active span:nth-child(2) {
  opacity: 0;
}

.menu_box.active span:nth-child(3) {
  transform: translate(-12px, -10px) rotate(45deg);
}

.sp_menu {
  display: none;
}

.sp_menu {
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 200;
  transition: 0.3s;
  top: 60px;
  overflow: scroll;
  background: #f3fafc;
  padding-bottom: 60px;
  visibility: hidden;
  opacity: 0;
}

.sp_menu .menu_list {
  padding: 5px 0 0;
}

.sp_menu .menu_list li {
  padding: 0 5.3vw;
}

.sp_menu .menu_list li a {
  font-size: 15px;
  color: #222;
  display: block;
  padding: 1em 0;
  border-bottom: 1px solid #d2dce8;
  position: relative;
}

.sp_menu .menu_list li a::after {
  content: "";
  background: url(../img/common/icon_arrow_right.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 58%;
  transform: translateY(-50%);
}

.sp_menu .tel__set {
  width: 50%;
  margin: 30px auto;
}

.sp_menu .tel__set .tel_num {
  font-size: 38px;
}

.sp_menu .tel__set .under_txt {
  font-size: 17px;
}

.sp_menu .tel__set .under_txt span {
  font-size: 14px;
  padding: 2px 8px 4px;
}

.sp_menu .cv__area {
  background: none;
  width: 90%;
  margin: 0 auto;
}

.sp_menu .cv__area .btns {
  justify-content: center;
}

.sp_menu .cv__area li {
  width: 40%;
}

.sp_menu .cv__area li a {
  min-width: initial;
  font-size: 16px;
}

.sp_menu .footer_cv {
  position: relative;
  display: block;
  bottom: initial;
  left: initial;
}

.sp_menu.open {
  visibility: visible;
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .header nav ul {
    gap: 0 1.5em;
  }
}
@media only screen and (max-width: 960px) {
  .header {
    background: #fff;
    padding-right: 0;
  }
  .header .hd_logo {
    width: 45vw;
  }
  .header .hd_logo img {
    filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%);
  }
  .header .hd_logo figcaption {
    color: #a27f2a;
  }
  .header nav {
    display: none;
  }
  .header.top_header .hd_logo img {
    filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%);
  }
  .header.top_header .hd_logo figcaption {
    color: #a27f2a;
  }
  .menu_box {
    display: block;
  }
}
@media only screen and (max-width: 568px) {
  .header {
    padding-left: 3vw;
    background: none;
  }
  .header .hd_logo {
    width: 50vw;
  }
  .header .hd_logo img {
    width: 100%;
  }
  .header.top_header .hd_logo img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(13deg) brightness(100%) contrast(100%);
  }
  .header.top_header .menu_box .menu_btn span {
    background: #fff;
  }
  .header.under_header {
    background: rgba(255, 255, 255, 0.9);
  }
  .header.color .hd_logo img {
    filter: invert(58%) sepia(63%) saturate(347%) hue-rotate(5deg) brightness(89%) contrast(88%);
  }
  .header.color .menu_box .menu_btn span {
    background: #333;
  }
  .menu_box {
    background: none;
  }
  .sp_menu .tel__set {
    width: 85%;
    padding-left: 14.5vw;
    margin-bottom: 0;
  }
  .sp_menu .tel__set::before {
    width: 12vw;
    height: 12vw;
    left: 0;
  }
  .sp_menu .tel__set .tel_num {
    font-size: 8.8vw;
  }
  .sp_menu .tel__set .under_txt {
    font-size: 4vw;
  }
  .sp_menu .tel__set .under_txt span {
    font-size: 3.8vw;
    margin-right: 0.5em;
  }
  .sp_menu .cv__area .btns {
    margin-top: 20px;
  }
}
.footer {
  background: #f2f2f2;
  padding: min(8vw, 80px) 0 min(14vw, 160px);
}

.footer__menu__group:first-of-type {
  margin-right: 60px;
}
.footer__menu li {
  margin-bottom: 1.2em;
}
.footer__menu a {
  color: #333;
  font-weight: 500;
}
.footer__menu a:hover {
  color: var(--site-primary);
}

.copyright {
  font-size: 14px;
  color: #777;
}
.copyright a {
  color: #777;
}

@media only screen and (max-width: 568px) {
  .footer {
    padding: 10vw 0 30vw;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer__logo {
    width: 85%;
    display: block;
    margin: 0 auto 35px;
  }
  .copyright {
    font-size: 3.2vw;
    margin-top: 5vw;
  }
}
.fixed__footer {
  width: 100%;
  background: #e3ecef;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 15px 0;
  z-index: 100;
  display: none;
}
.fixed__footer > .row {
  max-width: 1300px;
  margin: 0 auto;
}
.fixed__footer .cv__area {
  background: none;
}
.fixed__footer .cv__area .btns {
  margin: 0;
  gap: 0 20px;
}
.fixed__footer .cv__area .btns li {
  width: initial;
}
.fixed__footer .cv__area .btns a {
  font-size: min(1.6vw, 17px);
  width: 300px;
  min-width: initial;
  padding: 1.75em 0;
}
.fixed__footer .cv__area .btns a::after {
  width: 20px;
  height: 20px;
}
.fixed__footer .cv__area .mail_btn::before {
  width: 22px;
  height: 15px;
}
.fixed__footer .cv__area .line_btn::before {
  width: 23px;
  height: 22px;
}
@media only screen and (max-width: 1024px) {
  .fixed__footer > div {
    width: 92%;
    justify-content: center;
  }
  .fixed__footer__logo {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  .fixed__footer .cv__area .btns a {
    font-size: 12px;
    width: 200px;
  }
}
@media only screen and (max-width: 568px) {
  .fixed__footer {
    padding: 0;
  }
  .fixed__footer > div {
    width: 100%;
  }
  .fixed__footer .cv__area .btns {
    flex-direction: row;
    gap: 0;
    width: 100vw;
  }
  .fixed__footer .cv__area .btns li {
    width: 50%;
  }
  .fixed__footer .cv__area .btns a {
    width: 100%;
    font-size: 3.8vw;
    line-height: 1.2;
    padding: 2.7em 0 1em;
  }
  .fixed__footer .cv__area .btns a::before {
    left: 50%;
    transform: translateX(-50%);
    top: 21%;
  }
  .fixed__footer .cv__area .btns a::after {
    content: none;
  }
  .fixed__footer .cv__area .btns .line_btn::before {
    top: 17%;
  }
}

.tel__set {
  color: #333;
  position: relative;
  margin-left: auto;
  margin-right: 20px;
  padding-left: 70px;
}
.tel__set::before {
  content: "";
  background: url(../img/common/icon_tel.svg) no-repeat;
  background-size: contain;
  width: 58px;
  height: 58px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tel__set .tel_num {
  font-size: min(2.8vw, 37px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.tel__set .under_txt {
  font-size: min(1.2vw, 16px);
  font-weight: 500;
}
.tel__set .under_txt span {
  font-size: min(1.1vw, 15px);
  color: #fff;
  background: #90a8a8;
  padding: 2px 8px;
  margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .tel__set {
    margin-right: auto;
    margin-left: 0;
  }
}
@media only screen and (max-width: 960px) {
  .tel__set .tel_num {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .tel__set .under_txt {
    font-size: 12px;
  }
  .tel__set .under_txt span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 568px) {
  .tel__set {
    padding: 3vw 0 3vw 12.5vw;
  }
  .tel__set::before {
    width: 9vw;
    height: 9vw;
    left: 2vw;
  }
  .tel__set .tel_num {
    font-size: 5.6vw;
  }
  .tel__set .under_txt {
    font-size: 3.4vw;
  }
  .tel__set .under_txt span {
    font-size: 3vw;
    padding: 0.2em 0.5em 0.25em;
    margin-right: 0.5em;
  }
}

/*===============================================
 *	パンくず
===============================================*/
@font-face {
  font-family: "icon";
  src: url("../fonts/icon.eot?n1r1w2");
  src: url("../fonts/icon.eot?n1r1w2#iefix") format("embedded-opentype"), url("../fonts/icon.ttf?n1r1w2") format("truetype"), url("../fonts/icon.woff?n1r1w2") format("woff"), url("../fonts/icon.svg?n1r1w2#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.breadcrumbs_box {
  padding: 32px 0 0;
}

.breadcrumbs_box span {
  font-size: 14px;
}

.breadcrumbs_box a {
  font-weight: 500;
}

.breadcrumbs_box i {
  font-size: 12px;
  padding: 0 12px;
}

.breadcrumbs_box.has_top_image {
  margin-left: -19%;
}

.iconarrow_right::before {
  content: "\e900";
  color: #666;
}

@media only screen and (max-width: 960px) {
  .breadcrumbs_box {
    padding: 25px 0 0;
  }
  .breadcrumbs_box span {
    font-size: 12px;
  }
}
@media only screen and (max-width: 568px) {
  .breadcrumbs_box {
    display: none;
  }
}
/*===============================================
 *	MV
===============================================*/
.top__mv {
  background: url(../img/top/mv_bg_pc.jpg) no-repeat center center;
  background-size: cover;
  padding: min(12vw, 203px) 0 min(10vw, 128px);
  position: relative;
}
.top__mv__logo {
  width: 20%;
  max-width: 253px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.top__mv__catch {
  color: #fff;
  font-size: min(6.5vw, 82px);
  margin-bottom: min(2.0vw, 20px);
  position: relative;
  z-index: 100;
  text-shadow: 2px 1px 2px rgba(0, 37, 75, 0.2);
}
.top__mv__point {
  gap: 0 min(3vw, 45px);
}
.top__mv__point li {
  color: #4fa2db;
  width: 209px;
  background: url(../img/top/mv_point_bg.png) no-repeat top center;
  background-size: contain;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(5vw, 60px) 0 min(5vw, 64px);
  position: relative;
  z-index: 100;
}
.top__mv__point li p {
  font-size: min(2.2vw, 28px);
  font-weight: 600;
  line-height: 1.5;
}
.top__mv__point li .txt_size {
  font-size: 1.15em;
}
.top__mv__point li .txt_width {
  display: block;
  line-height: 1.3;
  width: 65%;
  margin: 0 auto;
}
.top__mv::before {
  content: "";
  background-image: url(../img/top/mv_bg_stripe.png);
  background-size: 3px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .top__mv {
    background: url(../img/top/mv_bg_tab.jpg) no-repeat;
    background-size: cover;
    padding: 18vw 0 16vw;
  }
  .top__mv__logo {
    width: 35%;
    max-width: initial;
  }
  .top__mv__point li {
    width: 230px;
    padding: 75px 0;
  }
  .top__mv__point li p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 568px) {
  .top__mv {
    background: url(../img/top/mv_bg_sp.jpg) no-repeat top center;
    background-size: cover;
    padding: 36vw 0 20vw;
    height: 100svh;
  }
  .top__mv__logo {
    width: 50%;
    margin-bottom: 5vw;
  }
  .top__mv__catch {
    font-size: 10vw;
    line-height: 1.5;
    margin-bottom: 6vw;
  }
  .top__mv__point li {
    width: 40vw;
    padding: 11vw 0;
  }
  .top__mv__point li p {
    font-size: 5.3vw;
  }
  .top__mv__point li .txt_size {
    font-size: 1.1em;
  }
}

.site_hd {
  font-size: 32px;
  color: #fff;
  background: var(--site-secondary);
  padding: 1em 0;
}

@media only screen and (max-width: 960px) {
  .site_hd {
    font-size: 26px;
  }
}
@media only screen and (max-width: 568px) {
  .top__photos li:last-child {
    display: none;
  }
  .site_hd {
    font-size: 5.3vw;
    padding: 0.5em 0 0.65em;
  }
}
/*===============================================
 *	導入セクション
===============================================*/
.top__about {
  background: url(../img/common/bg_wave.jpg) no-repeat center top;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.top__about .sec_ttl {
  font-size: min(2.2vw, 28px);
  line-height: 1.75;
  margin-bottom: 1.5em;
}
.top__about .sec_ttl .txt_en {
  margin-bottom: 0.5em;
}
.top__about .txt_box {
  width: 45%;
  padding-left: 8.5%;
}
.top__about .photo_01 {
  width: 46.2%;
}
.top__about .photo_02 {
  width: 115%;
  margin: 65px 0 0 -15%;
}
.top__about::before {
  content: "";
  background: url(../img/top/txt_charter-cruise.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 112px;
  position: absolute;
  top: 0;
  left: 25%;
  opacity: 0.7;
}
@media only screen and (max-width: 960px) {
  .top__about .txt_box {
    padding-left: 4.5%;
  }
}
@media only screen and (max-width: 568px) {
  .top__about {
    background: url(../img/common/bg_wave_sp.jpg) no-repeat top -14% center;
    background-size: 100% auto;
  }
  .top__about::before {
    background-size: auto 100%;
    height: 50px;
    left: 12%;
    z-index: 10;
    opacity: 1;
  }
  .top__about .sec_ttl {
    font-size: 5.3vw;
    margin: 19vw 0 19vw;
  }
  .top__about .sec_ttl .txt_en {
    margin-bottom: 1em;
  }
  .top__about .txt_box {
    padding: 0;
    width: 90%;
    position: relative;
    z-index: 1;
  }
  .top__about .photo_01 {
    width: 64%;
    position: absolute;
    right: 0;
    top: 65px;
  }
  .top__about .photo_02 {
    margin-top: 10vw;
  }
}

/*===============================================
 *	プラン
===============================================*/
.top__plan__intro {
  background: url(../img/common/bg_water.jpg) no-repeat center top;
  background-size: cover;
}
.top__plan__intro .container {
  position: relative;
}
.top__plan__intro .container::before {
  content: "";
  background: url(../img/top/txt_plan.svg) no-repeat;
  background-size: contain;
  width: 25%;
  height: 136px;
  position: absolute;
  left: 0;
  top: 0;
}
.top__plan__intro .txt_box {
  background: #fff url(../img/common/logo_beige.svg) no-repeat bottom 15% right 8%;
  background-size: 35% auto;
  width: 55%;
  padding: 4.5% 7% 5%;
  outline: 1px solid var(--site-primary);
  outline-offset: -8px;
  margin-top: min(11vw, 135px);
}
.top__plan__intro .ttl {
  font-size: min(2.4vw, 30px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1em;
  padding: 0.55em 0.75em 0.65em;
}
.top__plan__intro .ttl .num {
  font-size: 1.5em;
}
.top__plan__intro .ttl::before {
  content: "";
  background: url(../img/top/deco_line_top.svg) no-repeat;
  background-size: 100% auto;
  height: 16px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top__plan__intro .ttl::after {
  content: "";
  background: url(../img/top/deco_line_bottom.svg) no-repeat;
  background-size: 100% auto;
  height: 11px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top__plan__intro .photo {
  width: 38%;
  margin-bottom: -4%;
}
.top__plan__content {
  width: 78%;
  max-width: 1016px;
  margin: min(8.5vw, 110px) auto min(8.5vw, 110px);
}
.top__plan__content .cont_ttl {
  font-size: min(2.1vw, 26px);
  border-bottom: 1px solid #ccc;
  padding: 0 0 0.5em;
  margin-bottom: 1.5em;
}
.top__plan__content ul {
  gap: 60px 3.5%;
}
.top__plan__content ul li {
  width: 31%;
}
.top__plan__content ul li .plan_time {
  font-weight: 500;
  color: var(--site-primary);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--site-primary);
  padding: 0 1.25em;
  margin: 1em auto 0;
}
.top__plan__content ul li .ttl {
  font-size: min(1.8vw, 22px);
  padding: 0.5em 0 0.5em;
}
.top__plan__content .info_txt {
  text-align: center;
  padding: 2em 1.5em;
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .top__plan__intro .txt_box {
    margin-bottom: 5vw;
  }
}
@media only screen and (max-width: 1024px) {
  .top__plan__content {
    width: 90%;
  }
}
@media only screen and (max-width: 568px) {
  .top__plan__intro .container {
    flex-direction: column-reverse;
  }
  .top__plan__intro .container::before {
    width: 58%;
    left: initial;
    right: -5.3vw;
  }
  .top__plan__intro .photo {
    width: 70%;
    aspect-ratio: 1/1.2;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 0 0 -5.3vw;
  }
  .top__plan__intro .txt_box {
    width: 92%;
    margin: 10vw auto 10vw;
    padding: 8.5% 9% 10%;
    background-size: 63% auto;
    background-position: top 64% center;
  }
  .top__plan__intro .ttl {
    font-size: 4.8vw;
    width: 100%;
    padding: 0.75em 0 1em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .top__plan__intro .ttl .num {
    padding: 0 0.06em;
  }
  .top__plan__content {
    width: 89.4vw;
    margin: 30px auto 40px;
  }
  .top__plan__content .cont_ttl {
    font-size: 4.4vw;
  }
  .top__plan__content ul {
    gap: 40px 0;
  }
  .top__plan__content ul li {
    width: 100%;
    display: grid;
    grid-template-columns: 51.4% 48.6%;
    grid-template-rows: auto auto auto;
  }
  .top__plan__content ul li img {
    grid-column: 1;
    grid-row: 1/3;
  }
  .top__plan__content ul li .plan_time {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding: 0.15em 1.5em;
    margin: -0.5em auto 0;
  }
  .top__plan__content ul li .ttl {
    grid-column: 2;
    grid-row: 2;
    font-size: 4.2vw;
    padding: 0.75em 0 0;
  }
  .top__plan__content ul li p {
    grid-column: 1/-1;
    grid-row: 3;
    margin-top: 0.75em;
  }
  .top__plan__content .info_txt {
    margin-top: 30px;
  }
}

/*===============================================
 *	料金
===============================================*/
.top__price {
  background: url(../img/common/bg_stone.jpg) no-repeat center top;
  background-size: cover;
}
.top__price .container {
  max-width: 1100px;
}

.price_box {
  background: #fff;
  padding: 5% 10%;
  outline: 1px solid var(--site-primary);
  outline-offset: -8px;
}
.price_box table {
  width: 100%;
  margin-bottom: 2.5em;
}
.price_box table th {
  font-size: min(1.7vw, 20px);
  border-bottom: 1px solid #ccc;
  padding: 1em 4em;
  width: 45%;
}
.price_box table td {
  font-size: min(2.2vw, 28px);
  border-bottom: 1px solid #ccc;
  padding: 0.85em 0;
}

.option_area {
  margin-top: 80px;
}
.option_area .cont_ttl {
  font-size: min(2.4vw, 30px);
  color: #fff;
  background: var(--site-secondary);
  text-align: center;
  padding: 0.75em 0;
}
.option_area .option_item {
  padding: 40px 40px;
  border-top: 1px solid #ccc;
}
.option_area .option_item img {
  width: 26%;
}
.option_area .option_item .txt_box {
  width: 74%;
  padding-left: 5%;
}
.option_area .option_item .ttl {
  font-size: min(2.1vw, 26px);
}
.option_area .option_item .price {
  font-size: 18px;
  color: var(--site-primary);
  border: 1px solid var(--site-primary);
  background: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.75em 0.25em 1.25em;
  margin: 0.75em 0 1em;
}
.option_area .option_item .size {
  font-size: 0.8em;
}
.option_area .option_item:nth-of-type(even) .txt_box {
  padding-left: 0;
}
.option_area .option_item:nth-of-type(1) {
  border-top: none;
}

@media only screen and (max-width: 568px) {
  .top__price {
    background: url(../img/common/bg_stone_sp.jpg) no-repeat top center;
    background-size: cover;
  }
  .price_box {
    padding: 5% 10% 8%;
  }
  .price_box table {
    margin-bottom: 1.5em;
  }
  .price_box table th {
    font-size: 4vw;
    padding: 1em 1em;
    width: 55%;
  }
  .price_box table td {
    font-size: 5.2vw;
  }
  .price_box p {
    text-align: left;
  }
  .option_area {
    margin-top: 40px;
    margin-bottom: 10px;
  }
  .option_area .cont_ttl {
    font-size: 5.3vw;
  }
  .option_area .option_item {
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
  }
  .option_area .option_item img {
    width: 72%;
  }
  .option_area .option_item .ttl {
    font-size: 5vw;
    text-align: center;
    margin-top: 0.5em;
  }
  .option_area .option_item .price {
    font-size: 4vw;
    margin: 0.75em auto 1em;
    padding: 0.15em 1.5em 0.25em;
  }
  .option_area .option_item .txt_box {
    width: 100%;
    padding: 0;
  }
}
/*===============================================
 *	チャーター船のご案内
===============================================*/
.top__boat {
  background: url(../img/top/bg_boat.jpg) no-repeat top right;
  background-size: 50% auto;
  overflow: hidden;
}
.top__boat__intro {
  position: relative;
}
.top__boat__intro .container {
  justify-content: flex-end;
  align-items: flex-end;
}
.top__boat__intro img {
  width: 43%;
  margin-top: 72px;
}
.top__boat__intro p {
  width: 26%;
  margin-right: 2.6%;
  position: relative;
}
.top__boat__intro p::before {
  content: "";
  background: url(../img/top/txt_boat.svg) no-repeat;
  background-size: contain;
  width: 24.5vw;
  max-width: 472px;
  height: 120px;
  position: absolute;
  top: -55%;
  left: 0;
}
.top__boat__intro::before {
  content: "";
  background: url(../img/top/boat_sub_01.jpg) no-repeat;
  background-size: contain;
  width: 27.5%;
  height: 376px;
  position: absolute;
  left: 0;
  top: 0;
}
.top__boat__intro::after {
  content: "";
  background: url(../img/top/boat_sub_02.jpg) no-repeat;
  background-size: contain;
  width: 26.5%;
  height: 510px;
  position: absolute;
  right: 0;
  top: 30%;
}
.top__boat .photo_gallely {
  margin-top: 120px;
}
.top__boat .photo_gallely .sec_ttl .txt_en {
  font-size: min(4vw, 60px);
  display: inline-block;
  margin-right: 20px;
}
.top__boat .photo_gallely .swiper {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  padding-bottom: 75px;
}
.top__boat .photo_gallely .swiper-scrollbar {
  height: 1px;
  bottom: 0;
  left: 0;
  background: #f2f2f2;
}
.top__boat .photo_gallely .swiper-scrollbar-drag {
  background: #534741;
}
@media only screen and (max-width: 1024px) {
  .top__boat__intro img {
    width: 37%;
  }
  .top__boat__intro p {
    margin: 0 3% -7vw 0;
  }
}
@media only screen and (max-width: 960px) {
  .top__boat__intro p {
    margin-bottom: -16vw;
  }
  .top__boat .photo_gallely {
    margin-top: 22vw;
  }
  .top__boat .photo_gallely .swiper {
    padding-bottom: 45px;
  }
}
@media only screen and (max-width: 568px) {
  .top__boat {
    background: url(../img/top/bg_boat_sp.jpg) no-repeat top right;
    background-size: 50% auto;
  }
  .top__boat__intro::before {
    background-size: auto 100%;
    background-position: center;
    width: 32.5%;
    height: auto;
    aspect-ratio: 123/109;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top__boat__intro::after {
    background-size: auto 100%;
    width: 36.5%;
    height: auto;
    aspect-ratio: 125/162;
    z-index: -1;
  }
  .top__boat__intro .container {
    flex-direction: column;
    align-items: center;
  }
  .top__boat__intro img {
    width: 58%;
    margin-top: 40px;
  }
  .top__boat__intro p {
    width: 100%;
    margin: 75px 0 0;
  }
  .top__boat__intro p::before {
    width: 50vw;
    top: -37%;
  }
  .top__boat .photo_gallely {
    margin-top: 50px;
  }
  .top__boat .photo_gallely .sec_ttl .txt_en {
    font-size: 8.5vw;
  }
  .top__boat .photo_gallely .swiper {
    padding-bottom: 40px;
  }
}

/*===============================================
 *	ご利用シーン
===============================================*/
.top__scene {
  background: url(../img/top/bg_water-beige.jpg) no-repeat center top;
  background-size: cover;
}
.top__scene .sec_ttl {
  color: #fff;
}
.top__scene .sec_ttl .txt_en {
  color: #fff;
}
.top__scene__item {
  background: #fff;
  display: grid;
  grid-template-columns: 48% 45%;
  grid-template-rows: auto auto auto;
  -moz-column-gap: 7%;
       column-gap: 7%;
  padding: 6% 5%;
  align-items: start;
  margin-top: min(8.5vw, 110px);
  position: relative;
}
.top__scene__item .ttl {
  grid-column: 2;
  grid-row: 1;
  font-size: min(2.4vw, 30px);
  position: relative;
  padding-bottom: 0.75em;
}
.top__scene__item .ttl::after {
  content: "";
  background: var(--site-primary);
  width: 92px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top__scene__item .sub_txt {
  grid-column: 2;
  grid-row: 2;
  padding: 1em 0;
}
.top__scene__item .voice {
  grid-column: 2;
  grid-row: 3;
  padding: 3% 6% 4%;
}
.top__scene__item img {
  grid-column: 1;
  grid-row: 1/-1;
}
.top__scene__item::before {
  font-family: "Cormorant";
  font-size: 140px;
  color: var(--site-primary);
  position: absolute;
  top: -105px;
  right: 36.8%;
}
.top__scene__item.item_01::before {
  content: "01";
}
.top__scene__item.item_02 {
  grid-template-columns: 45% 48%;
}
.top__scene__item.item_02::before {
  content: "02";
  right: initial;
  left: 4.5%;
}
.top__scene__item.item_02 .ttl {
  grid-column: 1;
}
.top__scene__item.item_02 .sub_txt {
  grid-column: 1;
}
.top__scene__item.item_02 .voice {
  grid-column: 1;
}
.top__scene__item.item_02 img {
  grid-column: 2;
}
.top__scene__item.item_03::before {
  content: "03";
}
@media only screen and (max-width: 1024px) {
  .top__scene__item::before {
    font-size: 120px;
    top: -90px;
  }
}
@media only screen and (max-width: 960px) {
  .top__scene__item::before {
    font-size: 100px;
    top: -75px;
  }
}
@media only screen and (max-width: 568px) {
  .top__scene {
    background: url(../img/top/bg_water-beige_sp.jpg) no-repeat top center;
    background-size: cover;
  }
  .top__scene__item {
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
    padding: 11% 6%;
    margin-top: 14.5vw;
  }
  .top__scene__item::before {
    font-size: 22vw;
    top: -16vw;
    right: initial !important;
    left: 5%;
  }
  .top__scene__item .ttl {
    grid-column: 1;
    font-size: 5.3vw;
    line-height: 1.5;
  }
  .top__scene__item .sub_txt {
    grid-column: 1;
    grid-row: 2;
  }
  .top__scene__item .voice {
    grid-column: 1;
    grid-row: 4;
    margin-top: 20px;
    padding: 5% 7% 6%;
  }
  .top__scene__item img {
    grid-row: 3;
  }
  .top__scene__item.item_01 {
    margin-top: 11vw;
  }
  .top__scene__item.item_02 {
    grid-template-columns: 100%;
  }
  .top__scene__item.item_02 img {
    grid-column: 1;
  }
}

/*===============================================
 *	高級車レンタカー
===============================================*/
.top__rentalcar .photo {
  width: 38%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__rentalcar .txt_box {
  width: 62%;
  background: url(../img/top/bg_rentalcar.jpg) no-repeat center;
  background-size: cover;
  padding: 5% 0;
}
.top__rentalcar .sec_ttl {
  color: #fff;
}
.top__rentalcar .sec_ttl .txt_en {
  color: #fff;
  margin-bottom: 0.1em;
}
.top__rentalcar p {
  color: #fff;
}
.top__rentalcar .sub_txt {
  font-size: min(2.0vw, 24px);
  margin-bottom: 1em;
}
.top__rentalcar .btn_normal {
  min-width: 345px;
  width: 36%;
  margin-top: 30px;
}
@media only screen and (max-width: 568px) {
  .top__rentalcar {
    flex-direction: column;
  }
  .top__rentalcar .photo {
    width: 100%;
    aspect-ratio: 125/66;
  }
  .top__rentalcar .txt_box {
    width: 100%;
    padding: 0 5.3vw 13vw;
    background: url(../img/top/bg_rentalcar_sp.jpg) no-repeat;
    background-size: cover;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
  .top__rentalcar .sec_ttl {
    margin-top: -7.7vw;
  }
  .top__rentalcar .sub_txt {
    font-size: 5.3vw;
    text-align: center;
  }
  .top__rentalcar .btn_normal {
    min-width: initial;
    width: 85%;
  }
}

/*===============================================
 *	よくあるご質問
===============================================*/
.sec__faq__acc {
  border-top: 1px solid var(--site-primary);
  padding: 0 20px;
}
.sec__faq__acc:last-of-type {
  border-bottom: 1px solid var(--site-primary);
}
.sec__faq__acc[open] .acc__plus::before {
  transform: rotate(0);
}
.sec__faq summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  font-size: 20px;
  font-weight: 600;
  padding: 1.25em 0;
}
.sec__faq summary .icon {
  display: inline-block;
  width: 61px;
  margin-right: 20px;
}
.sec__faq summary .acc__plus {
  display: inline-block;
  vertical-align: middle;
  color: var(--site-primary);
  line-height: 1;
  min-width: 39px;
  height: 2px;
  background-color: var(--site-primary);
  margin-left: auto;
  position: relative;
}
.sec__faq summary .acc__plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: 0.3s;
}
.sec__faq summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.sec__faq .answer {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 1.25em;
}
.sec__faq .answer .icon {
  display: inline-block;
  width: 61px;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .sec__faq summary {
    font-size: 18px;
  }
  .sec__faq .answer {
    font-size: 16px;
  }
}
@media only screen and (max-width: 960px) {
  .sec__faq summary .icon {
    width: 50px;
  }
  .sec__faq summary p {
    width: calc(100% - 68px);
  }
  .sec__faq .answer .icon {
    width: 50px;
  }
  .sec__faq .answer p {
    width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 568px) {
  .sec__faq__acc {
    padding: 0 0.5em;
  }
  .sec__faq summary {
    font-size: 4.3vw;
  }
  .sec__faq summary .icon {
    width: 34px;
    margin-right: 0;
  }
  .sec__faq summary .icon img {
    width: 100%;
  }
  .sec__faq summary p {
    width: calc(100% - 52px);
    padding: 0 0.75em;
  }
  .sec__faq summary .acc__plus {
    min-width: initial;
    width: 18px;
  }
  .sec__faq .answer .icon {
    width: 34px;
    margin-right: 0;
  }
  .sec__faq .answer p {
    width: calc(100% - 34px);
    font-size: 4vw;
    padding-left: 0.75em;
  }
}

.top__faq .container {
  max-width: 1000px;
}

/*===============================================
 *	会社概要
===============================================*/
.top__company {
  margin-bottom: min(10vw, 120px);
}

.company_table {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
.company_table th {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding: 1.5em 2.5em;
}
.company_table td {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding: 1.5em 2.5em;
}

@media only screen and (max-width: 568px) {
  .top__company {
    margin-bottom: 40px;
  }
  .company_table {
    width: 100%;
  }
  .company_table th {
    font-size: 14px;
    padding: 1.5em 1.5em;
  }
  .company_table td {
    font-size: 14px;
    padding: 1.5em 0;
  }
}
/*===============================================
 *	CVエリア
===============================================*/
.cv__area {
  background: url(../img/common/bg_cv.jpg) no-repeat top center;
  background-size: cover;
}
.cv__area .sec_ttl {
  color: #fff;
  margin-bottom: 50px;
}
.cv__area .sec_ttl .txt_en {
  color: #fff;
}
.cv__area p {
  color: #fff;
}
.cv__area .cv_top_txt {
  font-weight: 500;
  font-size: 18px;
}
.cv__area .btns {
  width: 100%;
  gap: 0 3%;
  margin-top: 40px;
}
.cv__area .btns li {
  width: 27%;
  max-width: 350px;
}
.cv__area .btns a {
  font-size: 22px;
  line-height: 1;
  display: block;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
  position: relative;
}
.cv__area .btns a::after {
  content: "";
  background: url(../img/common/icon_circle-arrow-white.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
}
.cv__area .mail_btn {
  background: var(--site-primary);
  transition: 0.3s;
}
.cv__area .mail_btn::before {
  content: "";
  background: url(../img/common/icon_mail.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 20px;
  position: absolute;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
}
.cv__area .mail_btn:hover {
  background: #dfaa68;
}
.cv__area .line_btn {
  background: #06c755;
  transition: 0.3s;
}
.cv__area .line_btn::before {
  content: "";
  background: url(../img/common/icon_line.svg) no-repeat;
  background-size: contain;
  width: 28px;
  height: 27px;
  position: absolute;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
}
.cv__area .line_btn:hover {
  background: #2bcf6e;
}
.cv__area .tel_txt {
  font-size: min(2.0vw, 23px);
  margin-top: 30px;
}
.cv__area .tel_txt a {
  font-size: 1.74em;
  color: #fff;
  letter-spacing: 0.06em;
  margin-right: 0.25em;
  margin-left: 0.25em;
}
.cv__area .attention_txt {
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 960px) {
  .cv__area .btns li {
    width: 45%;
  }
  .cv__area .btns a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 568px) {
  .cv__area {
    background: url(../img/common/bg_cv_sp02.jpg) no-repeat top center;
    background-size: cover;
  }
  .cv__area .sec_ttl {
    margin-bottom: 25px;
  }
  .cv__area .cv_top_txt {
    text-align: center;
    font-size: 17px;
  }
  .cv__area .btns {
    flex-direction: column;
    align-items: center;
    gap: 18px 0;
    margin-bottom: 15px;
  }
  .cv__area .btns li {
    width: 100%;
  }
  .cv__area .btns a {
    font-size: 17px;
  }
  .cv__area .btns a::after {
    width: 20px;
    height: 20px;
    right: 6%;
  }
  .cv__area .mail_btn::before {
    width: 27px;
  }
  .cv__area .tel_txt {
    font-size: 5.3vw;
    text-align: center;
  }
  .cv__area .tel_txt a {
    border-bottom: 1px solid #fff;
  }
  .cv__area .attention_txt {
    text-align: left;
  }
}

/*=============================================== *
   下層ページ 共通パーツ
===============================================*/
.page__header__box {
  background: url(../img/common/page_header_bg.jpg) no-repeat top center;
  background-size: cover;
  justify-content: center;
  padding: min(11.5vw, 150px) 3% min(12vw, 145px);
}
.page__header:has(picture) .page__header__box {
  width: 57.8%;
}
.page__header__photo {
  width: 42.2%;
}
.page__header__photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page__header__ttl {
  font-size: min(1.6vw, 20px);
}
.page__header__ttl .txt_en {
  font-size: min(4vw, 54px);
  font-family: "Cormorant";
  color: var(--site-primary);
  display: block;
}

.intro_content {
  padding: 80px 0;
}
.intro_content .intro_ttl {
  font-size: min(2.4vw, 32px);
  line-height: 1.5;
  color: var(--site-primary);
  margin-bottom: 1.25em;
}

.nav_btn_list {
  gap: 0 2%;
}
.nav_btn_list li {
  width: 30.6%;
  text-align: center;
}
.nav_btn_list li a {
  font-size: min(1.8vw, 18px);
  font-weight: 500;
  color: #b0924a;
  background: #f4f0e6;
  padding: 1.5em 0;
  display: block;
  position: relative;
  transition: 0.3s;
}
.nav_btn_list li a::after {
  content: "";
  background: url(../img/common/icon_circle-arrow-beige.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.nav_btn_list li a:hover {
  background: var(--site-secondary);
  color: #fff;
}
.nav_btn_list li a:hover::after {
  background: url(../img/common/icon_circle-arrow-white.svg) no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 960px) {
  .intro_content {
    padding: 7vw 0;
  }
}
@media only screen and (max-width: 568px) {
  .page__header__photo {
    width: 34%;
  }
  .page__header:has(picture) .page__header__box {
    width: 66%;
  }
  .page__header:has(picture) .page__header__ttl {
    padding-left: 5vw;
  }
  .page__header__box {
    width: 100%;
    padding: 8vw 0 9vw;
  }
  .page__header__ttl {
    font-size: 3.5vw;
    line-height: 1.3;
  }
  .page__header__ttl .txt_en {
    font-size: 7vw;
    margin-bottom: 0.1em;
  }
  .intro_content {
    padding: 10vw 0 12vw;
  }
  .intro_content .intro_ttl {
    font-size: 5.3vw;
  }
  .nav_btn_list {
    gap: 10px 0;
    flex-direction: column;
  }
  .nav_btn_list li {
    width: 100%;
  }
  .nav_btn_list li a {
    font-size: 15px;
    padding: 1.15em 0;
  }
  .nav_btn_list li a::after {
    width: 18px;
    height: 18px;
  }
}
/*=============================================== *
   サイトマップ
===============================================*/
.sitemap_list {
  gap: 1.5em 5%;
}
.sitemap_list li {
  width: 30%;
  border-bottom: 1px solid #ccc;
}
.sitemap_list li a {
  color: #333;
  display: block;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center right;
  background-size: 15px auto;
  padding: 1em 0 1.5em;
  transition: 0.3s;
}
.sitemap_list li a:hover {
  color: var(--site-primary);
}

@media only screen and (max-width: 568px) {
  .sitemap_list {
    gap: 0;
  }
  .sitemap_list li {
    width: 100%;
  }
  .sitemap_list li a {
    background-size: 12px auto;
    padding: 1.5em 0 1.5em;
  }
}
/*=============================================== *
   プライバシーポリシー・特定商取引法
===============================================*/
.low_main_content {
  background: #f0f5f6;
}

.low_content_box {
  padding: 5% 6% 4%;
}
.low_content_box .ttl {
  font-size: min(2.2vw, 24px);
  margin-bottom: 1em;
  border-bottom: 1px solid var(--site-primary);
  padding: 0 0 0.5em;
}
.low_content_box p {
  margin-bottom: 3.5em;
}

@media only screen and (max-width: 568px) {
  .low_content_box {
    padding: 7% 7% 4%;
  }
  .low_content_box .ttl {
    font-size: 4.4vw;
  }
  .low_content_box p {
    margin-bottom: 2em;
  }
}/*# sourceMappingURL=common.css.map */