@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
@import url("https://use.typekit.net/vxt0gvy.css");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");


@import url('https://fonts.googleapis.com/css2?family=Amiri+Quran&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/*
Theme Name: Port Swallow
Theme URI: null
Description: Description
Author: 81bridge - SGX
Version: 1.0
*/

.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
img[class*="wp-image-"],
img[class*="attachment-"] {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.archivePage img[class*="wp-image-"],
.archivePage img[class*="attachment-"] {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto;
}
.singlePage img[class*="wp-image-"],
.singlePage img[class*="attachment-"] {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin: 0 auto;
}
.wp-block-image figure,
.wp-block-image figcaption {
  display: block;
}
a.nolink,
a.nolink:hover {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}
html {
  font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option {
  font-family: "Noto Sans JP", sans-serif;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
a,
a:link {
  color: #212836;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
a:visited {
  color: #212836;
}
a:hover {
  color: #212836;
}
a:active {
  color: #212836;
}

:root {
  --main-color: #1d6489;
  --txt-color: #3d3d3d;
}


/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/

body {
  color: var(--txt-color);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.5;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

#main {
  /* margin-top: 170px; */
  display: block;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  body {
    min-width: inherit;
    font-size: 1.4rem;
  }
  a:hover,
  a:hover img {
    opacity: 1 !important;
  }
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
  #main {
    /* margin-bottom: 50px; */
    margin-top: 0;
  }
  #container {
    /* padding-top: 60px; */
  }
  .special #container {
    /* padding-top: 60px; */
  }
}


/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1000;
}

.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
.header .header-inner .logo {
  font-size: 1.25em;
  font-weight: bold;
}
.header .header-inner .logo a {
  display: block;
  max-width: 130px;
  width: 100%;
}
.header .header-inner .logo a img {
  width: 100%;
}
.header.on {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);

}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav__inner {
  position: relative;
  width: 40%;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* 展開時のデザイン */
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
  max-width: 1500px;
  padding: 0 20px;
  margin: 0 auto 120px;
}
#pagePath li {
  margin-right: 10px;
  display: inline;
  letter-spacing: 0.08em;
}
#pagePath li a {
  padding-right: 30px;
  display: inline-block;
  background: url("img/common/icon04.png") no-repeat right center;
  background-size: 9px auto;
}
#pagePath li img {
  margin: -3px 0 0;
  display: inline-block;
  vertical-align: middle;
}
#pagePath li a:hover {
  opacity: 0.7;
}
@media all and (max-width: 896px) {
  #pagePath {
    max-width: inherit;
    margin: 0 auto 42px;
    padding: 0 24px;
  }
  #pagePath li {
    margin-right: 9px;
  }
  #pagePath li a {
    padding-right: 26px;
    background: url("img/common/sp_icon03.png") no-repeat right center;
    background-size: 8px auto;
  }
  #pagePath li img {
    margin: -3px 0 0;
  }
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
  box-sizing: border-box;
}
#gFooter .content {
  position: relative;
}

#gFooter address {
  text-align: center;
  padding-bottom: 30px;
}
#gFooter .copyright {
  padding: 20px 40px;
  width: 100%;
  background: #3d3d3d;
  box-sizing: border-box;
}
#gFooter .copyright .txt {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

.pageTop {
  position: fixed;
  right: 46px;
  bottom: 25px;
  z-index: 600;
}
.pageTop a:hover {
  opacity: 0.7;
}

/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .content {
    max-width: inherit;
    padding: 0 24px;
  }
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
  margin-bottom: 26px;
  padding: 93px 0 63px;
  text-align: center;
  border-bottom: 1px solid #d1cfcf;
}
.pageTitle .headLine01 .en {
  margin-bottom: 8px;
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.08em;
}
.pageTitle .headLine01 .jp {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media all and (max-width: 896px) {
  .pageTitle {
    margin-bottom: 13px;
    padding: 18px 0 30px;
  }
  .pageTitle .headLine01 .en {
    margin-bottom: 2px;
    font-size: 3rem;
  }
  .pageTitle .headLine01 .jp {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  transition: transform 1s, opacity 1s;
}
.fadeInUp.on {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*------------------------------------------------------------
	topPage
------------------------------------------------------------*/

.content {
  max-width: 1100px;
  width: 100%;
}
.headline02 {
  margin-bottom: 20px;
  color: var(--main-color);
  font-size: 76px;
}
.headline03 {
  color: var(--txt-color);
  font-size: 56px;
}
.headline04 {
  font-size: 14px;
}

@media all and (max-width: 900px) {
  .headline02 {
    font-size: 40px;
  }
}

.topPage {
  position: relative;
  color: #3d3d3d;


}
.topPage .kv {
  margin-bottom: 120px;
  width: auto;
  position: relative;

  font-family: 'Lato', sans-serif;
  background: url(./img/common/top_bg01.jpg);
  background-size: cover;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}
.topPage .kv .photoBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: auto;
  height: auto;
  text-align: center;
}
.topPage .kv .photoBox img {
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}
.kv, #parallax, .layer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 2;
  opacity: 1;
}
#parallax, .layer, .some-space, .some-more-space, #particles-js {
  height: 100%;
  width: 100%;
  position: absolute;
}
#particles-js {
  position: relative;
  opacity: 0.8;
  z-index: 10;
}

.some-space {
  animation: rotate 18s 0.5s infinite linear reverse;
}

.some-more-space {
  animation: rotate 15s 0.1s infinite linear;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg) translate3d(0, 1.5%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 1.5%, 0) rotateZ(-360deg);
  }
}

@media all and (max-width: 900px) {
  .topPage .kv {
    margin-bottom: 60px;
    height: 100vh;
  }
}




.topPage .serviceSec {
  margin-bottom: 200px;
}
.topPage .serviceSec .content {
  max-width: 1480px;
}
.topPage .serviceSec .headline_area {
  margin-bottom: 50px;
  text-align: center;
}
.topPage .serviceSec .headline_area .headline02 {

}
.topPage .serviceSec .headline_area .subtxt {
  display: inline-block;
  padding: 0 10px 30px;
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
  font-size: 20px;
  font-weight: bold;
}
.topPage .serviceSec .txt {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}
.topPage .serviceSec .serviceBox {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.topPage .serviceSec .serviceBox + .serviceBox {
  margin-top: 110px;
}
.topPage .serviceSec .serviceBox .photoBox {
  width: 80%;
  margin: 0;
  overflow: hidden;
  will-change: transform;
}
.topPage .serviceSec .serviceBox .photoBox img {
  width: 100vw;
  transition: transform 0.1s linear;
  will-change: transform;
}
.topPage .serviceSec .serviceBox .txtBox {
  margin: auto 0 auto -20%;
  padding: 40px 30px;
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa80;
  box-sizing: border-box;
  border-radius: 30px;

  transition: transform 0.1s linear;
  will-change: transform;
}

.topPage .serviceSec .serviceBox .txtBox .Box_headline {

}
.topPage .serviceSec .serviceBox .txtBox .Box_headline .headline03 {
  color: var(--txt-color);
}
.topPage .serviceSec .serviceBox .txtBox .Box_headline .subtxt {
  font-size: 20px;
}
.topPage .serviceSec .serviceBox .txtBox .txt {
  font-size: 16px;
}
.topPage .serviceSec .serviceBox .txtBox .tagBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topPage .serviceSec .serviceBox .txtBox .tagBox span {
  padding: 5px 8px;
  box-sizing: border-box;
  color: #fff;
  background: #c4a088;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.topPage .serviceSec .serviceBox:nth-child(4n) {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  text-align: center;
}
.topPage .serviceSec .serviceBox:nth-child(4n) .photoBox {
  margin: 0;
}
.topPage .serviceSec .serviceBox:nth-child(4n) .txtBox {
  position: relative;
  margin-left: initial;
  margin: auto -20% auto 0;
  z-index: 1;
  background: #fafafa90;
}
.topPage .serviceSec .serviceBox:nth-child(4n) .txtBox .tagBox span {
  background: #89b17e;
}
.topPage .serviceSec .serviceBox:nth-child(5n) .txtBox .tagBox span {
  background: #a09acc;
}

@media all and (min-width: 800px) and (max-width: 1700px) {
  .topPage .serviceSec .serviceBox .photoBox {
      margin: 0 0 0 calc(50% - 50vw);
  }
  .topPage .serviceSec .serviceBox:nth-child(4n) .photoBox {
    margin: 0 calc(50% - 50vw) 0 0;
  }
}	

@media all and (max-width: 1290px) {
  .topPage .serviceSec .serviceBox .txtBox .Box_headline .headline03 {
    font-size: 42px;
  }

  .topPage .serviceSec .serviceBox .txtBox .tagBox span {
    font-size: 12px;
    font-weight: bold;
  }
}
@media all and (max-width: 1028px) {
  .topPage .serviceSec .serviceBox .txtBox .Box_headline {
    font-size: 42px;
  }
  .topPage .serviceSec .serviceBox .txtBox .Box_headline .headline03 {
    font-size: 35px;
  }
  .topPage .serviceSec .serviceBox .txtBox .tagBox span {
    font-size: 12px;
    font-weight: bold;
  }
}
@media all and (max-width: 900px) {
  .topPage .serviceSec {
    margin-bottom: 60px;
  }
  .topPage .serviceSec .headline_area {
    margin-bottom: 30px;
  }
  .topPage .serviceSec .serviceBox + .serviceBox {
    margin-top: 60px;
  }
  .topPage .serviceSec .serviceBox {
    flex-direction: column-reverse;
  }
  .topPage .serviceSec .serviceBox .photoBox {
    margin: 0;
    width: 100%;
  }
  .topPage .serviceSec .serviceBox .txtBox {
    margin: 0;
    width: 100%;
    height: auto;
  }



  .topPage .serviceSec .serviceBox:nth-child(4n) {
    flex-direction: column-reverse;
  }
  .topPage .serviceSec .serviceBox:nth-child(4n) .photoBox {
    margin: 0;
  }
  .topPage .serviceSec .serviceBox:nth-child(4n) .txtBox {
    margin: initial;
    z-index: 1;
  }
}


.topPage .previousSec {
  margin-bottom: 200px;
}
.topPage .previousSec .headline_area {
  margin-bottom: 50px;
  text-align: center;
}
.topPage .previousSec .headline_area .headline02 {

}
.topPage .previousSec .headline_area .subtxt {
  display: inline-block;
  padding: 0 10px 30px;
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
  font-size: 20px;
  font-weight: bold;
}
.topPage .previousSec .txt {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}


.topPage .previousSec .previous_wrap01 {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns	:2fr 1fr;
  grid-template-rows	:auto;
  gap: 10px;
}
.topPage .previousSec .previous_wrap02 {
  margin: 30px 0;
  display: grid;
  grid-template-columns	:1fr 1fr 1fr;
  grid-template-rows	:auto;
  gap: 10px;
}
.topPage .previousSec .previous_wrap03 {
  margin-top: 30px;
  display: grid;
  grid-template-columns	:1fr 2fr;
  grid-template-rows	:auto;
  gap: 10px;
}
.topPage .previousSec .previous_group03 {
  margin-top: 30px;
  display: grid;
  grid-template-columns	:1fr 2fr;
  grid-template-rows	:auto;
  gap: 10px;
}

.topPage .previousSec .previous_wrap {
  cursor: pointer;
}
.topPage .previousSec .previousBox {
  position: relative;
  width: auto;
  height: 210px;
  object-fit: cover;
  background: linear-gradient(#c5c5c5, #464646);
  border-radius: 20px;
}
.topPage .previousSec .previousBox .photoBox {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.topPage .previousSec .previousBox .photoBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topPage .previousSec .previousBox .txtBox {
  padding: 10px 20px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  opacity: 0;
  transition: 0.5s;
}
.topPage .previousSec .previousBox:hover .txtBox {
  padding: 10px 20px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  color: #fff;
  background: #3d3d3d80;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  opacity: 1;
  transition: .5s;
}

.topPage .previousSec .previousBox .txtBox .main_tagBox {
  width: 100%;
}
.topPage .previousSec .previousBox .txtBox .main_tagBox span {
  display: block;
  width: 100%;
  font-size: 12px;
}
.topPage .previousSec .previousBox .txtBox .Box_headline {
  display: block;
  width: 100%;
}
.topPage .previousSec .previousBox .txtBox .Box_headline .subtxt {
  margin-bottom: 5px;
  font-size: 12px;
}
.topPage .previousSec .previousBox .txtBox .Box_headline .sub_tagBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.topPage .previousSec .previousBox .txtBox .Box_headline .sub_tagBox span {
  padding: 3px 6px;
  border: 1px solid #fff;
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 8px;
}




.mfp-content [id^="previous01"] ,
.mfp-content [id^="previous02"] ,
.mfp-content [id^="previous03"] ,
.mfp-content [id^="previous04"] ,
.mfp-content [id^="previous05"] ,
.mfp-content [id^="previous06"] ,
.mfp-content [id^="previous07"] {
    width: 800px;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
}

.pop1 {
    margin-bottom: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 30px 4%;
}
.pop1 .photoBox {
    /* max-width: 300px; */
    margin: 0 auto;
}
/* .pop1 .photoBox img {
    width: 100%;
} */

.mfp-content [id^="previous01"] .linkBox_wrap ,
.mfp-content [id^="previous02"] .linkBox_wrap ,
.mfp-content [id^="previous03"] .linkBox_wrap ,
.mfp-content [id^="previous04"] .linkBox_wrap ,
.mfp-content [id^="previous05"] .linkBox_wrap ,
.mfp-content [id^="previous06"] .linkBox_wrap ,
.mfp-content [id^="previous07"] .linkBox_wrap {
  position: fixed;
  max-width: 800px;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;


  background: var(--main-color);
}
.mfp-content [id^="previous01"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous02"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous03"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous04"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous05"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous06"] .linkBox_wrap .linkBox ,
.mfp-content [id^="previous07"] .linkBox_wrap .linkBox {
  width: 50%;
}
.mfp-content [id^="previous01"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous02"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous03"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous04"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous05"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous06"] .linkBox_wrap .linkBox .link,
.mfp-content [id^="previous07"] .linkBox_wrap .linkBox .link {
  width: 100%;
  padding: 10px 5px;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: .5s;
}
.mfp-content [id^="previous01"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous02"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous03"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous04"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous05"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous06"] .linkBox_wrap .linkBox .link:hover,
.mfp-content [id^="previous07"] .linkBox_wrap .linkBox .link:hover {
  color: var(--main-color);
  background: #fff;
}

.mfp-close-btn-in .mfp-close {
    right: 10px;
    top: 10px;
}

@media all and (max-width: 983px) {
  .topPage .previousSec .previousBox:hover .txtBox {
    justify-content: space-between;
    gap: 0 30px;
  }

  .topPage .previousSec {
    margin-bottom: 60px;
  }
  .topPage .previousSec .headline_area {
    margin-bottom: 30px;
  }

  .topPage .previousSec .previous_wrap01,
  .topPage .previousSec .previous_wrap02,
  .topPage .previousSec .previous_wrap03 ,
  .topPage .previousSec .previous_wrap04 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .topPage .previousSec .previousBox {
    width: 100%;
    height: 200px;
  }

  .topPage .previousSec .previousBox .txtBox .Box_headline .subtxt {
    margin-bottom: 10px;
  }
}



.topPage .flowSec {
  margin-bottom: 200px;
}
.topPage .flowSec .headline_area {
  margin-bottom: 50px;
  text-align: center;
}
.topPage .flowSec .headline_area .headline02 {

}
.topPage .flowSec .headline_area .subtxt {
  display: inline-block;
  padding: 0 10px 30px;
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
  font-size: 20px;
  font-weight: bold;
}
.topPage .flowSec .txt {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}
.topPage .flowSec .flow_wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.topPage .flowSec .flow_wrap .flowBox {
  width: 23%;
}
.topPage .flowSec .flow_wrap .flowBox .photoBox {
  width: auto;
}
.topPage .flowSec .flow_wrap .flowBox .photoBox img {
  width: 100%;
}
.topPage .flowSec .flow_wrap .flowBox .txtBox {
  width: 100%;
}
.topPage .flowSec .flow_wrap .flowBox .txtBox .headline04 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: bold;
}
.topPage .flowSec .flow_wrap .flowBox .txtBox .txt {
  text-align: left;
  font-size: 14px;
}

@media all and (max-width: 900px) {
  .topPage .flowSec {
    margin-bottom: 60px;
  }
  .topPage .flowSec .headline_area {
    margin-bottom: 30px;
  }
  .topPage .flowSec .flow_wrap {
    flex-direction: column;
  }
  .topPage .flowSec .flow_wrap .flowBox {
    width: 100%;
  }
  .topPage .flowSec .flow_wrap .flowBox .photoBox {
    margin-bottom: 15px;
  }
  .topPage .flowSec .flow_wrap .flowBox .txtBox .headline04 {
    margin-bottom: 15px;
  }
}


.topPage .priceSec {
  background: #fafafa;
  padding-bottom: 200px;
}
.topPage .priceSec .headline_area {
  margin-bottom: 50px;
  text-align: center;
}
.topPage .priceSec .headline_area .headline02 {

}
.topPage .priceSec .headline_area .subtxt {
  display: inline-block;
  padding: 0 10px 30px;
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
  font-size: 20px;
  font-weight: bold;
}
.topPage .priceSec .txt {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}
.topPage .priceSec .web_price ,
.topPage .priceSec .video_price {
  margin-bottom: 60px;
}
.topPage .priceSec .headline03 {
  margin: 0 auto 60px;
  padding: 0 10px 20px;
  width: fit-content;
  display: block;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  border-bottom: 3px solid;
}
.topPage .priceSec .price_wrap {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.topPage .priceSec .price_wrap .priceBox {
  padding: 25px 40px;
  width: 32%;
  box-sizing: border-box;
  border: 1px solid #3d3d3d;
  border-radius: 15px;
  background: linear-gradient(#fefefe, #e5e5e5);
  text-align: center;
}
.topPage .priceSec .price_wrap .priceBox .headline04 {
  font-size: 20px;
}
.topPage .priceSec .price_wrap .priceBox .price {
  color: var(--main-color);
  font-size: 30px;
  font-weight: bold;
}

.topPage .priceSec .price_wrap .priceBox .subtxt {
  margin-bottom: 30px;
  font-size: 12px;
}
.topPage .priceSec .price_wrap .priceBox .checkBox {
  text-align: left;
}
.topPage .priceSec .price_wrap .priceBox .checkBox .checklist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  font-size: 16px;
}
.topPage .priceSec .price_wrap .priceBox .checkBox .checklist img {
  width: 16px;
}
.topPage .priceSec .price_wrap .priceBox .checkBox .checklist p {
  padding-left: 8px;
}
.topPage .priceSec .contactBox {
  margin: 0 auto;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  background: linear-gradient(#fefefe, #e5e5e5);
  text-align: center;
  border: 1px solid;
  border-radius: 20px;
  box-sizing: border-box;
}
.topPage .priceSec .contactBox .txt {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
.topPage .priceSec .contactBox .subtxt {
  margin-bottom: 20px;
  font-size: 12px;
}
.topPage .priceSec .price_wrap .priceBox:nth-child(2n) {
  color: #fff;
  background: linear-gradient(#78c1e7, #1f668c);
}
.topPage .priceSec .price_wrap .priceBox:nth-child(2n) .price {
  color: #faffa9;
}
.topPage .priceSec .contactBox .linkBox {
  border-radius: 20px;

    display: flex;
  justify-content: center;
  align-items: center;
}
.topPage .priceSec .contactBox .linkBox a {
  padding: 15px;
  color: #fff;
  background: #3d3d3d;
  font-size: 16px;
  border-radius: 30px;
  box-sizing: border-box;
}

@media all and (max-width: 1100px) {
  .topPage .priceSec {
    padding-bottom: 60px;
  }
  .topPage .priceSec .headline_area {
    margin-bottom: 30px;
    text-align: center;
  }

  .topPage .priceSec .price_wrap {
    flex-direction: column;
  }
  .topPage .priceSec .price_wrap .priceBox {
    width: 100%;
  }
}

.topPage .contactSec {
  padding: 100px 40px;
  background: linear-gradient(#75bee4, #256c91);
  box-sizing: border-box;
}
.topPage .contactSec .headline_area {
  margin-bottom: 50px;
  text-align: center;
}
.topPage .contactSec .headline_area .headline02 {
  color: #fff;
}
.topPage .contactSec .headline_area .subtxt {
  display: inline-block;
  padding: 0 10px 30px;
  color: #fff;
  border-bottom: 3px solid;
  font-size: 20px;
  font-weight: bold;
}
.topPage .contactSec .txt {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}
.topPage .contactSec .contact_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2% 30px;
}
.topPage .contactSec .contact_wrap .contact-form {
  padding: 30px;
  width: 65%;
  background: linear-gradient(#fefefe, #e5e5e5);
  box-sizing: border-box;
  border-radius: 20px;
}
.topPage .contactSec .contact_wrap .contact-form p {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}
.topPage .contactSec .contact_wrap .contact-form p span {
  font-size: 12px;
  font-weight: normal;
}
.topPage .contactSec .contact_wrap .contact-form tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topPage .contactSec .contact_wrap .contact-form th p ,
.topPage .contactSec .contact_wrap .contact-form td p {
  margin: initial;
  font-size: 14px;

  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.topPage .contactSec .contact_wrap .contact-form th span {
  font-size: 10px;
}
.topPage .contactSec .contact_wrap .rightBox {
  width: 33%;
}
.topPage .contactSec .contact_wrap .rightBox .headline04 {
  margin-bottom: 15px;
}
.topPage .contactSec .contact_wrap .rightBox .info {
  margin-bottom: 30px;
}
.topPage .contactSec .contact_wrap .rightBox div {
  padding: 30px;
  background: linear-gradient(#fefefe, #e5e5e5);
  box-sizing: border-box;
  border-radius: 20px;
}
.topPage .contactSec .contact_wrap .rightBox .headline04 {
  font-size: 20px;
  font-weight: bold;
}
.topPage .contactSec .contact_wrap .rightBox tr {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.topPage .contactSec .contact_wrap .rightBox tr th ,
.topPage .contactSec .contact_wrap .rightBox tr td {
  width: 100%;
  font-size: 14px;
}
.contact-table th {
  text-align: left;
  vertical-align: top;
  padding: 8px 0;
  font-weight: bold;
}
.contact-table td {
  padding: 8px 0;
}
textarea,
input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.submit-button {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form-wrapper {
  padding: 2em;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.contact-form-wrapper p {
  font-weight: bold;
  margin-bottom: 1em;
}
.contact-form-wrapper .form-desc {
  font-weight: normal;
  font-size: 0.9em;
  color: #888;
}
.contact-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-table th {
  text-align: left;
  padding: 0.5em 0.5em 0.5em 0;
  vertical-align: top;
  width: 25%;
  box-sizing: border-box;
}
.contact-table td {
  padding: 0.5em 0;
  box-sizing: border-box;
}
.contact-table input[type="text"],
.contact-table input[type="email"],
.contact-table select,
.contact-table textarea {
  width: 100%;
  padding: 0.6em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}
.contact-table textarea {
  height: 150px;
  resize: vertical;
}
.contact-table .must {
  color: red;
  font-size: 0.9em;
}
.form-submit {
  margin-top: 2em;
  text-align: center;
}
.submit-button {
  background-color: #000;
  color: #fff;
  padding: 0.75em 2em;
  font-size: 1em;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-button:hover {
  background-color: #333;
}


@media all and (max-width: 900px) {
  .topPage .contactSec {
    padding: 40px 0 80px;
  }
  .topPage .contactSec .contact_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .topPage .contactSec .contact_wrap .contact-form {
    width: 100%;
  }
  .topPage .contactSec .contact_wrap .rightBox {
    width: 100%;
  }

  .topPage .contactSec .contact_wrap .contact-form tr {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  .contact-table th, .contact-table td {
    width: 100%;
  }
  .topPage .contactSec .contact_wrap .contact-form p span {
    display: block;
  }
  .contact-table textarea {
    width: 100%;
  }
}
@media all and (max-width: 500px) {
  .topPage .contactSec {

  }
  .topPage .contactSec .contact_wrap {
    gap: 30px;
  }
  .topPage .contactSec .contact_wrap .contact-form tr {
    gap: 0;
  }
  .contact-table textarea {
    width: 100%;
  }
}

/*--------------------------------------------------------------
--------------------------------------------------------------
ブログ
--------------------------------------------------------------
--------------------------------------------------------------
------------------------------------------------------------*/

/*------------------------------------------------------------
	archive 一覧ページ
------------------------------------------------------------*/

.archivePage .blogPage_inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px 4%;
  margin-bottom: 60px;
}
.archivePage .blogPage_inner .blogPage_item {
  width: 70%;
}
.archivePage .blogPage_inner .blogPage_item_widget {
  width: 26%;
  position: sticky;
  height: 100%;
  top: 20px;
  right: 0;
}

.archivePage .blogUl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 2%;
}
.archivePage .blogUl li {
  width: 49%;
  background: #fff;
  box-shadow: 0 0 5px var(--main-bluecolor);
}
.archivePage .blogUl li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  transition: 0.3s;
  text-align: center;
}
.archivePage .blogUl li a img {
  width: 350px;
  max-width: initial;
  height: 450px;
  object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .archivePage .blogUl li a img {
    width: 250px;
  }
}
.archivePage .blogUl li a .new_recent {
  color: var(--main-redcolor);
  font-size: 1.4rem;
  background: var(--gray-color02);
  padding: 0 10px;
  border: 1px solid;
  box-sizing: border-box;
}

.blog_pagenavi {
  margin-top: 20px;
  text-align: center;
}
.wp-pagenavi span.current {
  font-weight: bold;
  background: #947459;
  color: #fff;
  border-color: #947459 !important;
}
.wp-pagenavi a,
.wp-pagenavi span {
  color: #707070;
}
.archivePage .blog_txt {
  text-align: left;
}
.archivePage .blog_txt .blog_date {
  font-size: 1.4rem;
}
.archivePage .blog_txt .blog_title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid;
  box-sizing: border-box;
}
.archivePage .blog_txt .blog_content {
  font-size: 1.4rem;
}

@media all and (min-width: 897px) {
  .archivePage .blogUl li a:hover {
    transform: scale(0.96);
  }
}
@media all and (max-width: 750px) {
  .archivePage .blogUl li {
    width: 100%;
  }
}

@media (max-width: 896px) {
  .archivePage .blogPage_inner {
    flex-direction: column-reverse;
  }
  .archivePage .blogPage_inner .blogPage_item {
    width: 100%;
  }
  .archivePage .blogPage_inner .blogPage_item_widget {
    position: initial;
    width: 100%;
  }
}

/*------------------------------------------------------------
	single 記事ページ
------------------------------------------------------------*/

.singlePage .news {
  width: 70%;
}

.singlePage .singleBox {
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
}
.singlePage .blog_date {
  margin-bottom: 20px;
}
.singlePage .single_txt {
  margin-bottom: 20px;
}
.singlePage .single_txt .buttonTravel img {
  cursor: pointer;
  box-shadow: 10px 10px rgb(120, 162, 224);
}
.singlePage .single_txt .buttonTravel img:hover {
  cursor: pointer;
  /* 影を消す */
  box-shadow: none;
  /* 拡大する */
  transform: scale(1.1);
}
.singlePage .single_txt h1 {
  margin: 2em 0 1em 0;
  font-weight: bold;
  font-size: 2.5rem;
  position: relative;
  padding: 0.1em 0.5em;
  color: var(--gray-color02);
  background: linear-gradient(to right, var(--gray-color), transparent);
}
.singlePage .single_txt h2 {
  padding: 0.5em 0.7em;
  border-left: 5px solid var(--main-redcolor);
  color: #333333;
  font-size: 2.1rem;
  margin: 30px 0 20px;
}
.singlePage .single_txt h3 {
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 8px;
  color: var(--main-redcolor);
  margin-bottom: 10px;
}
.singlePage .single_txt h4 {
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
  color: var(--main-redcolor);
  font-size: 2.5rem;
}
.singlePage .single_txt h4:before {
  width: 7px;
  height: 7px;
  top: 15px;
  box-sizing: border-box;
  left: 0;
  position: absolute;
  content: "";
  border: 2px solid var(--main-bluecolor);
}
.singlePage .single_txt img {
  margin-top: 20px;
  max-width: initial;
  width: initial;
}
.singlePage .pageNavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.singlePage {
  position: relative;
}
.singlePage .flex {
  gap: 30px 2%;
}
.singlePage .blogPage_item_widget {
  width: 28%;
  position: sticky;
  top: 20px;
  right: 0;
  height: 100%;
}

@media (max-width: 896px) {
  .singlePage .singleBox {
    padding: 0 20px;
  }
  .singlePage .flex {
    flex-direction: column-reverse;
  }
  .singlePage .news {
    width: 100%;
  }
  .singlePage .flex {
    gap: 30px 2%;
  }
  .singlePage .blogPage_item_widget {
    width: 100%;
    position: initial;
  }
  .singlePage .single_txt img {
    width: 100%;
  }
}

/*------------------------------------------------------------
	widget 月別アーカイブ
------------------------------------------------------------*/

.widget {
  /* margin-top: 80px; */
  background: #fff;
  padding: 20px;
  text-align: center;
  margin-bottom: 100px;
  background: var(--main-bluecolor);
}
.widget .widget-title {
  font-size: 1.8rem;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 20px;
}
.widget ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px 15px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.widget ul li {
  font-size: 1.4rem;
  border-bottom: 2px dashed #fff;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-align: left;
}
.widget ul li a {
  display: block;
  color: #fff;
  transition: 0.5s;
}

@media (min-width: 897px) {
  .widget ul li:hover a {
    color: var(--green-color);
  }
}

/*------------------------------------------------------------
	privacy
------------------------------------------------------------*/
.privacy {
  margin-bottom: 240px;
}
.privacy p {
  margin-bottom: 4px;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
.privacy h5 {
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.privacy .txt01 {
  margin-bottom: 65px;
}
.privacy .txt02 {
  margin-bottom: 72px;
}
.privacy .txt03 {
  margin-bottom: 35px;
}
.privacy .txt04 {
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  .privacy {
    margin-bottom: 110px;
  }
  .privacy .pageTitle {
    padding: 28px 0 30px;
  }
  .privacy .pageTitle .headLine01 .en {
    margin-bottom: 8px;
    font-size: 3.2rem;
  }
  .privacy .pageTitle .headLine01 .jp {
    font-size: 2rem;
  }
  .privacy #pagePath {
    margin-bottom: 56px;
  }
  .privacy p {
    margin-bottom: 3px;
    line-height: 1.85;
    letter-spacing: 0.01em;
  }
  .privacy h5 {
    margin-bottom: 3px;
    letter-spacing: 0.01em;
  }
  .privacy .txt01 {
    margin-bottom: 57px;
  }
  .privacy .txt02 {
    margin-bottom: 60px;
  }
  .privacy .txt03 {
    margin-bottom: 27px;
  }
  .privacy .txt04 {
    margin-bottom: 0;
  }
}
.wpcf7-response-output {
  display: none !important;
}
