/*
Theme Name: hogehoge
Theme URI: https://hogehoge.jp
Author: hogehoge
Author URI: https://hogehoge.jp
*/

html {
  touch-action: manipulation;
}

* {
  box-sizing: border-box;
}

a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  font-family: "Zen Kaku Gothic New", serif;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  text-decoration: none;
  background: transparent;
  box-sizing: border-box;
  color: #000000;
  list-style: none;
  letter-spacing: 0.05rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
small {
  line-height: 2;
  letter-spacing: 0.05rem;
}

pre {
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

a:hover {
  opacity: 0.7;
  transition-duration: 0.2s;
}

/* common */
* {
  box-sizing: border-box;
}

.inner {
  width: 1000px;
  margin: auto;
}

.service-container {
  width: 750px;
  margin: auto;
}

.service-ballon-container {
  width: 750px;
  margin: auto;
  background: #fff;
  border-radius: 32px;
  padding: 40px 20px;
}

.service-heading-title {
  color: #ff9d00;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 32px;
  margin: 32px 0;
}

@media (max-width: 1024px) {
  .inner,
  .service-container {
    width: 100%;
    padding: 0 10px;
  }

  .service-ballon-container {
    width: 100%;
  }
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

header .logo {
  display: flex;
  align-items: center;
}

.global-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-nav ul li {
  margin: 0 10px 0 0;
}

.global-nav ul li a {
  display: block;
  padding: 20px 16px;
}

.global-nav ul li.service-btn a {
  border-radius: 0px 0px 14px 14px;
  background: #6bb881;
  color: #fff;
}

.global-nav ul li.faq-btn a {
  border-radius: 0px 0px 14px 14px;
  background: #ffd000;
  padding: 20px 40px;
  background: #b2e6ff;
}

.global-nav ul li.contact a {
  border-radius: 0px 0px 14px 14px;
  background: #12be43;
  color: #fff;
}

.global-nav ul li.register a {
  border-radius: 0px 0px 14px 14px;
  background: #ffd000;
}

picture {
  display: block;
  margin: 10px 0 0 0;
}

picture img {
  width: 100%;
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  header {
    display: flex;
    justify-content: center;
  }

  header .logo {
    padding: 10px 0;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
  }

  .global-nav.nav-open {
    display: block;
    z-index: 2;
  }
  .hamburger {
    display: block;
    width: 40px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 999;
  }

  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #333;
    margin: 5px auto;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .global-nav ul {
    display: block;
  }
  .global-nav ul li a {
    padding: 4px 2px;
  }
  .global-nav ul li.service-btn a {
    border-radius: 0px;
    background: none;
    color: #000000;
  }

  .global-nav ul li.faq-btn a {
    border-radius: 0px;
    background: none;
    padding: 0px;
    color: #000000;
  }

  .global-nav ul li.contact a {
    border-radius: 0px;
    background: none;
    color: #000000;
  }

  .global-nav ul li.register a {
    border-radius: 0px;
    background: none;
  }

  picture {
    margin: 0;
  }
}

/* read-message */
.read-message {
  padding: 60px 0 20px;
}

.read-message h2 {
  display: flex;
  justify-content: center;
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 32px 0;
}

.read-message h2 img {
  width: 344px;
  margin: 0 24px;
}

.read-message p {
  width: 720px;
  letter-spacing: 0.2rem;
  margin: 0 auto 32px;
}

@media (max-width: 1024px) {
  .read-message h2 {
    flex-direction: column;
    align-items: center;
  }

  .read-message p {
    width: 100%;
    padding: 0 16px;
  }

  figure.read-message-media img {
    width: 100%;
  }
}

/* service */
#service {
  position: relative;
  padding: 40px 0;
  background: url(/wp-content/uploads/2025/01/service_bg.svg) no-repeat;
  background-size: contain;
  background-color: #cbecd4;
}

#service::after {
  content: "";
  background: url(/wp-content/uploads/2025/01/service_after.svg) no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  height: 75px;
  bottom: -74px;
  left: 0;
  right: 0;
  margin: auto;
}

#service h2 {
  text-align: center;
  margin: 0 0 80px 0;
}

ul.service-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.service-anchor-nav li {
  position: relative;
  width: calc(100% / 2 - 20px);
  background-color: #fff;
  margin: 0 0 80px;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0px 4px 8px 0px #c6c6c629;
}

ul.service-anchor-nav li figure img {
  position: absolute;
  top: -3.5rem;
  left: -4rem;
}

ul.service-anchor-nav li p strong {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 1.2;
  color: #ff9d00;
  font-weight: bold;
  text-align: center;
  border-bottom: 4px dashed #cbecd4;
  margin: 0 0 16px;
  letter-spacing: 0.05rem;
}

ul.service-anchor-nav li p img {
  margin: 0 24px 20px;
}

ul.service-anchor-nav li p {
  margin: 0 0 16px 0;
}

ul.service-anchor-nav li a {
  display: block;
  background: #ffd000;
  text-align: center;
  border-radius: 30px;
  padding: 12px 0;
  font-weight: bold;
}

@media (max-width: 1024px) {
  #service {
    background: url(/wp-content/uploads/2025/01/service_bg_sp.svg) no-repeat;
    background-color: #cbecd4;
  }

  ul.service-anchor-nav {
    flex-direction: column;
  }

  ul.service-anchor-nav li {
    width: calc(100% - 20px);
    margin: 0 auto 80px;
  }

  ul.service-anchor-nav li:last-child {
    margin: 0 auto;
  }

  ul.service-anchor-nav li figure img {
    position: absolute;
    top: -4.4rem;
    left: -0.8rem;
  }

  picture.campaign-media {
    width: 25%;
  }

  #service::after {
    background: url(/wp-content/uploads/2025/01/service_after_sp.svg) no-repeat;
    background-size: cover;
    bottom: -85px;
    height: 86px;
  }
}

#gift {
  padding: 80px 0;
}

.service-baloon {
  position: relative;
  background: #fbfb94;
  padding: 20px;
  margin: 0 0 40px 0;
}

.service-baloon::after {
  content: "";
  width: 25px;
  height: 25px;
  background: #fbfb94;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  transform: rotate(45deg);
}

.border-price-box {
  display: flex;
  border: 3px solid #cbecd4;
  width: 65%;
  margin: 0 auto 40px;
  align-items: center;
}

.border-price-box h3 {
  padding: 30px;
  background: #cbecd4;
  margin: 0 24px 0 0;
}

.border-price-box p {
  font-size: 32px;
  font-weight: bold;
}

.border-price-box p span {
  font-size: 16px;
}

.border-price-box p img {
  width: 130px;
  vertical-align: sub;
}

ul.overview-list {
  margin: 0 0 40px 0;
}

.overview-list h4 {
  color: #ff9d00;
  font-size: 22px;
}

.overview-list li {
  position: relative;
  padding: 0 0 0 4rem;
  margin: 0 0 24px;
}

.overview-list li::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(/wp-content/uploads/2025/01/check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.link {
  text-align: center;
}

.link a {
  background: #ffd000;
  padding: 24px 40px;
  border-radius: 80px;
}

@media (max-width: 1024px) {
  #gift {
    padding: 80px 10px;
  }

  .border-price-box {
    flex-direction: column;
    width: 100%;
  }

  .border-price-box h3 {
    width: 100%;
    margin: 0;
    padding: 8px 0;
    text-align: center;
  }
}

/* Wi-Fi */
#wifi {
  width: 100%;
  background: url(/wp-content/uploads/2025/01/service_bg02.svg) no-repeat;
  background-size: contain;
  background-color: #cbecd4;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  #wifi {
    padding: 40px 10px;
  }
  #wifi {
    background: #cbecd4;
  }
}

/* Support */

/* abblock */

#adblock {
  width: 100%;
  background: url(/wp-content/uploads/2025/01/ab-block_bg.svg) no-repeat;
  background-size: contain;
  background-color: #cbecd4;
  padding: 40px 0;
}

@media (max-width: 1024px) {
  #adblock {
    padding: 40px 10px;
    background: #cbecd4;
  }
}

/* FAQ */
#faq {
  margin: 0 auto 80px;
}

h2.faq-title {
  font-size: 38px;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  text-align: center;
  margin: 100px 0 60px 0;
}

h2.faq-title span {
  font-size: 16px;
  color: #cbecd4;
}

/* accordion */
div.accordion {
  display: flex;
  align-items: center;
  line-height: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.5s ease-in;
  position: relative;
  padding-left: 60px;
  height: 53px;
  margin: 0;
  background: #ffdc5c;
  margin-bottom: 15px;
}

.accordion:before {
  content: "Q";
  position: absolute;
  left: 15px;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.accordion.active {
  margin-bottom: 0;
}

div.panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}

.panel p {
  padding: 10px 20px;
  background: #fbfb94;
  margin: 0 0 15px;
  position: relative;
  padding-left: 60px;
}

.panel p:before {
  content: "A";
  position: absolute;
  left: 15px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  font-size: 24px;
  color: #ff9d00;
  font-weight: bold;
  top: 0;
  bottom: 0;
  margin: auto;
}

.acco {
  position: relative;
}

div.accordion:after {
  content: "\0276F";
  font-size: 1.2rem;
  color: #ff9d00;
  position: absolute;
  right: 2rem;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
}

div.accordion.active:after {
  transform: rotate(270deg);
}

@media (max-width: 1024px) {
  .accordion p {
    width: calc(100% - 4rem);
  }

  div.accordion {
    display: flex;
    align-items: center;
    padding: 12px 0 12px 60px;
    height: inherit;
  }

  div.accordion:after {
    width: 8px;
    height: 18px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  div.accordion.active:after {
    width: 8px;
    height: 80px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

/* footer */
.footer-image {
  text-align: center;
}

.footer-image img {
  width: 200px;
}

footer ul {
  display: flex;
  justify-content: center;
}

footer ul li {
  text-align: center;
  margin: 24px 60px;
}

footer ul li a {
  color: #6bb881;
}

@media (max-width: 1024px) {
  footer {
    width: 100%;
  }

  .footer-image {
    text-align: left;
  }

  footer ul {
    flex-direction: column;
    align-items: start;
    margin: 0 10px;
  }

  footer ul li {
    margin: 16px 0;
  }
}

/* contact */
.contact_wrap {
  width: 400px;
  margin: auto;
}

.input_block {
  display: flex;
  flex-direction: column;
  margin: 0 0 24px 0;
}

.input_block label {
  font-weight: bold;
  margin: 0 0 8px 0;
}

span.require {
  display: inline-block;
  font-size: 14px;
  background: #fd3636;
  color: #fff;
  margin: 0 0 0 8px;
  border-radius: 4px;
  padding: 2px 6px;
  line-height: 1.4;
}

label.radio_label {
  font-weight: bold;
  display: block;
  margin: 0 0 24px 0;
}

.radio_block {
  margin: 0 0 24px 0;
}

.input_block input {
  width: 400px;
  padding: 16px 8px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}

.wpcf7-checkbox,
span.residence_select {
  display: flex;
  flex-direction: column;
}

.wpcf7-checkbox span,
span.residence_select span {
  margin: 0 0 16px 0;
}

.wpcf7-list-item {
  margin: 0;
}

input.submit {
  width: 80%;
  display: flex;
  border: none;
  background: #ffd000;
  font-weight: bold;
  padding: 24px;
  border-radius: 50px;
  font-size: 18px;
  margin: 24px auto;
  cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
  width: inherit;
}

label span {
  font-weight: normal;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  width: 300px;
  padding: 16px 8px;
  margin: 0 0 24px 0;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.contact_textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  resize: none;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0 0 16px 0;
}

@media (max-width: 1024px) {
  .contact_wrap {
    width: 100%;
    margin: auto;
    padding: 0 16px;
  }

  .input_block input {
    width: 100%;
  }
}

/*  */
.swiper-container {
  overflow-y: hidden;
}

.swiper-container::-webkit-scrollbar {
  display: none;
}

/* company */
table.company_table {
  margin: 0 0 80px;
}

.company_table th {
  background: #cbecd4;
  padding: 20px;
  white-space: nowrap;
}

.company_table td {
  padding: 20px;
}

.company_wrap {
  width: 600px;
  margin: auto;
}

@media (max-width: 1024px) {
  .company_wrap {
    width: 100%;
    margin: auto;
  }
  table.company_table {
    padding: 0 10px;
  }
  .company_table tr {
    display: flex;
    flex-direction: column;
  }
}

.checkbox_block {
  margin: 24px 0;
}

.checkbox_block a {
  color: #429eff;
  font-weight: bold;
  text-decoration: underline;
}
