@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

/* ここから指定 */
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-size: 1rem;
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  background-image: url(img/main-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  margin: 0;
}
.full {
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* ヘッダー */
header {
  height: 260px;
  background-color: rgba(0, 128, 128, 0.8);
  padding-top: 50px;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.top {
  height: 260px;
  margin: 0 auto;
  background-image: url(img/top.png);
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-btn {
	position: relative;
  width: 600px;
	height: 80px;
    max-width: 90%;  
	margin: 0 auto;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}


.logo img {
  width: 600px;
  max-width: 90%;  
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.logo-btn:hover img:nth-of-type(2) {
	opacity: 0;
}
/* メニュー */
nav ul {
  display: flex;
  margin: 20px 20px;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  font-size: 1.4rem;
  font-family: "DotGothic16", sans-serif;
  color: #ffffff;
  background-color: rgba(0, 128, 128, 0.8);
  display: inline-block;
  min-width: 150px;
  line-height: 50px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

nav ul li a:hover {
  background-color: rgba(1, 160, 209, 0.5);
}

/* サブメニュー用 */
header p a {
  font-size: 1.2rem;
  color: #ffffff;
}

header p a:hover {
  color: #00ffbf;
}

label input {
  display: none;
}

/* フッター */
footer {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgba(0, 128, 128, 0.8);
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

footer p {
  margin: 10px auto;
  text-align: center;
}

/* メインエリア要素背景位置指定 */
main {
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  flex: auto;
}

/* タイトル用div */
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title h2 {
  font-size: 2rem;
  font-family: "DotGothic16", sans-serif;
  margin: 30px 10px 20px;
}

.text {
  width: 90%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  padding-bottom: 20px;
  margin: 0 auto;
  border-radius: 10px;
}

/* コンテンツ内共通部分を微調整 */
.kind {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0px auto 0;
  align-items: flex-start;
}

.kind img {
  min-width: 40%;
  margin-top: 10px;
  border-radius: 10px;
}

.kind-text {
  min-width: 55%;
  margin: 10px 0 0 5%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
}

/* エリア内の順番を反転 */
.reverse {
  flex-direction: row-reverse;
}

/* 反転部分の文章余白を調整 */
.reverse .kind-text {
  margin: 10px 5% 0 0;
}

/* 中見出し・文章調整 */
.kind-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 20px;
}

/* 中見出し装飾(線だけなのでcontentは空白) */
.kind-text h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #150766;
  margin-top: 10px;
}

/* 文章のスタイル */
.kind-text p {
  font-size: 0.94rem;
  line-height: 25px;
  margin-top: 10px;
}

/* フォト */
.list-box {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  margin: 0px auto 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.list {
  display: inline-block;
  width: 100%;
  height: 250px;
  margin: 5px auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.list a img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.list a:hover img {
  transform: scale(1.2);
}

.list a p {
  font-size: 0.81rem;
  line-height: 20px;
  align-items: center;
  width: 100%;
  height: 250px;
  background-color: rgba(198, 248, 255, 0.4);
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.list a {
  display: block;
}

/* コンタクト */
input[type="text"],
input[type="email"],
textarea {
  background-color: rgba(255, 255, 255, 0.5);
  border: #0b3872 solid 1px;
  border-radius: 5px;
  width: 50%;
}

.form-area {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}

.form-area dt {
  width: 200px;
  padding: 15px 0;
  font-size: 0.94rem;
  font-weight: bold;
  line-height: 20px;
}

.form-area dd {
  width: calc(100% - 200px);
  padding: 10px 0;
}

.form-area dt .required::after {
  content: '必須';
  font-size: 0.69rem;
  color: #eb4f32;
  margin-left: 10px;
}

.input-text {
  width: 100%;
  max-width: 280px;
  height: 40px;
  padding: 0 10px;
}

.message {
  width: 90%;
  height: 100px;
  padding: 10px;
  line-height: 1.5;
}

.confirm-text {
  font-size: 0.88rem;
  margin-top: 5px;
  text-align: center;
}

.submit-button {
  background-color: rgba(0, 128, 128, 0.8);
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: "DotGothic16", sans-serif;
  font-size: 0.88rem;
  color: #ffffff;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
  border: none;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.submit-button:hover {
  background-color: rgba(1, 160, 209, 0.5);
}

.button {
  text-align: center;
}

iframe {
  min-width: 40%;
  height: 250px;
  margin-top: 10px;
  border-radius: 10px;
}

.kind-text p a {
  font-size: 1.2rem;
  font-family: "DotGothic16", sans-serif;
  color: #ffffff;
  background-color: rgba(0, 128, 128, 0.8);
  display: inline-block;
  min-width: 150px;
  line-height: 30px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.kind-text p a:hover {
  background-color: rgba(1, 160, 209, 0.5);

}


.text a {
  font-size: 1.2rem;
  font-family: "DotGothic16", sans-serif;
  color: #ffffff;
  background-color: rgba(0, 128, 128, 0.8);
  display: inline-block;
  min-width: 150px;
  line-height: 30px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.text a:hover {
  background-color: rgba(1, 160, 209, 0.5);

}

/* フォト各ページ */
.photo {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 300px);
  gap: 10px;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

li img {
  border-radius: 10px;
}

/* 京都 */
.item1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.item2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.item3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.item4 {
  grid-column: 2/ 3;
  grid-row: 2 / 3;
}

.item5 {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

.item6 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.item7 {
  grid-column: 1 / 4;
  grid-row: 4 / 5;
}

.item8 {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
}

.item9 {
  grid-column: 2 / 4;
  grid-row: 5 / 6;
}

/* 神戸 */
.item10 {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}

.item11 {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.item12 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item13 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.item14 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.item15 {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.item16 {
  grid-column: 3 / 4;
  grid-row: 4 / 6;
}

/* すみだ */
.item18 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.item19 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.item20 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.item21 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item22 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.item23 {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.item24 {
  grid-column: 1 / 2;
  grid-row: 4 / 6;
}

.item25 {
  grid-column: 2 / 4;
  grid-row: 4 / 5;
}

.item26 {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
}

.item27 {
  grid-column: 3 / 4;
  grid-row: 5 / 6;
}

.h-top {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 100;
}

.box0 {
  min-width: 40%;
  margin-top: 10px;
  background-color: #fff;
  margin-bottom: 5px;
 padding: 1%;
   border-radius: 10px;
}

.box1 {
  width: 100%;
  padding: 5%;
  border: 1px solid black;
  background-color: #fff;
  border-radius: 5px;
  font-size: 0.85rem;
}
.box1 span {
  color: #686f72;
}
/* コンテンツ内共通部分を微調整 */
.box-f {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0px auto 0;
  align-items: flex-start;
}

.box-text {
  min-width: 55%;
  margin: 10px 5% 0 0 ;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: 10px;
}
/* 中見出し・文章調整 */
.box-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 20px;
}

/* 中見出し装飾(線だけなのでcontentは空白) */
.box-text h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #150766;
  margin-top: 10px;
}

/* 文章のスタイル */
.box-text p {
  font-size: 0.94rem;
  line-height: 25px;
  margin-top: 10px;
}
.box-text p img {
  width: 60%;
}
.fc {
  width: 100px;
}



/* モバイル */
@media (max-width: 800px) {
  body {
    overflow-x: hidden;
  }

  header {
    height: 200px;
    padding-top: 40px;
    background-color: rgba(0, 128, 128, 0.8);
    position: relative;
  }

  .inner {
    width: 90%;
    margin: 0 auto;
  }

  .top {
    height: 200px;
    background-size: 100%;
    align-items: center;
  }

  .logo img {
    width: 90%;
  }

  nav ul {
    display: block;
    text-align: center;
  }

  .title h2 {
    font-size: 1.5rem;
    margin: 10px 5px;
  }

  /* コンタクト */
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
  }

  .form-area {
    padding: 10px;
  }

  .form-area dt {
    width: 100%;
    padding: 10px 0 0;
  }

  .form-area dd {
    width: 100%;
    padding: 10px 0;
  }

  .input-text {
    width: 100%;
    height: 40px;
    padding: 0 10px;
  }

  .message {
    width: 100%;
    padding: 10px;
  }

  .confirm-text {
    margin-top: 0px;
    text-align: center;
  }

  /* ハンバーガーメニュー */
  label .menu {
    position: absolute;
    right: -100px;
    top: -100px;
    z-index: 200;
    width: 180px;
    height: 180px;
    background-color: rgba(0, 128, 128);
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 rgba(0, 128, 128), 0 0 0 0 rgba(0, 128, 128);
    cursor: pointer;
    display: inline-block;
  }

  label .hamburger {
    position: absolute;
    top: 125px;
    left: 40px;
    width: 30px;
    height: 2px;
    background: #123e68;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  /* 起動ボタンの部分 */
  label .hamburger:after,
  label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #69d2e7;
  }

  label .hamburger:before {
    top: -10px;
  }

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

  label input:checked+.menu {
    box-shadow: 0 0 0 100vw rgba(0, 128, 128), 0 0 0 100vh rgba(0, 128, 128);
    border-radius: 0;
  }

  label input:checked+.menu .hamburger {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  label input:checked+.menu .hamburger:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 0;
  }

  label input:checked+.menu .hamburger:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
  }

  label ul {
    z-index: 200;
    position: absolute;
    top: 50%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    visibility: hidden;
  }

  label input:checked+.menu+ul {
    opacity: 1;
    visibility: visible;
  }

  .kind {
    display: block;
    width: 100%;
  }

  .kind-text {
    margin: 10px auto 0;
    width: 100%;
    display: block;
  }

  .reverse .kind-text {
    margin: 10px auto 0;
    width: 100%;
    display: block;
  }

  .kind img {
    width: 50%;
    margin: 20px auto 10px;
    display: block;
  }

  /* フォトページ */
  .photo {
    width: 100%;
  }

  iframe {
    width: 100%;
    margin: 20px auto 0;
  }

  .text {
    width: 100%;
  }

  header p {
    margin-top: 10px;
  }

  .box-f {
    display: block;
    width: 100%;
  }

  .box-text {
    margin: 10px auto 0;
    width: 100%;
    display: block;
  }
}