@charset "UTF-8";
/* ==========================================
   Template: 深海（https://do.gt-gt.org/）
   Copyright: 2020 do.
   利用規約を遵守の上お使いください。二次配布・販売を禁じます。
   ========================================== */
/* ==========================================
  リセットCSS
  基本的には触らないでください
  ========================================== */
ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ==========================================
  以下、デザインを決める記述です
  グラデーションを記述しているところは５か所です
  変えないほうが無難ですが、編集するときは漏れのないよう気を付けてください
   ========================================== */
body {
  background: #313536;
  font-family: YuGothic,'Yu Gothic','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Cambria Math','Avenir',sans-serif;
  padding: 0;
  margin: 0;
  color: #c0cccf;
}

body#text {
  background: #3cb0e6;
  background: -webkit-gradient(linear, left top, left bottom, from(#A8CAF0), to(#E9F0FA));
  background: linear-gradient(to bottom, #A8CAF0 0%, #E9F0FA 100%);
  background-attachment: fixed;
}

body#text main .container {
  background: #313536;
  /*padding: 30px;*/
  /*margin-top: 100px;*/
}

@media screen and (max-width: 480px) {
  body#text main .container {
    padding: 20px;
  }
}

body#text p {
  line-height: 2em;
}

dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

dl dd,
dl dt {
  width: 50%;
  display: block;
}

a {
  text-decoration: none;
  color: snow;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a:hover {
  color: #b2d4ce;
}

a img:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

dl,
p,
ul,
ol {
  font-size: 16px;
  padding-left: 20px;
  padding-right: 30px;
  margin: 20px 0;
}

@media screen and (max-width: 480px) {
  dl,
  p,
  ul,
  ol {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 15px 0;
  }
}

p {
  line-height: 2.2em;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sawarabi Mincho", sans-serif;
}

h4 {
  padding-left: 10px;
  margin: 20px 0 10px;
  font-size: 120%;
}

.container {
  margin: 80px auto;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

img {
  max-width: 100%;
}

img + img {
  margin-left: 5px;
}

h2 {
  font-size: 190%;
  font-weight: 500;
  margin: 20px auto;
  color: snow;
  width: 100%;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 150%;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 130%;
  }
}

h3 {
  font-size: 130%;
  display: block;
  margin: 20px auto;
  color: snow;
}

@media screen and (max-width: 480px) {
  h3 {
    font-size: 110%;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6); /* 少し薄めの黒 */
  backdrop-filter: blur(10px);           /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px);   /* Safari用 */
  height: 75px;
  display: flex;
  align-items: center;
}

header .container {
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  header .container {
    padding: 0;
  }
}

header ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

header ul li a {
  display: block;
  padding: 15px;
  color: #c0cccf;
  text-shadow: 0 1px 10px #313536;
  font-size: 16px;   
  font-weight: bold; 
}

header ul li a:hover {
  color: snow;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media screen and (max-width: 480px) {
  header ul li a {
    padding: 20px 10px;
  }
}


/*CSS MENU*/

.menu {
  height: 4rem;
}
.menu ol {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}
.menu > ol {
  max-width: 1000px;
  padding: 0 2rem;
  display: flex;
}
.menu > ol > .menu-item {
  flex: 1;
  padding: 0.75rem 0;
}
.menu > ol > .menu-item:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  bottom: 5px;
  left: calc(50% - 2px);
  background: #b2d4ce;
  will-change: transform;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.menu > ol > .menu-item:hover:after {
  transform: scale(1);
}
.menu-item {
  position: relative;
  line-height: 2.5rem;
  text-align: center;
}
.menu-item a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  color: #FFF;
}
.sub-menu .menu-item {
  padding: 0.75rem 0;
  background-color: rgba(0, 0, 0, 0.6); /* 少し薄めの黒 */
  backdrop-filter: blur(10px);           /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px);   /* Safari用 */
  opacity: 0;
  transform-origin: bottom;
  animation: enter 0.2s ease forwards;
}
.sub-menu .menu-item:nth-child(1) {
  animation-duration: 0.2s;
  animation-delay: 0s;
}
.sub-menu .menu-item:nth-child(2) {
  animation-duration: 0.3s;
  animation-delay: 0.1s;
}
.sub-menu .menu-item:nth-child(3) {
  animation-duration: 0.4s;
  animation-delay: 0.2s;
}
.sub-menu .menu-item:hover {
  background-color: rgba(0, 0, 0, 30); /* 少し薄めの黒 */
  backdrop-filter: blur(10px);           /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px);   /* Safari用 */
}
.sub-menu .menu-item a {
  padding: 0 0.75rem;
}

@media screen and (max-width: 850px) {
  .sub-menu .menu-item {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

@media screen and (max-width: 850px) {
  .menu {
    position: relative;
  }
  .menu:after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 1rem;
    width: 30px;
    height: 4px;
    background: #FFF;
    box-shadow: 0 10px #FFF, 0 -10px #FFF;
  }
  .menu > ol {
    display: none;
    background: #b2d4ce;
    flex-direction: column;
    justify-content: center;
    height: 80vh;
    animation: fade 0.2s ease-out;
  }
  .menu > ol > .menu-item {
    flex: 0;
    opacity: 0;
    animation: enter 0.3s ease-out forwards;
  }
  .menu > ol > .menu-item:nth-child(1) {
    animation-delay: 0s;
  }
  .menu > ol > .menu-item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .menu > ol > .menu-item:nth-child(3) {
    animation-delay: 0.2s;
  }
  .menu > ol > .menu-item:nth-child(4) {
    animation-delay: 0.3s;
  }
  .menu > ol > .menu-item:nth-child(5) {
    animation-delay: 0.4s;
  }
  .menu > ol > .menu-item + .menu-item {
    margin-top: 0.75rem;
  }
  .menu > ol > .menu-item:after {
    left: auto;
    right: 1rem;
    bottom: calc(50% - 2px);
  }
  .menu > ol > .menu-item:hover {
    z-index: 1;
  }
  .menu:hover > ol {
    display: flex;
  }
  .menu:hover:after {
    box-shadow: none;
  }
}

.sub-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: none;
  z-index: 1;
}
.menu-item:hover > .sub-menu {
  display: block;
}

@media screen and (max-width: 850px) {
  .sub-menu {
    width: 100vw;
    left: -2rem;
    top: -100%;
    transform: translateY(-10%);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*CSS MENU*/

section {
  position: relative;
  overflow: hidden;
}

section#top {
  height: calc(80vh);
  z-index: 1;
  border-radius: 0 0 90% 90% / 0 0 30% 30%;
  background: #3cb0e6;
  background: radial-gradient(ellipse at center top, #A8CAF0 0%, #E9F0FA 56%, #A8CAF0 100%);
  /* --- 追加：固定ヘッダー対策 --- */
  /* ヘッダーが重なっても中身が見えるように上の余白を空ける */
  padding-top: 3%; 
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  section#top {
    border-radius: 0;
  }
}

section#top-sub {
  height: calc(50vh);
  z-index: 1;
  border-radius: 0 0 90% 90% / 0 0 30% 30%;
  background: #3cb0e6;
  background: radial-gradient(ellipse at center top, #A8CAF0 0%, #E9F0FA 56%, #A8CAF0 100%);
  /* --- 追加：固定ヘッダー対策 --- */
  /* ヘッダーが重なっても中身が見えるように上の余白を空ける */
  padding-top: 10%; 
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  section#top-sub {
    border-radius: 0;
  }
}

section#notice {
  text-align: center;
}

section#first {
  background: #313536;
  overflow: visible;
}

section#first > a {
  display: block;
  text-align: center;
  background: #313536;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -95px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 100;
  font-size: 40px;
  line-height: 80px;
  color: #c0cccf;
}

section#first > a i {
  -webkit-transition: .7s;
  transition: .7s;
}

section#first > a:hover i {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: .7s;
  transition: .7s;
}

section#contact {
  height: 800px;
  z-index: 1;
  background: #80938d;
  background: -webkit-gradient(linear, left top, left bottom, from(#8c9390), color-stop(53%, #435c5e), to(#285363));
  background: linear-gradient(180deg, #8c9390 0%, #435c5e 53%, #285363 100%);
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  padding: 60px 0;
}

@media screen and (max-width: 480px) {
  section#contact {
    height: 700px;
    border-radius: 0;
    padding: 0;
  }
}

.rellax {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .rellax {
    height: 150%;
  }
}

.rellax canvas {
  bottom: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.rellax.base {
  z-index: 1;
}

.rellax.front {
  z-index: 10;
}

.rellax.back {
  z-index: -10;
}

.rellax.deep {
  z-index: -20;
}

.rellax.fix-80 {
  margin-top: 80px;
}

.rellax.fix-160 {
  margin-top: 160px;
}

.rellax .full {
  width: 100%;
  height: 100%;
}

.rellax .full img {
  max-height: 100%;
}

.rellax .half {
  width: 100%;
}

.rellax .half img {
  max-width: 50%;
}

input[type=submit] {
  border: 1px solid #e2e2e2;
  padding: 2px 8px;
  font-size: 12px;
}

input[type=submit]:focus {
  outline: none;
}

.title {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  text-align: center;
  color: lightgoldenrodyellow;
  text-shadow: 0 1px 10px darkgray;
}

.title h1 {
  font-size: 300%;
  line-height: 1.5em;
  letter-spacing: 0.5em;
}

.title-sub {
  position: absolute;
  top: 10%;
  right: 0;
  left: 0;
  text-align: center;
  color: lightgoldenrodyellow;
  text-shadow: 0 1px 10px darkgray;
}

.title-sub h1 {
  font-size: 300%;
  line-height: 1.5em;
  letter-spacing: 0.5em;
}

.title-sub p {
  font-size: 115%;
  line-height: 2em;
  letter-spacing: 0.3em;
  font-family: "Sawarabi Mincho", sans-serif;
}

@media screen and (max-width: 480px) {
  .title h1 {
    font-size: 200%;
  }
}

@media screen and (max-width: 480px) {
  .title-sub h1 {
    font-size: 200%;
  }
}

.title p {
  font-size: 115%;
  line-height: 2em;
  letter-spacing: 0.3em;
  font-family: "Sawarabi Mincho", sans-serif;
}

@media screen and (max-width: 480px) {
  .title p {
    font-size: 80%;
  }
}

@media screen and (max-width: 480px) {
  .title-sub p {
    font-size: 80%;
  }
}

dl.flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 30px auto;
}

dl.flex dt {
  width: 120px;
  margin-bottom: 10px;
}

dl.flex dd {
  width: calc(100% - 120px);
  margin-bottom: 10px;
  margin-left: 0;
}

dl.flex2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 30px auto;
}

dl.flex2 dt {
  width: 220px;
  margin-bottom: 10px;
}

dl.flex2 dd {
  width: calc(100% - 220px);
  margin-bottom: 10px;
  margin-left: 0;
}

ul.sns-list {
  display: -webkit-box;
  display: flex;
}

ul.sns-list li a {
  font-size: 18px;
}

ul.sns-list li:not(:last-of-type) {
  margin-right: 20px;
}

ul.novel-1 {
  margin-bottom: 30px;
}

ul.novel-1 li {
  display: -webkit-box;
  display: flex;
}

ul.novel-1 li.new:after {
  content: 'new';
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  margin: auto 0 auto 5px;
  background: cadetblue;
  display: block;
  padding: 0 7px;
  height: 17px;
  line-height: 17px;
  border-radius: 10px;
}

ul.novel-1 li a {
  display: block;
  margin-right: 10px;
  white-space: nowrap;
}

ul.novel-1 li span {
  display: block;
}

ul.novel-2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 10px 0;
}

ul.novel-2 li:not(:last-of-type):after {
  content: '/';
  padding-right: 8px;
  padding-left: 8px;
}

ul.novel-2.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}

ul.illust-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 60px auto;
  width: 80%;
  max-width: 800px;
  justify-content: space-around;
}

ul.illust-1 li {
  position: relative;
  height: 300px;
  width: 300px;
  margin-bottom: 50px;
}

ul.illust-1 li a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

ul.illust-1 li a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

ul.illust-1 li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

ul.illust-1 li.new::after {
  content: 'new';
  font-family: "Sawarabi Mincho", sans-serif;
  position: absolute;
  left: -5px;
  top: -3px;
  display: block;
  font-weight: bold;
  color: #99937f;
  height: 18px;
  line-height: 18px;
  -webkit-transform: rotate(-39deg);
          transform: rotate(-39deg);
}

@media screen and (max-width: 480px) {
  ul.illust-1 li {
    height: 130px;
    width: 130px;
  }
}

@media screen and (max-width: 480px) {
  ul.illust-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    width: 100%;
  }
  ul.illust-1 li {
    height: 180px;
    width: 180px;
  }
}

ul.link-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin: 10px 0;
}

ul.link-1 li {
  margin-right: 8px;
}

ul.link-2 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

ul.link-2.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

ul.link-2 li {
  display: -webkit-box;
  display: flex;
}

ul.link-2 li a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

ul.link-2 li:not(:first-of-type):before {
  content: '/';
  margin: 0 5px;
}

form.mailform {
  text-align: center;
  max-width: 750px;
  margin: 30px auto;
}

form.mailform textarea {
  margin: 0 0 15px;
  font-size: 14px;
  line-height: 1.6em;
  border: none;
  padding: 10px;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  vertical-align: bottom;
  background: #c9d1cd;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

form.mailform textarea:focus {
  outline: none;
  background: #ffffff;
}

form.mailform input {
  margin: 0 0 15px;
  font-size: 16px;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  background: #c9d1cd;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

form.mailform input:focus {
  outline: none;
  background: #ffffff;
}

form.mailform input[type="submit"] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 20px;
  background: #99937f;
  color: #ffffff;
  border: none;
}

form.mailform input[type="submit"]:focus, form.mailform input[type="submit"]:hover {
  background: #635e4f;
  cursor: pointer;
}

footer {
  background: #2a2d2e;
  overflow: hidden;
  padding: 30px 0 0 0;
  margin-bottom: 0;
}

footer .container {
  margin-bottom: 0;
}

footer .sitename {
  font-size: 180%;
  font-family: "Sawarabi Mincho", sans-serif;
  letter-spacing: 0.5em;
}

@media screen and (max-width: 480px) {
  footer .sitename {
    font-size: 130%;
  }
}

footer .bottom {
  margin: 0;
}

footer .bottom a {
  opacity: 0.7;
  text-align: right;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0 0 0 auto;
  display: block;
}

footer .lastday {
  opacity: 0.7;
  text-align: right;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px;
  margin: 0 0 0 auto;
  display: block;
}

footer ul.sns-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}

footer ul.sns-list li a {
  font-size: 14px;
}

a.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px;
  background: #99937f;
  color: snow;
  margin: 40px auto;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  border-radius: 8px;
}

a.btn:hover {
  background: #635e4f;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a.btn.white {
  background: snow;
  color: #333333;
}

a.btn.white:hover {
  background: #cccccc;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a.btn.black {
  background: #333333;
}

a.btn.black:hover {
  background: #0d0d0d;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

a.btn.pink {
  background: #fa3c72;
}

a.btn.pink:hover {
  background: #e40645;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  color: snow;
}

a.btn.blue {
  background: #4169e1;
}

a.btn.blue:hover {
  background: #1d44b8;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  color: snow;
}

hr {
  height: 2px;
  background-color: snow;
  width: 90%;
  border: none;
  margin: 60px auto;
}

span.pink {
  color: #fa3c72;
}

blockquote {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  margin: 20px;
  font-size: 15px;
  font-style: italic;
}

h2.h2-a {
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: snow;
}

h2.h2-b {
  padding: 10px 20px;
  background: transparent;
  text-align: center;
}

h2.h2-b:before {
  content: '';
  height: 2px;
  width: 10%;
  background: snow;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}

h2.h2-b:after {
  content: '';
  height: 2px;
  width: 10%;
  background: snow;
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}

h2.h2-c {
  border-bottom: snow double 4px;
  padding: 0 0 5px;
}

h3.h3-a {
  padding: 0 0 5px;
  border-bottom: 1px solid snow;
}

h3.h3-b {
  border-left: 5px solid snow;
  padding-left: 10px;
}

ul.li-a {
  list-style: square inside;
  margin: 1em 0.5em;
}

ul.li-a li {
  margin-bottom: 0.5em;
}

ul.li-b {
  list-style: disc inside;
  margin: 1em 0.5em;
}

ul.li-b li {
  margin-bottom: 0.5em;
}

ul.li-c {
  list-style: disc inside;
  margin: 1em 0.5em;
  text-align: left;
  padding-left: 30%;
  display: inline-block;
  padding: 0;
}

@media screen and (max-width: 480px) {
  ul.li-c {
    padding-left: 10%;
  }
}

ul.li-c li {
  margin-bottom: 0.5em;
}

ol.li-a {
  list-style: decimal inside;
  margin: 1em 0.5em;
}

ol.li-a li {
  margin-bottom: 0.5em;
}

ol.li-b {
  list-style: lower-alpha inside;
  margin: 1em 0.5em;
}

ol.li-b li {
  margin-bottom: 0.5em;
}

.page {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 30px auto;
}

.page a {
  display: block;
  padding: 3px 10px;
}

.page .back {
  margin: auto;
}

.comics {
  display: block;
  max-width: 100%;
  margin: 80px auto;
  border: 1px #333333 solid;
}

.comics.tame {
  margin-bottom: 800px;
}

.book {
  display: -webkit-box;
  display: flex;
  width: 80%;
  max-width: 750px;
  margin: 80px auto;
}

.book .book__image_1 {
  margin: 0 20px;
  -webkit-box-flex: 0;
          flex: 0 0 45%;
}
.book .book__image_2 {
  margin: 0 20px;
  -webkit-box-flex: 0;
          flex: 0 0 45%;
}

@media screen and (max-width: 480px) {
  .book {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .book:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .book:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 60px;
  }
  .book .book__image_1 {
    margin: 0 auto 20px;
    max-width: 400px;
  }
  .book .book__image_2 {
    margin: 0 auto 20px;
    max-width: 400px;
  }
}

dl.book-01 {
  margin: 20px 0;
}

dl.book-01 dt {
  width: 100px;
  font-weight: 600;
  margin-bottom: 10px;
}

dl.book-01 dd {
  width: calc(100% - 100px);
  margin: 0 0 10px;
}

@media screen and (max-width: 480px) {
  .only-pc {
    display: none;
  }
}

p#fuwaimg_caption_text {
    color: gray;
}

/* 追加: テーブルを囲むコンテナ要素 */
.table-container {
  overflow-x: auto; /* コンテンツがはみ出した場合に横スクロールを有効にする */
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールをスムーズにする */
  width: 95%; /* 元のテーブルの幅と合わせる */
  margin: 20px auto; /* 元のテーブルのマージンと合わせる */
}

/* 修正: 元のテーブルの幅指定を削除または変更 */
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  width: 100%; /* 親要素 (table-container) の幅に合わせる */
  /* margin: 20px auto;  元の設定は不要になるため削除するかコメントアウト */
  min-width: 430px; /* 必要に応じて、これ以上縮まない最小幅を設定しても良い */
}

caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: bold;
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 7px;
}

td:last-of-type {
  text-align: center;
}

tfoot th {
  text-align: right;
}

tfoot td {
  font-weight: bold;
}



/* form要素に対するスタイル */
form#estimate-form {
    display: flex; /* 子要素をフレックスアイテムとして配置 */
    flex-direction: column; /* フレックスアイテムを列方向に配置 */
    gap: 25px; /* フレックスアイテム間の隙間を25pxに設定 */
    margin-top: 30px; /* 上部のマージンを30pxに設定 */
}

/* インナーコンテナに対するスタイル */
.estimate-formInner {
    display: flex; /* 子要素をフレックスアイテムとして配置 */
    flex-direction: row; /* フレックスアイテムを行方向に配置 */
    gap: 20px 25px; /* フレックスアイテム間の隙間を20px(縦)と25px(横)に設定 */
    flex-wrap: wrap; /* フレックスアイテムがコンテナの幅を超えた場合、折り返しを許可 */
    border-bottom: solid 1px #eee; /* 下部に1pxの固体の境界線を追加 */
    padding-bottom: 25px; /* 下部のパディングを25pxに設定 */
}

/* 最後のインナーコンテナに対するスタイル */
.estimate-formInner:last-child {
    padding-bottom: 0; /* 下部のパディングを0に設定 */
    border: none; /* 境界線を削除 */
}

/* ヘッダ要素に対するスタイル */
p.estimate-formHeading {
    display: flex; /* 子要素をフレックスアイテムとして配置 */
    width: 100%; /* 幅を100%に設定 */
    margin: 0 0 -10px; /* マージンの下部を-10pxに設定 */
    font-size: 1.3rem; /* フォントサイズを1.3remに設定 */
    justify-content: flex-start; /* フレックスアイテムを左に寄せる */
    align-items: center; /* フレックスアイテムを中央に配置 */
    gap: 10px; /* フレックスアイテム間の隙間を10pxに設定 */
}

/* ヘッダ要素内のspanに対するスタイル */
p.estimate-formHeading span {
    background: #999; /* 背景色を#999に設定 */
    color: #fff; /* 文字色を#fff(白)に設定 */
    font-size: 0.8rem; /* フォントサイズを0.8remに設定 */
    padding: 2px 10px 2px; /* パディングを上下2px、左右10pxに設定 */
    border-radius: 9999px; /* ボーダーの半径を非常に大きく設定して丸くする */
    font-weight: 600; /* フォントの太さを600に設定 */
    letter-spacing: 0.04rem; /* 文字間隔を0.04remに設定 */
}

/* ラジオボタンとチェックボックスを非表示に設定 */
.estimate-formInner input[type="radio"], .estimate-formInner input[type="checkbox"] {
    display: none; /* 表示しない */
}

/* チェックが入ったラジオボタンとチェックボックスのラベルのスタイルを設定 */
.estimate-formInner input[type="radio"]:checked + label, .estimate-formInner input[type="checkbox"]:checked + label {
    background: #707070; /* 背景色を#707070に設定 */
    color: #fff; /* 文字色を#fff(白)に設定 */
}

/* ラベルに対するスタイル */
.estimate-formInner label {
    display: flex; /* 子要素をフレックスアイテムとして配置 */
    flex-direction: column; /* フレックスアイテムを列方向に配置 */
    align-items: center; /* フレックスアイテムを中央に配置 */
    padding: 15px 15px 5px; /* パディングを上下15px、左右5pxに設定 */
    transition: 0.3s ease-in-out; /* トランジション効果を0.3秒で適用 */
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 1px 3px 0 rgb(0 0 0 / 9%); /* 影を設定 */
    border-radius: 3px; /* ボーダーの半径を3pxに設定 */
    cursor: pointer; /* マウスカーソルをポインターに設定 */
    font-weight: 600; /* フォントの太さを600に設定 */
    font-size: 1.2rem; /* フォントサイズを1.2remに設定 */
    gap: 3px; /* フレックスアイテム間の隙間を3pxに設定 */
    background: #fff; /* 背景色を#fff(白)に設定 */
}

/* ラベルにマウスをホバーすると影を強調、上に少し浮き上がる、透明度を0.8に、背景色を薄灰色に設定 */
.estimate-formInner label:hover {
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%); /* ホバー時の影を設定 */
    transform: translateY(-4px); /* ホバー時に上に4px移動 */
    opacity: 0.8; /* 透明度を0.8に設定 */
    background: #f5f5f5; /* 背景色を#f5f5f5に設定 */
}

@font-face {
  font-family: 'Varela Round';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/varelaround/v21/w8gdH283Tvk__Lua32TysjIfp8uK.ttf) format('truetype');
}
* {
  box-sizing: border-box;
}
:root {
  --accent-color: #45494E;
  --gradient-color: #FBFBFB;
}
a:focus {
  outline: none;
  position: relative;
}
a:focus:after {
  width: 50px;
}
a:after {
  content: "";
  background: #FBFBFB;
  position: absolute;
  bottom: 5px;
  left: 15px;
  height: 3px;
  width: 0;
  transition: 0.5s;
  transition-delay: 0.2s;
}
body {
  background: #45494E;
  font-family: "Varela Round", Nunito, Montserrat, sans-serif;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

