@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  color: var(--off-color);
  background-color: var(--theme-color);
}

::selection {
  color: var(--off-color);
  background-color: var(--theme-color);
}

@font-face {
  font-family: "BIZUDPGothic-Bold";
  src: url("../fonts/BIZUDPGothic-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "BIZUDPGothic-Regular";
  src: url("../fonts/BIZUDPGothic-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato-Black";
  src: url("../fonts/Lato-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato-Black.woff2") format("woff2");
}
@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato-Light";
  src: url("../fonts/Lato-Light.woff2") format("woff2");
}
@font-face {
  font-family: "ShipporiMincho-Bold";
  src: url("../fonts/ShipporiMincho-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "ShipporiMincho-Medium";
  src: url("../fonts/ShipporiMincho-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "ShipporiMincho-Regular";
  src: url("../fonts/ShipporiMincho-Regular.woff2") format("woff2");
}
:root {
  --small: 0.9em;
  --regular: clamp(0.875rem, 0.786rem + 0.29vw, 1rem);
  --medium: 1.2em;
  --large: 1.5em;
  --extra: 2em;
  --text-color: #323232;
  --theme-color: #00a1e9;
  --sub-color_1: #e6f4ff;
  --sub-color_2: #fff4f2;
  --sub-color_3: #f5f5f5;
  --off-color: #ffffff;
  --opacity: 0.7;
  --transition: 0.3s;
}

body {
  font-family: "BIZUDPGothic-Regular";
  font-size: var(--regular);
  color: var(--text-color);
  text-align: justify;
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-size: var(--regular);
  font-weight: normal;
}

a:link {
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  color: var(--text-color);
  text-decoration: none;
}

a:visited {
  color: var(--text-color);
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden; /*クロームの画像ぼけ防止*/
  image-rendering: -webkit-optimize-contrast; /*クロームの画像ぼけ防止*/
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  background-color: transparent;
}

header {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: 0.5s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
}
@media screen and (max-width: 500px) {
  header {
    padding: 10px;
  }
}
header.fixed {
  padding: 30px 20px;
}
@media screen and (max-width: 500px) {
  header.fixed {
    padding: 20px 10px;
  }
}
header #logo {
  width: 150px;
}
@media screen and (max-width: 500px) {
  header #logo {
    width: 100px;
  }
}
header #trigger {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  header #trigger {
    display: block;
  }
}
header #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--theme-color);
  transition: 0.2s;
}
header #trigger span:nth-of-type(1) {
  top: 0;
}
header #trigger span:nth-of-type(2) {
  top: 9px;
}
header #trigger span:nth-of-type(3) {
  bottom: 0;
}
header #trigger.open span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #trigger.open span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header #trigger.open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
@media screen and (max-width: 1200px) {
  header nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    transform: translate(0, -100%);
    opacity: 0;
    transition: 0.5s;
  }
  header nav.open {
    transform: translate(0, 0);
    opacity: 1;
  }
}
header nav #gnav {
  display: grid;
  justify-items: end;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  header nav #gnav {
    justify-items: center;
    align-items: center;
    gap: 40px;
  }
}
header nav #gnav #tel {
  font-family: "Lato-Black";
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 500px) {
  header nav #gnav #tel a {
    text-decoration: underline !important;
  }
}
header nav #gnav #tel a:hover {
  cursor: text;
}
header nav #gnav #tel small {
  font-family: "Lato-Regular";
  font-size: var(--small);
  padding: 0 0 0 5px;
}
header nav #gnav #list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list {
    flex-direction: column;
    gap: 30px;
  }
}
header nav #gnav #list #menu {
  display: flex;
  gap: 40px;
  font-family: "BIZUDPGothic-Bold";
  font-size: var(--small);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list #menu {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
header nav #gnav #list #menu li {
  position: relative;
}
header nav #gnav #list #menu li.current {
  color: var(--theme-color);
}
header nav #gnav #list #menu li.current::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: var(--theme-color);
  transition: var(--transition);
}
header nav #gnav #list #menu li a {
  position: relative;
  display: inline-block;
}
header nav #gnav #list #menu li a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
header nav #gnav #list #menu li a:hover {
  color: var(--theme-color);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list #menu li a:hover {
    color: var(--text-color);
  }
}
header nav #gnav #list #menu li a:hover::after {
  bottom: -10px;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list #menu li a:hover::after {
    visibility: hidden;
  }
}
header nav #gnav #list #sns {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list #sns {
    justify-content: center;
  }
}
header nav #gnav #list #sns li a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  header nav #gnav #list #sns li a:hover {
    opacity: 1;
  }
}
header nav #gnav #list #sns li a img {
  width: auto;
}

footer {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  footer {
    padding: 10px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
footer a:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  footer a:hover {
    opacity: 1;
  }
}
footer p {
  font-family: "Lato-reglar";
  text-transform: capitalize;
}

#contents {
  width: min(1120px, 100%);
  padding: 172px 10px 0 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 0 auto 160px auto;
}
@media screen and (max-width: 1200px) {
  #contents {
    padding: 79px 10px 0 10px;
    margin: 0 auto 80px auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  #contents {
    padding: 56px 10px 0 10px;
  }
}
#contents h1 {
  height: 120px;
  padding: 0 0 0 130px;
  font-family: "ShipporiMincho-Bold";
  font-size: var(--large);
  color: var(--theme-color);
  display: grid;
  align-items: center;
  background-size: 120px 120px;
  background-position: left center;
  background-repeat: no-repeat;
  position: sticky;
  top: 124px;
}
@media screen and (max-width: 1200px) {
  #contents h1 {
    height: 60px;
    background-size: 60px 60px;
    padding: 0 0 0 70px;
    position: relative;
    top: auto;
  }
}
#contents h1.sticky {
  animation-name: bounce;
  animation-duration: 1s;
}
@keyframes bounce {
  16.65% {
    transform: translateY(6px);
  }
  33.3% {
    transform: translateY(-5px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-3px);
  }
  83.25% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1200px) {
  #contents h1.sticky {
    animation: none;
  }
}
#contents h1 p {
  transform: skew(-3deg, 0);
}
#contents h1 p span {
  display: inline-block;
}
#contents #detail {
  display: grid;
  gap: 80px;
}
@media screen and (max-width: 500px) {
  #contents #detail {
    gap: 40px;
  }
}
#contents #detail > div {
  margin: 0 0 -40px 0;
}
@media screen and (max-width: 500px) {
  #contents #detail > div {
    margin: 0 0 -20px 0;
  }
}
#contents #detail > div img {
  border-radius: 20px;
}
@media screen and (max-width: 500px) {
  #contents #detail > div img {
    border-radius: 10px;
  }
}
#contents #detail > article {
  letter-spacing: 0.1em;
}
#contents #detail section h2 + article {
  padding: 0 10px;
}
@media screen and (max-width: 500px) {
  #contents #detail section h2 + article {
    padding: 0 5px;
  }
}
#contents .article {
  width: calc(100% - 20px);
  margin-inline: auto;
  letter-spacing: 0.05em;
}
#contents .list {
  display: grid;
  gap: 20px;
}
#contents .list h3 {
  font-family: "BIZUDPGothic-Bold";
  color: var(--theme-color);
  line-height: 1;
  padding: 0 0 5px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px dashed #969696;
}

.headline {
  font-family: "BIZUDPGothic-Bold";
  font-size: var(--medium);
  color: var(--theme-color);
  line-height: 1;
  padding: 10px;
  margin: 0 0 20px 0;
  border-radius: 10px;
  background-color: var(--sub-color_1);
}
@media screen and (max-width: 500px) {
  .headline {
    padding: 7px;
    margin: 0 0 10px 0;
    border-radius: 5px;
  }
}

.link {
  font-size: var(--small);
  padding: 0 0 0 15px;
  background-image: url(../images/common/icon_arrow_2.png);
  background-size: 10px 4px;
  background-position: left center;
  background-repeat: no-repeat;
}
.link:hover {
  opacity: var(--opacity);
  transition: var(--transition);
}

@media screen and (max-width: 500px) {
  .tel {
    text-decoration: underline !important;
  }
}
.tel:hover {
  cursor: text;
}

#return {
  width: 40px;
  height: 40px;
  display: grid;
  justify-items: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: -40px;
  background-color: var(--theme-color);
  transition: 0.5s;
}
#return.active {
  bottom: 40px;
}
#return:hover {
  cursor: pointer;
  opacity: var(--opacity);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  #return:hover {
    opacity: 1;
  }
}
#return img {
  width: 10px;
  height: 8px;
}/*# sourceMappingURL=common.css.map */