@charset "UTF-8"

/*共通部分*/
;html {
    font-size: 100%;
}
body{
    font-family: sans-serif;
    line-height: 1.7;
    color: rgb(255, 255, 255);
    background-color: #000000;
    list-style: none;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
:root {
    --bule: rgb(4, 4, 175);
    --red:  rgb(201, 6, 6);
    --white: #fff;
    --black: #000;
    --blackblue: rgba(0, 20, 94, 0.74);
    --grey: #999;
    --hovercolor: rgb(0, 238, 255);
}
.stripe {
    width: 100%;
    min-height: 100vh;
    background: repeating-linear-gradient(-45deg, #181818 0, #181818 2px, #000000 4px, #000000 6px);
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
}
::placeholder {
    color: #aaa;
}
/*ローディング画面-----------------------------------*/
#loading {
    background-color: var(--grey);
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}
#loading-screen {
    background-color: var(--blackblue);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}
/*fadein------------------------------------------------*/
.fadein {
    opacity: 0;
}
/*hedear------------------------------------------------------*/
/*ナビゲーション*/
.btn-menu{
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, .7);
    border-radius: 5px;
    color: var(--white);
    font-weight: bold;
    margin-right: 5vw;
    margin-top: 2vh;
    padding: .5rem 1rem;
    z-index: 9997;
}
.main-nav {
    background: var(--black);
    width: 0;
    position: absolute;
    z-index: 2;
    height: 100vh;
    right: 0;
    overflow: hidden;
    transition: .5s;
}
.main-nav li {
    text-align: center;
    display: block;
    margin-top: 6vh;
    
}
.main-nav a {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
}
.main-nav .btn-menu-info a {
    position: relative;
    width: 40px;
    z-index: 9996;
    display: inline-flex;
    justify-content: center;
}
.main-nav a:hover {
    color: var(--hovercolor);
}
.main-nav .btn-menu-info a:hover {
    color: var(--hovercolor);
}
.main-nav.open-menu {
    width: 100%;
}
/*home*/
.home-hero {
    background: url('../images/okinawa-home5sp.jpg') no-repeat center / 100vw;
    height:100vh;
    margin-top: 0;
    
}
.home-hero h1 {
   font-family: "Kaushan Script", cursive;
   font-size: 2rem;
   margin: 2vw 3vw;
   color: var(--white);
   padding: 1rem;
   display: inline-block;
}
.home-hero h2 {
   font-family: "Yuji Syuku", serif;
   font-size: 1.5rem;
   color: var(--white);
   position: absolute;
   right: .5rem;
   top: 40vh;
   background: none;
   padding: 1rem;
   display: block;
   writing-mode: vertical-rl;
}
.wrapper {
    background-color: #256783;
    background-size: cover;
    background-blend-mode: multiply;
    align-items: center;
    overflow: auto;
    scroll-snap-type: y mandatory;
    
}
/*content*/
.content {
   width: 100%;
   margin-top: -9vh;
}
.img1 {
    width: 70vw;
    height: 24vh;
    margin-top: 2vh;
    margin-left: 4vw;
    position: relative;
    z-index: 3;
}
.img1-back {
    background-color: var(--blackblue);
    width: 70vw;
    height: 24vh;
    margin-top: 10vh;
    margin-left: 2vw;
    position: relative;
    z-index: 0;
}
.img1-back::after {
    display: block;
    content: '';
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    z-index: 1;
    border: 1px solid var(--white);
    top: .5rem;
    left: .5rem;
    position: absolute;
}

.img2 {
    width: 50vw;
    height: 16vh;
    margin: -1.5vh 4vw 2vh -3vw;
    padding-right: .8vw;
    padding-bottom: .5vh;
    position: relative;
    z-index: 4;
}
.img2-back {
    background-color: var(--blackblue);
    width: 50vw;
    height: 16vh;
    margin: -4vh 5vw 2vh 45vw;
    position: relative;
    z-index: 2;
}
.img2-back::after {
    display: block;
    content: '';
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    z-index: 1;
    border: 1px solid var(--white);
    top: .5rem;
    left: .5rem;
    position: absolute;
}
h3 {
    font-family: "Yuji Syuku", serif;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 5;
    margin-top: -11vh;
    margin-left: 2vw;
    
}
.font1 {
    font-size: larger;
}
.font2 {
    font-size: larger;
}

.img3 {
    width: 100vw;
    position: relative;
    z-index: 7;
    margin-left: 3vw;
    margin-right: -3vw;;
    margin-bottom: 1vh;
}
.img3-back {
    background-color: var(--blackblue); 
    width: 100vw;
    height: 90%;
    position: relative;
    z-index: 6;
}
.img3-back::after {
    display: block;
    content: '';
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    z-index: 1;
    border: 1px solid var(--white);
    top: .5rem;
    left: .5rem;
    position: absolute;
}
.p1 {
    width: 85%;
    margin-top: 1vh;
    color: var(--white);
    align-items: center;
    border: 1.5px solid var(--white);
    padding: 1rem;
}
.content-p1 {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-left: 2vw;
    margin-right: 2vw;
}
.content-profile {
   display: inline-block;
   color: var(--white);
   font-weight: bold;
   background: linear-gradient(90deg, #20AAD8, #402c86);
   border-radius: 5px;
   padding: .3rem;
   margin-top: .5rem;
   transition: 0.3s ease;
}
.content-profile:hover {
    color: var(--hovercolor);
    transform: scale(1.1);
}
.content-news {
    text-align: center;
    margin-top: 3vh;
}
.h-news {
    font-family: sans-serif;
    font-size: 2rem;
    color: var(--white);
}
.news {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 2vh;
    margin-bottom: 5vh;
}
.news a {
    color: var(--white);
    font-size: 1rem;
    border: 1.5px solid var(--white);
    border-radius: 5px;
    padding: .5rem .3rem;
    transition: .3s ease;
}
.news a:hover {
    color: var(--hovercolor);
    transform: scale(1.2);
}

/*フッター*/
.info {
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
    border-top: 2px dotted var(--white);
    margin-top: 5vh;
    margin-left: 10vw;
    margin-right: 10vw;
    position: relative;
    z-index: 1;
}
.info-a {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;   /* 行間だけ空けたい場合 */
    text-align: center;
    align-items: center;
    padding: 10px;
    margin: 0;
    list-style: none;
}
.footer-nav a {
    color: var(--white);
}
.footer-nav li {
    list-style: none;
    line-height: 1;
}
.footer-nav a:hover {
    color: var(--hovercolor);
}
.h-info {
    text-align: center;
    font-family: sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.sns-btn {
    display: block;
    justify-content: space-between;
    margin-top: 10px;
}
.sns-btn li {
    list-style: none;
    width: 30px;
    margin-bottom: 10px;
}
.copyright {
    color: var(--white);
    font-size: .8rem;
    text-align: center;
}

/*profile.hteml----------------------------------------------------------------------------------------------*/

.h10 {
    font-family: "Kaushan Script", cursive;
    font-size: 4rem;
    color: var(--white);
    margin-top: 1rem;
    margin-left: 1rem;
    line-height: 1.2;
}
.profile-img {
    background-image: url(../images/reyso30-sp.jpg);
    margin: 3vh auto 0;
    width: 84vw;
    height: 60vh;
    position: relative;
    z-index: 0;
}
.h11 {
    color: var(--white);
    font-family: sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}
.profile-table {
    width: 80vw;
    max-width: 600px;
    margin: auto;
    border-spacing: 0;
}
.profile-table-tr {
    display: flex;
}
.profile-table-th,.profile-table-td {
    color: var(--white);
    font-size: 1rem;
    font-family: sans-serif;
    border-bottom: 1px solid var(--white);
}
.profile-table-th {
    flex: 4;
    text-align: left;
    padding: .5rem;
    margin-bottom: 0;
}
.profile-table-td {
    flex: 6;
    padding: .5rem;
    margin-bottom: 0;
}
.h12 {
    color: var(--white);
    font-family: sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 45vw;
  gap: 2vw;
  margin: 0 2vw;
}
.grid-gallery {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: auto;
}

.grid-item {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.grid-item:hover {
    transform: scale(1.1);
    box-shadow: 1rem 1rem 1rem rgba(136, 136, 136, 0.5);
}
/*luminous--------------------------------------------------------------------------------*/
.lum-lightbox.lum-open {
   position: fixed;
   z-index: 9999;
}

.lum-img {
    margin-top: 20vh;
}
.lum-lightbox-inner img {
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lum-lightbox-caption {
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    padding-top: 2vh;
    padding-left: 5vw;
    padding-right: 8vw;
    background-color: #000;
}

/*life.html-----------------------------------------------------------------------------------*/
.life-img {
    background-image: url(../images/pin-sp.jpg);
    background-size: contain;
    margin-top: 2vh;
    margin-left: 15vw;
    margin-bottom: 3vh;
    width: 84vw;
    height: 60vh;
    position: relative;
    z-index: 0;
}
.h20 {
    color: var(--white);
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
}
.p20 {
    color: var(--white);
    font-size: 1rem;
    text-align: center;
}
.cat {
    text-align: center;
    margin-top: 3vh;
}
.h-cat1 {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid var(--white);
}
.cat-img1 {
    background-image: url(../images/cat.jpg);
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    width: 70%;
    height: 30vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.cat-img2 {
    background-image: url(../images/cat-r3.jpg);
    position: relative;
    background-size: cover;
    width: 70%;
    height: 20vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.cat-img3 {
    background-image: url(../images/cat-k2.jpg);
    position: relative;
    background-size: cover;
    width: 70%;
    height: 20vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.p-cat1 {
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: -10vh;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    border-radius: 5px;
}
.p-cat2 {
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    border-radius: 5px;
}
.p-cat3 {
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    border-radius: 5px;
}
.sauna {
    text-align: center;
    margin-top: 3vh;
}
.h-sauna {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 3vh;
    border-bottom: 1px solid var(--white);
}
.sauna-img {
    background-image: url(../images/sauna-miya2.jpg);
    position: relative;
    background-size: cover;
    width: 70%;
    height: 20vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.p-sauna {
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    border-radius: 5px;
}
.golf {
    text-align: center;
    margin-top: 3vh;
}
.h-golf {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 3vh;
    border-bottom: 1px solid var(--white);
}
.golf-img {
    background-image: url(../images/golf.jpg);
    position: relative;
    background-size: cover;
    width: 70%;
    height: 20vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.p-golf {
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    border-radius: 5px;
}
.cooking {
    text-align: center;
    margin-top: 3vh;
}
.h-cooking {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 3vh;
    border-bottom: 1px solid var(--white);
}
.cooking-img {
    background-image: url(../images/cooking.jpg);
    position: relative;
    background-size: cover;
    width: 70%;
    height: 20vh;
    margin-top: 2vh;
    margin-left: 15%;
    margin-right: 15%;
    z-index: 3;
}
.p-cooking {
    font-family: sans-serif;
    font-size: 1rem;
    vertical-align: 1.2;
    width: 70%;
    margin-top: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    text-align: left;
    font-weight: 100;
    border-radius: 5px;
}
/*job.html-------------------------------------------------------*/
.job-img {
    background-image: url(../images/suits-1p.jpg);
    background-size: contain;
    margin-top: 2vh;
    margin-left: 8vw;
    width: 84vw;
    height: 52vh;
    position: relative;
    z-index: 1;
}
.job {
    text-align: center;
}
.h-job {
    font-size: 2rem;
    font-weight: bold;
}
.p-job {
    font-size: 1rem;
    font-weight: bold;
}
.tr-qa {
    display: flex;
    flex-direction: column;
    margin-top: 3vh;
    align-items: center;
}
.th-qa {
    width: 80%;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid #bbb;
    margin: 0 auto;
}
.td-qa {
    margin-top: .5rem;
    width: 80%;
}
.job-contact {
    text-align: center;
}
.p-job2 {
    margin-bottom: 2rem;
}
.a-contact {
    display: inline-block;
    color: var(--white);
    font-size: 1.5rem;
    border: 1px solid var(--white);
    padding: .5rem;
    transition: .3s ease;
    border-radius: 5px;
}
.a-contact:hover {
    color: var(--hovercolor);
    transform: scale(1.1);
}
/*contact-----------------------------------------------------*/
.contact-hero {
    text-align: center;
}
.h-contact {
    font-size: 2rem;
}
form {
    padding: 0 2rem;
}
table {
    width: 100%;
    border-collapse: collapse;
}

table tr {
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

table th,
table td {
    display: block;
    width: 100%;
}

table th {
    text-align: left;
    font-weight: bold;
    margin-bottom: .5rem;
}

table td {
    margin-bottom: 1rem;
}
input[type=text],
input[type=email],
input[type=password] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}
textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1rem;
    min-height: 120px;
    background-color: var(--white);
    border-radius: 5px;
}
.btn {
    width: 100%;
    font-size: 1rem;
    border: #fff 2px solid;
    color: var(--white)!important;
    margin-top: 4rem;
    background-color: var(--black);
    padding: .5rem;
    transition: .3s ease;
    border-radius: 5px;
}
.btn-primary {
    color: var(--white) !important;
}
.text-center {
    font-weight: bold;
}
input, select {
  color: var(--black);
  background-color: var(--white);
  font-size: 1rem;
  opacity: 1;
  padding: 10px;
  border-radius: 5px;
}
.btn:hover {
   transform: scale(1.1);
}
/*confirm-------------------------------------------------------------------------*/
.confirm-hero {
    text-align: center;
    margin-top: 15vh;
    margin-bottom: 3vh;
    flex: 1;
}
.stripe.confirm {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.h-confirm {
    font-size: 1.5rem;
    font-weight: bold;
}

.p-confirm {
    font-size: 1rem;
}

.message-box {
    border: 1px solid #ccc;
    padding: 12px;
    min-height: 180px;
    width: 90%;
    margin: 2vh auto;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}
.btn-re {
    padding: .4rem;
    border-radius: 5px;
}
/*thanks-------------------------------------------------*/
.thanks {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;     
}
.h-thanks {
    font-size: 2rem;
    font-weight: bold;
}
.p-thanks {
    font-size: 1rem;
}
/*signup--------------------------------------------*/
.signup-hero {
    text-align: center;
    margin-top: 2rem;
    border-radius: 5px;
}
.s-label {
    display: flex;
    flex-direction: column;
    margin-top: .3rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}
label {
    width: 100%;
    font-weight: bold;
    text-align: left;
    margin-bottom: .5rem;
    border-radius: 5px;
}
/*signupthanks---------------------------------------*/
.thanks {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    flex: 1;    
}
.h-thanks {
    font-size: 2rem;
    font-weight: bold;
}
.p-thanks {
    font-size: 1rem;
}
/*login-----------------------------------------------------*/
.login-hero {
    text-align: center;
    flex: 1;                       
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
.l-form {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
}
.label-input {
    width: 100%;
    padding: .5rem;
    line-height: 1.5;
    border-radius: 5px;
}
.l-form div {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    border-radius: 5px;
}
.login-hero h1 {
    margin-bottom: 20px;
}
.l-btn {
    width: 100%;
    color: var(--white);
    background-color: var(--black);
    border: #fff 2px solid;
    padding: .5rem;
    transition: .3s ease;
    margin: 2rem auto 0;
    border-radius: 5px;
}
.l-btn:hover {
   transform: scale(1.1);
}
/*mypage---------------------------------------------*/
.mypage-hero {
    text-align: center;
    flex: 1;                       
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}
.h-mypage {
    font-size: 2rem;
    font-weight: bold;
}
.ul-mypage {
    list-style: none;
}
.mypage-nav a {
  display: block;
  padding: 10px;
  color: var(--white);
  text-decoration: none;
}
.mypage-nav a:hover {
  color: var(--hovercolor);
}
/*edit-------------------------------------*/
  .mypage-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;   
    align-items: center;    
    gap: 16px;
    flex: 1;
  }

  .mypage-container h2 {
    margin-top: 40px;
    font-size: 2rem;
    text-align: center;
  }

  .mypage-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mypage-container label {
    width: 100%;
    text-align: left;   
    border-radius: 5px;      
  }

  .mypage-container input {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border-radius: 5px;
  }

  .mypage-container button {
    width: 100px;        
    margin: 30px auto;   
    display: block;  
    border-radius: 5px;   
  }

  .mypage-container a {
    margin-top: 12px;
    color: var(--white);
    text-align: center;
  }
.success {
    color: var(--white);
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
/*問い合わせ履歴----------------------------------------*/
.contacthistory-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh; 
}
.contacthistory-table {
    border-collapse: collapse;
    width: 80%; 
    max-width: 800px;
    text-align: left;
}
.contacthistory-table th {
    color: white;
    padding: 10px;
}
.contacthistory-table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}
.back-btn {
    width: 80px;
    background-color: var(--white);
    padding: .5rem;
    transition: .3s ease;
    margin: auto;
    border-radius: 5px;
}
.back-btn-area a {
    color: var(--black);
}
.back-btn-area {
    margin-top: 2rem;
    border-radius: 5px;
}
.back-btn:hover {
    transform: scale(1.2);
}

/* お問い合わせ履歴がない場合のメッセージ */
.contacthistory-container p {
    font-size: 1.2rem;
    color: var(--white);
}
/*logout----------------------*/
.logout {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 5px;
}
.logout:hover {
    color: var(--hovercolor);
}

.f-logout {
    color: var(--white);
}
.f-logout:hover {
    color: var(--hovercolor);
}


/*デスクトップ版-------------------------------------------------------------------------------------------------------------------*/
@media(min-width: 800px) {
.stripe {
    width: 100%;
  background: repeating-linear-gradient(-45deg, #181818 0, #181818 2px, #000000 4px, #000000 6px)
}
/*home.html*/
.home-hero {
    background: url('../images/okinawa-away1-b.jpg') no-repeat center / 100vw;
    background-size: cover;
    height: 100vh;
    text-align: center;
}
.home-hero h1 {
   font-family: "Kaushan Script", cursive;
   font-size: 4rem;
   color: var(--white);
   align-items: center;
   margin: auto;
   margin-top: 50vh;
   margin-bottom: 2rem;
   background: none;
   padding: 1.5rem;
   display: inline-block;
}
.home-hero h2 {
   font-family: "Yuji Syuku", serif;
   font-size: 2rem;
   color: var(--white);
   position: relative;
   writing-mode: horizontal-tb;
   right: none;
   top: none;
   align-items: center;
   margin: auto;
   margin-top: -40vh;
   margin-bottom: 2rem;
   background: none;
   padding: 1.5rem;
   display: block;
}
.wrapper {
    background-color: #124ac4;
    background-size: cover;
    background-blend-mode: multiply;
    align-items: center;
}
/*ナビゲーション*/
.btn-menu{
    position: absolute;
    margin-top: 2vh;
    margin-right: 2vw;
}
.main-nav {
    height: 100vh;
    padding-top: 50px;
}

.main-nav li {
    margin-top: 5vh;
}
.main-nav.open-menu {
    width: 15%;
}
/*content*/
.content {
   max-width: 100vw;
   margin-top: 3vh;
}
.img1 {
    width: 30vw;
    height: 45vh;
    margin-top: 1vh;
    margin-left: 2vw;
    position: relative;
    z-index: 10;
}
.img1-back {
    background-color: var(--blackblue);
    width: 30vw;
    height: 45vh;
    margin-top: 9vh;
    margin-left: 18vw;
    padding-top: 2vh;
    position: relative;
    z-index: 0;
}
.img1-back::after {
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    z-index: 1;
    border: 1px solid var(--white);
    top: 1rem;
    left: 1rem;
    position: absolute;
}

.img2 {
    width: 28vw;
    height: 35vh;
    margin-left: -1vw;
    position: relative;
    z-index: 10;
}
.img2-back {
    background-color: var(--blackblue);
    width: 26vw;
    height: 35vh;
    margin-top: -20vh;
    margin-left: 55vw;
    position: relative;
    z-index: 0;
}
h3 {
    font-family: "Yuji Syuku", serif;
    font-size: 6rem;
    position: relative;
    z-index: 2;
    margin-top: -16vh;
    margin-left: 19vw;
    line-height: 1.3;
}
.font3 {
    background: none;
}
.img3 {
    width: 80vw;
    position: relative;
    z-index: 7;
    margin-left: 1vw;
    margin-right: -3vw;
    margin-top: -1vh;
}
.img3-back {
    background-color: var(--blackblue); 
    width: 50%;
    height: 40%;
    margin-left: 15vw;
    position: relative;
    z-index: 6;
    
}
.p1 {
    align-items: center;
    font-size: 24px;
    border: 2px solid var(--white);
    padding: 2rem;
    margin-right: 20vw;
    width: 50%;
    height: 30%;
}
.content-profile {
   color: var(--white);
   font-weight: bold;
   border-bottom: var(--black) 1px solid;
   margin-top: 2rem;
}
.content-profile:hover {
    color: var(--hovercolor);
    scale: calc(1.1 1.1);
}
h5 {
    font-size: 30px;
}
/*news--------------------------------------*/
.h-news {
    font-family: sans-serif;
    font-size: 3rem;
    margin-top: 10vh;
    color: var(--white);
}
.news {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin-top: 3vh;
    margin-bottom: 5vh;
}
.news a {
    color: var(--white);
    font-size: 1.5rem;
    border: 1.5px solid var(--white);
    padding: .5rem;
    transition: .3s ease;
}
.news a:hover {
    color: var(--hovercolor);
    transform: scale(1.2);
}
/*フッター----------------------------------------------------*/
.h-info {
    text-align: center;
    font-family: sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-top: 3vh;
}
.info-a {
    gap: 120px;
}
.footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}
/*プロフィール------------------------------------------------*/
.h11 {
    font-size: 2.5rem;
}
.h10 {
   font-size: 10rem;
   margin-top: 5rem;
   margin-left: 6rem;
}
.profile-img {
    background-image: url(../images/reyso30-sp.jpg);
    margin-top: -30vh;
    margin-left: 40vw;
    position: relative;
}
.h12 {
    font-size: 2.5rem;
    margin-top: 5vh;
}
.grid {
    width: 80vw;
    gap: 2vw;
    grid-template-columns: repeat(3, 26vw);
    grid-template-rows: repeat(4, 26vw);
    margin-left: 10vw;
}
.lum-lightbox-inner img {
    max-width: 70vw;
    max-height: 70vh;
    height: auto;
    position: relative;
    margin: auto;
}
.lum-lightbox-caption {
    font-size: 1.5rem;
    margin-top: 1vh;
    padding: 1rem;
}

/*life-----------------------------------------------*/

.life-img {
    background-image: url(../images/pin-sp.jpg);
    background-size: contain;
    margin-top: -30vh;
    margin-left: 41vw;
}
.h20 {
    font-size: 3rem;
}
.p20 {
    font-size: 1.5rem;
}
.cat {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}
.display-cat1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
}
.cat-img1 {
    width: 100%;
    height: 40vh;
    margin-top: 0;
    margin-left: 1vw;
    margin-right: 1vw;
    position: relative;
    z-index: 3;
    
}
.p-cat1 {
    font-size: 1.5rem;
    width: 60%;
    margin-top: -5vh;
    margin-left: 1vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
    position: relative;
    z-index: 0;
}
.display-cat2 {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.cat-img2 {
    width: 60%;
    height: 40vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    
}
.p-cat2 {
    font-size: 1.5rem;
    width: 20vw;
    margin-top: 0;
    margin-left: 0vw;
    margin-right: 2vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
}
.display-cat3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}
.cat-img3 {
    width: 60%;
    height: 40vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    
}
.p-cat3 {
    font-size: 1.5rem;
    width: 20vw;
    margin-top: 0;
    margin-left: 2vw;
    margin-right: 2vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
}
.sauna {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}
.display-sauna {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}
.sauna-img {
    background-size: cover;
    width: 60%;
    height: 40vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.p-sauna {
    font-size: 1.5rem;
    width: 30vw;
    margin-top: 0;
    margin-left: 2vw;
    margin-right: 2vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
}
.golf {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}
.display-golf {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}
.golf-img {
    background-size: cover;
    width: 60%;
    height: 40vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.p-golf {
    font-size: 1.5rem;
    width: 30vw;
    margin-top: 0;
    margin-left: 2vw;
    margin-right: 2vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
}
.cooking {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
}
.display-cooking {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
}
.cooking-img {
    background-size: cover;
    width: 60%;
    height: 40vh;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
}
.p-cooking {
    font-size: 1.5rem;
    width: 30vw;
    margin-top: 0;
    margin-left: 2vw;
    margin-right: 2vw;
    border: 1.5px dotted var(--white);
    padding: 1.5rem;
}
/*job--------------------------------------------------*/
.job-img {
    width: 100%;
    height: 60vh;
    margin-left: 38vw;
    margin-top: -20vh;
}
.job {
    margin-top: 5vh;
}
.h-job {
    font-size: 2.5rem;
}
.td-qa,
.th-qa {
    width: 50%;
}

/*contact---------------------------------------------------*/
.contact-hero {
    text-align: center;
}
.h-contact {
    font-size: 4rem;
}
input, select {
    width: 20vw;
}
form {
    max-width: 800px;
    margin: 0 auto;
}
/*confirm-------------------------------------------------------------------------*/
.confirm-hero {
    margin-top: 15vh;
}

.h-confirm {
    font-size: 2rem;
}

.p-confirm {
    font-size: 1rem;
    }

.message-box {
    width: 20vw;
}
.btn-re {
    padding: .5rem;
}
}
