@charset "utf-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;  
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

/* add style */
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: .8;
}

/*---------------------------------------------
    Base style
---------------------------------------------*/
:root {
  --common-width: 1170px;
  --sub-font: '游ゴシック', YuGothic, 'メイリオ', Meiryo, sans-serif;
  --color-01: #f15a24;
  --color-02: #8dc21f;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: 'メイリオ', Meiryo, sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.sp {
  display: none;
}

.container {
	display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.common-inner {
  max-width: var(--common-width);
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
	.common-inner {
		padding: 0 4.4%;
	}
}

.header {
	width: calc(100% - 40px);
  padding: 0 20px;
  border-bottom: 5px solid #e6e6e6;
	background-color: #fff;
	transition: 0.5s;
	position: relative;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.header-inner {
  max-width: var(--common-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: auto;
  padding: 11px 0 6px;
}

.header-logo {
  max-width: 360px;
}

.header-menu {
  flex-shrink: 0;
}

.header-menu-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}

.other-tel-link {
  display: flex;
  align-items: center;
  gap: 13px;
}

.other-tel-link span {
  display: block;
  font-size: 13px;
  background-color: #000;
  color: #fff;
  border-radius: 3px;
  padding: 10px 11px;
}

.other-tel-link a {
  display: flex;
  align-items: center;
  font-family: var(--sub-font);
  font-size: 28px;
  font-weight: bold;
}

.other-tel-link a::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/ico_tel.png) no-repeat;
  background-size: cover;
}

.other-uruma-link {
  max-width: 156px;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  margin-top: 12px;
}

.global-nav-link {
  display: flex;
  align-items: center;
  gap: 23px;
}

.global-nav-link a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
}

.global-nav-link a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 3px solid var(--color-01);
  border-bottom: 3px solid var(--color-01);
  transform: rotate(-45deg);
  position: relative;
  bottom: 3px;
}

.global-nav-link a br {
	display: none;
}

.global-nav-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.global-nav-btn a {
  width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: bold;
  background-color: var(--color-01);
  color: #fff;
  border-radius: 3px;
}

.global-nav-btn li.contact-btn a {
  background-color: var(--color-02);
}

.global-nav-btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  bottom: 3px;
}

@media screen and (max-width: 1024px) {
  .header-inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: row;
  }
  .header-logo {
    max-width: 203px;
  }
  .other-tel-link {
    display: none;
  }
  .other-uruma-link {
    max-width: 125px;
  }
  .global-nav {
		width: 100%;
		height: 73px;
		gap: 0;
    position: fixed;
    left: 0;
    bottom: 0;
		z-index: 100;
		margin-top: 0;
  }
	.global-nav-link {
		gap: 0;
		width: 57%;
		height: 100%;
	}
	.global-nav-link li {
		width: 50%;
		height: 100%;
		position: relative;
	}
	.global-nav-link li:first-child::after {
		content: "";
		display: block;
		width: 1px;
		height: 68%;
		background-color: #fff;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
	}
	.global-nav-link a {
		width: auto;
		height: 100%;
		justify-content: center;
		gap: 0;
		font-size: min(3.73vw, 17px);
		line-height: 1.3;
		text-align: center;
		color: #fff;
		background-color: #000;
		padding: 0 1.1em;
	}
	.global-nav-link a::after {
		content: none;
	}
	.global-nav-link a br {
		display: block;
	}
	.global-nav-btn {
		gap: 0;
		width: 43%;
		height: 100%;
	}
	.global-nav-btn li {
		width: 60%;
		height: 100%;
	}
	.global-nav-btn a {
		width: 100%;
		height: 100%;
		gap: 0;
		font-size: min(4.8vw, 21px);
		border-radius: 0;
	}
	.global-nav-btn a::after {
		content: none;
	}
	.global-nav-btn li.contact-btn {
		width: 40%;
	}
	.global-nav-btn li.contact-btn a::before {
    content: "";
		display: block;
		width: min(9.6vw, 42px);
		height: auto;
		aspect-ratio: 125/155;
		background: url(../images/ico_tel_w.png) no-repeat;
		background-size: cover;
	}
}

.main {
	flex: 1;
}

.main-visual {
  max-width: var(--common-width);
  margin: auto;
  padding-bottom: 23px;
  position: relative;
  container-type: inline-size;
  container-name: mainVisual;
}

.mv-link-01 {
  max-width: 325px;
  position: absolute;
  top: 45px;
  left: 10px;
}

.mv-link-02 {
  max-width: 216px;
  position: absolute;
  top: 38px;
  right: 73px;
}

@container mainVisual (max-width: 1169px) {
  .mv-link-01 {
    max-width: 27.4vw;
    top: 3.84vw;
    left: 0.85vw;
  }
  .mv-link-02 {
    max-width: 18.1vw;
    top: 3.25vw;
    right: 6.24vw;
  }
}

@media screen and (max-width: 768px) {
  .main-visual {
    padding: 3.5vw 0 0;
  }
  .mv-link-01 {
    max-width: 27vw;
    top: 2.16vw;
    left: 31.15vw;
  }
  .mv-link-02 {
    max-width: 30.74vw;
    top: 2.16vw;
    right: 7.57vw;
  }
}

.distribution {
  background-color: #fffbe5;
  border-top: 7px solid #f8f2cd;
  border-bottom: 7px solid #f8f2cd;
  padding: 58px 0 80px;
}

.distribution-title {
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 40px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.distribution-title::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  background-color: #333;
  margin: auto;
}

.distribution-list {
  max-width: 1015px;
  margin: auto;
}

.distribution-list li {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  padding: 20px 0;
  background-image: repeating-linear-gradient(90deg, #4d4d4d, #4d4d4d 2px, transparent 2px, transparent 9px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}

.distribution-list li em {
  font-style: normal;
  color: #2e3192;
  margin-left: -9px;
}

.distribution-list li span {
  display: block;
  font-size: 20px;
  color: #ed1c24;
}

@media screen and (max-width: 768px) {
	.distribution {
		padding: 40px 0 45px;
	}
	.distribution-title {
		gap: 25px;
		font-size: 27px;
		margin-bottom: 20px;
	}
	.distribution-title::after {
		width: 100px;
	}
	.distribution-list li {
		font-size: 18px;
		line-height: 1.6;
		padding: 18px 0;
		background-image: radial-gradient(circle, #4d4d4d 1.5px, transparent 1.5px);
		background-position: left bottom;
		background-repeat: repeat-x;
		background-size: 6px 3px;
	}
	.distribution-list li em {
		margin-left: -0.5em;
	}
	.distribution-list li span {
		font-size: 16px;
	}
}

.contact {
  margin-top: 127px;
}

.contact-inner {
  padding: 70px 0 110px;
  container-type: inline-size;
  container-name: contactInner;
}

.contact-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.contact-info {}

.contact-tel-title {
  font-size: 36px;
  font-weight: bold;
  padding-left: 14px;
}

.contact-tel-num {
  padding-left: 75px;
  margin-top: 30px;
  position: relative;
}

.contact-tel-num a {
  display: block;
  font-family: var(--sub-font);
  font-size: 80px;
  font-weight: bold;
  white-space: nowrap;
  margin-bottom: 20px;
}

.contact-tel-num a::before {
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  background: url(../images/ico_tel.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
}

.contact-tel-num span {
  display: block;
  font-size: 23px;
  font-weight: normal;
  margin-left: -0.5em;
}

@container contactInner (max-width: 1169px) {
  .contact-tel-title {
    font-size: 2.63vw;
  }
  .contact-tel-num {
    margin-top: 2.19vw;
    padding-left: 5.46vw;
  }
  .contact-tel-num a {
    font-size: 5.85vw;
    margin-bottom: 1.46vw;
  }
  .contact-tel-num a::before {
    width: 5.46vw;
    height: 5.46vw;
  }
  .contact-tel-num span {
    font-size: 1.65vw;
  }
}

.contact-link {
  display: flex;
  gap: 50px;
}

.contact-link a {
  display: block;
}

.contact-manma {
  max-width: 221px;
}

.contact-santoku {
  max-width: 216px;
}

.contact-manma span,
.contact-santoku span {
  max-width: 190px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: var(--color-01);
  border-radius: 15px;
  margin: 20px auto 0;
}

.contact-manma span::after,
.contact-santoku span::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #fff;
  border-right: 0;
}

.contact-santoku span {
  background-color: #1aa9bf;
}

@media screen and (max-width: 1024px) {
  .contact-manma span,
  .contact-santoku span {
    font-size: 12px;
  }   
}

@media screen and (max-width: 768px) {
	.contact {
		margin-top: 55px;
	}
	.contact-inner {
		flex-direction: column;
		padding: 25px 0 47px;
	}
	.contact-title {
		height: 50px;
		font-size: 20px;
	}
	.contact-info {
		text-align: center;
	}
	.contact-tel-title {
		font-size: 20px;
		padding-left: 0;
	}
	.contact-tel-num {
		padding-left: 0;
		margin-top: 15px;
	}
	.contact-tel-num a {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: min(11vw, 51px);
		margin-bottom: 13px;
		padding-left: 0;
	}
	.contact-tel-num a::before {
		width: min(10.5vw, 49px);
		height: min(10.5vw, 49px);
		position: relative;
	}
	.contact-tel-num span {
		font-size: 15px;
		margin-left: 0;
	}
	.contact-link {
		gap: 22px;
	}
	.contact-manma {
		max-width: 176px;
	}
	.contact-santoku {
		max-width: 176px;
	}
	.contact-manma span,
	.contact-santoku span {
		max-width: 152px;
		height: 27px;
		gap: 10px;
		font-size: 11px;
		border-radius: 5px;
		margin: 18px auto 0;
	}
	.contact-santoku span {
		margin-top: 17px;
	}
	.contact-manma span::after,
	.contact-santoku span::after {
		border-top: 3.5px solid transparent;
		border-bottom: 3.5px solid transparent;
		border-left: 8px solid #fff;
	}
}

.footer {
  background-color: #f2f2f2;
  border-top: 10px solid #e6e6e6;
}

.footer-logo {
  max-width: 650px;
  margin: auto;
  padding: 52px 0 55px;
}

.footer-link {
  border-top: 1px solid #b3b3b3;
}

.footer-link a {
  max-width: 200px;
  display: block;
  margin: auto;
  padding: 10px 0;
}

.pagetop {
  max-width: 120px;
	width: 100%;
  position: fixed;
  left: calc(50% + 1170px / 2);
  bottom: 3px;
	z-index: 10;
	opacity: 0;
  transition: opacity 0.8s ease;
}

.pagetop.show {
	opacity: 1;
}

@media screen and (max-width: 1460px) {
	.pagetop {
		left: auto;
		right: 12px;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		padding-bottom: 73px;
	}
	.footer-logo {
		max-width: 250px;
		padding: 14px 0 20px;
	}
	.footer-link a {
		max-width: 83px;
		padding: 8px 0;
	}
	.pagetop {
		max-width: 76px;
		right: 5px;
		bottom: 73px;
	}
}



.temporary-info-title {
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  margin-top: 70px
}

.temporary-info p {
  font-size: 27px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-top: 30px;
}

.temporary-info p span {
  color: #f40000;
}


@media screen and (max-width: 767px) {
  .temporary-info-title {
    font-size: 19px;
    margin-top: 40px
  }
  .temporary-info p {
    font-size: 16px;
    margin-top: 20px;
  }
  .temporary-info p span {
    display: block;
  }
}