/*
 Theme Name: Kadence-hitomeq
 Template: kadence
*/



@charset "UTF-8";
:root {
  --vw: 1vw;
}

/* =========================================
   Reset
   ========================================= */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
/*  background: transparent;*/
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* ▼ グローバルな <a> の共通リセット（フォントサイズは持たせない） */
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

/* フッターナビ（foot_nav）のリンクだけ 1.4rem にする */
nav.foot_nav a {
  font-size: 1.4rem;
  display: block;
  transition: 0.2s;
}

nav.foot_nav a:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

/* =========================================
   Base
   ========================================= */
html {
  font-size: 62.5%;
}

body {
  font-family: "Open Sans", "Arial", "メイリオ", "Meiryo", sans-serif!important;
  color: #000000;
  line-height: 1.6;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.container {
  overflow: hidden;
}

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

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* 共通リンク矢印 */
.link_arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.link_arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: 0.3s;
  border-top: solid 1px #008ca0;
  border-right: solid 1px #008ca0;
}
.link_arrow:hover::after {
  margin-left: 15px;
}

/* 共通ボタン */
.cmn_btn {
  display: inline-block;
  width: 250px;
  height: 56px;
  text-align: center;
  background: linear-gradient(90deg, rgb(110, 208, 255) 0%, rgb(0, 125, 229) 100%);
  color: #fff;
  position: relative;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  font-weight: 500;
  align-items: center;
  text-decoration: none !important;
}
.cmn_btn::after {
  content: "";
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.cmn_btn:hover::after {
  right: 10px;
}
.cmn_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .cmn_btn {
    width: 180px;
    height: 46px;
    font-size: 1.4rem;
  }
  .cmn_btn:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
  }
}
.cmn_btn.back_btn {
  background: #999;
}
.cmn_btn.back_btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  left: 15px;
  right: auto;
  transform: rotate(-135deg);
}
.cmn_btn.back_btn:hover::after {
  left: 10px;
}

/* 汎用テキスト系ユーティリティ */
.txt_c { text-align: center !important; }
.txt_r { text-align: right !important; }
.txt_l { text-align: left !important; }
.txt_w { color: #fff; }
.txt_b { color: #000; }

.f-serif {
  font-family: "Roboto", sans-serif;
}

/* PCで tel リンクを無効化 */
@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* 共通 inner 幅 */
.sec_in {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  .sec_in {
    padding: 0 20px;
  }
}

/* =========================================
   Header
   ========================================= */
header {
  width: 100%;
}
header .header_in {
  max-width: 1210px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
}
header .logo {
  width: 238px;
  height: 52px;
  line-height: 0;
}
header .logo img {
  width: 100%;
}
header .function {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 10px;
  line-height: 1.4;
  margin:0;
}

header .function .language span {
  border: 2px solid #484848;
  border-radius: 15px;
  display:inline-block;
  font-size: 1.1rem;
  padding: 0.25px 5px;
  position: relative;
  text-decoration: none;
  color: #484848;
  min-width: 14px;
  text-align: center;
  background: none;
  overflow: visible;
} 

header .function .global img {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 768px) {
  header .logo {
    width: 177px;
    height: 42px;
  }
  header .function {
    margin-right: 10px;
  }
}

/* ヘッダー右上（言語・グローバル）調整 */

/* li の黒丸と余白を消す */
.header_in .function ul,
.header_in .function li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size:1.4rem;
  font-weight:500;
}


/* 地球アイコンの縦位置を揃える */
.header_in .function .global img {
  display: block;   /* ベースライン揃えのズレを防ぐ */
}


/* =========================================
   Main basic
   ========================================= */
main {
  padding-top: 0px;
}
main .h2_ttl {
  text-align: center;
  color: #008ca0;
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  main .h2_ttl {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
}

/* =========================================
   Page top button
   ========================================= */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 5;
}
.pagetop a {
  width: 55px;
  height: 55px;
/*  background: #0099af;*/
	color:#008ca0;
  font-size: 1.4rem;
}
.pagetop a::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 25px;
  width: 18px;
  height: 18px;
  border-top: solid 4px #555555;
  border-right: solid 4px #555555;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
  .pagetop a::after {
    top: 10px;
    right: 11px;
    width: 14px;
    height: 14px;
    border-top: solid 3px #555555;
    border-right: solid 3px #555555;
  }
}

/* =========================================
   Footer
   ========================================= */
footer {
  background: #333;
  padding: 50px 0 40px;
  text-align: center;
}
footer .foot_btn ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 80px;
}
footer .foot_btn ul li {
  max-width: 580px;
  width: 57.4257425743%;
  height: 64px;
}
footer .foot_btn ul li a {
  font-size: 2rem;
  background: #fff;
  text-align: left;
  padding: 15px 50px 15px 40px;
  border-radius: 32px;
  position: relative;
}
footer .foot_btn ul li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  transform: rotate(45deg);
}
footer .foot_btn ul li a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #45bbcc;
}
footer .foot_nav {
/*  padding: 80px 0;*/
  padding: 35px 0;
}
footer .foot_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 2.0;
  gap: 0 40px;
}
footer .foot_nav ul li a {
  color: #fff;
}

/* 区切り記号「>」の調整 */
footer .foot_nav ul li a::before {
  content: ">";
  font-size: 1.4rem;  /* 記号も文字と同サイズ */
  color: currentColor;
  margin-right: 6px;
}

/* 既存テーマの「afterで出している>」を無効化 */
footer .foot_nav ul li a::after {
  content: none !important;
}

footer .foot_nav ul li a::after {
  content: none !important;
  content: ">";
  font-size: 2rem;
  font-weight: 400;
  color: #7ce7eb;
  margin-left: 10px;
}
footer small {
  line-height: 1;
  display: inline-block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  footer .foot_btn ul {
    gap: 40px 0;
  }
  footer .foot_btn ul li {
    width: 100%;
    max-width: 100%;
  }
  footer .foot_btn ul li a {
    font-size: 1.8rem;
    padding: 15px 50px 15px 20px;
  }
  footer .foot_nav {
    padding: 20px 0;
  }
  footer .foot_nav ul {
    gap: 20px 0;
  }
  footer .foot_nav ul li {
    width: 100%;
  }
}

