@charset "utf-8";


:root {
  --main-text-color: #341f10;
  --sub-text-color: #e6701a;
  --background-color: #fff0ca;

  --font-base-size: 16px;
}


.ab {	position: absolute; }
.lt, .rt { width: 50%; }
.rt { margin-left: auto; }
.c-btn {
  display: block;
  margin: 2em auto;
  padding: 1em 0;
  border: 2px solid var(--sub-text-color);
  color: var(--sub-text-color);
  font-weight: bold;
  text-align: center;
  transition: .3s;
}
.c-btn.circle {
  background: var(--background-color);
  color: var(--sub-text-color);
  overflow: hidden;
  position: relative;
  transition-duration: .4s;
  z-index: 2;
}
.c-btn.circle::after {
  background: var(--sub-text-color);
  border-radius: 50%;
  content: "";
  display: block;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity .5s, transform 0s;
  transition-delay: 0s, .4s;
}
 
.c-btn.circle:hover {
  color: var(--background-color)
}
.c-btn.circle:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}
.selector::before {
  content: "\25B6";   /* Unicode文字の▶ */
  margin-right: .25em;
}
.c-btn:hover .selector.up::before { content: "\25B2"; }   /* Unicode文字の▲ */
.c-btn:hover .selector.down::before { content: "\25BC"; }   /* Unicode文字の▼ */

.attention {
  background-color: #fff;
  border: 1px solid var(--main-text-color);
  margin: 100px auto 0 auto;
  padding: 3em 4em;
  width: 800px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.sun {
	top: -130px;
	right: -100px;
	z-index: 999;
	width: 25%;
	height: auto;
	animation: rotate 90s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
	overflow-x: hidden;
  font-family: "Meiryo";
  color: var(--main-text-color);
  font-size: var(--font-base-size);
}
h3 img {
	margin-top: 15%;
	margin-bottom: 2.5em;
	height: 4.5em;
}
header {
	position: relative;
	padding: 30px 0;
	background-color: var(--background-color);
}
header h1 {
	padding-left: 30px;
}
header h1 img {
	width: 30%;
	height: auto;
}
.header-menu {
	display: flex;
	column-gap: 30px;
	align-items: flex-end;
	margin-top: -30px;
	padding-left: 35%;
}
.header-menu img {
	width: 4em;
	height: auto;
  transition-duration: .4s;
}
.header-menu img:hover {
  transform: scale(1.5,1.5);
}
p { line-height: 1.5em; }
figure img { max-width: 100%; }
a { color: var(--sub-text-color); }
a.line {
  position: relative;
  padding-bottom: 5px;
}
a.line::before {
  background: var(--sub-text-color);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
a.line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
li { line-height: 2em; }
.bk {
  padding: 0 30px;
  padding-bottom: 15%;
	background-image: url(../img/bg_image.svg);
	background-size: 150px 150px;
}
.container { overflow: hidden; }
.breadcrumb {
  display: flex;
  margin: 2em 0 5em 1em;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
.breadcrumb li {
  margin-left: -5px;
  padding-left: 1.5em;
  padding-right: 1em;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%,calc(100% - 10px) 100%, 0 100%, 10px 50%);
}
.breadcrumb li:first-child {
  margin: 0;
  padding-left: 1em;
  padding-right: 1.5em;
  background-color: var(--main-text-color);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%,calc(100% - 10px) 100%, 0 100%);
  color: #fff;
}
.breadcrumb li:last-child { background-color: var(--sub-text-color); }
.inner-block {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.slogan-box {
  top: 60%;
  left: 50%;
	z-index: 10;
  transform: translate(-50%, -50%);
}
.slogan-box img { width: 50vw; }
.news-box {
  display: flex;
  bottom: .25em;
  right: 0;
  z-index: 10;
  align-items: center;
  padding: 1em;
  width: 50vw;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  clip-path: polygon(0 15px, 15px 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}
.news-box img {
  height: 2.2em;
}
.fade-img-box, .title-box {
	position: relative;
	margin-left: auto;
	height: 80vh;
}
.title-box img {
  width: 100%;
	height: 100%;
  object-fit: cover;
}
.title-box h2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 6em;
}
.pdf {
  position: relative;
  padding-left: 1.75em;
}
.pdf a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/pdf_icon.svg);
  background-size: 1.5em 1.5em;
  width: 1.5em;
  height: 1.5em;
}
.pdf-box {
  display: flex;
  align-items: center;
}
.v-line {
  margin-left: 2em;
  margin-right: 2em;
  width: 1px;
  height: 5em;
  border-left: 1px solid var(--main-text-color);
}
.fade-img-box img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.clip-path-shadow { filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5)); }
.box {
	position: relative;
  z-index: 1;
	background: #fff0cd;
	outline: dashed 2px #fff;
  outline-offset: -5px;
  margin: 0 auto;
	padding: 3em 4em;
  max-width: 800px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}
.box::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
  z-index: 2;
	border-width: 0 30px 30px 0;
	border-style: solid;
	border-color: #ffdb88 transparent #ffdb88;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}

.zoom-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.zoom-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.zoom-box .overlay-text {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
  font-size: .75em;
  text-align: center;
  line-height: -1em;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.zoom-box:hover img { transform: scale(1.2); }
.zoom-box:hover .overlay-text { opacity: 1; }

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  margin-top: 2em;
  margin-bottom: 1em;
  color: #888;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
}

table:first-child caption { margin-top: 0; }

table tr { border-bottom: solid 2px var(--background-color); }

table tr:last-child { border-bottom: none; }

table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: var(--sub-text-color);
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid var(--sub-text-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #fff;
  padding: 10px 0;
}

input[type='checkbox'] {
  width: 1em;
  height: 1em;
  margin-bottom: .25em;
  margin-right: .5em;
  border: 2px solid var(--sub-text-color);
  accent-color: var(--sub-text-color);
}

footer {
  position: relative;
  background-color: var(--background-color);
}
footer h2 {
  padding: 3em 0 1em 30px;
	font-size: 2.5em;
}
footer h2 a { color: var(--main-text-color); }
footer .inner-block {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10%;
  padding: 0 30px;
  line-height: 2em;
}
.info-block {
	display: flex;
  justify-content: space-between;
  row-gap: 10%;
  width: calc(2.5em * 11.25);
  margin-bottom: 5em;
}
.info-block img {
  display: block;
  height: 5.5em;
  margin: 0 auto;
}
.info-block ul { margin-top: 30px; }
.footer-menu { margin-top: -5em; }
.footer-menu li { line-height: 3em; }
.mount {
  right: 10px;
  bottom: 15%;
  height: 10em;
}
.mount img {
  width: 100%;
  height: 100%;
}
footer address {
  padding: inherit;
  color: #fff;
	text-align: center;
	line-height: 4em;
	background-color: var(--main-text-color);
}