@charset "UTF-8";
/* ============================
   リセットCSS
   ============================ */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0;
}

/* ブラウザ固有のアウトライン削除（必要に応じて） */
:focus {
  outline: none;
}

/* ============================
   rem設計 スターターSCSSテンプレート
   Jun専用：10px = 1rem 設計
   ============================ */
/* ----------------------------
   Google Fonts 読み込み
---------------------------- */
/* ----------------------------
   rem基準設定（1rem = 画面幅に応じてスケーリング）
---------------------------- */
html {
  font-size: clamp(0px, 1vw, 9999px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
  html {
    font-size: clamp(10px, 2.6667vw, 9999px);
  }
}

/* ----------------------------
   ボックスサイズ設定（paddingではみ出さないように）
---------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ----------------------------
   ベース設定
---------------------------- */
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------
   変数定義（CSS変数）
---------------------------- */
:root {
  /* カラー */
  --color-primary: #0070f3;
  --color-primary-dark: #005ac1;
  --color-secondary: #f5f5f5;
  --color-text: #333;
  --color-bg: #ffffff;
  --color-border: #ddd;
  /* スペーシング（8px単位） */
  --space-xxs: 0.4rem;
  --space-xs: 0.8rem;
  --space-sm: 1.2rem;
  --space-md: 1.6rem;
  --space-lg: 2.4rem;
  --space-xl: 3.2rem;
  --space-xxl: 4.8rem;
  /* フォントサイズ */
  --font-sm: 1.4rem;
  --font-md: 1.6rem;
  --font-lg: 2rem;
  --font-xl: 2.4rem;
  --font-xxl: 3.2rem;
}

/* ----------------------------
   Mixin（よく使うやつ）
---------------------------- */
/* ----------------------------
   レイアウト・基本コンポーネント
---------------------------- */
.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  padding: var(--space-lg);
}

.section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-lg) 0;
}

.heading {
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
  font-weight: bold;
  line-height: 1.4;
}

.text {
  font-size: var(--font-md);
  line-height: 1.6;
  color: var(--color-text);
}

/* ----------------------------
   汎用ボタン
---------------------------- */
.button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-md);
  border-radius: 0.4rem;
  background-color: var(--color-primary);
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: var(--color-primary-dark);
}

/* ----------------------------
   ボーダーや1px線などはpxで
---------------------------- */
.line {
  border-bottom: 1px solid var(--color-border);
}

/* ----------------------------
   メディアクエリ：PC版用（768px以上）
---------------------------- */
/* ----------------------------
   メディアクエリ：スマホ版用（768px以下）
---------------------------- */
/*
比率統一 clamp() 一覧（1px ～ 40px）
font-size: clamp(0.8px, 0.1vw, 1.3px);
font-size: clamp(1.6px, 0.2vw, 2.5px);
font-size: clamp(2.4px, 0.3vw, 3.8px);
font-size: clamp(3.3px, 0.4vw, 5px);
font-size: clamp(4.1px, 0.5vw, 6.3px);
font-size: clamp(4.9px, 0.6vw, 7.5px);
font-size: clamp(5.7px, 0.7vw, 8.8px);
font-size: clamp(6.5px, 0.8vw, 10px);
font-size: clamp(7.3px, 0.9vw, 11.3px);
font-size: clamp(8.1px, 1vw, 12.5px);
font-size: clamp(8.9px, 1.1vw, 13.8px);
font-size: clamp(9.7px, 1.2vw, 15px);
font-size: clamp(10.6px, 1.3vw, 16.3px);
font-size: clamp(11.4px, 1.4vw, 17.5px);
font-size: clamp(12.2px, 1.5vw, 18.8px);
font-size: clamp(13px, 1.6vw, 20px); //基準
font-size: clamp(13.8px, 1.7vw, 21.3px);
font-size: clamp(14.6px, 1.8vw, 22.5px);
font-size: clamp(15.4px, 1.9vw, 23.8px);
font-size: clamp(16.2px, 2vw, 25px);
font-size: clamp(17.1px, 2.1vw, 26.3px);
font-size: clamp(17.9px, 2.2vw, 27.5px);
font-size: clamp(18.7px, 2.3vw, 28.8px);
font-size: clamp(19.5px, 2.4vw, 30px);
font-size: clamp(20.3px, 2.5vw, 31.3px);
font-size: clamp(21.1px, 2.6vw, 32.5px);
font-size: clamp(22px, 2.7vw, 33.8px);
font-size: clamp(22.8px, 2.8vw, 35px);
font-size: clamp(23.6px, 2.9vw, 36.3px);
font-size: clamp(24.4px, 3vw, 37.5px);
font-size: clamp(25.2px, 3.1vw, 38.8px);
font-size: clamp(26px, 3.2vw, 40px);
font-size: clamp(26.8px, 3.3vw, 41.3px);
font-size: clamp(27.6px, 3.4vw, 42.5px);
font-size: clamp(28.4px, 3.5vw, 43.8px);
font-size: clamp(29.2px, 3.6vw, 45px);
font-size: clamp(30.1px, 3.7vw, 46.3px);
font-size: clamp(30.9px, 3.8vw, 47.5px);
font-size: clamp(31.7px, 3.9vw, 48.8px);
font-size: clamp(32.5px, 4vw, 50px);
font-size: clamp(33.3px, 4.1vw, 51.3px);
font-size: clamp(34.1px, 4.2vw, 52.5px);
font-size: clamp(35px, 4.3vw, 53.8px);
font-size: clamp(35.8px, 4.4vw, 55px);
font-size: clamp(36.6px, 4.5vw, 56.3px);
font-size: clamp(37.4px, 4.6vw, 57.5px);
font-size: clamp(38.3px, 4.7vw, 58.8px);
font-size: clamp(39.1px, 4.8vw, 60px);
font-size: clamp(39.9px, 4.9vw, 61.3px);
font-size: clamp(40.7px, 5vw, 62.5px);
font-size: clamp(41.6px, 5.1vw, 63.8px);
font-size: clamp(42.4px, 5.2vw, 65px);
font-size: clamp(43.2px, 5.3vw, 66.3px);
font-size: clamp(44px, 5.4vw, 67.5px);
font-size: clamp(44.9px, 5.5vw, 68.8px);
font-size: clamp(45.7px, 5.6vw, 70px);
font-size: clamp(46.5px, 5.7vw, 71.3px);
font-size: clamp(47.3px, 5.8vw, 72.5px);
font-size: clamp(48.2px, 5.9vw, 73.8px);
font-size: clamp(49px, 6vw, 75px);


*/
/*フォント伸縮比率rem値	clamp値	px相当（1000px時）
clamp(1px, 0.1rem, 9999px);
clamp(2px, 0.2rem, 9999px);
clamp(3px, 0.3rem, 9999px);
clamp(4px, 0.4rem, 9999px);
clamp(5px, 0.5rem, 9999px);
clamp(6px, 0.6rem, 9999px);
clamp(7px, 0.7rem, 9999px);
clamp(8px, 0.8rem, 9999px);
clamp(9px, 0.9rem, 9999px);
clamp(10px, 1.0rem, 9999px);
clamp(11px, 1.1rem, 9999px);
clamp(12px, 1.2rem, 9999px);
clamp(13px, 1.3rem, 9999px);
clamp(14px, 1.4rem, 9999px);
clamp(15px, 1.5rem, 9999px);
clamp(16px, 1.6rem, 9999px);
clamp(17px, 1.7rem, 9999px);
clamp(18px, 1.8rem, 9999px);
clamp(19px, 1.9rem, 9999px);
clamp(20px, 2.0rem, 9999px);
clamp(21px, 2.1rem, 9999px);
clamp(22px, 2.2rem, 9999px);
clamp(23px, 2.3rem, 9999px);
clamp(24px, 2.4rem, 9999px);
clamp(25px, 2.5rem, 9999px);
clamp(26px, 2.6rem, 9999px);
clamp(27px, 2.7rem, 9999px);
clamp(28px, 2.8rem, 9999px);
clamp(29px, 2.9rem, 9999px);
clamp(30px, 3.0rem, 9999px);
clamp(31px, 3.1rem, 9999px);
clamp(32px, 3.2rem, 9999px);
clamp(33px, 3.3rem, 9999px);
clamp(34px, 3.4rem, 9999px);
clamp(35px, 3.5rem, 9999px);
*/
@use "mixin";
body {
  position: relative;
  max-width: 100%;
}

img {
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .sec__inner {
    max-width: 1000px;
  }
}

main a {
  color: #593300;
  text-decoration: underline;
}

main a:hover {
  color: #ffaa00;
}

main a:active {
  color: #593300;
}

@-webkit-keyframes hdr__sp_Anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hdr__sp_Anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hdr {
  position: relative;
  z-index: 2;
}

.hdr__logo {
  width: 22rem;
}

@media (max-width: 768px) {
  .hdr__logo {
    width: 15rem;
  }
}

.hdr__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90.2rem;
  height: 7.9rem;
  margin: 2.9rem auto 0 auto;
}

@media (max-width: 768px) {
  .hdr__container {
    width: 100%;
    height: auto;
    padding: 0 1.8rem 0 1.8rem;
    margin: 1.3rem auto 0 auto;
  }
}

.hdr__left {
  width: 22rem;
}

@media (max-width: 768px) {
  .hdr__left {
    width: 15rem;
  }
}

.hdr__right {
  width: 41.2rem;
}

@media (max-width: 768px) {
  .hdr__right {
    width: 10.8rem;
  }
}

.hdr__nav {
  text-align: right;
}

.hdr__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28.9rem;
  margin: 0 0 1.2rem auto;
}

@media (max-width: 768px) {
  .hdr__btn {
    position: relative;
    width: 10.8rem;
    height: 5.2rem;
    margin: 0;
  }
}

.hdr__access {
  width: 11rem;
}

@media (max-width: 768px) {
  .hdr__access {
    width: 7.86rem;
  }
}

.hdr__contact {
  width: 11rem;
}

@media (max-width: 768px) {
  .hdr__contact {
    width: 7.86rem;
  }
}

.hdr__menuBtn {
  width: 1.85rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hdr__menuBtn {
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

.hdr__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .hdr__list--upper {
    display: none;
  }
}

.hdr__list--botom {
  width: 30.7rem;
  margin-left: auto;
}

@media (max-width: 768px) {
  .hdr__list--botom {
    display: none;
  }
}

.hdr__simaiku {
  width: 8.5rem;
}

.hdr__kenkou {
  width: 8.71rem;
}

.hdr__yadoriba {
  width: 8.84rem;
}

.hdr__soco {
  width: 10.8rem;
}

.hdr__sisho {
  width: 11.86rem;
}

.hdr__ansin {
  width: 17.3rem;
}

.hdr__menu {
  position: fixed;
  top: 0rem;
  background-color: rgba(245, 237, 169, 0.8);
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1;
}

.hdr__menu--wrap {
  position: absolute;
  top: 0rem;
  right: 0rem;
  background-image: url(../images/common/hdr_menu_back.svg?ver2);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 32.7rem;
  height: 46rem;
}

@media (max-width: 768px) {
  .hdr__menu--wrap {
    background-image: url(../images/common/hdr_menu_back_sp.svg);
    width: 100%;
    height: 41.7rem;
  }
}

.hdr__menu--upper {
  position: relative;
  text-align: center;
  padding-top: 4.5rem;
}

.hdr__menu--close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background-image: url(../images/common/hdr_menu_close.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
}

.hdr__menu--a {
  display: inline-block;
}

.hdr__menu--item {
  display: block;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.hdr__menu--simaiku {
  width: 8.7rem;
}

.hdr__menu--kenkou {
  width: 8.7rem;
}

.hdr__menu--yadoriba {
  width: 8.7rem;
}

.hdr__menu--soco {
  width: 11.2rem;
}

.hdr__menu--sisho {
  width: 11.6rem;
}

.hdr__menu--ansin {
  width: 16.9rem;
}

.hdr__menu--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 24rem;
  margin: 8.6rem auto 0 auto;
}

@media (max-width: 768px) {
  .hdr__menu--bottom {
    margin: 5.2rem auto 0 auto;
    width: 21.8rem;
  }
}

.hdr__menu--access {
  width: 11.1rem;
}

@media (max-width: 768px) {
  .hdr__menu--access {
    width: 10.1rem;
  }
}

.hdr__menu--contact {
  width: 11.1rem;
}

@media (max-width: 768px) {
  .hdr__menu--contact {
    width: 10.1rem;
  }
}

.hdr__menu--tanikun {
  position: absolute;
  bottom: 3.4rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 5.5rem;
}

@media (max-width: 768px) {
  .hdr__menu--tanikun {
    width: 5.2rem;
  }
}

.hdr__menu.active {
  display: block;
  -webkit-animation: headerMenu_Anim ease 0.6s forwards;
          animation: headerMenu_Anim ease 0.6s forwards;
}

@-webkit-keyframes headerMenu_Anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes headerMenu_Anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ftr {
  position: relative;
  background-image: url(../images/common/ftr_back.svg?ver2);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: contain;
  width: 100%;
  height: 42.9rem;
  margin: 0 auto 0 auto;
}

@media (max-width: 768px) {
  .ftr {
    background-image: url(../images/common/ftr_back_sp.svg);
    height: 79.12rem;
    margin: 0 auto 7rem auto;
  }
}

.ftr__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 66.5rem;
  margin: 0 0 0 auto;
  padding: 7.9rem 5.4rem 0 0;
}

@media (max-width: 768px) {
  .ftr__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 25.7rem 0 0 0;
  }
}

.ftr__menu--left {
  width: 20rem;
}

@media (max-width: 768px) {
  .ftr__menu--left {
    width: 10rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ftr__menu--left--title {
  position: relative;
  margin-bottom: 1.1rem;
  width: 5.47rem;
}

@media (max-width: 768px) {
  .ftr__menu--left--title {
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 768px) {
  .ftr__menu--left--title::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    left: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .ftr__menu--left--title::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    right: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

.ftr__menu--left--simaiku {
  width: 8.47rem;
}

.ftr__menu--left--kenkou {
  width: 8.47rem;
}

.ftr__menu--left--yadoriba {
  width: 8.47rem;
}

.ftr__menu--left--soco {
  width: 10.77rem;
}

.ftr__menu--left--sisho {
  width: 11.3rem;
}

.ftr__menu--left--ansin {
  width: 16.5rem;
}

@media (max-width: 768px) {
  .ftr__menu--left a {
    display: inline-block;
  }
}

.ftr__menu--center {
  width: 17rem;
}

@media (max-width: 768px) {
  .ftr__menu--center {
    width: 10rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ftr__menu--center--title {
  position: relative;
  margin-bottom: 1.1rem;
  width: 5.47rem;
}

@media (max-width: 768px) {
  .ftr__menu--center--title {
    margin-bottom: 0.7rem;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .ftr__menu--center--title::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    left: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .ftr__menu--center--title::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    right: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

.ftr__menu--center--sandai {
  width: 8.77rem;
}

.ftr__menu--center--kouminkan {
  width: 6.3rem;
}

.ftr__menu--center--taiiku {
  width: 10.1rem;
}

.ftr__menu--right {
  width: 24rem;
}

@media (max-width: 768px) {
  .ftr__menu--right {
    width: 10rem;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ftr__menu--right--title {
  position: relative;
  margin-bottom: 1.1rem;
  width: 5.47rem;
}

@media (max-width: 768px) {
  .ftr__menu--right--title {
    margin-bottom: 0.7rem;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .ftr__menu--right--title::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    left: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .ftr__menu--right--title::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.3rem;
    width: 2rem;
    height: 2rem;
    top: 0.2rem;
    right: -18px;
    background-image: url(../images/common/ftr_btn_maru.svg);
    display: inline-block;
  }
}

.ftr__menu--right--daiwa {
  width: 8.66rem;
}

.ftr__menu--right--pfi {
  width: 14.3rem;
}

.ftr__menu--right--kyouryoku {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .ftr__menu--right--kyouryoku {
    margin-top: 2rem;
  }
}

.ftr__menu--right--sidax {
  width: 23.9rem;
}

.ftr__menu--right--hozen {
  width: 9.9rem;
}

.ftr__menu--right--shimashima {
  width: 8.5rem;
}

.ftr__menu--item {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .ftr__menu--item {
    margin-bottom: 0.7rem;
  }
}

.ftr__icon {
  width: 100%;
}

.ftr__copywriter {
  position: absolute;
  top: 37.1rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 12.5rem;
}

@media (max-width: 768px) {
  .ftr__copywriter {
    top: unset;
    bottom: -4rem;
  }
}

#returntop {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: -250px;
  bottom: 3%;
  z-index: 10000;
  width: clamp(51.21951px, 6.29343vw, 81.9px);
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
}

@media (max-width: 768px) {
  #returntop {
    bottom: 2%;
    width: 6.3rem;
  }
}

#returntop:hover {
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
}

#returntop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

@media (max-width: 768px) {
  #returntop img {
    width: 4.4rem;
  }
}

/* 約物だけ字間を戻す /[「」『』（）()［］\[\]【】・、。]*/
.kern__punct {
  letter-spacing: -8px;
}

.no-underline {
  text-decoration: none !important;
}

.no-hover-color:hover {
  color: inherit !important;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fw500 {
  font-weight: 500;
}

.pc {
  display: unset;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: unset;
  }
}

.orange {
  color: #ffaa00;
}

.letterspacing-1 {
  letter-spacing: -1px;
}
/*# sourceMappingURL=style.css.map */