@charset "UTF-8";
/* ANIMATION
============================= */
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInAndSlideRight {
  /* loading */
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }
}
@keyframes fadeInAndSlideTop {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }
}
@keyframes fadeInAndSlideLeftAll {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 0.3;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* Reset
================================ */
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: 100%;
  margin: 0;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul,
dt,
dd {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  list-style-image: none;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: normal;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* LAYOUT
================================ */
html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.05em;
}

#wrapper {
  min-width: 960px;
}

a {
  transition: 0.3s opacity ease;
}
a:hover, a:focus, a:active {
  opacity: 0.6;
  text-decoration: none;
}

/* common */
.sp-on {
  display: none;
}

.sp-off {
  display: block;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.red {
  color: #cc3333;
}

.fsize12 {
  font-size: 0.875rem;
}

.fsize20 {
  font-size: 1.25rem !important;
}

.right {
  display: flex;
  justify-content: flex-end;
}

/* contents 
============================== */
.form {
  margin: 50px auto 50px;
  width: 960px;
}
.form ul {
  list-style: disc;
  margin: 0 0 2em 40px;
}
.form ul.price-link li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.form ul.price-link li span {
  margin-right: 1em;
}
.form ul li {
  margin-bottom: 10px;
}
.form p {
  margin-bottom: 2em;
}
.form p.list-title {
  margin-bottom: 1em;
}
.form .require {
  display: inline-block;
  background: #c33;
  color: #fff;
  font-size: 0.75rem;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 5px;
  font-weight: normal;
  line-height: 1.2;
}

#page-ttl {
  background: #235bc8;
  color: #fff;
  padding: 0 50px;
  text-align: center;
  font-family: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  border-bottom: 8px solid #535353;
}
#page-ttl .page-ttl-inner {
  width: 960px;
  margin: auto;
  padding: 30px 0;
  background-image: url("../images/header-bg.png");
  background-size: cover;
}
#page-ttl i {
  display: inline-block;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  #page-ttl i {
    font-size: 0.75rem;
  }
}
#page-ttl h1 {
  font-size: 6.25rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
  filter: drop-shadow(0 0 4px rgb(0, 0, 0));
}
@media screen and (max-width: 640px) {
  #page-ttl h1 {
    font-size: 2rem;
  }
}
#page-ttl ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  #page-ttl ul {
    margin-bottom: 10px;
  }
}
#page-ttl ul li {
  background-color: #4b412c;
  color: #fff;
  padding: 5px 20px;
  font-size: 1.875rem;
  margin: 0 10px;
  border-radius: 3px;
}
@media screen and (max-width: 640px) {
  #page-ttl ul li {
    font-size: 0.875rem;
    padding: 5px 10px;
    margin: 0 5px;
  }
}
#page-ttl small {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  #page-ttl small {
    font-size: 0.625rem;
  }
}

.form-section {
  margin-bottom: 50px;
}
.form-section h2 {
  font-size: 2rem;
  color: #535353;
  text-align: center;
  margin-bottom: 30px;
}
.form-section h2.meta-word {
  font-size: 3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .form-section h2.meta-word {
    font-size: 2rem;
  }
}
.form-section h3 {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
  background: #535353;
  color: #fff;
  border-radius: 5px;
  padding: 8px 30px;
  margin-bottom: 30px;
}
.form-section h4 {
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 2px solid;
}
.form-section h4 .bold {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 0.1em;
}
.form-section h4 .red {
  color: #f44336;
}
.form-section h4 .blue {
  color: #0083e7;
}
.form-section h4 .yellow {
  color: #ffe500;
}
.form-section h4 .table-title {
  margin-bottom: 0;
}
.form-section h4 .table-title + .plan-table tr:first-child th,
.form-section h4 .table-title + .plan-table tr:first-child td {
  border-top: none;
}
.form-section .cancel {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #a11;
}

.main-buttons {
  --button-color-speed: #15b786;
  --button-color-standard: #00a5b8;
  --button-color-quality: #af5aa0;
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin: 2rem auto 4rem;
}
.main-buttons .main-button {
  width: calc((100% - 200px) / 3);
  border-radius: 8px;
  padding: 2rem 1rem;
  color: #fff;
  text-align: center;
  border: 3px solid #eee;
}
.main-buttons .main-button .button-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}
.main-buttons .main-button .button-info {
  font-size: 0.9rem;
  font-weight: bold;
}
.main-buttons .main-button-speed {
  background-color: var(--button-color-speed);
}
.main-buttons .main-button-standard {
  background-color: var(--button-color-standard);
}
.main-buttons .main-button-quality {
  background-color: var(--button-color-quality);
}
@media screen and (max-width: 640px) {
  .main-buttons {
    flex-direction: column;
  }
  .main-buttons .main-button {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .main-buttons .main-button .button-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem 2rem;
  }
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  border-top: 1px solid #ccc;
  font-size: 0.875rem;
}
.plan-table th,
.plan-table td {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}
.plan-table th {
  background: #efefef;
  font-size: 0.75rem;
  border-top: 1px solid #ccc;
}
.plan-table .blue {
  background: #003f70;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  display: inline-block;
}

.plan-note {
  border: 5px solid #efefef;
  padding: 30px;
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 50px;
}
.plan-note strong {
  font-size: 1.25rem;
}

.hotel-select label {
  position: relative;
  width: 100%;
  padding: 20px 30px 0 60px;
  cursor: pointer;
  background: #f1eee7;
  border: 1px solid #cfcbc1;
  border-radius: 5px;
  margin-bottom: 20px;
}
.hotel-select label:hover, .hotel-select label:focus, .hotel-select label:active {
  border: 3px solid #cfcbc1;
  margin-bottom: 16px;
}
.hotel-select label:has(:checked) {
  border-color: #cc3333;
  background: #fcc8b8;
}
.hotel-select label h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.hotel-select label input {
  position: absolute;
  top: 50%;
  left: 20px;
}
.hotel-select label .sadoku-price {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: left;
  color: #cc3333;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hotel-select label .img {
  display: flex;
  margin-bottom: 10px;
}
.hotel-select label .img img {
  width: 300px;
  height: 300px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* form */
.form-group {
  padding: 0 0 20px;
  margin: 0 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ccc;
}
.form-group.noborder {
  border: none;
}
.form-group .form-label {
  width: 200px;
}
.form-group .form-label label,
.form-group .form-label p {
  font-size: 0.875rem;
  font-weight: bold;
}
.form-group .form-ctrl {
  flex-grow: 3;
  font-size: 0.875rem;
}
.form-group .form-ctrl input[type=text],
.form-group .form-ctrl input[type=email],
.form-group .form-ctrl input[type=date],
.form-group .form-ctrl input[type=number],
.form-group .form-ctrl select {
  border: none;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 3px;
  border: 1px solid #707070;
  background: #fff;
  width: 80%;
}
.form-group .form-ctrl input[type=number] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
.form-group .form-ctrl input[type=checkbox],
.form-group .form-ctrl input[type=radio] {
  margin: 0 10px 0 0;
}
.form-group .form-ctrl label {
  padding: 0 20px 0 0;
}
.form-group .form-ctrl .indent {
  margin: 0 0 1em 40px;
  font-size: 0.875rem;
}

.form-border {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.form-border .form-label {
  width: 200px;
}
.form-border .form-label label,
.form-border .form-label p {
  font-size: 0.875rem;
  font-weight: bold;
}
.form-border .form-ctrl {
  width: calc(100% - 200px);
  font-size: 0.875rem;
}

#f-nohin,
#f-tango,
#f-proofread,
#f-bunya {
  width: 150px;
}

hr {
  margin: 30px 0 50px;
}

.submit {
  margin-top: 50px;
  text-align: center;
}
.submit button {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  margin: 0 10px;
  background: #49944c;
  color: #fff;
  border-radius: 3px;
  border: none;
}
.submit button.submit {
  background: #c33;
  border-bottom-color: #a11;
}
.submit button:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -5px;
  transition: transform 0.2s ease-out;
}
.submit button:hover:before, .submit button:focus:before, .submit button:active:before {
  transform: rotate(45deg) translate(3px, -3px);
}

/* footer
================================ */
#footer {
  background: #efefef;
  padding: 30px 50px;
}

/* clear
================================ */
.clearfix {
  content: "";
  clear: both;
  display: block;
}

/* for Smartphone
================================ */
@media only screen and (max-width: 640px) {
  #wrapper,
  .form {
    min-width: 375px;
    width: auto;
  }
  /* common */
  .sp-on {
    display: block;
  }
  .sp-off {
    display: none;
  }
  /* form ================================ */
  .form {
    padding: 0 20px;
  }
  .hotel-select label .img {
    flex-wrap: wrap;
  }
  .hotel-select label .img img {
    width: 240px;
    height: 240px;
    margin-bottom: 10px;
  }
  .form-group .form-label {
    width: 130px;
  }
  .form-group .form-label label,
  .form-group .form-label p {
    font-size: 0.875rem;
  }
  .form-group .form-ctrl {
    flex-grow: 3;
    font-size: 0.875rem;
  }
  .form-group .form-ctrl input[type=text],
  .form-group .form-ctrl input[type=email],
  .form-group .form-ctrl input[type=date],
  .form-group .form-ctrl input[type=number],
  .form-group .form-ctrl select {
    border: none;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #707070;
    background: #fff;
  }
  .form-group .form-ctrl input[type=number] {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
  }
  .form-group .form-ctrl input[type=checkbox],
  .form-group .form-ctrl input[type=radio] {
    margin: 0 10px 0 0;
  }
  .form-group .form-ctrl label {
    padding: 0 20px 0 0;
  }
  .form-group .form-ctrl .indent {
    margin: 0 0 1em 40px;
    font-size: 0.875rem;
  }
  #f-surname1,
  #f-name1,
  #f-surname2,
  #f-name2 {
    width: 100px;
    margin: 0 10px 10px 5px;
  }
  /* clear
  ================================ */
  .clearfix {
    content: "";
    clear: both;
    display: block;
  }
  /* media end */
}