@charset "utf-8";
/*
Theme Name: Ouraya v3
Author: ouraya.co.jp
Version: 3.0
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}

body {
  color: #231917;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, Verdana, '游ゴシック', 'Yu Gothic', '游ゴシック体',
    'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo UI', 'メイリオ', Meiryo, 'MS Pゴシック',
    'MS PGothic', sans-serif;
}
a {
  color: #62463c;
  transition: all 0.2s;
}
a:hover {
  color: #71584f;
}
:root {
  --main-color: #231917;
  --sub-color: #a6937c;
  --accent-color: #ed724c;
  --bg-color: #fef8f1;
	--bg-color-transparent: rgba(254, 248, 241, 0.95);
  --footer-color: #231917;
  --form-bg-color: #f6eee4;
  --link-color: #62463c;
  --link-hover-color: #71584f;
  --heading-font: 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3',
    'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'MS P明朝', 'MS 明朝', serif;
  --section-padding: 24px 0 40px;
  --content-padding: 0 16px;
}
@media screen and (min-width: 768px) {
  :root {
    --section-padding: 40px 0 48px;
    --content-padding: 0 24px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --section-padding: 48px 0 56px;
  }
}


video, iframe { width: 100%!important; } /* 作業用・あとで消す */


#header {
  background-color: var(--bg-color-transparent);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	height: 72px;
}
#main {
  background-image: url('./assets/images/main-bg.jpg');
  background-repeat: repeat;
  background-color: #fff;
  background-size: contain;
	padding-top: 72px;
}
@supports (background-image: url('./assets/images/main-bg.webp')) {
  #main {
    background-image: url('./assets/images/main-bg.webp');
  }
}
#footer {
  background-color: var(--footer-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
	#header {
		height: 88px;
	}
	#main {
		padding-top: 88px;
	}
}
@media screen and (min-width: 960px) {
  #header {
		height: 168px;
    position: relative;
    box-shadow: none;
  }
  #main {
    padding-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .pc-only {
    display: none !important;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: relative;
}
.header-content .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
.header-content .logo a {
  display: block;
}
.header-content .logo img {
  width: 140px;
  height: 56px;
  object-fit: contain;
}

.global-navigation {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
}
.global-navigation-content {
  position: absolute;
  top: 72px;
  right: -100vw;
  visibility: hidden;
  background-color: transparent;
  width: 100vw;
  height: calc(100vh - 72px);
  overflow-y: auto;
  transition: all 0.2s;
}
.active .global-navigation-content {
  visibility: visible;
  right: 0;
  background-color: var(--bg-color-transparent);
}
.global-navigation-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 101;
}
.global-navigation-button-icon {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: all 0.3s;
}
.global-navigation-button-icon::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: -9px;
  left: 0;
  transition: all 0.3s;
}
.global-navigation-button-icon::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -9px;
  left: 0;
  transition: all 0.3s;
}
.active .global-navigation-button-icon {
  background-color: transparent;
}
.active .global-navigation-button-icon::before {
  top: 0;
  transform: rotate(225deg);
}
.active .global-navigation-button-icon::after {
  bottom: 0;
  transform: rotate(-225deg);
}
.global-navigation-list {
  width: 100%;
  padding: 20px 16px 40px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0s;
}
.global-navigation-list li {
  width: 100%;
  border-bottom: solid 1px #ddd;
  position: relative;
}
.global-navigation-list li a {
  display: block;
  font-size: 14px;
	font-weight: bold;
  line-height: 48px;
	color: var(--main-color);
}
.active .global-navigation-list {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}

.global-navigation-list-child-toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
.global-navigation-list-child-toggle::before {
  content: '+';
  font-size: 18px;
  color: var(--main-color);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.global-navigation-list-child {
  display: none;
}
.active + .global-navigation-list-child {
  display: block;
}
.global-navigation-list-child li {
  padding-left: 16px;
  border-bottom: none;
  border-top: solid 1px #ddd;
}
.global-navigation-list-child li a {
  font-size: 13px;
}
.global-navigation-list-child-toggle.active::before {
  content: '-';
}


.header-cta {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--link-color);
  padding: 0 24px 64px;
}
.active .header-cta {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}
.header-cta-tel .text {
  font-size: 13px;
	display: flex;
	flex-wrap: wrap;
	gap: 0 8px;
	justify-content: center;
  margin-bottom: 8px;
}
.header-cta-tel .text .time{
	font-weight: bold;
}
.header-cta-tel .number {
  font-size: 36px;
	font-family: var(--heading-font);
  line-height: 1;
	text-align: center;
  margin-bottom: 16px;
}
.header-cta-tel .number a {
	color: var(--main-color);
}
.header-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.header-cta-buttons .contact {
  display: inline-block;
  padding: 16px 24px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
	border-radius: 4px;
}
.header-cta-buttons a:hover {
  background-color: #422f2b;
}
@media screen and (min-width: 768px) {
  .header-content {
    height: 88px;
  }
  .header-content .logo {
		padding: 0 16px;
	}
  .header-content .logo img {
    width: 160px;
    height: 64px;
  }
  .social-links {
    gap: 16px;
    padding-right: 88px;
  }
  .social-link a {
    padding: 4px;
  }

  .global-navigation {
    width: 88px;
    height: 88px;
  }
	.global-navigation-list {
		padding: 20px 24px 40px;
	}
  .global-navigation-button {
    width: 88px;
    height: 88px;
  }
  .global-navigation-content {
    top: 88px;
    height: calc(100vh - 88px);
  }
}

@media screen and (min-width: 960px) {
  .header-content {
    height: 168px;
    align-items: flex-start;
  }
  .header-content .logo {
    height: 120px;
    padding: 0 24px;
    z-index: 101;
  }
  .header-content .logo img {
    width: 200px;
    height: 72px;
  }
  .global-navigation {
    width: 100%;
  }
  .global-navigation-button {
    display: none;
  }
  .global-navigation-content {
    visibility: visible;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    overflow-y: visible;
  }
  .global-navigation-list {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 120px 24px 0;
    height: 168px;
  }
  .global-navigation-list > li {
    width: auto;
    border-bottom: none;
  }
  .global-navigation-list > li > a {
    line-height: 32px;
    padding: 0 12px 16px;
  }
  .global-navigation-list-child-toggle {
    display: none;
  }
  .global-navigation-list li.has-child {
    position: relative;
  }
  .global-navigation-list-child {
    display: block;
    position: absolute;
    top: 96%;
    left: 0;
    height: 0px;
    width: 240px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }
  .global-navigation-list li.has-child:hover .global-navigation-list-child,
  .global-navigation-list li.has-child:focus-within .global-navigation-list-child {
    height: auto;
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  .global-navigation-list-child a {
    padding: 0 16px;
  }
  .global-navigation-list-child li {
    padding-left: 0;
  }
  .global-navigation-list-child li:first-child {
    border-top: none;
  }

  .header-cta {
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header-cta-tel {
    display: flex;
    flex-direction: column-reverse;
  }
  .header-cta-tel .number {
    margin-bottom: 0;
		text-align: right;
  }
  .header-cta-tel .text {
    text-align: right;
    margin-bottom: 0;
  }
  .header-cta-buttons {
    padding: 0 24px 0 16px;
  }
  .header-cta-buttons .contact {
    padding: 16px 20px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1080px) {
  .global-navigation-list > li > a {
    padding: 0 12px 16px;
  }
}
@media screen and (min-width: 1280px) {
  .global-navigation-list > li > a {
    font-size: 15px;
    padding: 0 16px 16px;
  }
}


.section {
	padding: var(--section-padding);
}
.section-content {
	padding: var(--content-padding);
}
.section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 24px;
}
.section-title {
	font-size: 20px;
	font-family: var(--heading-font);
	font-weight: bold;
	line-height: 1.2;
	color: var(--main-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section-subtitle {
	font-size: 14px;
	font-family: var(--heading-font);
	font-weight: bold;
	line-height: 1.4;
	margin-top: 8px;
	color: var(--sub-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (min-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 17px;
  }
}

.section-title.underlined {
	position: relative;
	margin-bottom: 16px;
}
.section-title.underlined::before {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	border-radius: 2px;
	background-color: var(--main-color);
	position: absolute;
	bottom: -12px;
}

.learn-more {
	padding-top: 40px;
  text-align: center;
}
.learn-more a {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--link-color);
  color: #fff;
  font-size: 16px;
	font-weight: bold;
	border-radius: 2px;
	position: relative;
}
.learn-more a:hover {
  background-color: var(--link-hover-color);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.learn-more a::before {
  content: '';
  display: block;
	width: 8px;
	height: 8px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
}
@media screen and (min-width: 768px) {
	.learn-more {
		padding-top: 48px;
	}
}

.section.dark-bg {
	background-image: url('./assets/images/dark-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: var(--main-color);
	color: #fff;
}
@supports (background-image: url('./assets/images/dark-bg.webp')) {
  .section.dark-bg {
    background-image: url('./assets/images/dark-bg.webp');
  }
}
.section.dark-bg .section-title {
	color: #fff;
}
.section.dark-bg .section-subtitle {
	color: var(--bg-color);
}
.section.dark-bg .learn-more a {
	background-color: #fff;
	color: var(--link-color);
}
.section.dark-bg .learn-more a:hover {
	background-color: var(--bg-color);
	color: var(--link-hover-color);
}
.section.dark-bg .learn-more a::before {
	border-top-color: var(--link-color);
	border-right-color: var(--link-color);
}

.section-body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.section-body-image {
	width: 100%;
}
.section-body-image img {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
}
.section-body-text {
	width: 100%;
}
.section-body-text > p:not(:last-child) {
	margin-bottom: 16px;
}
.section-body-text.text-small {
	font-size: 14px;
}
.section-body-text .learn-more a {
	padding: 12px 40px;
}
.section-body-header {
  text-align: center;
	margin-bottom: 16px;
	font-family: var(--heading-font);
	border-bottom: 1px solid #ccc;
	padding-bottom: 12px;
}
.section-body-title {
  font-size: 18px;
  font-weight: bold;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.section-body-subtitle {
	font-size: 14px;
	font-weight: bold;
	color: var(--link-color);
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media screen and (min-width: 768px) {
  .section-body.image-left {
    flex-direction: row;
  }
	.section-body.image-right {
		flex-direction: row-reverse;
	}
	.section-body-image {
		width: 40%;
	}
	.section-body.image-left .section-body-text,
	.section-body.image-right .section-body-text {
		width: calc(60% - 24px);
	}
	.section-body-text.text-small {
		font-size: 15px;
	}
	.section-body-text .learn-more {
		text-align: left;
		padding-top: 32px;
	}
}

.static-page-header-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 200px;
	width: 100%;
}
.static-page-header-content .hero-image {
	height: 200px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.static-page-header-content .hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.static-page-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 12px;
	color: var(--main-color);
	font-family: var(--heading-font);
	text-shadow: white 1px 1px 10px, white -1px 1px 10px, white 1px -1px 10px, white -1px -1px 10px, white -1px -1px 10px, white -1px -1px 10px, white -1px -1px 10px;
	z-index: 2;
}
.static-page-title-label {
	font-size: 15px;
	font-family: var(--heading-font);
	color: #fff;
	background-color: var(--main-color);
	padding: 4px 16px;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
	border-radius: 4px;
	z-index: 2;
}
@media screen and (min-width: 768px) {
  .static-page-header-content {
    height: 240px;
  }
  .static-page-header-content .hero-image {
    height: 240px;
  }
	.static-page-title {
		font-size: 32px;
	}
	.static-page-title-label {
		font-size: 16px;
	}
}
@media screen and (min-width: 960px) {
  .static-page-header-content {
    height: 400px;
  }
  .static-page-header-content .hero-image {
    height: 400px;
  }
	.static-page-title {
		font-size: 44px;
	}
	.static-page-title-label {
		font-size: 18px;
	}
}

.breadcrumbs {
	display: none;
	padding: var(--content-padding);
	background-color: #fff;
}
.breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	padding: 4px 0;
	gap: 8px;
}
.breadcrumbs li a {
	font-size: 12px;
	line-height: 1.2;
}
.breadcrumbs li a:hover {
	text-decoration: underline;
}
.breadcrumbs li a::after {
	content: '>';
	margin-left: 8px;
	display: inline-block;
}
.breadcrumbs li span {
	font-size: 12px;
	line-height: 1.2;
	color: #666;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    display: block;
  }
}
